pulumi-gcp 7.28.0a1718950249__py3-none-any.whl → 7.29.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 +67 -0
- pulumi_gcp/_utilities.py +35 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +58 -74
- pulumi_gcp/accesscontextmanager/access_levels.py +0 -20
- pulumi_gcp/accesscontextmanager/outputs.py +58 -74
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/activedirectory/domain.py +14 -14
- pulumi_gcp/activedirectory/domain_trust.py +14 -14
- pulumi_gcp/alloydb/backup.py +8 -8
- pulumi_gcp/alloydb/cluster.py +11 -17
- pulumi_gcp/alloydb/instance.py +8 -8
- pulumi_gcp/alloydb/user.py +8 -8
- pulumi_gcp/apigee/addons_config.py +4 -4
- pulumi_gcp/apigee/endpoint_attachment.py +2 -2
- pulumi_gcp/apigee/env_group.py +2 -2
- pulumi_gcp/apigee/environment.py +2 -2
- pulumi_gcp/apigee/instance.py +8 -8
- pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +10 -10
- pulumi_gcp/apigee/nat_address.py +2 -2
- pulumi_gcp/apigee/organization.py +6 -6
- pulumi_gcp/apigee/sync_authorization.py +4 -4
- pulumi_gcp/apigee/target_server.py +10 -10
- pulumi_gcp/apphub/service.py +20 -20
- pulumi_gcp/apphub/service_project_attachment.py +8 -8
- pulumi_gcp/applicationintegration/auth_config.py +2 -2
- pulumi_gcp/applicationintegration/client.py +6 -18
- pulumi_gcp/artifactregistry/__init__.py +1 -0
- pulumi_gcp/artifactregistry/_inputs.py +4 -4
- pulumi_gcp/artifactregistry/get_docker_image.py +244 -0
- pulumi_gcp/artifactregistry/outputs.py +6 -6
- pulumi_gcp/artifactregistry/repository.py +10 -10
- pulumi_gcp/backupdisasterrecovery/management_server.py +2 -2
- pulumi_gcp/bigquery/_inputs.py +2 -6
- pulumi_gcp/bigquery/data_transfer_config.py +4 -4
- pulumi_gcp/bigquery/dataset.py +75 -0
- pulumi_gcp/bigquery/get_dataset.py +11 -1
- pulumi_gcp/bigquery/job.py +6 -6
- pulumi_gcp/bigquery/outputs.py +2 -6
- pulumi_gcp/bigtable/_inputs.py +41 -3
- pulumi_gcp/bigtable/instance.py +3 -9
- pulumi_gcp/bigtable/outputs.py +50 -3
- pulumi_gcp/bigtable/table.py +54 -0
- pulumi_gcp/billing/_inputs.py +22 -0
- pulumi_gcp/billing/budget.py +50 -0
- pulumi_gcp/billing/outputs.py +20 -0
- pulumi_gcp/certificateauthority/authority.py +2 -2
- pulumi_gcp/certificateauthority/certificate.py +4 -4
- pulumi_gcp/certificatemanager/_inputs.py +2 -6
- pulumi_gcp/certificatemanager/certificate.py +4 -4
- pulumi_gcp/certificatemanager/certificate_issuance_config.py +2 -2
- pulumi_gcp/certificatemanager/outputs.py +2 -6
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +6 -6
- pulumi_gcp/cloudbuild/trigger.py +2 -2
- pulumi_gcp/cloudbuild/worker_pool.py +6 -6
- pulumi_gcp/cloudbuildv2/_inputs.py +383 -0
- pulumi_gcp/cloudbuildv2/connection.py +112 -4
- pulumi_gcp/cloudbuildv2/outputs.py +421 -0
- pulumi_gcp/cloudbuildv2/repository.py +2 -2
- pulumi_gcp/cloudfunctionsv2/function.py +28 -28
- pulumi_gcp/cloudids/endpoint.py +2 -2
- pulumi_gcp/cloudrun/_inputs.py +3 -9
- pulumi_gcp/cloudrun/outputs.py +3 -9
- pulumi_gcp/cloudrunv2/get_job.py +21 -1
- pulumi_gcp/cloudrunv2/job.py +163 -19
- pulumi_gcp/cloudrunv2/service.py +8 -8
- pulumi_gcp/composer/__init__.py +3 -0
- pulumi_gcp/composer/get_user_workloads_config_map.py +190 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +188 -0
- pulumi_gcp/composer/user_workloads_config_map.py +475 -0
- pulumi_gcp/compute/_inputs.py +87 -2
- pulumi_gcp/compute/backend_service.py +28 -48
- pulumi_gcp/compute/disk.py +3 -9
- pulumi_gcp/compute/firewall.py +3 -9
- pulumi_gcp/compute/forwarding_rule.py +22 -22
- pulumi_gcp/compute/interconnect.py +4 -4
- pulumi_gcp/compute/outputs.py +176 -5
- pulumi_gcp/compute/packet_mirroring.py +2 -2
- pulumi_gcp/compute/project_cloud_armor_tier.py +2 -2
- pulumi_gcp/compute/region_backend_service.py +35 -48
- pulumi_gcp/compute/region_disk.py +3 -9
- pulumi_gcp/compute/region_network_endpoint.py +187 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +49 -9
- pulumi_gcp/compute/region_security_policy_rule.py +2 -2
- pulumi_gcp/compute/region_target_https_proxy.py +7 -14
- pulumi_gcp/compute/route.py +2 -2
- pulumi_gcp/compute/subnetwork.py +2 -6
- pulumi_gcp/compute/target_https_proxy.py +28 -14
- pulumi_gcp/compute/target_instance.py +2 -2
- pulumi_gcp/compute/vpn_gateway.py +2 -2
- pulumi_gcp/compute/vpn_tunnel.py +2 -2
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +4 -8
- pulumi_gcp/container/outputs.py +6 -10
- pulumi_gcp/databasemigrationservice/connection_profile.py +16 -16
- pulumi_gcp/datacatalog/policy_tag.py +2 -2
- pulumi_gcp/datafusion/instance.py +4 -8
- pulumi_gcp/dataplex/asset.py +2 -2
- pulumi_gcp/dataplex/datascan.py +2 -2
- pulumi_gcp/dataproc/_inputs.py +100 -0
- pulumi_gcp/dataproc/metastore_service.py +172 -0
- pulumi_gcp/dataproc/outputs.py +192 -1
- pulumi_gcp/dataproc/workflow_template.py +3 -9
- pulumi_gcp/datastore/data_store_index.py +2 -2
- pulumi_gcp/datastream/stream.py +6 -6
- pulumi_gcp/diagflow/entity_type.py +2 -2
- pulumi_gcp/diagflow/fulfillment.py +2 -2
- pulumi_gcp/diagflow/intent.py +4 -4
- pulumi_gcp/discoveryengine/_inputs.py +227 -0
- pulumi_gcp/discoveryengine/data_store.py +108 -0
- pulumi_gcp/discoveryengine/outputs.py +280 -0
- pulumi_gcp/edgecontainer/_inputs.py +107 -1
- pulumi_gcp/edgecontainer/node_pool.py +2 -2
- pulumi_gcp/edgecontainer/outputs.py +123 -1
- pulumi_gcp/edgecontainer/vpn_connection.py +2 -2
- pulumi_gcp/eventarc/channel.py +2 -2
- pulumi_gcp/eventarc/google_channel_config.py +2 -2
- pulumi_gcp/filestore/instance.py +3 -9
- pulumi_gcp/firebase/app_check_app_attest_config.py +8 -8
- pulumi_gcp/firebase/app_check_debug_token.py +4 -4
- pulumi_gcp/firebase/app_check_device_check_config.py +4 -4
- pulumi_gcp/firebase/app_check_play_integrity_config.py +8 -8
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +4 -4
- pulumi_gcp/firebase/app_check_recaptcha_v3_config.py +4 -4
- pulumi_gcp/firebase/app_check_service_config.py +6 -6
- pulumi_gcp/firebase/database_instance.py +2 -2
- pulumi_gcp/firestore/database.py +4 -4
- pulumi_gcp/firestore/document.py +12 -12
- pulumi_gcp/folder/access_approval_settings.py +2 -2
- pulumi_gcp/gkehub/_inputs.py +20 -8
- pulumi_gcp/gkehub/membership.py +3 -9
- pulumi_gcp/gkehub/membership_binding.py +4 -4
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +2 -2
- pulumi_gcp/gkehub/outputs.py +19 -9
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +2 -2
- pulumi_gcp/healthcare/fhir_store.py +3 -9
- pulumi_gcp/healthcare/hl7_store.py +3 -9
- pulumi_gcp/integrationconnectors/connection.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +6 -6
- pulumi_gcp/kms/_inputs.py +1 -3
- pulumi_gcp/kms/autokey_config.py +16 -16
- pulumi_gcp/kms/key_handle.py +22 -22
- pulumi_gcp/kms/outputs.py +1 -3
- pulumi_gcp/logging/folder_settings.py +2 -2
- pulumi_gcp/logging/folder_sink.py +14 -14
- pulumi_gcp/logging/linked_dataset.py +2 -2
- pulumi_gcp/logging/organization_settings.py +2 -2
- pulumi_gcp/logging/organization_sink.py +14 -14
- pulumi_gcp/logging/project_bucket_config.py +2 -2
- pulumi_gcp/looker/instance.py +2 -2
- pulumi_gcp/managedkafka/__init__.py +11 -0
- pulumi_gcp/managedkafka/_inputs.py +169 -0
- pulumi_gcp/managedkafka/cluster.py +807 -0
- pulumi_gcp/managedkafka/outputs.py +197 -0
- pulumi_gcp/managedkafka/topic.py +599 -0
- pulumi_gcp/netapp/__init__.py +1 -0
- pulumi_gcp/netapp/active_directory.py +55 -0
- pulumi_gcp/netapp/backup.py +903 -0
- pulumi_gcp/netapp/volume_replication.py +2 -2
- pulumi_gcp/netapp/volume_snapshot.py +2 -2
- pulumi_gcp/networkconnectivity/internal_range.py +2 -2
- pulumi_gcp/networksecurity/gateway_security_policy.py +4 -4
- pulumi_gcp/networksecurity/tls_inspection_policy.py +4 -4
- pulumi_gcp/networkservices/gateway.py +6 -6
- pulumi_gcp/organizations/access_approval_settings.py +2 -2
- pulumi_gcp/parallelstore/instance.py +2 -2
- pulumi_gcp/projects/access_approval_settings.py +5 -11
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/_inputs.py +40 -0
- pulumi_gcp/pubsub/outputs.py +66 -0
- pulumi_gcp/pubsub/schema.py +2 -2
- pulumi_gcp/pubsub/subscription.py +174 -8
- pulumi_gcp/pubsub/topic.py +2 -2
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +4 -4
- pulumi_gcp/redis/get_instance.py +11 -1
- pulumi_gcp/redis/instance.py +49 -2
- pulumi_gcp/secretmanager/secret.py +2 -2
- pulumi_gcp/securesourcemanager/instance.py +6 -6
- pulumi_gcp/securitycenter/__init__.py +3 -0
- pulumi_gcp/securitycenter/_inputs.py +1105 -0
- pulumi_gcp/securitycenter/instance_iam_binding.py +2 -2
- pulumi_gcp/securitycenter/instance_iam_member.py +2 -2
- pulumi_gcp/securitycenter/instance_iam_policy.py +2 -2
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +725 -0
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +713 -0
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +706 -0
- pulumi_gcp/securitycenter/outputs.py +1048 -0
- pulumi_gcp/servicenetworking/__init__.py +1 -0
- pulumi_gcp/servicenetworking/vpc_service_controls.py +511 -0
- pulumi_gcp/sql/_inputs.py +1 -3
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/outputs.py +1 -3
- pulumi_gcp/sql/user.py +21 -7
- pulumi_gcp/storage/get_project_service_account.py +2 -2
- pulumi_gcp/storage/insights_report_config.py +2 -2
- pulumi_gcp/storage/notification.py +2 -2
- pulumi_gcp/storage/transfer_agent_pool.py +2 -2
- pulumi_gcp/storage/transfer_job.py +4 -4
- pulumi_gcp/tpu/v2_vm.py +4 -4
- pulumi_gcp/vertex/_inputs.py +1 -3
- pulumi_gcp/vertex/ai_endpoint.py +2 -2
- pulumi_gcp/vertex/ai_feature_online_store.py +31 -8
- pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
- pulumi_gcp/vertex/ai_tensorboard.py +2 -2
- pulumi_gcp/vertex/outputs.py +1 -3
- pulumi_gcp/vmwareengine/external_address.py +2 -2
- pulumi_gcp/vmwareengine/network.py +4 -4
- pulumi_gcp/vpcaccess/connector.py +2 -8
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/RECORD +214 -200
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/top_level.txt +0 -0
@@ -1668,8 +1668,8 @@ class ServicePerimeterEgressPolicyEgressFrom(dict):
|
|
1668
1668
|
sources: Optional[Sequence['outputs.ServicePerimeterEgressPolicyEgressFromSource']] = None):
|
1669
1669
|
"""
|
1670
1670
|
:param Sequence[str] identities: A list of identities that are allowed access through this `EgressPolicy`.
|
1671
|
-
Should be in the format of
|
1672
|
-
represent
|
1671
|
+
Should be in the format of email address. The email address should
|
1672
|
+
represent individual user or service account only.
|
1673
1673
|
:param str identity_type: Specifies the type of identities that are allowed access to outside the
|
1674
1674
|
perimeter. If left unspecified, then members of `identities` field will
|
1675
1675
|
be allowed access.
|
@@ -1693,8 +1693,8 @@ class ServicePerimeterEgressPolicyEgressFrom(dict):
|
|
1693
1693
|
def identities(self) -> Optional[Sequence[str]]:
|
1694
1694
|
"""
|
1695
1695
|
A list of identities that are allowed access through this `EgressPolicy`.
|
1696
|
-
Should be in the format of
|
1697
|
-
represent
|
1696
|
+
Should be in the format of email address. The email address should
|
1697
|
+
represent individual user or service account only.
|
1698
1698
|
"""
|
1699
1699
|
return pulumi.get(self, "identities")
|
1700
1700
|
|
@@ -1963,9 +1963,9 @@ class ServicePerimeterIngressPolicyIngressFrom(dict):
|
|
1963
1963
|
identity_type: Optional[str] = None,
|
1964
1964
|
sources: Optional[Sequence['outputs.ServicePerimeterIngressPolicyIngressFromSource']] = None):
|
1965
1965
|
"""
|
1966
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this
|
1967
|
-
Should be in the format of
|
1968
|
-
|
1966
|
+
:param Sequence[str] identities: A list of identities that are allowed access through this ingress policy.
|
1967
|
+
Should be in the format of email address. The email address should represent
|
1968
|
+
individual user or service account only.
|
1969
1969
|
:param str identity_type: Specifies the type of identities that are allowed access from outside the
|
1970
1970
|
perimeter. If left unspecified, then members of `identities` field will be
|
1971
1971
|
allowed access.
|
@@ -1984,9 +1984,9 @@ class ServicePerimeterIngressPolicyIngressFrom(dict):
|
|
1984
1984
|
@pulumi.getter
|
1985
1985
|
def identities(self) -> Optional[Sequence[str]]:
|
1986
1986
|
"""
|
1987
|
-
A list of identities that are allowed access through this
|
1988
|
-
Should be in the format of
|
1989
|
-
|
1987
|
+
A list of identities that are allowed access through this ingress policy.
|
1988
|
+
Should be in the format of email address. The email address should represent
|
1989
|
+
individual user or service account only.
|
1990
1990
|
"""
|
1991
1991
|
return pulumi.get(self, "identities")
|
1992
1992
|
|
@@ -2466,10 +2466,9 @@ class ServicePerimeterSpecEgressPolicyEgressFrom(dict):
|
|
2466
2466
|
source_restriction: Optional[str] = None,
|
2467
2467
|
sources: Optional[Sequence['outputs.ServicePerimeterSpecEgressPolicyEgressFromSource']] = None):
|
2468
2468
|
"""
|
2469
|
-
:param Sequence[str] identities:
|
2470
|
-
|
2471
|
-
|
2472
|
-
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
2469
|
+
:param Sequence[str] identities: A list of identities that are allowed access through this `EgressPolicy`.
|
2470
|
+
Should be in the format of email address. The email address should
|
2471
|
+
represent individual user or service account only.
|
2473
2472
|
:param str identity_type: Specifies the type of identities that are allowed access to outside the
|
2474
2473
|
perimeter. If left unspecified, then members of `identities` field will
|
2475
2474
|
be allowed access.
|
@@ -2492,10 +2491,9 @@ class ServicePerimeterSpecEgressPolicyEgressFrom(dict):
|
|
2492
2491
|
@pulumi.getter
|
2493
2492
|
def identities(self) -> Optional[Sequence[str]]:
|
2494
2493
|
"""
|
2495
|
-
|
2496
|
-
|
2497
|
-
|
2498
|
-
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
2494
|
+
A list of identities that are allowed access through this `EgressPolicy`.
|
2495
|
+
Should be in the format of email address. The email address should
|
2496
|
+
represent individual user or service account only.
|
2499
2497
|
"""
|
2500
2498
|
return pulumi.get(self, "identities")
|
2501
2499
|
|
@@ -2822,10 +2820,9 @@ class ServicePerimeterSpecIngressPolicyIngressFrom(dict):
|
|
2822
2820
|
identity_type: Optional[str] = None,
|
2823
2821
|
sources: Optional[Sequence['outputs.ServicePerimeterSpecIngressPolicyIngressFromSource']] = None):
|
2824
2822
|
"""
|
2825
|
-
:param Sequence[str] identities:
|
2826
|
-
|
2827
|
-
|
2828
|
-
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
2823
|
+
:param Sequence[str] identities: A list of identities that are allowed access through this ingress policy.
|
2824
|
+
Should be in the format of email address. The email address should represent
|
2825
|
+
individual user or service account only.
|
2829
2826
|
:param str identity_type: Specifies the type of identities that are allowed access from outside the
|
2830
2827
|
perimeter. If left unspecified, then members of `identities` field will be
|
2831
2828
|
allowed access.
|
@@ -2844,10 +2841,9 @@ class ServicePerimeterSpecIngressPolicyIngressFrom(dict):
|
|
2844
2841
|
@pulumi.getter
|
2845
2842
|
def identities(self) -> Optional[Sequence[str]]:
|
2846
2843
|
"""
|
2847
|
-
|
2848
|
-
|
2849
|
-
|
2850
|
-
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
2844
|
+
A list of identities that are allowed access through this ingress policy.
|
2845
|
+
Should be in the format of email address. The email address should represent
|
2846
|
+
individual user or service account only.
|
2851
2847
|
"""
|
2852
2848
|
return pulumi.get(self, "identities")
|
2853
2849
|
|
@@ -3367,10 +3363,9 @@ class ServicePerimeterStatusEgressPolicyEgressFrom(dict):
|
|
3367
3363
|
source_restriction: Optional[str] = None,
|
3368
3364
|
sources: Optional[Sequence['outputs.ServicePerimeterStatusEgressPolicyEgressFromSource']] = None):
|
3369
3365
|
"""
|
3370
|
-
:param Sequence[str] identities:
|
3371
|
-
|
3372
|
-
|
3373
|
-
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
3366
|
+
:param Sequence[str] identities: A list of identities that are allowed access through this `EgressPolicy`.
|
3367
|
+
Should be in the format of email address. The email address should
|
3368
|
+
represent individual user or service account only.
|
3374
3369
|
:param str identity_type: Specifies the type of identities that are allowed access to outside the
|
3375
3370
|
perimeter. If left unspecified, then members of `identities` field will
|
3376
3371
|
be allowed access.
|
@@ -3393,10 +3388,9 @@ class ServicePerimeterStatusEgressPolicyEgressFrom(dict):
|
|
3393
3388
|
@pulumi.getter
|
3394
3389
|
def identities(self) -> Optional[Sequence[str]]:
|
3395
3390
|
"""
|
3396
|
-
|
3397
|
-
|
3398
|
-
|
3399
|
-
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
3391
|
+
A list of identities that are allowed access through this `EgressPolicy`.
|
3392
|
+
Should be in the format of email address. The email address should
|
3393
|
+
represent individual user or service account only.
|
3400
3394
|
"""
|
3401
3395
|
return pulumi.get(self, "identities")
|
3402
3396
|
|
@@ -3723,10 +3717,9 @@ class ServicePerimeterStatusIngressPolicyIngressFrom(dict):
|
|
3723
3717
|
identity_type: Optional[str] = None,
|
3724
3718
|
sources: Optional[Sequence['outputs.ServicePerimeterStatusIngressPolicyIngressFromSource']] = None):
|
3725
3719
|
"""
|
3726
|
-
:param Sequence[str] identities:
|
3727
|
-
|
3728
|
-
|
3729
|
-
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
3720
|
+
:param Sequence[str] identities: A list of identities that are allowed access through this ingress policy.
|
3721
|
+
Should be in the format of email address. The email address should represent
|
3722
|
+
individual user or service account only.
|
3730
3723
|
:param str identity_type: Specifies the type of identities that are allowed access from outside the
|
3731
3724
|
perimeter. If left unspecified, then members of `identities` field will be
|
3732
3725
|
allowed access.
|
@@ -3745,10 +3738,9 @@ class ServicePerimeterStatusIngressPolicyIngressFrom(dict):
|
|
3745
3738
|
@pulumi.getter
|
3746
3739
|
def identities(self) -> Optional[Sequence[str]]:
|
3747
3740
|
"""
|
3748
|
-
|
3749
|
-
|
3750
|
-
|
3751
|
-
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
3741
|
+
A list of identities that are allowed access through this ingress policy.
|
3742
|
+
Should be in the format of email address. The email address should represent
|
3743
|
+
individual user or service account only.
|
3752
3744
|
"""
|
3753
3745
|
return pulumi.get(self, "identities")
|
3754
3746
|
|
@@ -4474,10 +4466,9 @@ class ServicePerimetersServicePerimeterSpecEgressPolicyEgressFrom(dict):
|
|
4474
4466
|
source_restriction: Optional[str] = None,
|
4475
4467
|
sources: Optional[Sequence['outputs.ServicePerimetersServicePerimeterSpecEgressPolicyEgressFromSource']] = None):
|
4476
4468
|
"""
|
4477
|
-
:param Sequence[str] identities:
|
4478
|
-
|
4479
|
-
|
4480
|
-
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
4469
|
+
:param Sequence[str] identities: A list of identities that are allowed access through this `EgressPolicy`.
|
4470
|
+
Should be in the format of email address. The email address should
|
4471
|
+
represent individual user or service account only.
|
4481
4472
|
:param str identity_type: Specifies the type of identities that are allowed access to outside the
|
4482
4473
|
perimeter. If left unspecified, then members of `identities` field will
|
4483
4474
|
be allowed access.
|
@@ -4500,10 +4491,9 @@ class ServicePerimetersServicePerimeterSpecEgressPolicyEgressFrom(dict):
|
|
4500
4491
|
@pulumi.getter
|
4501
4492
|
def identities(self) -> Optional[Sequence[str]]:
|
4502
4493
|
"""
|
4503
|
-
|
4504
|
-
|
4505
|
-
|
4506
|
-
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
4494
|
+
A list of identities that are allowed access through this `EgressPolicy`.
|
4495
|
+
Should be in the format of email address. The email address should
|
4496
|
+
represent individual user or service account only.
|
4507
4497
|
"""
|
4508
4498
|
return pulumi.get(self, "identities")
|
4509
4499
|
|
@@ -4830,10 +4820,9 @@ class ServicePerimetersServicePerimeterSpecIngressPolicyIngressFrom(dict):
|
|
4830
4820
|
identity_type: Optional[str] = None,
|
4831
4821
|
sources: Optional[Sequence['outputs.ServicePerimetersServicePerimeterSpecIngressPolicyIngressFromSource']] = None):
|
4832
4822
|
"""
|
4833
|
-
:param Sequence[str] identities:
|
4834
|
-
|
4835
|
-
|
4836
|
-
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
4823
|
+
:param Sequence[str] identities: A list of identities that are allowed access through this ingress policy.
|
4824
|
+
Should be in the format of email address. The email address should represent
|
4825
|
+
individual user or service account only.
|
4837
4826
|
:param str identity_type: Specifies the type of identities that are allowed access from outside the
|
4838
4827
|
perimeter. If left unspecified, then members of `identities` field will be
|
4839
4828
|
allowed access.
|
@@ -4852,10 +4841,9 @@ class ServicePerimetersServicePerimeterSpecIngressPolicyIngressFrom(dict):
|
|
4852
4841
|
@pulumi.getter
|
4853
4842
|
def identities(self) -> Optional[Sequence[str]]:
|
4854
4843
|
"""
|
4855
|
-
|
4856
|
-
|
4857
|
-
|
4858
|
-
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
4844
|
+
A list of identities that are allowed access through this ingress policy.
|
4845
|
+
Should be in the format of email address. The email address should represent
|
4846
|
+
individual user or service account only.
|
4859
4847
|
"""
|
4860
4848
|
return pulumi.get(self, "identities")
|
4861
4849
|
|
@@ -5375,10 +5363,9 @@ class ServicePerimetersServicePerimeterStatusEgressPolicyEgressFrom(dict):
|
|
5375
5363
|
source_restriction: Optional[str] = None,
|
5376
5364
|
sources: Optional[Sequence['outputs.ServicePerimetersServicePerimeterStatusEgressPolicyEgressFromSource']] = None):
|
5377
5365
|
"""
|
5378
|
-
:param Sequence[str] identities:
|
5379
|
-
|
5380
|
-
|
5381
|
-
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
5366
|
+
:param Sequence[str] identities: A list of identities that are allowed access through this `EgressPolicy`.
|
5367
|
+
Should be in the format of email address. The email address should
|
5368
|
+
represent individual user or service account only.
|
5382
5369
|
:param str identity_type: Specifies the type of identities that are allowed access to outside the
|
5383
5370
|
perimeter. If left unspecified, then members of `identities` field will
|
5384
5371
|
be allowed access.
|
@@ -5401,10 +5388,9 @@ class ServicePerimetersServicePerimeterStatusEgressPolicyEgressFrom(dict):
|
|
5401
5388
|
@pulumi.getter
|
5402
5389
|
def identities(self) -> Optional[Sequence[str]]:
|
5403
5390
|
"""
|
5404
|
-
|
5405
|
-
|
5406
|
-
|
5407
|
-
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
5391
|
+
A list of identities that are allowed access through this `EgressPolicy`.
|
5392
|
+
Should be in the format of email address. The email address should
|
5393
|
+
represent individual user or service account only.
|
5408
5394
|
"""
|
5409
5395
|
return pulumi.get(self, "identities")
|
5410
5396
|
|
@@ -5731,10 +5717,9 @@ class ServicePerimetersServicePerimeterStatusIngressPolicyIngressFrom(dict):
|
|
5731
5717
|
identity_type: Optional[str] = None,
|
5732
5718
|
sources: Optional[Sequence['outputs.ServicePerimetersServicePerimeterStatusIngressPolicyIngressFromSource']] = None):
|
5733
5719
|
"""
|
5734
|
-
:param Sequence[str] identities:
|
5735
|
-
|
5736
|
-
|
5737
|
-
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
5720
|
+
:param Sequence[str] identities: A list of identities that are allowed access through this ingress policy.
|
5721
|
+
Should be in the format of email address. The email address should represent
|
5722
|
+
individual user or service account only.
|
5738
5723
|
:param str identity_type: Specifies the type of identities that are allowed access from outside the
|
5739
5724
|
perimeter. If left unspecified, then members of `identities` field will be
|
5740
5725
|
allowed access.
|
@@ -5753,10 +5738,9 @@ class ServicePerimetersServicePerimeterStatusIngressPolicyIngressFrom(dict):
|
|
5753
5738
|
@pulumi.getter
|
5754
5739
|
def identities(self) -> Optional[Sequence[str]]:
|
5755
5740
|
"""
|
5756
|
-
|
5757
|
-
|
5758
|
-
|
5759
|
-
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
5741
|
+
A list of identities that are allowed access through this ingress policy.
|
5742
|
+
Should be in the format of email address. The email address should represent
|
5743
|
+
individual user or service account only.
|
5760
5744
|
"""
|
5761
5745
|
return pulumi.get(self, "identities")
|
5762
5746
|
|
@@ -667,6 +667,7 @@ class ServicePerimeter(pulumi.CustomResource):
|
|
667
667
|
),
|
668
668
|
use_explicit_dry_run_spec=True)
|
669
669
|
```
|
670
|
+
|
670
671
|
## Import
|
671
672
|
|
672
673
|
ServicePerimeter can be imported using any of these accepted formats:
|
@@ -923,6 +924,7 @@ class ServicePerimeter(pulumi.CustomResource):
|
|
923
924
|
),
|
924
925
|
use_explicit_dry_run_spec=True)
|
925
926
|
```
|
927
|
+
|
926
928
|
## Import
|
927
929
|
|
928
930
|
ServicePerimeter can be imported using any of these accepted formats:
|
@@ -23,8 +23,8 @@ class DomainArgs:
|
|
23
23
|
project: Optional[pulumi.Input[str]] = None):
|
24
24
|
"""
|
25
25
|
The set of arguments for constructing a Domain resource.
|
26
|
-
:param pulumi.Input[str] domain_name: The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
27
|
-
https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
26
|
+
:param pulumi.Input[str] domain_name: The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
27
|
+
of https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
28
28
|
|
29
29
|
|
30
30
|
- - -
|
@@ -58,8 +58,8 @@ class DomainArgs:
|
|
58
58
|
@pulumi.getter(name="domainName")
|
59
59
|
def domain_name(self) -> pulumi.Input[str]:
|
60
60
|
"""
|
61
|
-
The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
62
|
-
https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
61
|
+
The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
62
|
+
of https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
63
63
|
|
64
64
|
|
65
65
|
- - -
|
@@ -170,8 +170,8 @@ class _DomainState:
|
|
170
170
|
If not specified, setupadmin will be used.
|
171
171
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_networks: The full names of the Google Compute Engine networks the domain instance is connected to. The domain is only available on networks listed in authorizedNetworks.
|
172
172
|
If CIDR subnets overlap between networks, domain creation will fail.
|
173
|
-
:param pulumi.Input[str] domain_name: The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
174
|
-
https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
173
|
+
:param pulumi.Input[str] domain_name: The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
174
|
+
of https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
175
175
|
|
176
176
|
|
177
177
|
- - -
|
@@ -244,8 +244,8 @@ class _DomainState:
|
|
244
244
|
@pulumi.getter(name="domainName")
|
245
245
|
def domain_name(self) -> Optional[pulumi.Input[str]]:
|
246
246
|
"""
|
247
|
-
The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
248
|
-
https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
247
|
+
The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
248
|
+
of https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
249
249
|
|
250
250
|
|
251
251
|
- - -
|
@@ -414,8 +414,8 @@ class Domain(pulumi.CustomResource):
|
|
414
414
|
If not specified, setupadmin will be used.
|
415
415
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_networks: The full names of the Google Compute Engine networks the domain instance is connected to. The domain is only available on networks listed in authorizedNetworks.
|
416
416
|
If CIDR subnets overlap between networks, domain creation will fail.
|
417
|
-
:param pulumi.Input[str] domain_name: The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
418
|
-
https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
417
|
+
:param pulumi.Input[str] domain_name: The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
418
|
+
of https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
419
419
|
|
420
420
|
|
421
421
|
- - -
|
@@ -552,8 +552,8 @@ class Domain(pulumi.CustomResource):
|
|
552
552
|
If not specified, setupadmin will be used.
|
553
553
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] authorized_networks: The full names of the Google Compute Engine networks the domain instance is connected to. The domain is only available on networks listed in authorizedNetworks.
|
554
554
|
If CIDR subnets overlap between networks, domain creation will fail.
|
555
|
-
:param pulumi.Input[str] domain_name: The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
556
|
-
https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
555
|
+
:param pulumi.Input[str] domain_name: The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
556
|
+
of https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
557
557
|
|
558
558
|
|
559
559
|
- - -
|
@@ -612,8 +612,8 @@ class Domain(pulumi.CustomResource):
|
|
612
612
|
@pulumi.getter(name="domainName")
|
613
613
|
def domain_name(self) -> pulumi.Output[str]:
|
614
614
|
"""
|
615
|
-
The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
616
|
-
https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
615
|
+
The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
616
|
+
of https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
617
617
|
|
618
618
|
|
619
619
|
- - -
|
@@ -24,8 +24,8 @@ class DomainTrustArgs:
|
|
24
24
|
selective_authentication: Optional[pulumi.Input[bool]] = None):
|
25
25
|
"""
|
26
26
|
The set of arguments for constructing a DomainTrust resource.
|
27
|
-
:param pulumi.Input[str] domain: The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
28
|
-
https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
27
|
+
:param pulumi.Input[str] domain: The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
28
|
+
of https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
29
29
|
|
30
30
|
|
31
31
|
- - -
|
@@ -56,8 +56,8 @@ class DomainTrustArgs:
|
|
56
56
|
@pulumi.getter
|
57
57
|
def domain(self) -> pulumi.Input[str]:
|
58
58
|
"""
|
59
|
-
The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
60
|
-
https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
59
|
+
The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
60
|
+
of https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
61
61
|
|
62
62
|
|
63
63
|
- - -
|
@@ -170,8 +170,8 @@ class _DomainTrustState:
|
|
170
170
|
trust_type: Optional[pulumi.Input[str]] = None):
|
171
171
|
"""
|
172
172
|
Input properties used for looking up and filtering DomainTrust resources.
|
173
|
-
:param pulumi.Input[str] domain: The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
174
|
-
https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
173
|
+
:param pulumi.Input[str] domain: The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
174
|
+
of https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
175
175
|
|
176
176
|
|
177
177
|
- - -
|
@@ -208,8 +208,8 @@ class _DomainTrustState:
|
|
208
208
|
@pulumi.getter
|
209
209
|
def domain(self) -> Optional[pulumi.Input[str]]:
|
210
210
|
"""
|
211
|
-
The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
212
|
-
https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
211
|
+
The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
212
|
+
of https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
213
213
|
|
214
214
|
|
215
215
|
- - -
|
@@ -375,8 +375,8 @@ class DomainTrust(pulumi.CustomResource):
|
|
375
375
|
|
376
376
|
:param str resource_name: The name of the resource.
|
377
377
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
378
|
-
:param pulumi.Input[str] domain: The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
379
|
-
https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
378
|
+
:param pulumi.Input[str] domain: The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
379
|
+
of https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
380
380
|
|
381
381
|
|
382
382
|
- - -
|
@@ -527,8 +527,8 @@ class DomainTrust(pulumi.CustomResource):
|
|
527
527
|
:param str resource_name: The unique name of the resulting resource.
|
528
528
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
529
529
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
530
|
-
:param pulumi.Input[str] domain: The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
531
|
-
https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
530
|
+
:param pulumi.Input[str] domain: The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
531
|
+
of https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
532
532
|
|
533
533
|
|
534
534
|
- - -
|
@@ -562,8 +562,8 @@ class DomainTrust(pulumi.CustomResource):
|
|
562
562
|
@pulumi.getter
|
563
563
|
def domain(self) -> pulumi.Output[str]:
|
564
564
|
"""
|
565
|
-
The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
566
|
-
https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
565
|
+
The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions
|
566
|
+
of https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
|
567
567
|
|
568
568
|
|
569
569
|
- - -
|
pulumi_gcp/alloydb/backup.py
CHANGED
@@ -722,12 +722,12 @@ class Backup(pulumi.CustomResource):
|
|
722
722
|
cluster=default_cluster.name,
|
723
723
|
instance_id="alloydb-instance",
|
724
724
|
instance_type="PRIMARY",
|
725
|
-
opts=pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
725
|
+
opts = pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
726
726
|
default = gcp.alloydb.Backup("default",
|
727
727
|
location="us-central1",
|
728
728
|
backup_id="alloydb-backup",
|
729
729
|
cluster_name=default_cluster.name,
|
730
|
-
opts=pulumi.ResourceOptions(depends_on=[default_instance]))
|
730
|
+
opts = pulumi.ResourceOptions(depends_on=[default_instance]))
|
731
731
|
```
|
732
732
|
### Alloydb Backup Full
|
733
733
|
|
@@ -756,7 +756,7 @@ class Backup(pulumi.CustomResource):
|
|
756
756
|
cluster=default_cluster.name,
|
757
757
|
instance_id="alloydb-instance",
|
758
758
|
instance_type="PRIMARY",
|
759
|
-
opts=pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
759
|
+
opts = pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
760
760
|
default = gcp.alloydb.Backup("default",
|
761
761
|
location="us-central1",
|
762
762
|
backup_id="alloydb-backup",
|
@@ -766,7 +766,7 @@ class Backup(pulumi.CustomResource):
|
|
766
766
|
labels={
|
767
767
|
"label": "key",
|
768
768
|
},
|
769
|
-
opts=pulumi.ResourceOptions(depends_on=[default_instance]))
|
769
|
+
opts = pulumi.ResourceOptions(depends_on=[default_instance]))
|
770
770
|
```
|
771
771
|
|
772
772
|
## Import
|
@@ -863,12 +863,12 @@ class Backup(pulumi.CustomResource):
|
|
863
863
|
cluster=default_cluster.name,
|
864
864
|
instance_id="alloydb-instance",
|
865
865
|
instance_type="PRIMARY",
|
866
|
-
opts=pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
866
|
+
opts = pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
867
867
|
default = gcp.alloydb.Backup("default",
|
868
868
|
location="us-central1",
|
869
869
|
backup_id="alloydb-backup",
|
870
870
|
cluster_name=default_cluster.name,
|
871
|
-
opts=pulumi.ResourceOptions(depends_on=[default_instance]))
|
871
|
+
opts = pulumi.ResourceOptions(depends_on=[default_instance]))
|
872
872
|
```
|
873
873
|
### Alloydb Backup Full
|
874
874
|
|
@@ -897,7 +897,7 @@ class Backup(pulumi.CustomResource):
|
|
897
897
|
cluster=default_cluster.name,
|
898
898
|
instance_id="alloydb-instance",
|
899
899
|
instance_type="PRIMARY",
|
900
|
-
opts=pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
900
|
+
opts = pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
901
901
|
default = gcp.alloydb.Backup("default",
|
902
902
|
location="us-central1",
|
903
903
|
backup_id="alloydb-backup",
|
@@ -907,7 +907,7 @@ class Backup(pulumi.CustomResource):
|
|
907
907
|
labels={
|
908
908
|
"label": "key",
|
909
909
|
},
|
910
|
-
opts=pulumi.ResourceOptions(depends_on=[default_instance]))
|
910
|
+
opts = pulumi.ResourceOptions(depends_on=[default_instance]))
|
911
911
|
```
|
912
912
|
|
913
913
|
## Import
|
pulumi_gcp/alloydb/cluster.py
CHANGED
@@ -323,6 +323,7 @@ class ClusterArgs:
|
|
323
323
|
|
324
324
|
@property
|
325
325
|
@pulumi.getter
|
326
|
+
@_utilities.deprecated("""`network` is deprecated and will be removed in a future major release. Instead, use `network_config` to define the network configuration.""")
|
326
327
|
def network(self) -> Optional[pulumi.Input[str]]:
|
327
328
|
"""
|
328
329
|
(Optional, Deprecated)
|
@@ -331,9 +332,6 @@ class ClusterArgs:
|
|
331
332
|
|
332
333
|
> **Warning:** `network` is deprecated and will be removed in a future major release. Instead, use `network_config` to define the network configuration.
|
333
334
|
"""
|
334
|
-
warnings.warn("""`network` is deprecated and will be removed in a future major release. Instead, use `network_config` to define the network configuration.""", DeprecationWarning)
|
335
|
-
pulumi.log.warn("""network is deprecated: `network` is deprecated and will be removed in a future major release. Instead, use `network_config` to define the network configuration.""")
|
336
|
-
|
337
335
|
return pulumi.get(self, "network")
|
338
336
|
|
339
337
|
@network.setter
|
@@ -868,6 +866,7 @@ class _ClusterState:
|
|
868
866
|
|
869
867
|
@property
|
870
868
|
@pulumi.getter
|
869
|
+
@_utilities.deprecated("""`network` is deprecated and will be removed in a future major release. Instead, use `network_config` to define the network configuration.""")
|
871
870
|
def network(self) -> Optional[pulumi.Input[str]]:
|
872
871
|
"""
|
873
872
|
(Optional, Deprecated)
|
@@ -876,9 +875,6 @@ class _ClusterState:
|
|
876
875
|
|
877
876
|
> **Warning:** `network` is deprecated and will be removed in a future major release. Instead, use `network_config` to define the network configuration.
|
878
877
|
"""
|
879
|
-
warnings.warn("""`network` is deprecated and will be removed in a future major release. Instead, use `network_config` to define the network configuration.""", DeprecationWarning)
|
880
|
-
pulumi.log.warn("""network is deprecated: `network` is deprecated and will be removed in a future major release. Instead, use `network_config` to define the network configuration.""")
|
881
|
-
|
882
878
|
return pulumi.get(self, "network")
|
883
879
|
|
884
880
|
@network.setter
|
@@ -1150,12 +1146,12 @@ class Cluster(pulumi.CustomResource):
|
|
1150
1146
|
machine_config=gcp.alloydb.InstanceMachineConfigArgs(
|
1151
1147
|
cpu_count=2,
|
1152
1148
|
),
|
1153
|
-
opts=pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
1149
|
+
opts = pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
1154
1150
|
source_backup = gcp.alloydb.Backup("source",
|
1155
1151
|
backup_id="alloydb-backup",
|
1156
1152
|
location="us-central1",
|
1157
1153
|
cluster_name=source.name,
|
1158
|
-
opts=pulumi.ResourceOptions(depends_on=[source_instance]))
|
1154
|
+
opts = pulumi.ResourceOptions(depends_on=[source_instance]))
|
1159
1155
|
restored_from_backup = gcp.alloydb.Cluster("restored_from_backup",
|
1160
1156
|
cluster_id="alloydb-backup-restored",
|
1161
1157
|
location="us-central1",
|
@@ -1203,7 +1199,7 @@ class Cluster(pulumi.CustomResource):
|
|
1203
1199
|
machine_config=gcp.alloydb.InstanceMachineConfigArgs(
|
1204
1200
|
cpu_count=2,
|
1205
1201
|
),
|
1206
|
-
opts=pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
1202
|
+
opts = pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
1207
1203
|
secondary = gcp.alloydb.Cluster("secondary",
|
1208
1204
|
cluster_id="alloydb-secondary-cluster",
|
1209
1205
|
location="us-east1",
|
@@ -1215,7 +1211,7 @@ class Cluster(pulumi.CustomResource):
|
|
1215
1211
|
secondary_config=gcp.alloydb.ClusterSecondaryConfigArgs(
|
1216
1212
|
primary_cluster_name=primary.name,
|
1217
1213
|
),
|
1218
|
-
opts=pulumi.ResourceOptions(depends_on=[primary_instance]))
|
1214
|
+
opts = pulumi.ResourceOptions(depends_on=[primary_instance]))
|
1219
1215
|
project = gcp.organizations.get_project()
|
1220
1216
|
```
|
1221
1217
|
|
@@ -1416,12 +1412,12 @@ class Cluster(pulumi.CustomResource):
|
|
1416
1412
|
machine_config=gcp.alloydb.InstanceMachineConfigArgs(
|
1417
1413
|
cpu_count=2,
|
1418
1414
|
),
|
1419
|
-
opts=pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
1415
|
+
opts = pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
1420
1416
|
source_backup = gcp.alloydb.Backup("source",
|
1421
1417
|
backup_id="alloydb-backup",
|
1422
1418
|
location="us-central1",
|
1423
1419
|
cluster_name=source.name,
|
1424
|
-
opts=pulumi.ResourceOptions(depends_on=[source_instance]))
|
1420
|
+
opts = pulumi.ResourceOptions(depends_on=[source_instance]))
|
1425
1421
|
restored_from_backup = gcp.alloydb.Cluster("restored_from_backup",
|
1426
1422
|
cluster_id="alloydb-backup-restored",
|
1427
1423
|
location="us-central1",
|
@@ -1469,7 +1465,7 @@ class Cluster(pulumi.CustomResource):
|
|
1469
1465
|
machine_config=gcp.alloydb.InstanceMachineConfigArgs(
|
1470
1466
|
cpu_count=2,
|
1471
1467
|
),
|
1472
|
-
opts=pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
1468
|
+
opts = pulumi.ResourceOptions(depends_on=[vpc_connection]))
|
1473
1469
|
secondary = gcp.alloydb.Cluster("secondary",
|
1474
1470
|
cluster_id="alloydb-secondary-cluster",
|
1475
1471
|
location="us-east1",
|
@@ -1481,7 +1477,7 @@ class Cluster(pulumi.CustomResource):
|
|
1481
1477
|
secondary_config=gcp.alloydb.ClusterSecondaryConfigArgs(
|
1482
1478
|
primary_cluster_name=primary.name,
|
1483
1479
|
),
|
1484
|
-
opts=pulumi.ResourceOptions(depends_on=[primary_instance]))
|
1480
|
+
opts = pulumi.ResourceOptions(depends_on=[primary_instance]))
|
1485
1481
|
project = gcp.organizations.get_project()
|
1486
1482
|
```
|
1487
1483
|
|
@@ -1945,6 +1941,7 @@ class Cluster(pulumi.CustomResource):
|
|
1945
1941
|
|
1946
1942
|
@property
|
1947
1943
|
@pulumi.getter
|
1944
|
+
@_utilities.deprecated("""`network` is deprecated and will be removed in a future major release. Instead, use `network_config` to define the network configuration.""")
|
1948
1945
|
def network(self) -> pulumi.Output[str]:
|
1949
1946
|
"""
|
1950
1947
|
(Optional, Deprecated)
|
@@ -1953,9 +1950,6 @@ class Cluster(pulumi.CustomResource):
|
|
1953
1950
|
|
1954
1951
|
> **Warning:** `network` is deprecated and will be removed in a future major release. Instead, use `network_config` to define the network configuration.
|
1955
1952
|
"""
|
1956
|
-
warnings.warn("""`network` is deprecated and will be removed in a future major release. Instead, use `network_config` to define the network configuration.""", DeprecationWarning)
|
1957
|
-
pulumi.log.warn("""network is deprecated: `network` is deprecated and will be removed in a future major release. Instead, use `network_config` to define the network configuration.""")
|
1958
|
-
|
1959
1953
|
return pulumi.get(self, "network")
|
1960
1954
|
|
1961
1955
|
@property
|