Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.dataproc/v1.Session
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Create an interactive session asynchronously.
Create Session Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Session(name: string, args: SessionArgs, opts?: CustomResourceOptions);@overload
def Session(resource_name: str,
            args: SessionArgs,
            opts: Optional[ResourceOptions] = None)
@overload
def Session(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            session_id: Optional[str] = None,
            environment_config: Optional[EnvironmentConfigArgs] = None,
            jupyter_session: Optional[JupyterConfigArgs] = None,
            labels: Optional[Mapping[str, str]] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            project: Optional[str] = None,
            request_id: Optional[str] = None,
            runtime_config: Optional[RuntimeConfigArgs] = None,
            session_template: Optional[str] = None,
            user: Optional[str] = None)func NewSession(ctx *Context, name string, args SessionArgs, opts ...ResourceOption) (*Session, error)public Session(string name, SessionArgs args, CustomResourceOptions? opts = null)
public Session(String name, SessionArgs args)
public Session(String name, SessionArgs args, CustomResourceOptions options)
type: google-native:dataproc/v1:Session
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SessionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SessionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SessionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SessionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SessionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var sessionResource = new GoogleNative.Dataproc.V1.Session("sessionResource", new()
{
    SessionId = "string",
    EnvironmentConfig = new GoogleNative.Dataproc.V1.Inputs.EnvironmentConfigArgs
    {
        ExecutionConfig = new GoogleNative.Dataproc.V1.Inputs.ExecutionConfigArgs
        {
            IdleTtl = "string",
            KmsKey = "string",
            NetworkTags = new[]
            {
                "string",
            },
            NetworkUri = "string",
            ServiceAccount = "string",
            StagingBucket = "string",
            SubnetworkUri = "string",
            Ttl = "string",
        },
        PeripheralsConfig = new GoogleNative.Dataproc.V1.Inputs.PeripheralsConfigArgs
        {
            MetastoreService = "string",
            SparkHistoryServerConfig = new GoogleNative.Dataproc.V1.Inputs.SparkHistoryServerConfigArgs
            {
                DataprocCluster = "string",
            },
        },
    },
    JupyterSession = new GoogleNative.Dataproc.V1.Inputs.JupyterConfigArgs
    {
        DisplayName = "string",
        Kernel = GoogleNative.Dataproc.V1.JupyterConfigKernel.KernelUnspecified,
    },
    Labels = 
    {
        { "string", "string" },
    },
    Location = "string",
    Name = "string",
    Project = "string",
    RequestId = "string",
    RuntimeConfig = new GoogleNative.Dataproc.V1.Inputs.RuntimeConfigArgs
    {
        ContainerImage = "string",
        Properties = 
        {
            { "string", "string" },
        },
        RepositoryConfig = new GoogleNative.Dataproc.V1.Inputs.RepositoryConfigArgs
        {
            PypiRepositoryConfig = new GoogleNative.Dataproc.V1.Inputs.PyPiRepositoryConfigArgs
            {
                PypiRepository = "string",
            },
        },
        Version = "string",
    },
    SessionTemplate = "string",
    User = "string",
});
example, err := dataproc.NewSession(ctx, "sessionResource", &dataproc.SessionArgs{
	SessionId: pulumi.String("string"),
	EnvironmentConfig: &dataproc.EnvironmentConfigArgs{
		ExecutionConfig: &dataproc.ExecutionConfigArgs{
			IdleTtl: pulumi.String("string"),
			KmsKey:  pulumi.String("string"),
			NetworkTags: pulumi.StringArray{
				pulumi.String("string"),
			},
			NetworkUri:     pulumi.String("string"),
			ServiceAccount: pulumi.String("string"),
			StagingBucket:  pulumi.String("string"),
			SubnetworkUri:  pulumi.String("string"),
			Ttl:            pulumi.String("string"),
		},
		PeripheralsConfig: &dataproc.PeripheralsConfigArgs{
			MetastoreService: pulumi.String("string"),
			SparkHistoryServerConfig: &dataproc.SparkHistoryServerConfigArgs{
				DataprocCluster: pulumi.String("string"),
			},
		},
	},
	JupyterSession: &dataproc.JupyterConfigArgs{
		DisplayName: pulumi.String("string"),
		Kernel:      dataproc.JupyterConfigKernelKernelUnspecified,
	},
	Labels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Location:  pulumi.String("string"),
	Name:      pulumi.String("string"),
	Project:   pulumi.String("string"),
	RequestId: pulumi.String("string"),
	RuntimeConfig: &dataproc.RuntimeConfigArgs{
		ContainerImage: pulumi.String("string"),
		Properties: pulumi.StringMap{
			"string": pulumi.String("string"),
		},
		RepositoryConfig: &dataproc.RepositoryConfigArgs{
			PypiRepositoryConfig: &dataproc.PyPiRepositoryConfigArgs{
				PypiRepository: pulumi.String("string"),
			},
		},
		Version: pulumi.String("string"),
	},
	SessionTemplate: pulumi.String("string"),
	User:            pulumi.String("string"),
})
var sessionResource = new Session("sessionResource", SessionArgs.builder()
    .sessionId("string")
    .environmentConfig(EnvironmentConfigArgs.builder()
        .executionConfig(ExecutionConfigArgs.builder()
            .idleTtl("string")
            .kmsKey("string")
            .networkTags("string")
            .networkUri("string")
            .serviceAccount("string")
            .stagingBucket("string")
            .subnetworkUri("string")
            .ttl("string")
            .build())
        .peripheralsConfig(PeripheralsConfigArgs.builder()
            .metastoreService("string")
            .sparkHistoryServerConfig(SparkHistoryServerConfigArgs.builder()
                .dataprocCluster("string")
                .build())
            .build())
        .build())
    .jupyterSession(JupyterConfigArgs.builder()
        .displayName("string")
        .kernel("KERNEL_UNSPECIFIED")
        .build())
    .labels(Map.of("string", "string"))
    .location("string")
    .name("string")
    .project("string")
    .requestId("string")
    .runtimeConfig(RuntimeConfigArgs.builder()
        .containerImage("string")
        .properties(Map.of("string", "string"))
        .repositoryConfig(RepositoryConfigArgs.builder()
            .pypiRepositoryConfig(PyPiRepositoryConfigArgs.builder()
                .pypiRepository("string")
                .build())
            .build())
        .version("string")
        .build())
    .sessionTemplate("string")
    .user("string")
    .build());
session_resource = google_native.dataproc.v1.Session("sessionResource",
    session_id="string",
    environment_config={
        "execution_config": {
            "idle_ttl": "string",
            "kms_key": "string",
            "network_tags": ["string"],
            "network_uri": "string",
            "service_account": "string",
            "staging_bucket": "string",
            "subnetwork_uri": "string",
            "ttl": "string",
        },
        "peripherals_config": {
            "metastore_service": "string",
            "spark_history_server_config": {
                "dataproc_cluster": "string",
            },
        },
    },
    jupyter_session={
        "display_name": "string",
        "kernel": google_native.dataproc.v1.JupyterConfigKernel.KERNEL_UNSPECIFIED,
    },
    labels={
        "string": "string",
    },
    location="string",
    name="string",
    project="string",
    request_id="string",
    runtime_config={
        "container_image": "string",
        "properties": {
            "string": "string",
        },
        "repository_config": {
            "pypi_repository_config": {
                "pypi_repository": "string",
            },
        },
        "version": "string",
    },
    session_template="string",
    user="string")
const sessionResource = new google_native.dataproc.v1.Session("sessionResource", {
    sessionId: "string",
    environmentConfig: {
        executionConfig: {
            idleTtl: "string",
            kmsKey: "string",
            networkTags: ["string"],
            networkUri: "string",
            serviceAccount: "string",
            stagingBucket: "string",
            subnetworkUri: "string",
            ttl: "string",
        },
        peripheralsConfig: {
            metastoreService: "string",
            sparkHistoryServerConfig: {
                dataprocCluster: "string",
            },
        },
    },
    jupyterSession: {
        displayName: "string",
        kernel: google_native.dataproc.v1.JupyterConfigKernel.KernelUnspecified,
    },
    labels: {
        string: "string",
    },
    location: "string",
    name: "string",
    project: "string",
    requestId: "string",
    runtimeConfig: {
        containerImage: "string",
        properties: {
            string: "string",
        },
        repositoryConfig: {
            pypiRepositoryConfig: {
                pypiRepository: "string",
            },
        },
        version: "string",
    },
    sessionTemplate: "string",
    user: "string",
});
type: google-native:dataproc/v1:Session
properties:
    environmentConfig:
        executionConfig:
            idleTtl: string
            kmsKey: string
            networkTags:
                - string
            networkUri: string
            serviceAccount: string
            stagingBucket: string
            subnetworkUri: string
            ttl: string
        peripheralsConfig:
            metastoreService: string
            sparkHistoryServerConfig:
                dataprocCluster: string
    jupyterSession:
        displayName: string
        kernel: KERNEL_UNSPECIFIED
    labels:
        string: string
    location: string
    name: string
    project: string
    requestId: string
    runtimeConfig:
        containerImage: string
        properties:
            string: string
        repositoryConfig:
            pypiRepositoryConfig:
                pypiRepository: string
        version: string
    sessionId: string
    sessionTemplate: string
    user: string
Session Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Session resource accepts the following input properties:
- SessionId string
- Required. The ID to use for the session, which becomes the final component of the session's resource name.This value must be 4-63 characters. Valid characters are /a-z-/.
- EnvironmentConfig Pulumi.Google Native. Dataproc. V1. Inputs. Environment Config 
- Optional. Environment configuration for the session execution.
- JupyterSession Pulumi.Google Native. Dataproc. V1. Inputs. Jupyter Config 
- Optional. Jupyter session config.
- Labels Dictionary<string, string>
- Optional. The labels to associate with the session. Label keys must contain 1 to 63 characters, and must conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). Label values may be empty, but, if present, must contain 1 to 63 characters, and must conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a session.
- Location string
- Name string
- The resource name of the session.
- Project string
- RequestId string
- Optional. A unique ID used to identify the request. If the service receives two CreateSessionRequests (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#google.cloud.dataproc.v1.CreateSessionRequest)s with the same ID, the second request is ignored, and the first Session is created and stored in the backend.Recommendation: Set this value to a UUID (https://en.wikipedia.org/wiki/Universally_unique_identifier).The value must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
- RuntimeConfig Pulumi.Google Native. Dataproc. V1. Inputs. Runtime Config 
- Optional. Runtime configuration for the session execution.
- SessionTemplate string
- Optional. The session template used by the session.Only resource names, including project ID and location, are valid.Example: * https://www.googleapis.com/compute/v1/projects/[project_id]/locations/[dataproc_region]/sessionTemplates/[template_id] * projects/[project_id]/locations/[dataproc_region]/sessionTemplates/[template_id]The template must be in the same project and Dataproc region as the session.
- User string
- Optional. The email address of the user who owns the session.
- SessionId string
- Required. The ID to use for the session, which becomes the final component of the session's resource name.This value must be 4-63 characters. Valid characters are /a-z-/.
- EnvironmentConfig EnvironmentConfig Args 
- Optional. Environment configuration for the session execution.
- JupyterSession JupyterConfig Args 
- Optional. Jupyter session config.
- Labels map[string]string
- Optional. The labels to associate with the session. Label keys must contain 1 to 63 characters, and must conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). Label values may be empty, but, if present, must contain 1 to 63 characters, and must conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a session.
- Location string
- Name string
- The resource name of the session.
- Project string
- RequestId string
- Optional. A unique ID used to identify the request. If the service receives two CreateSessionRequests (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#google.cloud.dataproc.v1.CreateSessionRequest)s with the same ID, the second request is ignored, and the first Session is created and stored in the backend.Recommendation: Set this value to a UUID (https://en.wikipedia.org/wiki/Universally_unique_identifier).The value must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
- RuntimeConfig RuntimeConfig Args 
- Optional. Runtime configuration for the session execution.
- SessionTemplate string
- Optional. The session template used by the session.Only resource names, including project ID and location, are valid.Example: * https://www.googleapis.com/compute/v1/projects/[project_id]/locations/[dataproc_region]/sessionTemplates/[template_id] * projects/[project_id]/locations/[dataproc_region]/sessionTemplates/[template_id]The template must be in the same project and Dataproc region as the session.
- User string
- Optional. The email address of the user who owns the session.
- sessionId String
- Required. The ID to use for the session, which becomes the final component of the session's resource name.This value must be 4-63 characters. Valid characters are /a-z-/.
- environmentConfig EnvironmentConfig 
- Optional. Environment configuration for the session execution.
- jupyterSession JupyterConfig 
- Optional. Jupyter session config.
- labels Map<String,String>
- Optional. The labels to associate with the session. Label keys must contain 1 to 63 characters, and must conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). Label values may be empty, but, if present, must contain 1 to 63 characters, and must conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a session.
- location String
- name String
- The resource name of the session.
- project String
- requestId String
- Optional. A unique ID used to identify the request. If the service receives two CreateSessionRequests (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#google.cloud.dataproc.v1.CreateSessionRequest)s with the same ID, the second request is ignored, and the first Session is created and stored in the backend.Recommendation: Set this value to a UUID (https://en.wikipedia.org/wiki/Universally_unique_identifier).The value must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
- runtimeConfig RuntimeConfig 
- Optional. Runtime configuration for the session execution.
- sessionTemplate String
- Optional. The session template used by the session.Only resource names, including project ID and location, are valid.Example: * https://www.googleapis.com/compute/v1/projects/[project_id]/locations/[dataproc_region]/sessionTemplates/[template_id] * projects/[project_id]/locations/[dataproc_region]/sessionTemplates/[template_id]The template must be in the same project and Dataproc region as the session.
- user String
- Optional. The email address of the user who owns the session.
- sessionId string
- Required. The ID to use for the session, which becomes the final component of the session's resource name.This value must be 4-63 characters. Valid characters are /a-z-/.
- environmentConfig EnvironmentConfig 
- Optional. Environment configuration for the session execution.
- jupyterSession JupyterConfig 
- Optional. Jupyter session config.
- labels {[key: string]: string}
- Optional. The labels to associate with the session. Label keys must contain 1 to 63 characters, and must conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). Label values may be empty, but, if present, must contain 1 to 63 characters, and must conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a session.
- location string
- name string
- The resource name of the session.
- project string
- requestId string
- Optional. A unique ID used to identify the request. If the service receives two CreateSessionRequests (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#google.cloud.dataproc.v1.CreateSessionRequest)s with the same ID, the second request is ignored, and the first Session is created and stored in the backend.Recommendation: Set this value to a UUID (https://en.wikipedia.org/wiki/Universally_unique_identifier).The value must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
- runtimeConfig RuntimeConfig 
- Optional. Runtime configuration for the session execution.
- sessionTemplate string
- Optional. The session template used by the session.Only resource names, including project ID and location, are valid.Example: * https://www.googleapis.com/compute/v1/projects/[project_id]/locations/[dataproc_region]/sessionTemplates/[template_id] * projects/[project_id]/locations/[dataproc_region]/sessionTemplates/[template_id]The template must be in the same project and Dataproc region as the session.
- user string
- Optional. The email address of the user who owns the session.
- session_id str
- Required. The ID to use for the session, which becomes the final component of the session's resource name.This value must be 4-63 characters. Valid characters are /a-z-/.
- environment_config EnvironmentConfig Args 
- Optional. Environment configuration for the session execution.
- jupyter_session JupyterConfig Args 
- Optional. Jupyter session config.
- labels Mapping[str, str]
- Optional. The labels to associate with the session. Label keys must contain 1 to 63 characters, and must conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). Label values may be empty, but, if present, must contain 1 to 63 characters, and must conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a session.
- location str
- name str
- The resource name of the session.
- project str
- request_id str
- Optional. A unique ID used to identify the request. If the service receives two CreateSessionRequests (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#google.cloud.dataproc.v1.CreateSessionRequest)s with the same ID, the second request is ignored, and the first Session is created and stored in the backend.Recommendation: Set this value to a UUID (https://en.wikipedia.org/wiki/Universally_unique_identifier).The value must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
- runtime_config RuntimeConfig Args 
- Optional. Runtime configuration for the session execution.
- session_template str
- Optional. The session template used by the session.Only resource names, including project ID and location, are valid.Example: * https://www.googleapis.com/compute/v1/projects/[project_id]/locations/[dataproc_region]/sessionTemplates/[template_id] * projects/[project_id]/locations/[dataproc_region]/sessionTemplates/[template_id]The template must be in the same project and Dataproc region as the session.
- user str
- Optional. The email address of the user who owns the session.
- sessionId String
- Required. The ID to use for the session, which becomes the final component of the session's resource name.This value must be 4-63 characters. Valid characters are /a-z-/.
- environmentConfig Property Map
- Optional. Environment configuration for the session execution.
- jupyterSession Property Map
- Optional. Jupyter session config.
- labels Map<String>
- Optional. The labels to associate with the session. Label keys must contain 1 to 63 characters, and must conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). Label values may be empty, but, if present, must contain 1 to 63 characters, and must conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a session.
- location String
- name String
- The resource name of the session.
- project String
- requestId String
- Optional. A unique ID used to identify the request. If the service receives two CreateSessionRequests (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#google.cloud.dataproc.v1.CreateSessionRequest)s with the same ID, the second request is ignored, and the first Session is created and stored in the backend.Recommendation: Set this value to a UUID (https://en.wikipedia.org/wiki/Universally_unique_identifier).The value must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
- runtimeConfig Property Map
- Optional. Runtime configuration for the session execution.
- sessionTemplate String
- Optional. The session template used by the session.Only resource names, including project ID and location, are valid.Example: * https://www.googleapis.com/compute/v1/projects/[project_id]/locations/[dataproc_region]/sessionTemplates/[template_id] * projects/[project_id]/locations/[dataproc_region]/sessionTemplates/[template_id]The template must be in the same project and Dataproc region as the session.
- user String
- Optional. The email address of the user who owns the session.
Outputs
All input properties are implicitly available as output properties. Additionally, the Session resource produces the following output properties:
- CreateTime string
- The time when the session was created.
- Creator string
- The email address of the user who created the session.
- Id string
- The provider-assigned unique ID for this managed resource.
- RuntimeInfo Pulumi.Google Native. Dataproc. V1. Outputs. Runtime Info Response 
- Runtime information about session execution.
- State string
- A state of the session.
- StateHistory List<Pulumi.Google Native. Dataproc. V1. Outputs. Session State History Response> 
- Historical state information for the session.
- StateMessage string
- Session state details, such as the failure description if the state is FAILED.
- StateTime string
- The time when the session entered the current state.
- Uuid string
- A session UUID (Unique Universal Identifier). The service generates this value when it creates the session.
- CreateTime string
- The time when the session was created.
- Creator string
- The email address of the user who created the session.
- Id string
- The provider-assigned unique ID for this managed resource.
- RuntimeInfo RuntimeInfo Response 
- Runtime information about session execution.
- State string
- A state of the session.
- StateHistory []SessionState History Response 
- Historical state information for the session.
- StateMessage string
- Session state details, such as the failure description if the state is FAILED.
- StateTime string
- The time when the session entered the current state.
- Uuid string
- A session UUID (Unique Universal Identifier). The service generates this value when it creates the session.
- createTime String
- The time when the session was created.
- creator String
- The email address of the user who created the session.
- id String
- The provider-assigned unique ID for this managed resource.
- runtimeInfo RuntimeInfo Response 
- Runtime information about session execution.
- state String
- A state of the session.
- stateHistory List<SessionState History Response> 
- Historical state information for the session.
- stateMessage String
- Session state details, such as the failure description if the state is FAILED.
- stateTime String
- The time when the session entered the current state.
- uuid String
- A session UUID (Unique Universal Identifier). The service generates this value when it creates the session.
- createTime string
- The time when the session was created.
- creator string
- The email address of the user who created the session.
- id string
- The provider-assigned unique ID for this managed resource.
- runtimeInfo RuntimeInfo Response 
- Runtime information about session execution.
- state string
- A state of the session.
- stateHistory SessionState History Response[] 
- Historical state information for the session.
- stateMessage string
- Session state details, such as the failure description if the state is FAILED.
- stateTime string
- The time when the session entered the current state.
- uuid string
- A session UUID (Unique Universal Identifier). The service generates this value when it creates the session.
- create_time str
- The time when the session was created.
- creator str
- The email address of the user who created the session.
- id str
- The provider-assigned unique ID for this managed resource.
- runtime_info RuntimeInfo Response 
- Runtime information about session execution.
- state str
- A state of the session.
- state_history Sequence[SessionState History Response] 
- Historical state information for the session.
- state_message str
- Session state details, such as the failure description if the state is FAILED.
- state_time str
- The time when the session entered the current state.
- uuid str
- A session UUID (Unique Universal Identifier). The service generates this value when it creates the session.
- createTime String
- The time when the session was created.
- creator String
- The email address of the user who created the session.
- id String
- The provider-assigned unique ID for this managed resource.
- runtimeInfo Property Map
- Runtime information about session execution.
- state String
- A state of the session.
- stateHistory List<Property Map>
- Historical state information for the session.
- stateMessage String
- Session state details, such as the failure description if the state is FAILED.
- stateTime String
- The time when the session entered the current state.
- uuid String
- A session UUID (Unique Universal Identifier). The service generates this value when it creates the session.
Supporting Types
EnvironmentConfig, EnvironmentConfigArgs    
- ExecutionConfig Pulumi.Google Native. Dataproc. V1. Inputs. Execution Config 
- Optional. Execution configuration for a workload.
- PeripheralsConfig Pulumi.Google Native. Dataproc. V1. Inputs. Peripherals Config 
- Optional. Peripherals configuration that workload has access to.
- ExecutionConfig ExecutionConfig 
- Optional. Execution configuration for a workload.
- PeripheralsConfig PeripheralsConfig 
- Optional. Peripherals configuration that workload has access to.
- executionConfig ExecutionConfig 
- Optional. Execution configuration for a workload.
- peripheralsConfig PeripheralsConfig 
- Optional. Peripherals configuration that workload has access to.
- executionConfig ExecutionConfig 
- Optional. Execution configuration for a workload.
- peripheralsConfig PeripheralsConfig 
- Optional. Peripherals configuration that workload has access to.
- execution_config ExecutionConfig 
- Optional. Execution configuration for a workload.
- peripherals_config PeripheralsConfig 
- Optional. Peripherals configuration that workload has access to.
- executionConfig Property Map
- Optional. Execution configuration for a workload.
- peripheralsConfig Property Map
- Optional. Peripherals configuration that workload has access to.
EnvironmentConfigResponse, EnvironmentConfigResponseArgs      
- ExecutionConfig Pulumi.Google Native. Dataproc. V1. Inputs. Execution Config Response 
- Optional. Execution configuration for a workload.
- PeripheralsConfig Pulumi.Google Native. Dataproc. V1. Inputs. Peripherals Config Response 
- Optional. Peripherals configuration that workload has access to.
- ExecutionConfig ExecutionConfig Response 
- Optional. Execution configuration for a workload.
- PeripheralsConfig PeripheralsConfig Response 
- Optional. Peripherals configuration that workload has access to.
- executionConfig ExecutionConfig Response 
- Optional. Execution configuration for a workload.
- peripheralsConfig PeripheralsConfig Response 
- Optional. Peripherals configuration that workload has access to.
- executionConfig ExecutionConfig Response 
- Optional. Execution configuration for a workload.
- peripheralsConfig PeripheralsConfig Response 
- Optional. Peripherals configuration that workload has access to.
- execution_config ExecutionConfig Response 
- Optional. Execution configuration for a workload.
- peripherals_config PeripheralsConfig Response 
- Optional. Peripherals configuration that workload has access to.
- executionConfig Property Map
- Optional. Execution configuration for a workload.
- peripheralsConfig Property Map
- Optional. Peripherals configuration that workload has access to.
ExecutionConfig, ExecutionConfigArgs    
- IdleTtl string
- Optional. Applies to sessions only. The duration to keep the session alive while it's idling. Exceeding this threshold causes the session to terminate. This field cannot be set on a batch workload. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 1 hour if not set. If both ttl and idle_ttl are specified for an interactive session, the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- KmsKey string
- Optional. The Cloud KMS key to use for encryption.
- List<string>
- Optional. Tags used for network traffic control.
- NetworkUri string
- Optional. Network URI to connect workload to.
- ServiceAccount string
- Optional. Service account that used to execute workload.
- StagingBucket string
- 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.
- SubnetworkUri string
- Optional. Subnetwork URI to connect workload to.
- Ttl string
- Optional. The duration after which the workload will be terminated, specified as the JSON representation for Duration (https://protobuf.dev/programming-guides/proto3/#json). When the workload exceeds this duration, it will be unconditionally terminated without waiting for ongoing work to finish. If ttl is not specified for a batch workload, the workload will be allowed to run until it exits naturally (or run forever without exiting). If ttl is not specified for an interactive session, it defaults to 24 hours. If ttl is not specified for a batch that uses 2.1+ runtime version, it defaults to 4 hours. Minimum value is 10 minutes; maximum value is 14 days. If both ttl and idle_ttl are specified (for an interactive session), the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- IdleTtl string
- Optional. Applies to sessions only. The duration to keep the session alive while it's idling. Exceeding this threshold causes the session to terminate. This field cannot be set on a batch workload. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 1 hour if not set. If both ttl and idle_ttl are specified for an interactive session, the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- KmsKey string
- Optional. The Cloud KMS key to use for encryption.
- []string
- Optional. Tags used for network traffic control.
- NetworkUri string
- Optional. Network URI to connect workload to.
- ServiceAccount string
- Optional. Service account that used to execute workload.
- StagingBucket string
- 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.
- SubnetworkUri string
- Optional. Subnetwork URI to connect workload to.
- Ttl string
- Optional. The duration after which the workload will be terminated, specified as the JSON representation for Duration (https://protobuf.dev/programming-guides/proto3/#json). When the workload exceeds this duration, it will be unconditionally terminated without waiting for ongoing work to finish. If ttl is not specified for a batch workload, the workload will be allowed to run until it exits naturally (or run forever without exiting). If ttl is not specified for an interactive session, it defaults to 24 hours. If ttl is not specified for a batch that uses 2.1+ runtime version, it defaults to 4 hours. Minimum value is 10 minutes; maximum value is 14 days. If both ttl and idle_ttl are specified (for an interactive session), the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- idleTtl String
- Optional. Applies to sessions only. The duration to keep the session alive while it's idling. Exceeding this threshold causes the session to terminate. This field cannot be set on a batch workload. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 1 hour if not set. If both ttl and idle_ttl are specified for an interactive session, the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- kmsKey String
- Optional. The Cloud KMS key to use for encryption.
- List<String>
- Optional. Tags used for network traffic control.
- networkUri String
- Optional. Network URI to connect workload to.
- serviceAccount String
- Optional. Service account that used to execute workload.
- stagingBucket String
- 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.
- subnetworkUri String
- Optional. Subnetwork URI to connect workload to.
- ttl String
- Optional. The duration after which the workload will be terminated, specified as the JSON representation for Duration (https://protobuf.dev/programming-guides/proto3/#json). When the workload exceeds this duration, it will be unconditionally terminated without waiting for ongoing work to finish. If ttl is not specified for a batch workload, the workload will be allowed to run until it exits naturally (or run forever without exiting). If ttl is not specified for an interactive session, it defaults to 24 hours. If ttl is not specified for a batch that uses 2.1+ runtime version, it defaults to 4 hours. Minimum value is 10 minutes; maximum value is 14 days. If both ttl and idle_ttl are specified (for an interactive session), the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- idleTtl string
- Optional. Applies to sessions only. The duration to keep the session alive while it's idling. Exceeding this threshold causes the session to terminate. This field cannot be set on a batch workload. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 1 hour if not set. If both ttl and idle_ttl are specified for an interactive session, the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- kmsKey string
- Optional. The Cloud KMS key to use for encryption.
- string[]
- Optional. Tags used for network traffic control.
- networkUri string
- Optional. Network URI to connect workload to.
- serviceAccount string
- Optional. Service account that used to execute workload.
- stagingBucket string
- 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.
- subnetworkUri string
- Optional. Subnetwork URI to connect workload to.
- ttl string
- Optional. The duration after which the workload will be terminated, specified as the JSON representation for Duration (https://protobuf.dev/programming-guides/proto3/#json). When the workload exceeds this duration, it will be unconditionally terminated without waiting for ongoing work to finish. If ttl is not specified for a batch workload, the workload will be allowed to run until it exits naturally (or run forever without exiting). If ttl is not specified for an interactive session, it defaults to 24 hours. If ttl is not specified for a batch that uses 2.1+ runtime version, it defaults to 4 hours. Minimum value is 10 minutes; maximum value is 14 days. If both ttl and idle_ttl are specified (for an interactive session), the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- idle_ttl str
- Optional. Applies to sessions only. The duration to keep the session alive while it's idling. Exceeding this threshold causes the session to terminate. This field cannot be set on a batch workload. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 1 hour if not set. If both ttl and idle_ttl are specified for an interactive session, the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- kms_key str
- Optional. The Cloud KMS key to use for encryption.
- Sequence[str]
- Optional. Tags used for network traffic control.
- network_uri str
- Optional. Network URI to connect workload to.
- service_account str
- Optional. Service account that used to execute workload.
- staging_bucket str
- 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.
- subnetwork_uri str
- Optional. Subnetwork URI to connect workload to.
- ttl str
- Optional. The duration after which the workload will be terminated, specified as the JSON representation for Duration (https://protobuf.dev/programming-guides/proto3/#json). When the workload exceeds this duration, it will be unconditionally terminated without waiting for ongoing work to finish. If ttl is not specified for a batch workload, the workload will be allowed to run until it exits naturally (or run forever without exiting). If ttl is not specified for an interactive session, it defaults to 24 hours. If ttl is not specified for a batch that uses 2.1+ runtime version, it defaults to 4 hours. Minimum value is 10 minutes; maximum value is 14 days. If both ttl and idle_ttl are specified (for an interactive session), the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- idleTtl String
- Optional. Applies to sessions only. The duration to keep the session alive while it's idling. Exceeding this threshold causes the session to terminate. This field cannot be set on a batch workload. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 1 hour if not set. If both ttl and idle_ttl are specified for an interactive session, the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- kmsKey String
- Optional. The Cloud KMS key to use for encryption.
- List<String>
- Optional. Tags used for network traffic control.
- networkUri String
- Optional. Network URI to connect workload to.
- serviceAccount String
- Optional. Service account that used to execute workload.
- stagingBucket String
- 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.
- subnetworkUri String
- Optional. Subnetwork URI to connect workload to.
- ttl String
- Optional. The duration after which the workload will be terminated, specified as the JSON representation for Duration (https://protobuf.dev/programming-guides/proto3/#json). When the workload exceeds this duration, it will be unconditionally terminated without waiting for ongoing work to finish. If ttl is not specified for a batch workload, the workload will be allowed to run until it exits naturally (or run forever without exiting). If ttl is not specified for an interactive session, it defaults to 24 hours. If ttl is not specified for a batch that uses 2.1+ runtime version, it defaults to 4 hours. Minimum value is 10 minutes; maximum value is 14 days. If both ttl and idle_ttl are specified (for an interactive session), the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
ExecutionConfigResponse, ExecutionConfigResponseArgs      
- IdleTtl string
- Optional. Applies to sessions only. The duration to keep the session alive while it's idling. Exceeding this threshold causes the session to terminate. This field cannot be set on a batch workload. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 1 hour if not set. If both ttl and idle_ttl are specified for an interactive session, the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- KmsKey string
- Optional. The Cloud KMS key to use for encryption.
- List<string>
- Optional. Tags used for network traffic control.
- NetworkUri string
- Optional. Network URI to connect workload to.
- ServiceAccount string
- Optional. Service account that used to execute workload.
- StagingBucket string
- 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.
- SubnetworkUri string
- Optional. Subnetwork URI to connect workload to.
- Ttl string
- Optional. The duration after which the workload will be terminated, specified as the JSON representation for Duration (https://protobuf.dev/programming-guides/proto3/#json). When the workload exceeds this duration, it will be unconditionally terminated without waiting for ongoing work to finish. If ttl is not specified for a batch workload, the workload will be allowed to run until it exits naturally (or run forever without exiting). If ttl is not specified for an interactive session, it defaults to 24 hours. If ttl is not specified for a batch that uses 2.1+ runtime version, it defaults to 4 hours. Minimum value is 10 minutes; maximum value is 14 days. If both ttl and idle_ttl are specified (for an interactive session), the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- IdleTtl string
- Optional. Applies to sessions only. The duration to keep the session alive while it's idling. Exceeding this threshold causes the session to terminate. This field cannot be set on a batch workload. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 1 hour if not set. If both ttl and idle_ttl are specified for an interactive session, the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- KmsKey string
- Optional. The Cloud KMS key to use for encryption.
- []string
- Optional. Tags used for network traffic control.
- NetworkUri string
- Optional. Network URI to connect workload to.
- ServiceAccount string
- Optional. Service account that used to execute workload.
- StagingBucket string
- 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.
- SubnetworkUri string
- Optional. Subnetwork URI to connect workload to.
- Ttl string
- Optional. The duration after which the workload will be terminated, specified as the JSON representation for Duration (https://protobuf.dev/programming-guides/proto3/#json). When the workload exceeds this duration, it will be unconditionally terminated without waiting for ongoing work to finish. If ttl is not specified for a batch workload, the workload will be allowed to run until it exits naturally (or run forever without exiting). If ttl is not specified for an interactive session, it defaults to 24 hours. If ttl is not specified for a batch that uses 2.1+ runtime version, it defaults to 4 hours. Minimum value is 10 minutes; maximum value is 14 days. If both ttl and idle_ttl are specified (for an interactive session), the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- idleTtl String
- Optional. Applies to sessions only. The duration to keep the session alive while it's idling. Exceeding this threshold causes the session to terminate. This field cannot be set on a batch workload. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 1 hour if not set. If both ttl and idle_ttl are specified for an interactive session, the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- kmsKey String
- Optional. The Cloud KMS key to use for encryption.
- List<String>
- Optional. Tags used for network traffic control.
- networkUri String
- Optional. Network URI to connect workload to.
- serviceAccount String
- Optional. Service account that used to execute workload.
- stagingBucket String
- 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.
- subnetworkUri String
- Optional. Subnetwork URI to connect workload to.
- ttl String
- Optional. The duration after which the workload will be terminated, specified as the JSON representation for Duration (https://protobuf.dev/programming-guides/proto3/#json). When the workload exceeds this duration, it will be unconditionally terminated without waiting for ongoing work to finish. If ttl is not specified for a batch workload, the workload will be allowed to run until it exits naturally (or run forever without exiting). If ttl is not specified for an interactive session, it defaults to 24 hours. If ttl is not specified for a batch that uses 2.1+ runtime version, it defaults to 4 hours. Minimum value is 10 minutes; maximum value is 14 days. If both ttl and idle_ttl are specified (for an interactive session), the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- idleTtl string
- Optional. Applies to sessions only. The duration to keep the session alive while it's idling. Exceeding this threshold causes the session to terminate. This field cannot be set on a batch workload. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 1 hour if not set. If both ttl and idle_ttl are specified for an interactive session, the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- kmsKey string
- Optional. The Cloud KMS key to use for encryption.
- string[]
- Optional. Tags used for network traffic control.
- networkUri string
- Optional. Network URI to connect workload to.
- serviceAccount string
- Optional. Service account that used to execute workload.
- stagingBucket string
- 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.
- subnetworkUri string
- Optional. Subnetwork URI to connect workload to.
- ttl string
- Optional. The duration after which the workload will be terminated, specified as the JSON representation for Duration (https://protobuf.dev/programming-guides/proto3/#json). When the workload exceeds this duration, it will be unconditionally terminated without waiting for ongoing work to finish. If ttl is not specified for a batch workload, the workload will be allowed to run until it exits naturally (or run forever without exiting). If ttl is not specified for an interactive session, it defaults to 24 hours. If ttl is not specified for a batch that uses 2.1+ runtime version, it defaults to 4 hours. Minimum value is 10 minutes; maximum value is 14 days. If both ttl and idle_ttl are specified (for an interactive session), the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- idle_ttl str
- Optional. Applies to sessions only. The duration to keep the session alive while it's idling. Exceeding this threshold causes the session to terminate. This field cannot be set on a batch workload. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 1 hour if not set. If both ttl and idle_ttl are specified for an interactive session, the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- kms_key str
- Optional. The Cloud KMS key to use for encryption.
- Sequence[str]
- Optional. Tags used for network traffic control.
- network_uri str
- Optional. Network URI to connect workload to.
- service_account str
- Optional. Service account that used to execute workload.
- staging_bucket str
- 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.
- subnetwork_uri str
- Optional. Subnetwork URI to connect workload to.
- ttl str
- Optional. The duration after which the workload will be terminated, specified as the JSON representation for Duration (https://protobuf.dev/programming-guides/proto3/#json). When the workload exceeds this duration, it will be unconditionally terminated without waiting for ongoing work to finish. If ttl is not specified for a batch workload, the workload will be allowed to run until it exits naturally (or run forever without exiting). If ttl is not specified for an interactive session, it defaults to 24 hours. If ttl is not specified for a batch that uses 2.1+ runtime version, it defaults to 4 hours. Minimum value is 10 minutes; maximum value is 14 days. If both ttl and idle_ttl are specified (for an interactive session), the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- idleTtl String
- Optional. Applies to sessions only. The duration to keep the session alive while it's idling. Exceeding this threshold causes the session to terminate. This field cannot be set on a batch workload. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 1 hour if not set. If both ttl and idle_ttl are specified for an interactive session, the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
- kmsKey String
- Optional. The Cloud KMS key to use for encryption.
- List<String>
- Optional. Tags used for network traffic control.
- networkUri String
- Optional. Network URI to connect workload to.
- serviceAccount String
- Optional. Service account that used to execute workload.
- stagingBucket String
- 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.
- subnetworkUri String
- Optional. Subnetwork URI to connect workload to.
- ttl String
- Optional. The duration after which the workload will be terminated, specified as the JSON representation for Duration (https://protobuf.dev/programming-guides/proto3/#json). When the workload exceeds this duration, it will be unconditionally terminated without waiting for ongoing work to finish. If ttl is not specified for a batch workload, the workload will be allowed to run until it exits naturally (or run forever without exiting). If ttl is not specified for an interactive session, it defaults to 24 hours. If ttl is not specified for a batch that uses 2.1+ runtime version, it defaults to 4 hours. Minimum value is 10 minutes; maximum value is 14 days. If both ttl and idle_ttl are specified (for an interactive session), the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
JupyterConfig, JupyterConfigArgs    
- DisplayName string
- Optional. Display name, shown in the Jupyter kernelspec card.
- Kernel
Pulumi.Google Native. Dataproc. V1. Jupyter Config Kernel 
- Optional. Kernel
- DisplayName string
- Optional. Display name, shown in the Jupyter kernelspec card.
- Kernel
JupyterConfig Kernel 
- Optional. Kernel
- displayName String
- Optional. Display name, shown in the Jupyter kernelspec card.
- kernel
JupyterConfig Kernel 
- Optional. Kernel
- displayName string
- Optional. Display name, shown in the Jupyter kernelspec card.
- kernel
JupyterConfig Kernel 
- Optional. Kernel
- display_name str
- Optional. Display name, shown in the Jupyter kernelspec card.
- kernel
JupyterConfig Kernel 
- Optional. Kernel
- displayName String
- Optional. Display name, shown in the Jupyter kernelspec card.
- kernel "KERNEL_UNSPECIFIED" | "PYTHON" | "SCALA"
- Optional. Kernel
JupyterConfigKernel, JupyterConfigKernelArgs      
- KernelUnspecified 
- KERNEL_UNSPECIFIEDThe kernel is unknown.
- Python
- PYTHONPython kernel.
- Scala
- SCALAScala kernel.
- JupyterConfig Kernel Kernel Unspecified 
- KERNEL_UNSPECIFIEDThe kernel is unknown.
- JupyterConfig Kernel Python 
- PYTHONPython kernel.
- JupyterConfig Kernel Scala 
- SCALAScala kernel.
- KernelUnspecified 
- KERNEL_UNSPECIFIEDThe kernel is unknown.
- Python
- PYTHONPython kernel.
- Scala
- SCALAScala kernel.
- KernelUnspecified 
- KERNEL_UNSPECIFIEDThe kernel is unknown.
- Python
- PYTHONPython kernel.
- Scala
- SCALAScala kernel.
- KERNEL_UNSPECIFIED
- KERNEL_UNSPECIFIEDThe kernel is unknown.
- PYTHON
- PYTHONPython kernel.
- SCALA
- SCALAScala kernel.
- "KERNEL_UNSPECIFIED"
- KERNEL_UNSPECIFIEDThe kernel is unknown.
- "PYTHON"
- PYTHONPython kernel.
- "SCALA"
- SCALAScala kernel.
JupyterConfigResponse, JupyterConfigResponseArgs      
- DisplayName string
- Optional. Display name, shown in the Jupyter kernelspec card.
- Kernel string
- Optional. Kernel
- DisplayName string
- Optional. Display name, shown in the Jupyter kernelspec card.
- Kernel string
- Optional. Kernel
- displayName String
- Optional. Display name, shown in the Jupyter kernelspec card.
- kernel String
- Optional. Kernel
- displayName string
- Optional. Display name, shown in the Jupyter kernelspec card.
- kernel string
- Optional. Kernel
- display_name str
- Optional. Display name, shown in the Jupyter kernelspec card.
- kernel str
- Optional. Kernel
- displayName String
- Optional. Display name, shown in the Jupyter kernelspec card.
- kernel String
- Optional. Kernel
PeripheralsConfig, PeripheralsConfigArgs    
- MetastoreService string
- Optional. Resource name of an existing Dataproc Metastore service.Example: projects/[project_id]/locations/[region]/services/[service_id]
- SparkHistory Pulumi.Server Config Google Native. Dataproc. V1. Inputs. Spark History Server Config 
- Optional. The Spark History Server configuration for the workload.
- MetastoreService string
- Optional. Resource name of an existing Dataproc Metastore service.Example: projects/[project_id]/locations/[region]/services/[service_id]
- SparkHistory SparkServer Config History Server Config 
- Optional. The Spark History Server configuration for the workload.
- metastoreService String
- Optional. Resource name of an existing Dataproc Metastore service.Example: projects/[project_id]/locations/[region]/services/[service_id]
- sparkHistory SparkServer Config History Server Config 
- Optional. The Spark History Server configuration for the workload.
- metastoreService string
- Optional. Resource name of an existing Dataproc Metastore service.Example: projects/[project_id]/locations/[region]/services/[service_id]
- sparkHistory SparkServer Config History Server Config 
- Optional. The Spark History Server configuration for the workload.
- metastore_service str
- Optional. Resource name of an existing Dataproc Metastore service.Example: projects/[project_id]/locations/[region]/services/[service_id]
- spark_history_ Sparkserver_ config History Server Config 
- Optional. The Spark History Server configuration for the workload.
- metastoreService String
- Optional. Resource name of an existing Dataproc Metastore service.Example: projects/[project_id]/locations/[region]/services/[service_id]
- sparkHistory Property MapServer Config 
- Optional. The Spark History Server configuration for the workload.
PeripheralsConfigResponse, PeripheralsConfigResponseArgs      
- MetastoreService string
- Optional. Resource name of an existing Dataproc Metastore service.Example: projects/[project_id]/locations/[region]/services/[service_id]
- SparkHistory Pulumi.Server Config Google Native. Dataproc. V1. Inputs. Spark History Server Config Response 
- Optional. The Spark History Server configuration for the workload.
- MetastoreService string
- Optional. Resource name of an existing Dataproc Metastore service.Example: projects/[project_id]/locations/[region]/services/[service_id]
- SparkHistory SparkServer Config History Server Config Response 
- Optional. The Spark History Server configuration for the workload.
- metastoreService String
- Optional. Resource name of an existing Dataproc Metastore service.Example: projects/[project_id]/locations/[region]/services/[service_id]
- sparkHistory SparkServer Config History Server Config Response 
- Optional. The Spark History Server configuration for the workload.
- metastoreService string
- Optional. Resource name of an existing Dataproc Metastore service.Example: projects/[project_id]/locations/[region]/services/[service_id]
- sparkHistory SparkServer Config History Server Config Response 
- Optional. The Spark History Server configuration for the workload.
- metastore_service str
- Optional. Resource name of an existing Dataproc Metastore service.Example: projects/[project_id]/locations/[region]/services/[service_id]
- spark_history_ Sparkserver_ config History Server Config Response 
- Optional. The Spark History Server configuration for the workload.
- metastoreService String
- Optional. Resource name of an existing Dataproc Metastore service.Example: projects/[project_id]/locations/[region]/services/[service_id]
- sparkHistory Property MapServer Config 
- Optional. The Spark History Server configuration for the workload.
PyPiRepositoryConfig, PyPiRepositoryConfigArgs        
- PypiRepository string
- Optional. PyPi repository address
- PypiRepository string
- Optional. PyPi repository address
- pypiRepository String
- Optional. PyPi repository address
- pypiRepository string
- Optional. PyPi repository address
- pypi_repository str
- Optional. PyPi repository address
- pypiRepository String
- Optional. PyPi repository address
PyPiRepositoryConfigResponse, PyPiRepositoryConfigResponseArgs          
- PypiRepository string
- Optional. PyPi repository address
- PypiRepository string
- Optional. PyPi repository address
- pypiRepository String
- Optional. PyPi repository address
- pypiRepository string
- Optional. PyPi repository address
- pypi_repository str
- Optional. PyPi repository address
- pypiRepository String
- Optional. PyPi repository address
RepositoryConfig, RepositoryConfigArgs    
- PypiRepository Pulumi.Config Google Native. Dataproc. V1. Inputs. Py Pi Repository Config 
- Optional. Configuration for PyPi repository.
- PypiRepository PyConfig Pi Repository Config 
- Optional. Configuration for PyPi repository.
- pypiRepository PyConfig Pi Repository Config 
- Optional. Configuration for PyPi repository.
- pypiRepository PyConfig Pi Repository Config 
- Optional. Configuration for PyPi repository.
- pypi_repository_ Pyconfig Pi Repository Config 
- Optional. Configuration for PyPi repository.
- pypiRepository Property MapConfig 
- Optional. Configuration for PyPi repository.
RepositoryConfigResponse, RepositoryConfigResponseArgs      
- PypiRepository Pulumi.Config Google Native. Dataproc. V1. Inputs. Py Pi Repository Config Response 
- Optional. Configuration for PyPi repository.
- PypiRepository PyConfig Pi Repository Config Response 
- Optional. Configuration for PyPi repository.
- pypiRepository PyConfig Pi Repository Config Response 
- Optional. Configuration for PyPi repository.
- pypiRepository PyConfig Pi Repository Config Response 
- Optional. Configuration for PyPi repository.
- pypi_repository_ Pyconfig Pi Repository Config Response 
- Optional. Configuration for PyPi repository.
- pypiRepository Property MapConfig 
- Optional. Configuration for PyPi repository.
RuntimeConfig, RuntimeConfigArgs    
- ContainerImage string
- Optional. Optional custom container image for the job runtime environment. If not specified, a default container image will be used.
- Properties Dictionary<string, string>
- Optional. A mapping of property names to values, which are used to configure workload execution.
- RepositoryConfig Pulumi.Google Native. Dataproc. V1. Inputs. Repository Config 
- Optional. Dependency repository configuration.
- Version string
- Optional. Version of the batch runtime.
- ContainerImage string
- Optional. Optional custom container image for the job runtime environment. If not specified, a default container image will be used.
- Properties map[string]string
- Optional. A mapping of property names to values, which are used to configure workload execution.
- RepositoryConfig RepositoryConfig 
- Optional. Dependency repository configuration.
- Version string
- Optional. Version of the batch runtime.
- containerImage String
- Optional. Optional custom container image for the job runtime environment. If not specified, a default container image will be used.
- properties Map<String,String>
- Optional. A mapping of property names to values, which are used to configure workload execution.
- repositoryConfig RepositoryConfig 
- Optional. Dependency repository configuration.
- version String
- Optional. Version of the batch runtime.
- containerImage string
- Optional. Optional custom container image for the job runtime environment. If not specified, a default container image will be used.
- properties {[key: string]: string}
- Optional. A mapping of property names to values, which are used to configure workload execution.
- repositoryConfig RepositoryConfig 
- Optional. Dependency repository configuration.
- version string
- Optional. Version of the batch runtime.
- container_image str
- Optional. Optional custom container image for the job runtime environment. If not specified, a default container image will be used.
- properties Mapping[str, str]
- Optional. A mapping of property names to values, which are used to configure workload execution.
- repository_config RepositoryConfig 
- Optional. Dependency repository configuration.
- version str
- Optional. Version of the batch runtime.
- containerImage String
- Optional. Optional custom container image for the job runtime environment. If not specified, a default container image will be used.
- properties Map<String>
- Optional. A mapping of property names to values, which are used to configure workload execution.
- repositoryConfig Property Map
- Optional. Dependency repository configuration.
- version String
- Optional. Version of the batch runtime.
RuntimeConfigResponse, RuntimeConfigResponseArgs      
- ContainerImage string
- Optional. Optional custom container image for the job runtime environment. If not specified, a default container image will be used.
- Properties Dictionary<string, string>
- Optional. A mapping of property names to values, which are used to configure workload execution.
- RepositoryConfig Pulumi.Google Native. Dataproc. V1. Inputs. Repository Config Response 
- Optional. Dependency repository configuration.
- Version string
- Optional. Version of the batch runtime.
- ContainerImage string
- Optional. Optional custom container image for the job runtime environment. If not specified, a default container image will be used.
- Properties map[string]string
- Optional. A mapping of property names to values, which are used to configure workload execution.
- RepositoryConfig RepositoryConfig Response 
- Optional. Dependency repository configuration.
- Version string
- Optional. Version of the batch runtime.
- containerImage String
- Optional. Optional custom container image for the job runtime environment. If not specified, a default container image will be used.
- properties Map<String,String>
- Optional. A mapping of property names to values, which are used to configure workload execution.
- repositoryConfig RepositoryConfig Response 
- Optional. Dependency repository configuration.
- version String
- Optional. Version of the batch runtime.
- containerImage string
- Optional. Optional custom container image for the job runtime environment. If not specified, a default container image will be used.
- properties {[key: string]: string}
- Optional. A mapping of property names to values, which are used to configure workload execution.
- repositoryConfig RepositoryConfig Response 
- Optional. Dependency repository configuration.
- version string
- Optional. Version of the batch runtime.
- container_image str
- Optional. Optional custom container image for the job runtime environment. If not specified, a default container image will be used.
- properties Mapping[str, str]
- Optional. A mapping of property names to values, which are used to configure workload execution.
- repository_config RepositoryConfig Response 
- Optional. Dependency repository configuration.
- version str
- Optional. Version of the batch runtime.
- containerImage String
- Optional. Optional custom container image for the job runtime environment. If not specified, a default container image will be used.
- properties Map<String>
- Optional. A mapping of property names to values, which are used to configure workload execution.
- repositoryConfig Property Map
- Optional. Dependency repository configuration.
- version String
- Optional. Version of the batch runtime.
RuntimeInfoResponse, RuntimeInfoResponseArgs      
- ApproximateUsage Pulumi.Google Native. Dataproc. V1. Inputs. Usage Metrics Response 
- Approximate workload resource usage, calculated when the workload completes (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).Note: This metric calculation may change in the future, for example, to capture cumulative workload resource consumption during workload execution (see the Dataproc Serverless release notes (https://cloud.google.com/dataproc-serverless/docs/release-notes) for announcements, changes, fixes and other Dataproc developments).
- CurrentUsage Pulumi.Google Native. Dataproc. V1. Inputs. Usage Snapshot Response 
- Snapshot of current workload resource usage.
- DiagnosticOutput stringUri 
- A URI pointing to the location of the diagnostics tarball.
- Endpoints Dictionary<string, string>
- Map of remote access endpoints (such as web interfaces and APIs) to their URIs.
- OutputUri string
- A URI pointing to the location of the stdout and stderr of the workload.
- ApproximateUsage UsageMetrics Response 
- Approximate workload resource usage, calculated when the workload completes (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).Note: This metric calculation may change in the future, for example, to capture cumulative workload resource consumption during workload execution (see the Dataproc Serverless release notes (https://cloud.google.com/dataproc-serverless/docs/release-notes) for announcements, changes, fixes and other Dataproc developments).
- CurrentUsage UsageSnapshot Response 
- Snapshot of current workload resource usage.
- DiagnosticOutput stringUri 
- A URI pointing to the location of the diagnostics tarball.
- Endpoints map[string]string
- Map of remote access endpoints (such as web interfaces and APIs) to their URIs.
- OutputUri string
- A URI pointing to the location of the stdout and stderr of the workload.
- approximateUsage UsageMetrics Response 
- Approximate workload resource usage, calculated when the workload completes (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).Note: This metric calculation may change in the future, for example, to capture cumulative workload resource consumption during workload execution (see the Dataproc Serverless release notes (https://cloud.google.com/dataproc-serverless/docs/release-notes) for announcements, changes, fixes and other Dataproc developments).
- currentUsage UsageSnapshot Response 
- Snapshot of current workload resource usage.
- diagnosticOutput StringUri 
- A URI pointing to the location of the diagnostics tarball.
- endpoints Map<String,String>
- Map of remote access endpoints (such as web interfaces and APIs) to their URIs.
- outputUri String
- A URI pointing to the location of the stdout and stderr of the workload.
- approximateUsage UsageMetrics Response 
- Approximate workload resource usage, calculated when the workload completes (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).Note: This metric calculation may change in the future, for example, to capture cumulative workload resource consumption during workload execution (see the Dataproc Serverless release notes (https://cloud.google.com/dataproc-serverless/docs/release-notes) for announcements, changes, fixes and other Dataproc developments).
- currentUsage UsageSnapshot Response 
- Snapshot of current workload resource usage.
- diagnosticOutput stringUri 
- A URI pointing to the location of the diagnostics tarball.
- endpoints {[key: string]: string}
- Map of remote access endpoints (such as web interfaces and APIs) to their URIs.
- outputUri string
- A URI pointing to the location of the stdout and stderr of the workload.
- approximate_usage UsageMetrics Response 
- Approximate workload resource usage, calculated when the workload completes (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).Note: This metric calculation may change in the future, for example, to capture cumulative workload resource consumption during workload execution (see the Dataproc Serverless release notes (https://cloud.google.com/dataproc-serverless/docs/release-notes) for announcements, changes, fixes and other Dataproc developments).
- current_usage UsageSnapshot Response 
- Snapshot of current workload resource usage.
- diagnostic_output_ struri 
- A URI pointing to the location of the diagnostics tarball.
- endpoints Mapping[str, str]
- Map of remote access endpoints (such as web interfaces and APIs) to their URIs.
- output_uri str
- A URI pointing to the location of the stdout and stderr of the workload.
- approximateUsage Property Map
- Approximate workload resource usage, calculated when the workload completes (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).Note: This metric calculation may change in the future, for example, to capture cumulative workload resource consumption during workload execution (see the Dataproc Serverless release notes (https://cloud.google.com/dataproc-serverless/docs/release-notes) for announcements, changes, fixes and other Dataproc developments).
- currentUsage Property Map
- Snapshot of current workload resource usage.
- diagnosticOutput StringUri 
- A URI pointing to the location of the diagnostics tarball.
- endpoints Map<String>
- Map of remote access endpoints (such as web interfaces and APIs) to their URIs.
- outputUri String
- A URI pointing to the location of the stdout and stderr of the workload.
SessionStateHistoryResponse, SessionStateHistoryResponseArgs        
- State string
- The state of the session at this point in the session history.
- StateMessage string
- Details about the state at this point in the session history.
- StateStart stringTime 
- The time when the session entered the historical state.
- State string
- The state of the session at this point in the session history.
- StateMessage string
- Details about the state at this point in the session history.
- StateStart stringTime 
- The time when the session entered the historical state.
- state String
- The state of the session at this point in the session history.
- stateMessage String
- Details about the state at this point in the session history.
- stateStart StringTime 
- The time when the session entered the historical state.
- state string
- The state of the session at this point in the session history.
- stateMessage string
- Details about the state at this point in the session history.
- stateStart stringTime 
- The time when the session entered the historical state.
- state str
- The state of the session at this point in the session history.
- state_message str
- Details about the state at this point in the session history.
- state_start_ strtime 
- The time when the session entered the historical state.
- state String
- The state of the session at this point in the session history.
- stateMessage String
- Details about the state at this point in the session history.
- stateStart StringTime 
- The time when the session entered the historical state.
SparkHistoryServerConfig, SparkHistoryServerConfigArgs        
- DataprocCluster string
- Optional. Resource name of an existing Dataproc Cluster to act as a Spark History Server for the workload.Example: projects/[project_id]/regions/[region]/clusters/[cluster_name]
- DataprocCluster string
- Optional. Resource name of an existing Dataproc Cluster to act as a Spark History Server for the workload.Example: projects/[project_id]/regions/[region]/clusters/[cluster_name]
- dataprocCluster String
- Optional. Resource name of an existing Dataproc Cluster to act as a Spark History Server for the workload.Example: projects/[project_id]/regions/[region]/clusters/[cluster_name]
- dataprocCluster string
- Optional. Resource name of an existing Dataproc Cluster to act as a Spark History Server for the workload.Example: projects/[project_id]/regions/[region]/clusters/[cluster_name]
- dataproc_cluster str
- Optional. Resource name of an existing Dataproc Cluster to act as a Spark History Server for the workload.Example: projects/[project_id]/regions/[region]/clusters/[cluster_name]
- dataprocCluster String
- Optional. Resource name of an existing Dataproc Cluster to act as a Spark History Server for the workload.Example: projects/[project_id]/regions/[region]/clusters/[cluster_name]
SparkHistoryServerConfigResponse, SparkHistoryServerConfigResponseArgs          
- DataprocCluster string
- Optional. Resource name of an existing Dataproc Cluster to act as a Spark History Server for the workload.Example: projects/[project_id]/regions/[region]/clusters/[cluster_name]
- DataprocCluster string
- Optional. Resource name of an existing Dataproc Cluster to act as a Spark History Server for the workload.Example: projects/[project_id]/regions/[region]/clusters/[cluster_name]
- dataprocCluster String
- Optional. Resource name of an existing Dataproc Cluster to act as a Spark History Server for the workload.Example: projects/[project_id]/regions/[region]/clusters/[cluster_name]
- dataprocCluster string
- Optional. Resource name of an existing Dataproc Cluster to act as a Spark History Server for the workload.Example: projects/[project_id]/regions/[region]/clusters/[cluster_name]
- dataproc_cluster str
- Optional. Resource name of an existing Dataproc Cluster to act as a Spark History Server for the workload.Example: projects/[project_id]/regions/[region]/clusters/[cluster_name]
- dataprocCluster String
- Optional. Resource name of an existing Dataproc Cluster to act as a Spark History Server for the workload.Example: projects/[project_id]/regions/[region]/clusters/[cluster_name]
UsageMetricsResponse, UsageMetricsResponseArgs      
- AcceleratorType string
- Optional. Accelerator type being used, if any
- MilliAccelerator stringSeconds 
- Optional. Accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- MilliDcu stringSeconds 
- Optional. DCU (Dataproc Compute Units) usage in (milliDCU x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- ShuffleStorage stringGb Seconds 
- Optional. Shuffle storage usage in (GB x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- AcceleratorType string
- Optional. Accelerator type being used, if any
- MilliAccelerator stringSeconds 
- Optional. Accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- MilliDcu stringSeconds 
- Optional. DCU (Dataproc Compute Units) usage in (milliDCU x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- ShuffleStorage stringGb Seconds 
- Optional. Shuffle storage usage in (GB x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- acceleratorType String
- Optional. Accelerator type being used, if any
- milliAccelerator StringSeconds 
- Optional. Accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- milliDcu StringSeconds 
- Optional. DCU (Dataproc Compute Units) usage in (milliDCU x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- shuffleStorage StringGb Seconds 
- Optional. Shuffle storage usage in (GB x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- acceleratorType string
- Optional. Accelerator type being used, if any
- milliAccelerator stringSeconds 
- Optional. Accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- milliDcu stringSeconds 
- Optional. DCU (Dataproc Compute Units) usage in (milliDCU x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- shuffleStorage stringGb Seconds 
- Optional. Shuffle storage usage in (GB x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- accelerator_type str
- Optional. Accelerator type being used, if any
- milli_accelerator_ strseconds 
- Optional. Accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- milli_dcu_ strseconds 
- Optional. DCU (Dataproc Compute Units) usage in (milliDCU x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- shuffle_storage_ strgb_ seconds 
- Optional. Shuffle storage usage in (GB x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- acceleratorType String
- Optional. Accelerator type being used, if any
- milliAccelerator StringSeconds 
- Optional. Accelerator usage in (milliAccelerator x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- milliDcu StringSeconds 
- Optional. DCU (Dataproc Compute Units) usage in (milliDCU x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- shuffleStorage StringGb Seconds 
- Optional. Shuffle storage usage in (GB x seconds) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
UsageSnapshotResponse, UsageSnapshotResponseArgs      
- AcceleratorType string
- Optional. Accelerator type being used, if any
- MilliAccelerator string
- Optional. Milli (one-thousandth) accelerator. (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- MilliDcu string
- Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- string
- Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) charged at premium tier (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- ShuffleStorage stringGb 
- Optional. Shuffle Storage in gigabytes (GB). (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- string
- Optional. Shuffle Storage in gigabytes (GB) charged at premium tier. (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- SnapshotTime string
- Optional. The timestamp of the usage snapshot.
- AcceleratorType string
- Optional. Accelerator type being used, if any
- MilliAccelerator string
- Optional. Milli (one-thousandth) accelerator. (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- MilliDcu string
- Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- string
- Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) charged at premium tier (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- ShuffleStorage stringGb 
- Optional. Shuffle Storage in gigabytes (GB). (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- string
- Optional. Shuffle Storage in gigabytes (GB) charged at premium tier. (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- SnapshotTime string
- Optional. The timestamp of the usage snapshot.
- acceleratorType String
- Optional. Accelerator type being used, if any
- milliAccelerator String
- Optional. Milli (one-thousandth) accelerator. (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- milliDcu String
- Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- String
- Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) charged at premium tier (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- shuffleStorage StringGb 
- Optional. Shuffle Storage in gigabytes (GB). (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- String
- Optional. Shuffle Storage in gigabytes (GB) charged at premium tier. (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- snapshotTime String
- Optional. The timestamp of the usage snapshot.
- acceleratorType string
- Optional. Accelerator type being used, if any
- milliAccelerator string
- Optional. Milli (one-thousandth) accelerator. (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- milliDcu string
- Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- string
- Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) charged at premium tier (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- shuffleStorage stringGb 
- Optional. Shuffle Storage in gigabytes (GB). (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- string
- Optional. Shuffle Storage in gigabytes (GB) charged at premium tier. (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- snapshotTime string
- Optional. The timestamp of the usage snapshot.
- accelerator_type str
- Optional. Accelerator type being used, if any
- milli_accelerator str
- Optional. Milli (one-thousandth) accelerator. (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- milli_dcu str
- Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- str
- Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) charged at premium tier (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- shuffle_storage_ strgb 
- Optional. Shuffle Storage in gigabytes (GB). (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- str
- Optional. Shuffle Storage in gigabytes (GB) charged at premium tier. (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- snapshot_time str
- Optional. The timestamp of the usage snapshot.
- acceleratorType String
- Optional. Accelerator type being used, if any
- milliAccelerator String
- Optional. Milli (one-thousandth) accelerator. (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- milliDcu String
- Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- String
- Optional. Milli (one-thousandth) Dataproc Compute Units (DCUs) charged at premium tier (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).
- shuffleStorage StringGb 
- Optional. Shuffle Storage in gigabytes (GB). (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- String
- Optional. Shuffle Storage in gigabytes (GB) charged at premium tier. (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing))
- snapshotTime String
- Optional. The timestamp of the usage snapshot.
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.