pulumi-gcp 8.35.0a1750225231__py3-none-any.whl → 8.36.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +43 -0
- pulumi_gcp/alloydb/_inputs.py +26 -0
- pulumi_gcp/alloydb/outputs.py +34 -1
- pulumi_gcp/apihub/__init__.py +1 -0
- pulumi_gcp/apihub/_inputs.py +983 -0
- pulumi_gcp/apihub/outputs.py +807 -0
- pulumi_gcp/apihub/plugin_instance.py +808 -0
- pulumi_gcp/bigquery/app_profile.py +16 -8
- pulumi_gcp/bigquery/table.py +16 -12
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +56 -6
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +73 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +201 -48
- pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +28 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +50 -4
- pulumi_gcp/bigtable/__init__.py +1 -0
- pulumi_gcp/bigtable/_inputs.py +128 -0
- pulumi_gcp/bigtable/app_profile.py +1065 -0
- pulumi_gcp/bigtable/outputs.py +111 -0
- pulumi_gcp/bigtable/table.py +82 -0
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +64 -8
- pulumi_gcp/compute/_inputs.py +24 -12
- pulumi_gcp/compute/instance.py +2 -2
- pulumi_gcp/compute/instance_template.py +2 -2
- pulumi_gcp/compute/interconnect.py +43 -11
- pulumi_gcp/compute/node_template.py +21 -0
- pulumi_gcp/compute/outputs.py +16 -8
- pulumi_gcp/compute/service_attachment.py +76 -8
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/contactcenterinsights/__init__.py +9 -0
- pulumi_gcp/contactcenterinsights/view.py +526 -0
- pulumi_gcp/container/_inputs.py +72 -12
- pulumi_gcp/container/get_engine_versions.py +15 -1
- pulumi_gcp/container/outputs.py +73 -9
- pulumi_gcp/dataplex/_inputs.py +431 -6
- pulumi_gcp/dataplex/datascan.py +251 -0
- pulumi_gcp/dataplex/entry_type.py +2 -2
- pulumi_gcp/dataplex/glossary_category.py +8 -8
- pulumi_gcp/dataplex/glossary_term.py +8 -8
- pulumi_gcp/dataplex/outputs.py +353 -4
- pulumi_gcp/dataplex/task.py +16 -16
- pulumi_gcp/dataproc/__init__.py +1 -0
- pulumi_gcp/dataproc/_inputs.py +486 -0
- pulumi_gcp/dataproc/batch.py +10 -10
- pulumi_gcp/dataproc/outputs.py +407 -0
- pulumi_gcp/dataproc/session_template.py +1084 -0
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +48 -0
- pulumi_gcp/diagflow/cx_tool.py +2 -2
- pulumi_gcp/diagflow/encryption_spec.py +382 -0
- pulumi_gcp/diagflow/outputs.py +46 -0
- pulumi_gcp/firestore/field.py +6 -6
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +8 -8
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/lustre/get_instance.py +12 -1
- pulumi_gcp/lustre/instance.py +143 -86
- pulumi_gcp/managedkafka/connect_cluster.py +4 -4
- pulumi_gcp/managedkafka/connector.py +4 -4
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/storage/bucket_object.py +56 -0
- pulumi_gcp/storage/get_bucket_object.py +12 -1
- pulumi_gcp/storage/get_bucket_object_content.py +12 -1
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- {pulumi_gcp-8.35.0a1750225231.dist-info → pulumi_gcp-8.36.0.dist-info}/METADATA +2 -2
- {pulumi_gcp-8.35.0a1750225231.dist-info → pulumi_gcp-8.36.0.dist-info}/RECORD +76 -70
- {pulumi_gcp-8.35.0a1750225231.dist-info → pulumi_gcp-8.36.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.35.0a1750225231.dist-info → pulumi_gcp-8.36.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/dataproc/outputs.py
CHANGED
@@ -135,6 +135,13 @@ __all__ = [
|
|
135
135
|
'MetastoreServiceTelemetryConfig',
|
136
136
|
'MetastoreTableIamBindingCondition',
|
137
137
|
'MetastoreTableIamMemberCondition',
|
138
|
+
'SessionTemplateEnvironmentConfig',
|
139
|
+
'SessionTemplateEnvironmentConfigExecutionConfig',
|
140
|
+
'SessionTemplateEnvironmentConfigPeripheralsConfig',
|
141
|
+
'SessionTemplateEnvironmentConfigPeripheralsConfigSparkHistoryServerConfig',
|
142
|
+
'SessionTemplateJupyterSession',
|
143
|
+
'SessionTemplateRuntimeConfig',
|
144
|
+
'SessionTemplateSparkConnectSession',
|
138
145
|
'WorkflowTemplateEncryptionConfig',
|
139
146
|
'WorkflowTemplateJob',
|
140
147
|
'WorkflowTemplateJobHadoopJob',
|
@@ -8288,6 +8295,406 @@ class MetastoreTableIamMemberCondition(dict):
|
|
8288
8295
|
return pulumi.get(self, "description")
|
8289
8296
|
|
8290
8297
|
|
8298
|
+
@pulumi.output_type
|
8299
|
+
class SessionTemplateEnvironmentConfig(dict):
|
8300
|
+
@staticmethod
|
8301
|
+
def __key_warning(key: str):
|
8302
|
+
suggest = None
|
8303
|
+
if key == "executionConfig":
|
8304
|
+
suggest = "execution_config"
|
8305
|
+
elif key == "peripheralsConfig":
|
8306
|
+
suggest = "peripherals_config"
|
8307
|
+
|
8308
|
+
if suggest:
|
8309
|
+
pulumi.log.warn(f"Key '{key}' not found in SessionTemplateEnvironmentConfig. Access the value via the '{suggest}' property getter instead.")
|
8310
|
+
|
8311
|
+
def __getitem__(self, key: str) -> Any:
|
8312
|
+
SessionTemplateEnvironmentConfig.__key_warning(key)
|
8313
|
+
return super().__getitem__(key)
|
8314
|
+
|
8315
|
+
def get(self, key: str, default = None) -> Any:
|
8316
|
+
SessionTemplateEnvironmentConfig.__key_warning(key)
|
8317
|
+
return super().get(key, default)
|
8318
|
+
|
8319
|
+
def __init__(__self__, *,
|
8320
|
+
execution_config: Optional['outputs.SessionTemplateEnvironmentConfigExecutionConfig'] = None,
|
8321
|
+
peripherals_config: Optional['outputs.SessionTemplateEnvironmentConfigPeripheralsConfig'] = None):
|
8322
|
+
"""
|
8323
|
+
:param 'SessionTemplateEnvironmentConfigExecutionConfigArgs' execution_config: Execution configuration for a workload.
|
8324
|
+
Structure is documented below.
|
8325
|
+
:param 'SessionTemplateEnvironmentConfigPeripheralsConfigArgs' peripherals_config: Peripherals configuration that workload has access to.
|
8326
|
+
Structure is documented below.
|
8327
|
+
"""
|
8328
|
+
if execution_config is not None:
|
8329
|
+
pulumi.set(__self__, "execution_config", execution_config)
|
8330
|
+
if peripherals_config is not None:
|
8331
|
+
pulumi.set(__self__, "peripherals_config", peripherals_config)
|
8332
|
+
|
8333
|
+
@property
|
8334
|
+
@pulumi.getter(name="executionConfig")
|
8335
|
+
def execution_config(self) -> Optional['outputs.SessionTemplateEnvironmentConfigExecutionConfig']:
|
8336
|
+
"""
|
8337
|
+
Execution configuration for a workload.
|
8338
|
+
Structure is documented below.
|
8339
|
+
"""
|
8340
|
+
return pulumi.get(self, "execution_config")
|
8341
|
+
|
8342
|
+
@property
|
8343
|
+
@pulumi.getter(name="peripheralsConfig")
|
8344
|
+
def peripherals_config(self) -> Optional['outputs.SessionTemplateEnvironmentConfigPeripheralsConfig']:
|
8345
|
+
"""
|
8346
|
+
Peripherals configuration that workload has access to.
|
8347
|
+
Structure is documented below.
|
8348
|
+
"""
|
8349
|
+
return pulumi.get(self, "peripherals_config")
|
8350
|
+
|
8351
|
+
|
8352
|
+
@pulumi.output_type
|
8353
|
+
class SessionTemplateEnvironmentConfigExecutionConfig(dict):
|
8354
|
+
@staticmethod
|
8355
|
+
def __key_warning(key: str):
|
8356
|
+
suggest = None
|
8357
|
+
if key == "kmsKey":
|
8358
|
+
suggest = "kms_key"
|
8359
|
+
elif key == "networkTags":
|
8360
|
+
suggest = "network_tags"
|
8361
|
+
elif key == "serviceAccount":
|
8362
|
+
suggest = "service_account"
|
8363
|
+
elif key == "stagingBucket":
|
8364
|
+
suggest = "staging_bucket"
|
8365
|
+
elif key == "subnetworkUri":
|
8366
|
+
suggest = "subnetwork_uri"
|
8367
|
+
|
8368
|
+
if suggest:
|
8369
|
+
pulumi.log.warn(f"Key '{key}' not found in SessionTemplateEnvironmentConfigExecutionConfig. Access the value via the '{suggest}' property getter instead.")
|
8370
|
+
|
8371
|
+
def __getitem__(self, key: str) -> Any:
|
8372
|
+
SessionTemplateEnvironmentConfigExecutionConfig.__key_warning(key)
|
8373
|
+
return super().__getitem__(key)
|
8374
|
+
|
8375
|
+
def get(self, key: str, default = None) -> Any:
|
8376
|
+
SessionTemplateEnvironmentConfigExecutionConfig.__key_warning(key)
|
8377
|
+
return super().get(key, default)
|
8378
|
+
|
8379
|
+
def __init__(__self__, *,
|
8380
|
+
kms_key: Optional[builtins.str] = None,
|
8381
|
+
network_tags: Optional[Sequence[builtins.str]] = None,
|
8382
|
+
service_account: Optional[builtins.str] = None,
|
8383
|
+
staging_bucket: Optional[builtins.str] = None,
|
8384
|
+
subnetwork_uri: Optional[builtins.str] = None,
|
8385
|
+
ttl: Optional[builtins.str] = None):
|
8386
|
+
"""
|
8387
|
+
:param builtins.str kms_key: The Cloud KMS key to use for encryption.
|
8388
|
+
:param Sequence[builtins.str] network_tags: Tags used for network traffic control.
|
8389
|
+
:param builtins.str service_account: Service account that used to execute workload.
|
8390
|
+
:param builtins.str staging_bucket: A Cloud Storage bucket used to stage workload dependencies, config files, and store
|
8391
|
+
workload output and other ephemeral data, such as Spark history files. If you do not specify a staging bucket,
|
8392
|
+
Cloud Dataproc will determine a Cloud Storage location according to the region where your workload is running,
|
8393
|
+
and then create and manage project-level, per-location staging and temporary buckets.
|
8394
|
+
This field requires a Cloud Storage bucket name, not a gs://... URI to a Cloud Storage bucket.
|
8395
|
+
:param builtins.str subnetwork_uri: Subnetwork configuration for workload execution.
|
8396
|
+
:param builtins.str ttl: The duration after which the workload will be terminated.
|
8397
|
+
When the workload exceeds this duration, it will be unconditionally terminated without waiting for ongoing
|
8398
|
+
work to finish. If ttl is not specified for a session workload, the workload will be allowed to run until it
|
8399
|
+
exits naturally (or run forever without exiting). If ttl is not specified for an interactive session,
|
8400
|
+
it defaults to 24 hours. If ttl is not specified for a batch that uses 2.1+ runtime version, it defaults to 4 hours.
|
8401
|
+
Minimum value is 10 minutes; maximum value is 14 days. If both ttl and idleTtl are specified (for an interactive session),
|
8402
|
+
the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idleTtl or
|
8403
|
+
when ttl has been exceeded, whichever occurs first.
|
8404
|
+
"""
|
8405
|
+
if kms_key is not None:
|
8406
|
+
pulumi.set(__self__, "kms_key", kms_key)
|
8407
|
+
if network_tags is not None:
|
8408
|
+
pulumi.set(__self__, "network_tags", network_tags)
|
8409
|
+
if service_account is not None:
|
8410
|
+
pulumi.set(__self__, "service_account", service_account)
|
8411
|
+
if staging_bucket is not None:
|
8412
|
+
pulumi.set(__self__, "staging_bucket", staging_bucket)
|
8413
|
+
if subnetwork_uri is not None:
|
8414
|
+
pulumi.set(__self__, "subnetwork_uri", subnetwork_uri)
|
8415
|
+
if ttl is not None:
|
8416
|
+
pulumi.set(__self__, "ttl", ttl)
|
8417
|
+
|
8418
|
+
@property
|
8419
|
+
@pulumi.getter(name="kmsKey")
|
8420
|
+
def kms_key(self) -> Optional[builtins.str]:
|
8421
|
+
"""
|
8422
|
+
The Cloud KMS key to use for encryption.
|
8423
|
+
"""
|
8424
|
+
return pulumi.get(self, "kms_key")
|
8425
|
+
|
8426
|
+
@property
|
8427
|
+
@pulumi.getter(name="networkTags")
|
8428
|
+
def network_tags(self) -> Optional[Sequence[builtins.str]]:
|
8429
|
+
"""
|
8430
|
+
Tags used for network traffic control.
|
8431
|
+
"""
|
8432
|
+
return pulumi.get(self, "network_tags")
|
8433
|
+
|
8434
|
+
@property
|
8435
|
+
@pulumi.getter(name="serviceAccount")
|
8436
|
+
def service_account(self) -> Optional[builtins.str]:
|
8437
|
+
"""
|
8438
|
+
Service account that used to execute workload.
|
8439
|
+
"""
|
8440
|
+
return pulumi.get(self, "service_account")
|
8441
|
+
|
8442
|
+
@property
|
8443
|
+
@pulumi.getter(name="stagingBucket")
|
8444
|
+
def staging_bucket(self) -> Optional[builtins.str]:
|
8445
|
+
"""
|
8446
|
+
A Cloud Storage bucket used to stage workload dependencies, config files, and store
|
8447
|
+
workload output and other ephemeral data, such as Spark history files. If you do not specify a staging bucket,
|
8448
|
+
Cloud Dataproc will determine a Cloud Storage location according to the region where your workload is running,
|
8449
|
+
and then create and manage project-level, per-location staging and temporary buckets.
|
8450
|
+
This field requires a Cloud Storage bucket name, not a gs://... URI to a Cloud Storage bucket.
|
8451
|
+
"""
|
8452
|
+
return pulumi.get(self, "staging_bucket")
|
8453
|
+
|
8454
|
+
@property
|
8455
|
+
@pulumi.getter(name="subnetworkUri")
|
8456
|
+
def subnetwork_uri(self) -> Optional[builtins.str]:
|
8457
|
+
"""
|
8458
|
+
Subnetwork configuration for workload execution.
|
8459
|
+
"""
|
8460
|
+
return pulumi.get(self, "subnetwork_uri")
|
8461
|
+
|
8462
|
+
@property
|
8463
|
+
@pulumi.getter
|
8464
|
+
def ttl(self) -> Optional[builtins.str]:
|
8465
|
+
"""
|
8466
|
+
The duration after which the workload will be terminated.
|
8467
|
+
When the workload exceeds this duration, it will be unconditionally terminated without waiting for ongoing
|
8468
|
+
work to finish. If ttl is not specified for a session workload, the workload will be allowed to run until it
|
8469
|
+
exits naturally (or run forever without exiting). If ttl is not specified for an interactive session,
|
8470
|
+
it defaults to 24 hours. If ttl is not specified for a batch that uses 2.1+ runtime version, it defaults to 4 hours.
|
8471
|
+
Minimum value is 10 minutes; maximum value is 14 days. If both ttl and idleTtl are specified (for an interactive session),
|
8472
|
+
the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idleTtl or
|
8473
|
+
when ttl has been exceeded, whichever occurs first.
|
8474
|
+
"""
|
8475
|
+
return pulumi.get(self, "ttl")
|
8476
|
+
|
8477
|
+
|
8478
|
+
@pulumi.output_type
|
8479
|
+
class SessionTemplateEnvironmentConfigPeripheralsConfig(dict):
|
8480
|
+
@staticmethod
|
8481
|
+
def __key_warning(key: str):
|
8482
|
+
suggest = None
|
8483
|
+
if key == "metastoreService":
|
8484
|
+
suggest = "metastore_service"
|
8485
|
+
elif key == "sparkHistoryServerConfig":
|
8486
|
+
suggest = "spark_history_server_config"
|
8487
|
+
|
8488
|
+
if suggest:
|
8489
|
+
pulumi.log.warn(f"Key '{key}' not found in SessionTemplateEnvironmentConfigPeripheralsConfig. Access the value via the '{suggest}' property getter instead.")
|
8490
|
+
|
8491
|
+
def __getitem__(self, key: str) -> Any:
|
8492
|
+
SessionTemplateEnvironmentConfigPeripheralsConfig.__key_warning(key)
|
8493
|
+
return super().__getitem__(key)
|
8494
|
+
|
8495
|
+
def get(self, key: str, default = None) -> Any:
|
8496
|
+
SessionTemplateEnvironmentConfigPeripheralsConfig.__key_warning(key)
|
8497
|
+
return super().get(key, default)
|
8498
|
+
|
8499
|
+
def __init__(__self__, *,
|
8500
|
+
metastore_service: Optional[builtins.str] = None,
|
8501
|
+
spark_history_server_config: Optional['outputs.SessionTemplateEnvironmentConfigPeripheralsConfigSparkHistoryServerConfig'] = None):
|
8502
|
+
"""
|
8503
|
+
:param builtins.str metastore_service: Resource name of an existing Dataproc Metastore service.
|
8504
|
+
:param 'SessionTemplateEnvironmentConfigPeripheralsConfigSparkHistoryServerConfigArgs' spark_history_server_config: The Spark History Server configuration for the workload.
|
8505
|
+
Structure is documented below.
|
8506
|
+
"""
|
8507
|
+
if metastore_service is not None:
|
8508
|
+
pulumi.set(__self__, "metastore_service", metastore_service)
|
8509
|
+
if spark_history_server_config is not None:
|
8510
|
+
pulumi.set(__self__, "spark_history_server_config", spark_history_server_config)
|
8511
|
+
|
8512
|
+
@property
|
8513
|
+
@pulumi.getter(name="metastoreService")
|
8514
|
+
def metastore_service(self) -> Optional[builtins.str]:
|
8515
|
+
"""
|
8516
|
+
Resource name of an existing Dataproc Metastore service.
|
8517
|
+
"""
|
8518
|
+
return pulumi.get(self, "metastore_service")
|
8519
|
+
|
8520
|
+
@property
|
8521
|
+
@pulumi.getter(name="sparkHistoryServerConfig")
|
8522
|
+
def spark_history_server_config(self) -> Optional['outputs.SessionTemplateEnvironmentConfigPeripheralsConfigSparkHistoryServerConfig']:
|
8523
|
+
"""
|
8524
|
+
The Spark History Server configuration for the workload.
|
8525
|
+
Structure is documented below.
|
8526
|
+
"""
|
8527
|
+
return pulumi.get(self, "spark_history_server_config")
|
8528
|
+
|
8529
|
+
|
8530
|
+
@pulumi.output_type
|
8531
|
+
class SessionTemplateEnvironmentConfigPeripheralsConfigSparkHistoryServerConfig(dict):
|
8532
|
+
@staticmethod
|
8533
|
+
def __key_warning(key: str):
|
8534
|
+
suggest = None
|
8535
|
+
if key == "dataprocCluster":
|
8536
|
+
suggest = "dataproc_cluster"
|
8537
|
+
|
8538
|
+
if suggest:
|
8539
|
+
pulumi.log.warn(f"Key '{key}' not found in SessionTemplateEnvironmentConfigPeripheralsConfigSparkHistoryServerConfig. Access the value via the '{suggest}' property getter instead.")
|
8540
|
+
|
8541
|
+
def __getitem__(self, key: str) -> Any:
|
8542
|
+
SessionTemplateEnvironmentConfigPeripheralsConfigSparkHistoryServerConfig.__key_warning(key)
|
8543
|
+
return super().__getitem__(key)
|
8544
|
+
|
8545
|
+
def get(self, key: str, default = None) -> Any:
|
8546
|
+
SessionTemplateEnvironmentConfigPeripheralsConfigSparkHistoryServerConfig.__key_warning(key)
|
8547
|
+
return super().get(key, default)
|
8548
|
+
|
8549
|
+
def __init__(__self__, *,
|
8550
|
+
dataproc_cluster: Optional[builtins.str] = None):
|
8551
|
+
"""
|
8552
|
+
:param builtins.str dataproc_cluster: Resource name of an existing Dataproc Cluster to act as a Spark History Server for the workload.
|
8553
|
+
"""
|
8554
|
+
if dataproc_cluster is not None:
|
8555
|
+
pulumi.set(__self__, "dataproc_cluster", dataproc_cluster)
|
8556
|
+
|
8557
|
+
@property
|
8558
|
+
@pulumi.getter(name="dataprocCluster")
|
8559
|
+
def dataproc_cluster(self) -> Optional[builtins.str]:
|
8560
|
+
"""
|
8561
|
+
Resource name of an existing Dataproc Cluster to act as a Spark History Server for the workload.
|
8562
|
+
"""
|
8563
|
+
return pulumi.get(self, "dataproc_cluster")
|
8564
|
+
|
8565
|
+
|
8566
|
+
@pulumi.output_type
|
8567
|
+
class SessionTemplateJupyterSession(dict):
|
8568
|
+
@staticmethod
|
8569
|
+
def __key_warning(key: str):
|
8570
|
+
suggest = None
|
8571
|
+
if key == "displayName":
|
8572
|
+
suggest = "display_name"
|
8573
|
+
|
8574
|
+
if suggest:
|
8575
|
+
pulumi.log.warn(f"Key '{key}' not found in SessionTemplateJupyterSession. Access the value via the '{suggest}' property getter instead.")
|
8576
|
+
|
8577
|
+
def __getitem__(self, key: str) -> Any:
|
8578
|
+
SessionTemplateJupyterSession.__key_warning(key)
|
8579
|
+
return super().__getitem__(key)
|
8580
|
+
|
8581
|
+
def get(self, key: str, default = None) -> Any:
|
8582
|
+
SessionTemplateJupyterSession.__key_warning(key)
|
8583
|
+
return super().get(key, default)
|
8584
|
+
|
8585
|
+
def __init__(__self__, *,
|
8586
|
+
display_name: Optional[builtins.str] = None,
|
8587
|
+
kernel: Optional[builtins.str] = None):
|
8588
|
+
"""
|
8589
|
+
:param builtins.str display_name: Display name, shown in the Jupyter kernelspec card.
|
8590
|
+
:param builtins.str kernel: Kernel to be used with Jupyter interactive session.
|
8591
|
+
Possible values are: `PYTHON`, `SCALA`.
|
8592
|
+
"""
|
8593
|
+
if display_name is not None:
|
8594
|
+
pulumi.set(__self__, "display_name", display_name)
|
8595
|
+
if kernel is not None:
|
8596
|
+
pulumi.set(__self__, "kernel", kernel)
|
8597
|
+
|
8598
|
+
@property
|
8599
|
+
@pulumi.getter(name="displayName")
|
8600
|
+
def display_name(self) -> Optional[builtins.str]:
|
8601
|
+
"""
|
8602
|
+
Display name, shown in the Jupyter kernelspec card.
|
8603
|
+
"""
|
8604
|
+
return pulumi.get(self, "display_name")
|
8605
|
+
|
8606
|
+
@property
|
8607
|
+
@pulumi.getter
|
8608
|
+
def kernel(self) -> Optional[builtins.str]:
|
8609
|
+
"""
|
8610
|
+
Kernel to be used with Jupyter interactive session.
|
8611
|
+
Possible values are: `PYTHON`, `SCALA`.
|
8612
|
+
"""
|
8613
|
+
return pulumi.get(self, "kernel")
|
8614
|
+
|
8615
|
+
|
8616
|
+
@pulumi.output_type
|
8617
|
+
class SessionTemplateRuntimeConfig(dict):
|
8618
|
+
@staticmethod
|
8619
|
+
def __key_warning(key: str):
|
8620
|
+
suggest = None
|
8621
|
+
if key == "containerImage":
|
8622
|
+
suggest = "container_image"
|
8623
|
+
elif key == "effectiveProperties":
|
8624
|
+
suggest = "effective_properties"
|
8625
|
+
|
8626
|
+
if suggest:
|
8627
|
+
pulumi.log.warn(f"Key '{key}' not found in SessionTemplateRuntimeConfig. Access the value via the '{suggest}' property getter instead.")
|
8628
|
+
|
8629
|
+
def __getitem__(self, key: str) -> Any:
|
8630
|
+
SessionTemplateRuntimeConfig.__key_warning(key)
|
8631
|
+
return super().__getitem__(key)
|
8632
|
+
|
8633
|
+
def get(self, key: str, default = None) -> Any:
|
8634
|
+
SessionTemplateRuntimeConfig.__key_warning(key)
|
8635
|
+
return super().get(key, default)
|
8636
|
+
|
8637
|
+
def __init__(__self__, *,
|
8638
|
+
container_image: Optional[builtins.str] = None,
|
8639
|
+
effective_properties: Optional[Mapping[str, builtins.str]] = None,
|
8640
|
+
properties: Optional[Mapping[str, builtins.str]] = None,
|
8641
|
+
version: Optional[builtins.str] = None):
|
8642
|
+
"""
|
8643
|
+
:param builtins.str container_image: Optional custom container image for the job runtime environment. If not specified, a default container image will be used.
|
8644
|
+
:param Mapping[str, builtins.str] effective_properties: (Output)
|
8645
|
+
A mapping of property names to values, which are used to configure workload execution.
|
8646
|
+
:param Mapping[str, builtins.str] properties: A mapping of property names to values, which are used to configure workload execution.
|
8647
|
+
:param builtins.str version: Version of the session runtime.
|
8648
|
+
"""
|
8649
|
+
if container_image is not None:
|
8650
|
+
pulumi.set(__self__, "container_image", container_image)
|
8651
|
+
if effective_properties is not None:
|
8652
|
+
pulumi.set(__self__, "effective_properties", effective_properties)
|
8653
|
+
if properties is not None:
|
8654
|
+
pulumi.set(__self__, "properties", properties)
|
8655
|
+
if version is not None:
|
8656
|
+
pulumi.set(__self__, "version", version)
|
8657
|
+
|
8658
|
+
@property
|
8659
|
+
@pulumi.getter(name="containerImage")
|
8660
|
+
def container_image(self) -> Optional[builtins.str]:
|
8661
|
+
"""
|
8662
|
+
Optional custom container image for the job runtime environment. If not specified, a default container image will be used.
|
8663
|
+
"""
|
8664
|
+
return pulumi.get(self, "container_image")
|
8665
|
+
|
8666
|
+
@property
|
8667
|
+
@pulumi.getter(name="effectiveProperties")
|
8668
|
+
def effective_properties(self) -> Optional[Mapping[str, builtins.str]]:
|
8669
|
+
"""
|
8670
|
+
(Output)
|
8671
|
+
A mapping of property names to values, which are used to configure workload execution.
|
8672
|
+
"""
|
8673
|
+
return pulumi.get(self, "effective_properties")
|
8674
|
+
|
8675
|
+
@property
|
8676
|
+
@pulumi.getter
|
8677
|
+
def properties(self) -> Optional[Mapping[str, builtins.str]]:
|
8678
|
+
"""
|
8679
|
+
A mapping of property names to values, which are used to configure workload execution.
|
8680
|
+
"""
|
8681
|
+
return pulumi.get(self, "properties")
|
8682
|
+
|
8683
|
+
@property
|
8684
|
+
@pulumi.getter
|
8685
|
+
def version(self) -> Optional[builtins.str]:
|
8686
|
+
"""
|
8687
|
+
Version of the session runtime.
|
8688
|
+
"""
|
8689
|
+
return pulumi.get(self, "version")
|
8690
|
+
|
8691
|
+
|
8692
|
+
@pulumi.output_type
|
8693
|
+
class SessionTemplateSparkConnectSession(dict):
|
8694
|
+
def __init__(__self__):
|
8695
|
+
pass
|
8696
|
+
|
8697
|
+
|
8291
8698
|
@pulumi.output_type
|
8292
8699
|
class WorkflowTemplateEncryptionConfig(dict):
|
8293
8700
|
@staticmethod
|