Class ExecutionConfig

  • All Implemented Interfaces:
    ExecutionConfigOrBuilder, com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Serializable

    public final class ExecutionConfig
    extends com.google.protobuf.GeneratedMessageV3
    implements ExecutionConfigOrBuilder
     Execution configuration for a workload.
     
    Protobuf type google.cloud.dataproc.v1.ExecutionConfig
    See Also:
    Serialized Form
    • Method Detail

      • newInstance

        protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
        Overrides:
        newInstance in class com.google.protobuf.GeneratedMessageV3
      • getDescriptor

        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      • internalGetFieldAccessorTable

        protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      • getServiceAccount

        public String getServiceAccount()
         Optional. Service account that used to execute workload.
         
        string service_account = 2 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getServiceAccount in interface ExecutionConfigOrBuilder
        Returns:
        The serviceAccount.
      • getServiceAccountBytes

        public com.google.protobuf.ByteString getServiceAccountBytes()
         Optional. Service account that used to execute workload.
         
        string service_account = 2 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getServiceAccountBytes in interface ExecutionConfigOrBuilder
        Returns:
        The bytes for serviceAccount.
      • hasNetworkUri

        public boolean hasNetworkUri()
         Optional. Network URI to connect workload to.
         
        string network_uri = 4 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        hasNetworkUri in interface ExecutionConfigOrBuilder
        Returns:
        Whether the networkUri field is set.
      • getNetworkUri

        public String getNetworkUri()
         Optional. Network URI to connect workload to.
         
        string network_uri = 4 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getNetworkUri in interface ExecutionConfigOrBuilder
        Returns:
        The networkUri.
      • getNetworkUriBytes

        public com.google.protobuf.ByteString getNetworkUriBytes()
         Optional. Network URI to connect workload to.
         
        string network_uri = 4 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getNetworkUriBytes in interface ExecutionConfigOrBuilder
        Returns:
        The bytes for networkUri.
      • hasSubnetworkUri

        public boolean hasSubnetworkUri()
         Optional. Subnetwork URI to connect workload to.
         
        string subnetwork_uri = 5 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        hasSubnetworkUri in interface ExecutionConfigOrBuilder
        Returns:
        Whether the subnetworkUri field is set.
      • getSubnetworkUri

        public String getSubnetworkUri()
         Optional. Subnetwork URI to connect workload to.
         
        string subnetwork_uri = 5 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getSubnetworkUri in interface ExecutionConfigOrBuilder
        Returns:
        The subnetworkUri.
      • getSubnetworkUriBytes

        public com.google.protobuf.ByteString getSubnetworkUriBytes()
         Optional. Subnetwork URI to connect workload to.
         
        string subnetwork_uri = 5 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getSubnetworkUriBytes in interface ExecutionConfigOrBuilder
        Returns:
        The bytes for subnetworkUri.
      • getNetworkTagsList

        public com.google.protobuf.ProtocolStringList getNetworkTagsList()
         Optional. Tags used for network traffic control.
         
        repeated string network_tags = 6 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getNetworkTagsList in interface ExecutionConfigOrBuilder
        Returns:
        A list containing the networkTags.
      • getNetworkTagsCount

        public int getNetworkTagsCount()
         Optional. Tags used for network traffic control.
         
        repeated string network_tags = 6 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getNetworkTagsCount in interface ExecutionConfigOrBuilder
        Returns:
        The count of networkTags.
      • getNetworkTags

        public String getNetworkTags​(int index)
         Optional. Tags used for network traffic control.
         
        repeated string network_tags = 6 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getNetworkTags in interface ExecutionConfigOrBuilder
        Parameters:
        index - The index of the element to return.
        Returns:
        The networkTags at the given index.
      • getNetworkTagsBytes

        public com.google.protobuf.ByteString getNetworkTagsBytes​(int index)
         Optional. Tags used for network traffic control.
         
        repeated string network_tags = 6 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getNetworkTagsBytes in interface ExecutionConfigOrBuilder
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the networkTags at the given index.
      • getKmsKey

        public String getKmsKey()
         Optional. The Cloud KMS key to use for encryption.
         
        string kms_key = 7 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getKmsKey in interface ExecutionConfigOrBuilder
        Returns:
        The kmsKey.
      • getKmsKeyBytes

        public com.google.protobuf.ByteString getKmsKeyBytes()
         Optional. The Cloud KMS key to use for encryption.
         
        string kms_key = 7 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getKmsKeyBytes in interface ExecutionConfigOrBuilder
        Returns:
        The bytes for kmsKey.
      • hasTtl

        public boolean hasTtl()
         Optional. The duration after which the workload will be terminated.
         When the workload passes this ttl, it will be unconditionally killed
         without waiting for ongoing work to finish.
         Minimum value is 10 minutes; maximum value is 14 days (see JSON
         representation of
         [Duration](https://developers.google.com/protocol-buffers/docs/proto3#json)).
         If both ttl and idle_ttl are specified, the conditions are treated as
         and OR: the workload will be terminated when it has been idle for idle_ttl
         or when the ttl has passed, whichever comes first.
         If ttl is not specified for a session, it defaults to 24h.
         
        .google.protobuf.Duration ttl = 9 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        hasTtl in interface ExecutionConfigOrBuilder
        Returns:
        Whether the ttl field is set.
      • getTtl

        public com.google.protobuf.Duration getTtl()
         Optional. The duration after which the workload will be terminated.
         When the workload passes this ttl, it will be unconditionally killed
         without waiting for ongoing work to finish.
         Minimum value is 10 minutes; maximum value is 14 days (see JSON
         representation of
         [Duration](https://developers.google.com/protocol-buffers/docs/proto3#json)).
         If both ttl and idle_ttl are specified, the conditions are treated as
         and OR: the workload will be terminated when it has been idle for idle_ttl
         or when the ttl has passed, whichever comes first.
         If ttl is not specified for a session, it defaults to 24h.
         
        .google.protobuf.Duration ttl = 9 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getTtl in interface ExecutionConfigOrBuilder
        Returns:
        The ttl.
      • getTtlOrBuilder

        public com.google.protobuf.DurationOrBuilder getTtlOrBuilder()
         Optional. The duration after which the workload will be terminated.
         When the workload passes this ttl, it will be unconditionally killed
         without waiting for ongoing work to finish.
         Minimum value is 10 minutes; maximum value is 14 days (see JSON
         representation of
         [Duration](https://developers.google.com/protocol-buffers/docs/proto3#json)).
         If both ttl and idle_ttl are specified, the conditions are treated as
         and OR: the workload will be terminated when it has been idle for idle_ttl
         or when the ttl has passed, whichever comes first.
         If ttl is not specified for a session, it defaults to 24h.
         
        .google.protobuf.Duration ttl = 9 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getTtlOrBuilder in interface ExecutionConfigOrBuilder
      • getStagingBucket

        public String getStagingBucket()
         Optional. A Cloud Storage bucket used to stage workload dependencies,
         config files, and store workload output and other ephemeral data, such as
         Spark history files. If you do not specify a staging bucket, Cloud Dataproc
         will determine a Cloud Storage location according to the region where your
         workload is running, and then create and manage project-level, per-location
         staging and temporary buckets.
         **This field requires a Cloud Storage bucket name, not a `gs://...` URI to
         a Cloud Storage bucket.**
         
        string staging_bucket = 10 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getStagingBucket in interface ExecutionConfigOrBuilder
        Returns:
        The stagingBucket.
      • getStagingBucketBytes

        public com.google.protobuf.ByteString getStagingBucketBytes()
         Optional. A Cloud Storage bucket used to stage workload dependencies,
         config files, and store workload output and other ephemeral data, such as
         Spark history files. If you do not specify a staging bucket, Cloud Dataproc
         will determine a Cloud Storage location according to the region where your
         workload is running, and then create and manage project-level, per-location
         staging and temporary buckets.
         **This field requires a Cloud Storage bucket name, not a `gs://...` URI to
         a Cloud Storage bucket.**
         
        string staging_bucket = 10 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getStagingBucketBytes in interface ExecutionConfigOrBuilder
        Returns:
        The bytes for stagingBucket.
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessageV3
      • writeTo

        public void writeTo​(com.google.protobuf.CodedOutputStream output)
                     throws IOException
        Specified by:
        writeTo in interface com.google.protobuf.MessageLite
        Overrides:
        writeTo in class com.google.protobuf.GeneratedMessageV3
        Throws:
        IOException
      • getSerializedSize

        public int getSerializedSize()
        Specified by:
        getSerializedSize in interface com.google.protobuf.MessageLite
        Overrides:
        getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      • equals

        public boolean equals​(Object obj)
        Specified by:
        equals in interface com.google.protobuf.Message
        Overrides:
        equals in class com.google.protobuf.AbstractMessage
      • hashCode

        public int hashCode()
        Specified by:
        hashCode in interface com.google.protobuf.Message
        Overrides:
        hashCode in class com.google.protobuf.AbstractMessage
      • parseFrom

        public static ExecutionConfig parseFrom​(ByteBuffer data)
                                         throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static ExecutionConfig parseFrom​(ByteBuffer data,
                                                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                         throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static ExecutionConfig parseFrom​(com.google.protobuf.ByteString data)
                                         throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static ExecutionConfig parseFrom​(com.google.protobuf.ByteString data,
                                                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                         throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static ExecutionConfig parseFrom​(byte[] data)
                                         throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static ExecutionConfig parseFrom​(byte[] data,
                                                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                         throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static ExecutionConfig parseFrom​(com.google.protobuf.CodedInputStream input,
                                                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                         throws IOException
        Throws:
        IOException
      • newBuilderForType

        public ExecutionConfig.Builder newBuilderForType()
        Specified by:
        newBuilderForType in interface com.google.protobuf.Message
        Specified by:
        newBuilderForType in interface com.google.protobuf.MessageLite
      • toBuilder

        public ExecutionConfig.Builder toBuilder()
        Specified by:
        toBuilder in interface com.google.protobuf.Message
        Specified by:
        toBuilder in interface com.google.protobuf.MessageLite
      • newBuilderForType

        protected ExecutionConfig.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
        Specified by:
        newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      • parser

        public static com.google.protobuf.Parser<ExecutionConfig> parser()
      • getParserForType

        public com.google.protobuf.Parser<ExecutionConfig> getParserForType()
        Specified by:
        getParserForType in interface com.google.protobuf.Message
        Specified by:
        getParserForType in interface com.google.protobuf.MessageLite
        Overrides:
        getParserForType in class com.google.protobuf.GeneratedMessageV3
      • getDefaultInstanceForType

        public ExecutionConfig getDefaultInstanceForType()
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder