pulumi-gcp 8.24.0a1743177741__py3-none-any.whl → 8.25.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 +104 -0
- pulumi_gcp/_inputs.py +48 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +324 -12
- pulumi_gcp/accesscontextmanager/outputs.py +204 -12
- pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
- pulumi_gcp/apigee/__init__.py +1 -0
- pulumi_gcp/apigee/_inputs.py +58 -0
- pulumi_gcp/apigee/dns_zone.py +491 -0
- pulumi_gcp/apigee/outputs.py +53 -0
- pulumi_gcp/bigquery/reservation_assignment.py +7 -7
- pulumi_gcp/bigtable/table.py +8 -8
- pulumi_gcp/chronicle/data_access_label.py +2 -2
- pulumi_gcp/chronicle/data_access_scope.py +16 -0
- pulumi_gcp/chronicle/reference_list.py +16 -0
- pulumi_gcp/chronicle/retrohunt.py +16 -0
- pulumi_gcp/chronicle/rule.py +16 -0
- pulumi_gcp/chronicle/rule_deployment.py +16 -0
- pulumi_gcp/chronicle/watchlist.py +16 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +20 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +25 -0
- pulumi_gcp/cloudrunv2/_inputs.py +20 -0
- pulumi_gcp/cloudrunv2/outputs.py +25 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +2011 -43
- pulumi_gcp/compute/backend_service.py +121 -3
- pulumi_gcp/compute/get_backend_service.py +15 -4
- pulumi_gcp/compute/get_instance.py +12 -1
- pulumi_gcp/compute/get_region_backend_service.py +482 -0
- pulumi_gcp/compute/get_router.py +12 -1
- pulumi_gcp/compute/get_subnetwork.py +43 -1
- pulumi_gcp/compute/instance.py +47 -0
- pulumi_gcp/compute/instance_from_machine_image.py +94 -0
- pulumi_gcp/compute/instance_from_template.py +47 -0
- pulumi_gcp/compute/outputs.py +3578 -139
- pulumi_gcp/compute/public_delegated_prefix.py +69 -15
- pulumi_gcp/compute/router.py +54 -0
- pulumi_gcp/compute/subnetwork.py +35 -5
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/outputs.py +27 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +12 -12
- pulumi_gcp/container/cluster.py +47 -0
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/get_registry_image.py +4 -0
- pulumi_gcp/container/get_registry_repository.py +4 -0
- pulumi_gcp/container/outputs.py +8 -8
- pulumi_gcp/container/registry.py +4 -0
- pulumi_gcp/datafusion/instance.py +68 -0
- pulumi_gcp/dataproc/__init__.py +8 -0
- pulumi_gcp/dataproc/_inputs.py +196 -0
- pulumi_gcp/dataproc/get_metastore_database_iam_policy.py +193 -0
- pulumi_gcp/dataproc/get_metastore_table_iam_policy.py +210 -0
- pulumi_gcp/dataproc/metastore_database_iam_binding.py +848 -0
- pulumi_gcp/dataproc/metastore_database_iam_member.py +848 -0
- pulumi_gcp/dataproc/metastore_database_iam_policy.py +687 -0
- pulumi_gcp/dataproc/metastore_federation.py +38 -2
- pulumi_gcp/dataproc/metastore_table_iam_binding.py +895 -0
- pulumi_gcp/dataproc/metastore_table_iam_member.py +895 -0
- pulumi_gcp/dataproc/metastore_table_iam_policy.py +734 -0
- pulumi_gcp/dataproc/outputs.py +112 -0
- pulumi_gcp/datastream/_inputs.py +311 -94
- pulumi_gcp/datastream/connection_profile.py +40 -0
- pulumi_gcp/datastream/outputs.py +244 -51
- pulumi_gcp/datastream/stream.py +216 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/sitemap.py +504 -0
- pulumi_gcp/eventarc/__init__.py +1 -0
- pulumi_gcp/eventarc/enrollment.py +980 -0
- pulumi_gcp/firebase/__init__.py +1 -0
- pulumi_gcp/firebase/_inputs.py +484 -0
- pulumi_gcp/firebase/app_hosting_build.py +1232 -0
- pulumi_gcp/firebase/outputs.py +333 -0
- pulumi_gcp/identityplatform/_inputs.py +91 -0
- pulumi_gcp/identityplatform/outputs.py +73 -0
- pulumi_gcp/identityplatform/tenant.py +56 -0
- pulumi_gcp/managedkafka/cluster.py +2 -2
- pulumi_gcp/memorystore/__init__.py +1 -0
- pulumi_gcp/memorystore/_inputs.py +826 -0
- pulumi_gcp/memorystore/get_instance.py +23 -1
- pulumi_gcp/memorystore/instance.py +344 -23
- pulumi_gcp/memorystore/instance_desired_user_created_endpoints.py +843 -0
- pulumi_gcp/memorystore/outputs.py +889 -8
- pulumi_gcp/networksecurity/_inputs.py +473 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +44 -16
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +94 -36
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +53 -8
- pulumi_gcp/networksecurity/outputs.py +291 -1
- pulumi_gcp/networksecurity/security_profile.py +8 -0
- pulumi_gcp/organizations/__init__.py +1 -0
- pulumi_gcp/organizations/get_iam_custom_roles.py +164 -0
- pulumi_gcp/organizations/outputs.py +96 -0
- pulumi_gcp/parametermanager/get_parameter.py +16 -1
- pulumi_gcp/parametermanager/get_parameter_version.py +19 -1
- pulumi_gcp/parametermanager/get_parameter_version_render.py +4 -0
- pulumi_gcp/parametermanager/get_parameters.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +8 -0
- pulumi_gcp/parametermanager/get_regional_parameters.py +4 -0
- pulumi_gcp/parametermanager/outputs.py +11 -0
- pulumi_gcp/parametermanager/parameter.py +88 -0
- pulumi_gcp/parametermanager/parameter_version.py +74 -0
- pulumi_gcp/parametermanager/regional_parameter.py +12 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +12 -0
- pulumi_gcp/provider.py +15 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +136 -0
- pulumi_gcp/redis/cluster.py +54 -0
- pulumi_gcp/redis/outputs.py +114 -0
- pulumi_gcp/secretmanager/regional_secret_version.py +0 -16
- pulumi_gcp/storage/__init__.py +4 -0
- pulumi_gcp/storage/_inputs.py +596 -0
- pulumi_gcp/storage/bucket.py +7 -7
- pulumi_gcp/storage/control_folder_intelligence_config.py +420 -0
- pulumi_gcp/storage/control_organization_intelligence_config.py +420 -0
- pulumi_gcp/storage/control_project_intelligence_config.py +49 -7
- pulumi_gcp/storage/get_bucket_object_content.py +16 -1
- pulumi_gcp/storage/get_control_folder_intelligence_config.py +160 -0
- pulumi_gcp/storage/get_control_organization_intelligence_config.py +160 -0
- pulumi_gcp/storage/get_control_project_intelligence_config.py +32 -2
- pulumi_gcp/storage/outputs.py +2132 -1312
- pulumi_gcp/workbench/instance.py +14 -2
- {pulumi_gcp-8.24.0a1743177741.dist-info → pulumi_gcp-8.25.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.24.0a1743177741.dist-info → pulumi_gcp-8.25.0.dist-info}/RECORD +126 -107
- {pulumi_gcp-8.24.0a1743177741.dist-info → pulumi_gcp-8.25.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.24.0a1743177741.dist-info → pulumi_gcp-8.25.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/dataproc/outputs.py
CHANGED
@@ -110,6 +110,8 @@ __all__ = [
|
|
110
110
|
'JobSparksqlConfig',
|
111
111
|
'JobSparksqlConfigLoggingConfig',
|
112
112
|
'JobStatus',
|
113
|
+
'MetastoreDatabaseIamBindingCondition',
|
114
|
+
'MetastoreDatabaseIamMemberCondition',
|
113
115
|
'MetastoreFederationBackendMetastore',
|
114
116
|
'MetastoreFederationIamBindingCondition',
|
115
117
|
'MetastoreFederationIamMemberCondition',
|
@@ -130,6 +132,8 @@ __all__ = [
|
|
130
132
|
'MetastoreServiceScalingConfigAutoscalingConfigLimitConfig',
|
131
133
|
'MetastoreServiceScheduledBackup',
|
132
134
|
'MetastoreServiceTelemetryConfig',
|
135
|
+
'MetastoreTableIamBindingCondition',
|
136
|
+
'MetastoreTableIamMemberCondition',
|
133
137
|
'WorkflowTemplateEncryptionConfig',
|
134
138
|
'WorkflowTemplateJob',
|
135
139
|
'WorkflowTemplateJobHadoopJob',
|
@@ -7194,6 +7198,60 @@ class JobStatus(dict):
|
|
7194
7198
|
return pulumi.get(self, "substate")
|
7195
7199
|
|
7196
7200
|
|
7201
|
+
@pulumi.output_type
|
7202
|
+
class MetastoreDatabaseIamBindingCondition(dict):
|
7203
|
+
def __init__(__self__, *,
|
7204
|
+
expression: str,
|
7205
|
+
title: str,
|
7206
|
+
description: Optional[str] = None):
|
7207
|
+
pulumi.set(__self__, "expression", expression)
|
7208
|
+
pulumi.set(__self__, "title", title)
|
7209
|
+
if description is not None:
|
7210
|
+
pulumi.set(__self__, "description", description)
|
7211
|
+
|
7212
|
+
@property
|
7213
|
+
@pulumi.getter
|
7214
|
+
def expression(self) -> str:
|
7215
|
+
return pulumi.get(self, "expression")
|
7216
|
+
|
7217
|
+
@property
|
7218
|
+
@pulumi.getter
|
7219
|
+
def title(self) -> str:
|
7220
|
+
return pulumi.get(self, "title")
|
7221
|
+
|
7222
|
+
@property
|
7223
|
+
@pulumi.getter
|
7224
|
+
def description(self) -> Optional[str]:
|
7225
|
+
return pulumi.get(self, "description")
|
7226
|
+
|
7227
|
+
|
7228
|
+
@pulumi.output_type
|
7229
|
+
class MetastoreDatabaseIamMemberCondition(dict):
|
7230
|
+
def __init__(__self__, *,
|
7231
|
+
expression: str,
|
7232
|
+
title: str,
|
7233
|
+
description: Optional[str] = None):
|
7234
|
+
pulumi.set(__self__, "expression", expression)
|
7235
|
+
pulumi.set(__self__, "title", title)
|
7236
|
+
if description is not None:
|
7237
|
+
pulumi.set(__self__, "description", description)
|
7238
|
+
|
7239
|
+
@property
|
7240
|
+
@pulumi.getter
|
7241
|
+
def expression(self) -> str:
|
7242
|
+
return pulumi.get(self, "expression")
|
7243
|
+
|
7244
|
+
@property
|
7245
|
+
@pulumi.getter
|
7246
|
+
def title(self) -> str:
|
7247
|
+
return pulumi.get(self, "title")
|
7248
|
+
|
7249
|
+
@property
|
7250
|
+
@pulumi.getter
|
7251
|
+
def description(self) -> Optional[str]:
|
7252
|
+
return pulumi.get(self, "description")
|
7253
|
+
|
7254
|
+
|
7197
7255
|
@pulumi.output_type
|
7198
7256
|
class MetastoreFederationBackendMetastore(dict):
|
7199
7257
|
@staticmethod
|
@@ -8175,6 +8233,60 @@ class MetastoreServiceTelemetryConfig(dict):
|
|
8175
8233
|
return pulumi.get(self, "log_format")
|
8176
8234
|
|
8177
8235
|
|
8236
|
+
@pulumi.output_type
|
8237
|
+
class MetastoreTableIamBindingCondition(dict):
|
8238
|
+
def __init__(__self__, *,
|
8239
|
+
expression: str,
|
8240
|
+
title: str,
|
8241
|
+
description: Optional[str] = None):
|
8242
|
+
pulumi.set(__self__, "expression", expression)
|
8243
|
+
pulumi.set(__self__, "title", title)
|
8244
|
+
if description is not None:
|
8245
|
+
pulumi.set(__self__, "description", description)
|
8246
|
+
|
8247
|
+
@property
|
8248
|
+
@pulumi.getter
|
8249
|
+
def expression(self) -> str:
|
8250
|
+
return pulumi.get(self, "expression")
|
8251
|
+
|
8252
|
+
@property
|
8253
|
+
@pulumi.getter
|
8254
|
+
def title(self) -> str:
|
8255
|
+
return pulumi.get(self, "title")
|
8256
|
+
|
8257
|
+
@property
|
8258
|
+
@pulumi.getter
|
8259
|
+
def description(self) -> Optional[str]:
|
8260
|
+
return pulumi.get(self, "description")
|
8261
|
+
|
8262
|
+
|
8263
|
+
@pulumi.output_type
|
8264
|
+
class MetastoreTableIamMemberCondition(dict):
|
8265
|
+
def __init__(__self__, *,
|
8266
|
+
expression: str,
|
8267
|
+
title: str,
|
8268
|
+
description: Optional[str] = None):
|
8269
|
+
pulumi.set(__self__, "expression", expression)
|
8270
|
+
pulumi.set(__self__, "title", title)
|
8271
|
+
if description is not None:
|
8272
|
+
pulumi.set(__self__, "description", description)
|
8273
|
+
|
8274
|
+
@property
|
8275
|
+
@pulumi.getter
|
8276
|
+
def expression(self) -> str:
|
8277
|
+
return pulumi.get(self, "expression")
|
8278
|
+
|
8279
|
+
@property
|
8280
|
+
@pulumi.getter
|
8281
|
+
def title(self) -> str:
|
8282
|
+
return pulumi.get(self, "title")
|
8283
|
+
|
8284
|
+
@property
|
8285
|
+
@pulumi.getter
|
8286
|
+
def description(self) -> Optional[str]:
|
8287
|
+
return pulumi.get(self, "description")
|
8288
|
+
|
8289
|
+
|
8178
8290
|
@pulumi.output_type
|
8179
8291
|
class WorkflowTemplateEncryptionConfig(dict):
|
8180
8292
|
@staticmethod
|