pulumi-gcp 8.42.0a1758133038__py3-none-any.whl → 9.0.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 +83 -48
- pulumi_gcp/activedirectory/peering.py +16 -0
- pulumi_gcp/alloydb/backup.py +8 -4
- pulumi_gcp/alloydb/cluster.py +56 -10
- pulumi_gcp/alloydb/get_cluster.py +12 -1
- pulumi_gcp/alloydb/instance.py +10 -4
- pulumi_gcp/alloydb/user.py +8 -4
- pulumi_gcp/apigateway/api_config_iam_binding.py +4 -4
- pulumi_gcp/apigateway/api_config_iam_member.py +4 -4
- pulumi_gcp/apigateway/api_config_iam_policy.py +4 -4
- pulumi_gcp/apigateway/api_iam_binding.py +4 -4
- pulumi_gcp/apigateway/api_iam_member.py +4 -4
- pulumi_gcp/apigateway/api_iam_policy.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_binding.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_member.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_policy.py +4 -4
- pulumi_gcp/apigee/_inputs.py +151 -108
- pulumi_gcp/apigee/keystores_aliases_key_cert_file.py +52 -40
- pulumi_gcp/apigee/outputs.py +92 -88
- pulumi_gcp/artifactregistry/__init__.py +2 -0
- pulumi_gcp/artifactregistry/_inputs.py +0 -12
- pulumi_gcp/artifactregistry/get_npm_package.py +251 -0
- pulumi_gcp/artifactregistry/get_python_package.py +237 -0
- pulumi_gcp/artifactregistry/get_repository.py +12 -1
- pulumi_gcp/artifactregistry/outputs.py +8 -16
- pulumi_gcp/artifactregistry/repository.py +28 -0
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +4 -4
- pulumi_gcp/backupdisasterrecovery/get_backup.py +12 -1
- pulumi_gcp/backupdisasterrecovery/get_backup_plan_association.py +4 -0
- pulumi_gcp/backupdisasterrecovery/get_data_source_references.py +135 -0
- pulumi_gcp/backupdisasterrecovery/get_management_server.py +4 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +103 -0
- pulumi_gcp/beyondcorp/__init__.py +0 -5
- pulumi_gcp/beyondcorp/_inputs.py +0 -312
- pulumi_gcp/beyondcorp/outputs.py +0 -200
- pulumi_gcp/bigquery/_inputs.py +114 -4
- pulumi_gcp/bigquery/app_profile.py +3 -5
- pulumi_gcp/bigquery/outputs.py +75 -5
- pulumi_gcp/bigqueryanalyticshub/data_exchange_subscription.py +20 -0
- pulumi_gcp/bigtable/app_profile.py +1 -1
- pulumi_gcp/bigtable/get_table_iam_policy.py +16 -18
- pulumi_gcp/bigtable/table_iam_binding.py +43 -43
- pulumi_gcp/bigtable/table_iam_member.py +43 -43
- pulumi_gcp/bigtable/table_iam_policy.py +43 -43
- pulumi_gcp/billing/_inputs.py +0 -6
- pulumi_gcp/billing/outputs.py +0 -4
- pulumi_gcp/certificatemanager/__init__.py +1 -0
- pulumi_gcp/certificatemanager/certificate_map_entry.py +7 -7
- pulumi_gcp/certificatemanager/get_dns_authorization.py +229 -0
- pulumi_gcp/certificatemanager/outputs.py +41 -0
- pulumi_gcp/chronicle/_inputs.py +6 -5
- pulumi_gcp/chronicle/outputs.py +4 -3
- pulumi_gcp/chronicle/reference_list.py +53 -5
- pulumi_gcp/cloudasset/get_resources_search_all.py +8 -0
- pulumi_gcp/cloudbuild/_inputs.py +309 -45
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +2 -6
- pulumi_gcp/cloudbuild/get_trigger.py +12 -1
- pulumi_gcp/cloudbuild/outputs.py +380 -30
- pulumi_gcp/cloudbuild/trigger.py +160 -2
- pulumi_gcp/cloudbuild/worker_pool.py +2 -6
- pulumi_gcp/cloudfunctionsv2/_inputs.py +23 -21
- pulumi_gcp/cloudfunctionsv2/outputs.py +17 -16
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +16 -0
- pulumi_gcp/cloudrunv2/_inputs.py +80 -26
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/outputs.py +109 -30
- pulumi_gcp/cloudrunv2/service.py +72 -12
- pulumi_gcp/cloudrunv2/worker_pool.py +2 -2
- pulumi_gcp/cloudtasks/queue.py +98 -2
- pulumi_gcp/colab/_inputs.py +1 -114
- pulumi_gcp/colab/outputs.py +1 -106
- pulumi_gcp/compute/_inputs.py +884 -24
- pulumi_gcp/compute/backend_bucket.py +68 -0
- pulumi_gcp/compute/backend_bucket_iam_binding.py +236 -0
- pulumi_gcp/compute/backend_bucket_iam_member.py +236 -0
- pulumi_gcp/compute/backend_bucket_iam_policy.py +236 -0
- pulumi_gcp/compute/backend_service.py +54 -0
- pulumi_gcp/compute/backend_service_iam_binding.py +464 -0
- pulumi_gcp/compute/backend_service_iam_member.py +464 -0
- pulumi_gcp/compute/backend_service_iam_policy.py +464 -0
- pulumi_gcp/compute/cross_site_network.py +16 -0
- pulumi_gcp/compute/future_reservation.py +32 -0
- pulumi_gcp/compute/get_backend_bucket.py +12 -1
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_region_backend_service.py +12 -1
- pulumi_gcp/compute/get_resource_policy.py +2 -20
- pulumi_gcp/compute/machine_image_iam_binding.py +8 -4
- pulumi_gcp/compute/machine_image_iam_member.py +8 -4
- pulumi_gcp/compute/machine_image_iam_policy.py +8 -4
- pulumi_gcp/compute/network_edge_security_service.py +16 -0
- pulumi_gcp/compute/network_firewall_policy_packet_mirroring_rule.py +12 -0
- pulumi_gcp/compute/network_peering_routes_config.py +0 -100
- pulumi_gcp/compute/organization_security_policy.py +83 -51
- pulumi_gcp/compute/outputs.py +799 -16
- pulumi_gcp/compute/packet_mirroring.py +6 -0
- pulumi_gcp/compute/preview_feature.py +16 -0
- pulumi_gcp/compute/public_delegated_prefix.py +42 -0
- pulumi_gcp/compute/region_backend_service.py +54 -0
- pulumi_gcp/compute/region_backend_service_iam_binding.py +488 -0
- pulumi_gcp/compute/region_backend_service_iam_member.py +488 -0
- pulumi_gcp/compute/region_backend_service_iam_policy.py +488 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +1 -3
- pulumi_gcp/compute/region_resize_request.py +24 -0
- pulumi_gcp/compute/region_url_map.py +75 -0
- pulumi_gcp/compute/subnetwork.py +0 -98
- pulumi_gcp/compute/wire_group.py +16 -0
- pulumi_gcp/config/__init__.pyi +2 -2
- pulumi_gcp/config/vars.py +4 -4
- pulumi_gcp/container/_inputs.py +466 -18
- pulumi_gcp/container/cluster.py +16 -7
- pulumi_gcp/container/outputs.py +448 -15
- pulumi_gcp/databasemigrationservice/connection_profile.py +4 -2
- pulumi_gcp/databasemigrationservice/migration_job.py +4 -2
- pulumi_gcp/dataflow/flex_template_job.py +10 -0
- pulumi_gcp/dataform/repository.py +16 -0
- pulumi_gcp/dataform/repository_release_config.py +16 -0
- pulumi_gcp/dataform/repository_workflow_config.py +16 -0
- pulumi_gcp/diagflow/_inputs.py +152 -0
- pulumi_gcp/diagflow/cx_agent.py +425 -0
- pulumi_gcp/diagflow/outputs.py +143 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/_inputs.py +94 -0
- pulumi_gcp/discoveryengine/acl_config.py +393 -0
- pulumi_gcp/discoveryengine/outputs.py +92 -0
- pulumi_gcp/firebase/android_app.py +16 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +4 -8
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +2 -4
- pulumi_gcp/firebase/app_check_service_config.py +6 -12
- pulumi_gcp/firebase/app_hosting_backend.py +4 -8
- pulumi_gcp/firebase/app_hosting_build.py +4 -8
- pulumi_gcp/firebase/app_hosting_traffic.py +6 -12
- pulumi_gcp/firebase/apple_app.py +16 -0
- pulumi_gcp/firebase/data_connect_service.py +4 -8
- pulumi_gcp/firebase/database_instance.py +20 -8
- pulumi_gcp/firebase/extensions_instance.py +12 -0
- pulumi_gcp/firebase/get_android_app.py +4 -2
- pulumi_gcp/firebase/get_apple_app.py +4 -2
- pulumi_gcp/firebase/get_apple_app_config.py +16 -2
- pulumi_gcp/firebase/get_hosting_channel.py +4 -2
- pulumi_gcp/firebase/hosting_channel.py +20 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +20 -0
- pulumi_gcp/firebase/hosting_release.py +16 -0
- pulumi_gcp/firebase/hosting_site.py +16 -0
- pulumi_gcp/firebase/hosting_version.py +16 -0
- pulumi_gcp/firebase/storage_bucket.py +18 -0
- pulumi_gcp/firestore/index.py +118 -3
- pulumi_gcp/folder/service_identity.py +26 -0
- pulumi_gcp/gkehub/_inputs.py +0 -60
- pulumi_gcp/gkehub/get_membership.py +1 -12
- pulumi_gcp/gkehub/membership.py +0 -70
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +16 -0
- pulumi_gcp/gkehub/outputs.py +0 -36
- pulumi_gcp/healthcare/_inputs.py +205 -0
- pulumi_gcp/healthcare/fhir_store.py +128 -0
- pulumi_gcp/healthcare/outputs.py +163 -0
- pulumi_gcp/iam/workload_identity_pool_iam_binding.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_iam_member.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_iam_policy.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_managed_identity.py +18 -0
- pulumi_gcp/iam/workload_identity_pool_namespace.py +20 -0
- pulumi_gcp/iap/__init__.py +8 -0
- pulumi_gcp/iap/_inputs.py +260 -0
- pulumi_gcp/iap/get_web_forwarding_rule_service_iam_policy.py +159 -0
- pulumi_gcp/iap/get_web_region_forwarding_rule_service_iam_policy.py +182 -0
- pulumi_gcp/iap/outputs.py +152 -0
- pulumi_gcp/{beyondcorp/application_iam_binding.py → iap/web_forwarding_rule_service_iam_binding.py} +233 -315
- pulumi_gcp/{beyondcorp/application_iam_member.py → iap/web_forwarding_rule_service_iam_member.py} +233 -315
- pulumi_gcp/{beyondcorp/application_iam_policy.py → iap/web_forwarding_rule_service_iam_policy.py} +212 -294
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_binding.py +1091 -0
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_member.py +1091 -0
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_policy.py +910 -0
- pulumi_gcp/kms/autokey_config.py +0 -2
- pulumi_gcp/kms/get_kms_secret_asymmetric.py +22 -0
- pulumi_gcp/kms/key_handle.py +0 -2
- pulumi_gcp/logging/organization_sink.py +7 -7
- pulumi_gcp/managedkafka/connect_cluster.py +4 -0
- pulumi_gcp/managedkafka/connector.py +4 -0
- pulumi_gcp/memorystore/get_instance.py +1 -12
- pulumi_gcp/memorystore/instance.py +14 -84
- pulumi_gcp/netapp/storage_pool.py +91 -2
- pulumi_gcp/netapp/volume.py +47 -0
- pulumi_gcp/networkmanagement/__init__.py +1 -0
- pulumi_gcp/networkmanagement/organization_vpc_flow_logs_config.py +1028 -0
- pulumi_gcp/networksecurity/authorization_policy.py +12 -0
- pulumi_gcp/networkservices/gateway.py +7 -7
- pulumi_gcp/networkservices/lb_traffic_extension.py +24 -23
- pulumi_gcp/networkservices/service_lb_policies.py +12 -0
- pulumi_gcp/notebooks/__init__.py +0 -1
- pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +3 -3
- pulumi_gcp/projects/service.py +2 -11
- pulumi_gcp/provider.py +20 -20
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +0 -70
- pulumi_gcp/redis/get_cluster.py +1 -12
- pulumi_gcp/resourcemanager/capability.py +16 -0
- pulumi_gcp/runtimeconfig/config.py +16 -0
- pulumi_gcp/runtimeconfig/config_iam_binding.py +236 -0
- pulumi_gcp/runtimeconfig/config_iam_member.py +236 -0
- pulumi_gcp/runtimeconfig/config_iam_policy.py +236 -0
- pulumi_gcp/runtimeconfig/variable.py +10 -0
- pulumi_gcp/saasruntime/__init__.py +12 -0
- pulumi_gcp/saasruntime/_inputs.py +513 -0
- pulumi_gcp/saasruntime/outputs.py +431 -0
- pulumi_gcp/saasruntime/saa_s.py +819 -0
- pulumi_gcp/saasruntime/unit_kind.py +1024 -0
- pulumi_gcp/securesourcemanager/_inputs.py +20 -19
- pulumi_gcp/securesourcemanager/instance.py +7 -7
- pulumi_gcp/securesourcemanager/outputs.py +15 -14
- pulumi_gcp/securesourcemanager/repository.py +7 -7
- pulumi_gcp/serviceaccount/get_account_key.py +1 -21
- pulumi_gcp/servicedirectory/namespace_iam_binding.py +4 -4
- pulumi_gcp/servicedirectory/namespace_iam_member.py +4 -4
- pulumi_gcp/servicedirectory/namespace_iam_policy.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_binding.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_member.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_policy.py +4 -4
- pulumi_gcp/sql/_inputs.py +135 -1
- pulumi_gcp/sql/database_instance.py +94 -0
- pulumi_gcp/sql/get_database_instance.py +23 -1
- pulumi_gcp/sql/outputs.py +276 -3
- pulumi_gcp/sql/user.py +61 -0
- pulumi_gcp/storage/_inputs.py +253 -7
- pulumi_gcp/storage/bucket_object.py +0 -9
- pulumi_gcp/storage/outputs.py +198 -8
- pulumi_gcp/storage/transfer_job.py +47 -0
- pulumi_gcp/tpu/__init__.py +0 -2
- pulumi_gcp/tpu/_inputs.py +0 -93
- pulumi_gcp/tpu/outputs.py +0 -72
- pulumi_gcp/tpu/v2_queued_resource.py +16 -0
- pulumi_gcp/tpu/v2_vm.py +16 -0
- pulumi_gcp/vertex/_inputs.py +8 -9
- pulumi_gcp/vertex/ai_endpoint.py +2 -4
- pulumi_gcp/vertex/ai_feature_group_iam_binding.py +236 -0
- pulumi_gcp/vertex/ai_feature_group_iam_member.py +236 -0
- pulumi_gcp/vertex/ai_feature_group_iam_policy.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +0 -2
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_binding.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_member.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_policy.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_binding.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_member.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_policy.py +236 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_binding.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_member.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_policy.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_iam_binding.py +248 -0
- pulumi_gcp/vertex/ai_feature_store_iam_member.py +248 -0
- pulumi_gcp/vertex/ai_feature_store_iam_policy.py +248 -0
- pulumi_gcp/vertex/ai_index.py +24 -23
- pulumi_gcp/vertex/ai_metadata_store.py +16 -0
- pulumi_gcp/vertex/outputs.py +7 -8
- pulumi_gcp/workstations/workstation.py +16 -0
- pulumi_gcp/workstations/workstation_cluster.py +16 -0
- pulumi_gcp/workstations/workstation_config.py +16 -0
- pulumi_gcp/workstations/workstation_config_iam_binding.py +260 -0
- pulumi_gcp/workstations/workstation_config_iam_member.py +260 -0
- pulumi_gcp/workstations/workstation_config_iam_policy.py +260 -0
- pulumi_gcp/workstations/workstation_iam_binding.py +272 -0
- pulumi_gcp/workstations/workstation_iam_member.py +272 -0
- pulumi_gcp/workstations/workstation_iam_policy.py +272 -0
- {pulumi_gcp-8.42.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.42.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/RECORD +266 -255
- pulumi_gcp/beyondcorp/application.py +0 -746
- pulumi_gcp/beyondcorp/get_application_iam_policy.py +0 -182
- pulumi_gcp/notebooks/location.py +0 -285
- pulumi_gcp/tpu/get_tensorflow_versions.py +0 -184
- pulumi_gcp/tpu/node.py +0 -1062
- {pulumi_gcp-8.42.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.42.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/top_level.txt +0 -0
@@ -775,7 +775,6 @@ class RepositoryRemoteRepositoryConfigDockerRepository(dict):
|
|
775
775
|
:param 'RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs' custom_repository: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
|
776
776
|
Structure is documented below.
|
777
777
|
:param _builtins.str public_repository: Address of the remote repository.
|
778
|
-
Default value is `DOCKER_HUB`.
|
779
778
|
Possible values are: `DOCKER_HUB`.
|
780
779
|
"""
|
781
780
|
if custom_repository is not None:
|
@@ -797,7 +796,6 @@ class RepositoryRemoteRepositoryConfigDockerRepository(dict):
|
|
797
796
|
def public_repository(self) -> Optional[_builtins.str]:
|
798
797
|
"""
|
799
798
|
Address of the remote repository.
|
800
|
-
Default value is `DOCKER_HUB`.
|
801
799
|
Possible values are: `DOCKER_HUB`.
|
802
800
|
"""
|
803
801
|
return pulumi.get(self, "public_repository")
|
@@ -850,7 +848,6 @@ class RepositoryRemoteRepositoryConfigMavenRepository(dict):
|
|
850
848
|
:param 'RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs' custom_repository: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
|
851
849
|
Structure is documented below.
|
852
850
|
:param _builtins.str public_repository: Address of the remote repository.
|
853
|
-
Default value is `MAVEN_CENTRAL`.
|
854
851
|
Possible values are: `MAVEN_CENTRAL`.
|
855
852
|
"""
|
856
853
|
if custom_repository is not None:
|
@@ -872,7 +869,6 @@ class RepositoryRemoteRepositoryConfigMavenRepository(dict):
|
|
872
869
|
def public_repository(self) -> Optional[_builtins.str]:
|
873
870
|
"""
|
874
871
|
Address of the remote repository.
|
875
|
-
Default value is `MAVEN_CENTRAL`.
|
876
872
|
Possible values are: `MAVEN_CENTRAL`.
|
877
873
|
"""
|
878
874
|
return pulumi.get(self, "public_repository")
|
@@ -925,7 +921,6 @@ class RepositoryRemoteRepositoryConfigNpmRepository(dict):
|
|
925
921
|
:param 'RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs' custom_repository: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
|
926
922
|
Structure is documented below.
|
927
923
|
:param _builtins.str public_repository: Address of the remote repository.
|
928
|
-
Default value is `NPMJS`.
|
929
924
|
Possible values are: `NPMJS`.
|
930
925
|
"""
|
931
926
|
if custom_repository is not None:
|
@@ -947,7 +942,6 @@ class RepositoryRemoteRepositoryConfigNpmRepository(dict):
|
|
947
942
|
def public_repository(self) -> Optional[_builtins.str]:
|
948
943
|
"""
|
949
944
|
Address of the remote repository.
|
950
|
-
Default value is `NPMJS`.
|
951
945
|
Possible values are: `NPMJS`.
|
952
946
|
"""
|
953
947
|
return pulumi.get(self, "public_repository")
|
@@ -1000,7 +994,6 @@ class RepositoryRemoteRepositoryConfigPythonRepository(dict):
|
|
1000
994
|
:param 'RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs' custom_repository: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
|
1001
995
|
Structure is documented below.
|
1002
996
|
:param _builtins.str public_repository: Address of the remote repository.
|
1003
|
-
Default value is `PYPI`.
|
1004
997
|
Possible values are: `PYPI`.
|
1005
998
|
"""
|
1006
999
|
if custom_repository is not None:
|
@@ -1022,7 +1015,6 @@ class RepositoryRemoteRepositoryConfigPythonRepository(dict):
|
|
1022
1015
|
def public_repository(self) -> Optional[_builtins.str]:
|
1023
1016
|
"""
|
1024
1017
|
Address of the remote repository.
|
1025
|
-
Default value is `PYPI`.
|
1026
1018
|
Possible values are: `PYPI`.
|
1027
1019
|
"""
|
1028
1020
|
return pulumi.get(self, "public_repository")
|
@@ -1956,7 +1948,7 @@ class GetRepositoryRemoteRepositoryConfigDockerRepositoryResult(dict):
|
|
1956
1948
|
public_repository: _builtins.str):
|
1957
1949
|
"""
|
1958
1950
|
:param Sequence['GetRepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs'] custom_repositories: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
|
1959
|
-
:param _builtins.str public_repository: Address of the remote repository.
|
1951
|
+
:param _builtins.str public_repository: Address of the remote repository. Possible values: ["DOCKER_HUB"]
|
1960
1952
|
"""
|
1961
1953
|
pulumi.set(__self__, "custom_repositories", custom_repositories)
|
1962
1954
|
pulumi.set(__self__, "public_repository", public_repository)
|
@@ -1973,7 +1965,7 @@ class GetRepositoryRemoteRepositoryConfigDockerRepositoryResult(dict):
|
|
1973
1965
|
@pulumi.getter(name="publicRepository")
|
1974
1966
|
def public_repository(self) -> _builtins.str:
|
1975
1967
|
"""
|
1976
|
-
Address of the remote repository.
|
1968
|
+
Address of the remote repository. Possible values: ["DOCKER_HUB"]
|
1977
1969
|
"""
|
1978
1970
|
return pulumi.get(self, "public_repository")
|
1979
1971
|
|
@@ -2003,7 +1995,7 @@ class GetRepositoryRemoteRepositoryConfigMavenRepositoryResult(dict):
|
|
2003
1995
|
public_repository: _builtins.str):
|
2004
1996
|
"""
|
2005
1997
|
:param Sequence['GetRepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs'] custom_repositories: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
|
2006
|
-
:param _builtins.str public_repository: Address of the remote repository.
|
1998
|
+
:param _builtins.str public_repository: Address of the remote repository. Possible values: ["MAVEN_CENTRAL"]
|
2007
1999
|
"""
|
2008
2000
|
pulumi.set(__self__, "custom_repositories", custom_repositories)
|
2009
2001
|
pulumi.set(__self__, "public_repository", public_repository)
|
@@ -2020,7 +2012,7 @@ class GetRepositoryRemoteRepositoryConfigMavenRepositoryResult(dict):
|
|
2020
2012
|
@pulumi.getter(name="publicRepository")
|
2021
2013
|
def public_repository(self) -> _builtins.str:
|
2022
2014
|
"""
|
2023
|
-
Address of the remote repository.
|
2015
|
+
Address of the remote repository. Possible values: ["MAVEN_CENTRAL"]
|
2024
2016
|
"""
|
2025
2017
|
return pulumi.get(self, "public_repository")
|
2026
2018
|
|
@@ -2050,7 +2042,7 @@ class GetRepositoryRemoteRepositoryConfigNpmRepositoryResult(dict):
|
|
2050
2042
|
public_repository: _builtins.str):
|
2051
2043
|
"""
|
2052
2044
|
:param Sequence['GetRepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs'] custom_repositories: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
|
2053
|
-
:param _builtins.str public_repository: Address of the remote repository.
|
2045
|
+
:param _builtins.str public_repository: Address of the remote repository. Possible values: ["NPMJS"]
|
2054
2046
|
"""
|
2055
2047
|
pulumi.set(__self__, "custom_repositories", custom_repositories)
|
2056
2048
|
pulumi.set(__self__, "public_repository", public_repository)
|
@@ -2067,7 +2059,7 @@ class GetRepositoryRemoteRepositoryConfigNpmRepositoryResult(dict):
|
|
2067
2059
|
@pulumi.getter(name="publicRepository")
|
2068
2060
|
def public_repository(self) -> _builtins.str:
|
2069
2061
|
"""
|
2070
|
-
Address of the remote repository.
|
2062
|
+
Address of the remote repository. Possible values: ["NPMJS"]
|
2071
2063
|
"""
|
2072
2064
|
return pulumi.get(self, "public_repository")
|
2073
2065
|
|
@@ -2097,7 +2089,7 @@ class GetRepositoryRemoteRepositoryConfigPythonRepositoryResult(dict):
|
|
2097
2089
|
public_repository: _builtins.str):
|
2098
2090
|
"""
|
2099
2091
|
:param Sequence['GetRepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs'] custom_repositories: [Deprecated, please use commonRepository instead] Settings for a remote repository with a custom uri.
|
2100
|
-
:param _builtins.str public_repository: Address of the remote repository.
|
2092
|
+
:param _builtins.str public_repository: Address of the remote repository. Possible values: ["PYPI"]
|
2101
2093
|
"""
|
2102
2094
|
pulumi.set(__self__, "custom_repositories", custom_repositories)
|
2103
2095
|
pulumi.set(__self__, "public_repository", public_repository)
|
@@ -2114,7 +2106,7 @@ class GetRepositoryRemoteRepositoryConfigPythonRepositoryResult(dict):
|
|
2114
2106
|
@pulumi.getter(name="publicRepository")
|
2115
2107
|
def public_repository(self) -> _builtins.str:
|
2116
2108
|
"""
|
2117
|
-
Address of the remote repository.
|
2109
|
+
Address of the remote repository. Possible values: ["PYPI"]
|
2118
2110
|
"""
|
2119
2111
|
return pulumi.get(self, "public_repository")
|
2120
2112
|
|
@@ -350,6 +350,7 @@ class _RepositoryState:
|
|
350
350
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
351
351
|
project: Optional[pulumi.Input[_builtins.str]] = None,
|
352
352
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
353
|
+
registry_uri: Optional[pulumi.Input[_builtins.str]] = None,
|
353
354
|
remote_repository_config: Optional[pulumi.Input['RepositoryRemoteRepositoryConfigArgs']] = None,
|
354
355
|
repository_id: Optional[pulumi.Input[_builtins.str]] = None,
|
355
356
|
update_time: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -404,6 +405,7 @@ class _RepositoryState:
|
|
404
405
|
If it is not provided, the provider project is used.
|
405
406
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource
|
406
407
|
and default labels configured on the provider.
|
408
|
+
:param pulumi.Input[_builtins.str] registry_uri: The repository endpoint, for example: us-docker.pkg.dev/my-proj/my-repo.
|
407
409
|
:param pulumi.Input['RepositoryRemoteRepositoryConfigArgs'] remote_repository_config: Configuration specific for a Remote Repository.
|
408
410
|
Structure is documented below.
|
409
411
|
:param pulumi.Input[_builtins.str] repository_id: The last part of the repository name, for example:
|
@@ -444,6 +446,8 @@ class _RepositoryState:
|
|
444
446
|
pulumi.set(__self__, "project", project)
|
445
447
|
if pulumi_labels is not None:
|
446
448
|
pulumi.set(__self__, "pulumi_labels", pulumi_labels)
|
449
|
+
if registry_uri is not None:
|
450
|
+
pulumi.set(__self__, "registry_uri", registry_uri)
|
447
451
|
if remote_repository_config is not None:
|
448
452
|
pulumi.set(__self__, "remote_repository_config", remote_repository_config)
|
449
453
|
if repository_id is not None:
|
@@ -667,6 +671,18 @@ class _RepositoryState:
|
|
667
671
|
def pulumi_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
668
672
|
pulumi.set(self, "pulumi_labels", value)
|
669
673
|
|
674
|
+
@_builtins.property
|
675
|
+
@pulumi.getter(name="registryUri")
|
676
|
+
def registry_uri(self) -> Optional[pulumi.Input[_builtins.str]]:
|
677
|
+
"""
|
678
|
+
The repository endpoint, for example: us-docker.pkg.dev/my-proj/my-repo.
|
679
|
+
"""
|
680
|
+
return pulumi.get(self, "registry_uri")
|
681
|
+
|
682
|
+
@registry_uri.setter
|
683
|
+
def registry_uri(self, value: Optional[pulumi.Input[_builtins.str]]):
|
684
|
+
pulumi.set(self, "registry_uri", value)
|
685
|
+
|
670
686
|
@_builtins.property
|
671
687
|
@pulumi.getter(name="remoteRepositoryConfig")
|
672
688
|
def remote_repository_config(self) -> Optional[pulumi.Input['RepositoryRemoteRepositoryConfigArgs']]:
|
@@ -2008,6 +2024,7 @@ class Repository(pulumi.CustomResource):
|
|
2008
2024
|
__props__.__dict__["effective_labels"] = None
|
2009
2025
|
__props__.__dict__["name"] = None
|
2010
2026
|
__props__.__dict__["pulumi_labels"] = None
|
2027
|
+
__props__.__dict__["registry_uri"] = None
|
2011
2028
|
__props__.__dict__["update_time"] = None
|
2012
2029
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["effectiveLabels", "pulumiLabels"])
|
2013
2030
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
@@ -2036,6 +2053,7 @@ class Repository(pulumi.CustomResource):
|
|
2036
2053
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
2037
2054
|
project: Optional[pulumi.Input[_builtins.str]] = None,
|
2038
2055
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
2056
|
+
registry_uri: Optional[pulumi.Input[_builtins.str]] = None,
|
2039
2057
|
remote_repository_config: Optional[pulumi.Input[Union['RepositoryRemoteRepositoryConfigArgs', 'RepositoryRemoteRepositoryConfigArgsDict']]] = None,
|
2040
2058
|
repository_id: Optional[pulumi.Input[_builtins.str]] = None,
|
2041
2059
|
update_time: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -2095,6 +2113,7 @@ class Repository(pulumi.CustomResource):
|
|
2095
2113
|
If it is not provided, the provider project is used.
|
2096
2114
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource
|
2097
2115
|
and default labels configured on the provider.
|
2116
|
+
:param pulumi.Input[_builtins.str] registry_uri: The repository endpoint, for example: us-docker.pkg.dev/my-proj/my-repo.
|
2098
2117
|
:param pulumi.Input[Union['RepositoryRemoteRepositoryConfigArgs', 'RepositoryRemoteRepositoryConfigArgsDict']] remote_repository_config: Configuration specific for a Remote Repository.
|
2099
2118
|
Structure is documented below.
|
2100
2119
|
:param pulumi.Input[_builtins.str] repository_id: The last part of the repository name, for example:
|
@@ -2124,6 +2143,7 @@ class Repository(pulumi.CustomResource):
|
|
2124
2143
|
__props__.__dict__["name"] = name
|
2125
2144
|
__props__.__dict__["project"] = project
|
2126
2145
|
__props__.__dict__["pulumi_labels"] = pulumi_labels
|
2146
|
+
__props__.__dict__["registry_uri"] = registry_uri
|
2127
2147
|
__props__.__dict__["remote_repository_config"] = remote_repository_config
|
2128
2148
|
__props__.__dict__["repository_id"] = repository_id
|
2129
2149
|
__props__.__dict__["update_time"] = update_time
|
@@ -2283,6 +2303,14 @@ class Repository(pulumi.CustomResource):
|
|
2283
2303
|
"""
|
2284
2304
|
return pulumi.get(self, "pulumi_labels")
|
2285
2305
|
|
2306
|
+
@_builtins.property
|
2307
|
+
@pulumi.getter(name="registryUri")
|
2308
|
+
def registry_uri(self) -> pulumi.Output[_builtins.str]:
|
2309
|
+
"""
|
2310
|
+
The repository endpoint, for example: us-docker.pkg.dev/my-proj/my-repo.
|
2311
|
+
"""
|
2312
|
+
return pulumi.get(self, "registry_uri")
|
2313
|
+
|
2286
2314
|
@_builtins.property
|
2287
2315
|
@pulumi.getter(name="remoteRepositoryConfig")
|
2288
2316
|
def remote_repository_config(self) -> pulumi.Output[Optional['outputs.RepositoryRemoteRepositoryConfig']]:
|
@@ -14,6 +14,7 @@ from .get_backup_plan import *
|
|
14
14
|
from .get_backup_plan_association import *
|
15
15
|
from .get_backup_vault import *
|
16
16
|
from .get_data_source import *
|
17
|
+
from .get_data_source_references import *
|
17
18
|
from .get_management_server import *
|
18
19
|
from .management_server import *
|
19
20
|
from .service_config import *
|
@@ -187,7 +187,7 @@ class _BackupPlanState:
|
|
187
187
|
If it is not provided, the provider project is used.
|
188
188
|
:param pulumi.Input[_builtins.str] resource_type: The resource type to which the `BackupPlan` will be applied.
|
189
189
|
Examples include, "compute.googleapis.com/Instance", "compute.googleapis.com/Disk", "sqladmin.googleapis.com/Instance" and "storage.googleapis.com/Bucket".
|
190
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] supported_resource_types: The list of all resource types to which the
|
190
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] supported_resource_types: The list of all resource types to which the `BackupPlan` can be applied.
|
191
191
|
:param pulumi.Input[_builtins.str] update_time: When the `BackupPlan` was last updated.
|
192
192
|
"""
|
193
193
|
if backup_plan_id is not None:
|
@@ -356,7 +356,7 @@ class _BackupPlanState:
|
|
356
356
|
@pulumi.getter(name="supportedResourceTypes")
|
357
357
|
def supported_resource_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
358
358
|
"""
|
359
|
-
The list of all resource types to which the
|
359
|
+
The list of all resource types to which the `BackupPlan` can be applied.
|
360
360
|
"""
|
361
361
|
return pulumi.get(self, "supported_resource_types")
|
362
362
|
|
@@ -759,7 +759,7 @@ class BackupPlan(pulumi.CustomResource):
|
|
759
759
|
If it is not provided, the provider project is used.
|
760
760
|
:param pulumi.Input[_builtins.str] resource_type: The resource type to which the `BackupPlan` will be applied.
|
761
761
|
Examples include, "compute.googleapis.com/Instance", "compute.googleapis.com/Disk", "sqladmin.googleapis.com/Instance" and "storage.googleapis.com/Bucket".
|
762
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] supported_resource_types: The list of all resource types to which the
|
762
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] supported_resource_types: The list of all resource types to which the `BackupPlan` can be applied.
|
763
763
|
:param pulumi.Input[_builtins.str] update_time: When the `BackupPlan` was last updated.
|
764
764
|
"""
|
765
765
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -876,7 +876,7 @@ class BackupPlan(pulumi.CustomResource):
|
|
876
876
|
@pulumi.getter(name="supportedResourceTypes")
|
877
877
|
def supported_resource_types(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
878
878
|
"""
|
879
|
-
The list of all resource types to which the
|
879
|
+
The list of all resource types to which the `BackupPlan` can be applied.
|
880
880
|
"""
|
881
881
|
return pulumi.get(self, "supported_resource_types")
|
882
882
|
|
@@ -27,13 +27,16 @@ class GetBackupResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getBackup.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, backup_vault_id=None, backups=None, data_source_id=None, id=None, location=None, name=None, project=None):
|
30
|
+
def __init__(__self__, backup_vault_id=None, backups=None, create_time=None, data_source_id=None, id=None, location=None, name=None, project=None):
|
31
31
|
if backup_vault_id and not isinstance(backup_vault_id, str):
|
32
32
|
raise TypeError("Expected argument 'backup_vault_id' to be a str")
|
33
33
|
pulumi.set(__self__, "backup_vault_id", backup_vault_id)
|
34
34
|
if backups and not isinstance(backups, list):
|
35
35
|
raise TypeError("Expected argument 'backups' to be a list")
|
36
36
|
pulumi.set(__self__, "backups", backups)
|
37
|
+
if create_time and not isinstance(create_time, str):
|
38
|
+
raise TypeError("Expected argument 'create_time' to be a str")
|
39
|
+
pulumi.set(__self__, "create_time", create_time)
|
37
40
|
if data_source_id and not isinstance(data_source_id, str):
|
38
41
|
raise TypeError("Expected argument 'data_source_id' to be a str")
|
39
42
|
pulumi.set(__self__, "data_source_id", data_source_id)
|
@@ -60,6 +63,11 @@ class GetBackupResult:
|
|
60
63
|
def backups(self) -> Sequence['outputs.GetBackupBackupResult']:
|
61
64
|
return pulumi.get(self, "backups")
|
62
65
|
|
66
|
+
@_builtins.property
|
67
|
+
@pulumi.getter(name="createTime")
|
68
|
+
def create_time(self) -> _builtins.str:
|
69
|
+
return pulumi.get(self, "create_time")
|
70
|
+
|
63
71
|
@_builtins.property
|
64
72
|
@pulumi.getter(name="dataSourceId")
|
65
73
|
def data_source_id(self) -> _builtins.str:
|
@@ -97,6 +105,7 @@ class AwaitableGetBackupResult(GetBackupResult):
|
|
97
105
|
return GetBackupResult(
|
98
106
|
backup_vault_id=self.backup_vault_id,
|
99
107
|
backups=self.backups,
|
108
|
+
create_time=self.create_time,
|
100
109
|
data_source_id=self.data_source_id,
|
101
110
|
id=self.id,
|
102
111
|
location=self.location,
|
@@ -141,6 +150,7 @@ def get_backup(backup_vault_id: Optional[_builtins.str] = None,
|
|
141
150
|
return AwaitableGetBackupResult(
|
142
151
|
backup_vault_id=pulumi.get(__ret__, 'backup_vault_id'),
|
143
152
|
backups=pulumi.get(__ret__, 'backups'),
|
153
|
+
create_time=pulumi.get(__ret__, 'create_time'),
|
144
154
|
data_source_id=pulumi.get(__ret__, 'data_source_id'),
|
145
155
|
id=pulumi.get(__ret__, 'id'),
|
146
156
|
location=pulumi.get(__ret__, 'location'),
|
@@ -182,6 +192,7 @@ def get_backup_output(backup_vault_id: Optional[pulumi.Input[_builtins.str]] = N
|
|
182
192
|
return __ret__.apply(lambda __response__: GetBackupResult(
|
183
193
|
backup_vault_id=pulumi.get(__response__, 'backup_vault_id'),
|
184
194
|
backups=pulumi.get(__response__, 'backups'),
|
195
|
+
create_time=pulumi.get(__response__, 'create_time'),
|
185
196
|
data_source_id=pulumi.get(__response__, 'data_source_id'),
|
186
197
|
id=pulumi.get(__response__, 'id'),
|
187
198
|
location=pulumi.get(__response__, 'location'),
|
@@ -163,6 +163,8 @@ def get_backup_plan_association(backup_plan_association_id: Optional[_builtins.s
|
|
163
163
|
project: Optional[_builtins.str] = None,
|
164
164
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBackupPlanAssociationResult:
|
165
165
|
"""
|
166
|
+
A Backup and DR BackupPlanAssociation.
|
167
|
+
|
166
168
|
## Example Usage
|
167
169
|
|
168
170
|
```python
|
@@ -205,6 +207,8 @@ def get_backup_plan_association_output(backup_plan_association_id: Optional[pulu
|
|
205
207
|
project: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
206
208
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetBackupPlanAssociationResult]:
|
207
209
|
"""
|
210
|
+
A Backup and DR BackupPlanAssociation.
|
211
|
+
|
208
212
|
## Example Usage
|
209
213
|
|
210
214
|
```python
|
@@ -0,0 +1,135 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins as _builtins
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
|
18
|
+
__all__ = [
|
19
|
+
'GetDataSourceReferencesResult',
|
20
|
+
'AwaitableGetDataSourceReferencesResult',
|
21
|
+
'get_data_source_references',
|
22
|
+
'get_data_source_references_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetDataSourceReferencesResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getDataSourceReferences.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, data_source_references=None, id=None, location=None, project=None, resource_type=None):
|
31
|
+
if data_source_references and not isinstance(data_source_references, list):
|
32
|
+
raise TypeError("Expected argument 'data_source_references' to be a list")
|
33
|
+
pulumi.set(__self__, "data_source_references", data_source_references)
|
34
|
+
if id and not isinstance(id, str):
|
35
|
+
raise TypeError("Expected argument 'id' to be a str")
|
36
|
+
pulumi.set(__self__, "id", id)
|
37
|
+
if location and not isinstance(location, str):
|
38
|
+
raise TypeError("Expected argument 'location' to be a str")
|
39
|
+
pulumi.set(__self__, "location", location)
|
40
|
+
if project and not isinstance(project, str):
|
41
|
+
raise TypeError("Expected argument 'project' to be a str")
|
42
|
+
pulumi.set(__self__, "project", project)
|
43
|
+
if resource_type and not isinstance(resource_type, str):
|
44
|
+
raise TypeError("Expected argument 'resource_type' to be a str")
|
45
|
+
pulumi.set(__self__, "resource_type", resource_type)
|
46
|
+
|
47
|
+
@_builtins.property
|
48
|
+
@pulumi.getter(name="dataSourceReferences")
|
49
|
+
def data_source_references(self) -> Sequence['outputs.GetDataSourceReferencesDataSourceReferenceResult']:
|
50
|
+
return pulumi.get(self, "data_source_references")
|
51
|
+
|
52
|
+
@_builtins.property
|
53
|
+
@pulumi.getter
|
54
|
+
def id(self) -> _builtins.str:
|
55
|
+
"""
|
56
|
+
The provider-assigned unique ID for this managed resource.
|
57
|
+
"""
|
58
|
+
return pulumi.get(self, "id")
|
59
|
+
|
60
|
+
@_builtins.property
|
61
|
+
@pulumi.getter
|
62
|
+
def location(self) -> _builtins.str:
|
63
|
+
return pulumi.get(self, "location")
|
64
|
+
|
65
|
+
@_builtins.property
|
66
|
+
@pulumi.getter
|
67
|
+
def project(self) -> _builtins.str:
|
68
|
+
return pulumi.get(self, "project")
|
69
|
+
|
70
|
+
@_builtins.property
|
71
|
+
@pulumi.getter(name="resourceType")
|
72
|
+
def resource_type(self) -> _builtins.str:
|
73
|
+
return pulumi.get(self, "resource_type")
|
74
|
+
|
75
|
+
|
76
|
+
class AwaitableGetDataSourceReferencesResult(GetDataSourceReferencesResult):
|
77
|
+
# pylint: disable=using-constant-test
|
78
|
+
def __await__(self):
|
79
|
+
if False:
|
80
|
+
yield self
|
81
|
+
return GetDataSourceReferencesResult(
|
82
|
+
data_source_references=self.data_source_references,
|
83
|
+
id=self.id,
|
84
|
+
location=self.location,
|
85
|
+
project=self.project,
|
86
|
+
resource_type=self.resource_type)
|
87
|
+
|
88
|
+
|
89
|
+
def get_data_source_references(location: Optional[_builtins.str] = None,
|
90
|
+
project: Optional[_builtins.str] = None,
|
91
|
+
resource_type: Optional[_builtins.str] = None,
|
92
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDataSourceReferencesResult:
|
93
|
+
"""
|
94
|
+
A list of Backup and DR data source references.
|
95
|
+
|
96
|
+
|
97
|
+
:param _builtins.str project: - (Optional) The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
|
98
|
+
:param _builtins.str resource_type: - (Required) The resource type to get the data source references for. Examples include, "sqladmin.googleapis.com/Instance" , "compute.googleapis.com/Instance" (right now this service not available for compute Instances , it will be added soon )
|
99
|
+
"""
|
100
|
+
__args__ = dict()
|
101
|
+
__args__['location'] = location
|
102
|
+
__args__['project'] = project
|
103
|
+
__args__['resourceType'] = resource_type
|
104
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
105
|
+
__ret__ = pulumi.runtime.invoke('gcp:backupdisasterrecovery/getDataSourceReferences:getDataSourceReferences', __args__, opts=opts, typ=GetDataSourceReferencesResult).value
|
106
|
+
|
107
|
+
return AwaitableGetDataSourceReferencesResult(
|
108
|
+
data_source_references=pulumi.get(__ret__, 'data_source_references'),
|
109
|
+
id=pulumi.get(__ret__, 'id'),
|
110
|
+
location=pulumi.get(__ret__, 'location'),
|
111
|
+
project=pulumi.get(__ret__, 'project'),
|
112
|
+
resource_type=pulumi.get(__ret__, 'resource_type'))
|
113
|
+
def get_data_source_references_output(location: Optional[pulumi.Input[_builtins.str]] = None,
|
114
|
+
project: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
115
|
+
resource_type: Optional[pulumi.Input[_builtins.str]] = None,
|
116
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDataSourceReferencesResult]:
|
117
|
+
"""
|
118
|
+
A list of Backup and DR data source references.
|
119
|
+
|
120
|
+
|
121
|
+
:param _builtins.str project: - (Optional) The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
|
122
|
+
:param _builtins.str resource_type: - (Required) The resource type to get the data source references for. Examples include, "sqladmin.googleapis.com/Instance" , "compute.googleapis.com/Instance" (right now this service not available for compute Instances , it will be added soon )
|
123
|
+
"""
|
124
|
+
__args__ = dict()
|
125
|
+
__args__['location'] = location
|
126
|
+
__args__['project'] = project
|
127
|
+
__args__['resourceType'] = resource_type
|
128
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
129
|
+
__ret__ = pulumi.runtime.invoke_output('gcp:backupdisasterrecovery/getDataSourceReferences:getDataSourceReferences', __args__, opts=opts, typ=GetDataSourceReferencesResult)
|
130
|
+
return __ret__.apply(lambda __response__: GetDataSourceReferencesResult(
|
131
|
+
data_source_references=pulumi.get(__response__, 'data_source_references'),
|
132
|
+
id=pulumi.get(__response__, 'id'),
|
133
|
+
location=pulumi.get(__response__, 'location'),
|
134
|
+
project=pulumi.get(__response__, 'project'),
|
135
|
+
resource_type=pulumi.get(__response__, 'resource_type')))
|
@@ -116,6 +116,8 @@ class AwaitableGetManagementServerResult(GetManagementServerResult):
|
|
116
116
|
def get_management_server(location: Optional[_builtins.str] = None,
|
117
117
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetManagementServerResult:
|
118
118
|
"""
|
119
|
+
Get information about a Google Backup DR Management server.
|
120
|
+
|
119
121
|
## Example Usage
|
120
122
|
|
121
123
|
```python
|
@@ -142,6 +144,8 @@ def get_management_server(location: Optional[_builtins.str] = None,
|
|
142
144
|
def get_management_server_output(location: Optional[pulumi.Input[_builtins.str]] = None,
|
143
145
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetManagementServerResult]:
|
144
146
|
"""
|
147
|
+
Get information about a Google Backup DR Management server.
|
148
|
+
|
145
149
|
## Example Usage
|
146
150
|
|
147
151
|
```python
|
@@ -37,6 +37,7 @@ __all__ = [
|
|
37
37
|
'GetDataSourceDataSourceBackupApplianceApplicationResult',
|
38
38
|
'GetDataSourceDataSourceGcpResourceResult',
|
39
39
|
'GetDataSourceDataSourceGcpResourceComputeInstanceDataSourcePropertyResult',
|
40
|
+
'GetDataSourceReferencesDataSourceReferenceResult',
|
40
41
|
'GetManagementServerManagementUriResult',
|
41
42
|
'GetManagementServerNetworkResult',
|
42
43
|
]
|
@@ -566,18 +567,21 @@ class GetBackupBackupResult(dict):
|
|
566
567
|
def __init__(__self__, *,
|
567
568
|
backup_id: _builtins.str,
|
568
569
|
backup_vault_id: _builtins.str,
|
570
|
+
create_time: _builtins.str,
|
569
571
|
data_source_id: _builtins.str,
|
570
572
|
location: _builtins.str,
|
571
573
|
name: _builtins.str):
|
572
574
|
"""
|
573
575
|
:param _builtins.str backup_id: Id of the requesting object, Backup.
|
574
576
|
:param _builtins.str backup_vault_id: The ID of the Backup Vault of the Data Source in which the Backup belongs.
|
577
|
+
:param _builtins.str create_time: The time when the backup was created.
|
575
578
|
:param _builtins.str data_source_id: The ID of the Data Source in which the Backup belongs.
|
576
579
|
:param _builtins.str location: The location in which the Backup belongs.
|
577
580
|
:param _builtins.str name: Name of the resource.
|
578
581
|
"""
|
579
582
|
pulumi.set(__self__, "backup_id", backup_id)
|
580
583
|
pulumi.set(__self__, "backup_vault_id", backup_vault_id)
|
584
|
+
pulumi.set(__self__, "create_time", create_time)
|
581
585
|
pulumi.set(__self__, "data_source_id", data_source_id)
|
582
586
|
pulumi.set(__self__, "location", location)
|
583
587
|
pulumi.set(__self__, "name", name)
|
@@ -598,6 +602,14 @@ class GetBackupBackupResult(dict):
|
|
598
602
|
"""
|
599
603
|
return pulumi.get(self, "backup_vault_id")
|
600
604
|
|
605
|
+
@_builtins.property
|
606
|
+
@pulumi.getter(name="createTime")
|
607
|
+
def create_time(self) -> _builtins.str:
|
608
|
+
"""
|
609
|
+
The time when the backup was created.
|
610
|
+
"""
|
611
|
+
return pulumi.get(self, "create_time")
|
612
|
+
|
601
613
|
@_builtins.property
|
602
614
|
@pulumi.getter(name="dataSourceId")
|
603
615
|
def data_source_id(self) -> _builtins.str:
|
@@ -1287,6 +1299,97 @@ class GetDataSourceDataSourceGcpResourceComputeInstanceDataSourcePropertyResult(
|
|
1287
1299
|
return pulumi.get(self, "total_disk_size_gb")
|
1288
1300
|
|
1289
1301
|
|
1302
|
+
@pulumi.output_type
|
1303
|
+
class GetDataSourceReferencesDataSourceReferenceResult(dict):
|
1304
|
+
def __init__(__self__, *,
|
1305
|
+
backup_config_state: _builtins.str,
|
1306
|
+
backup_count: _builtins.int,
|
1307
|
+
data_source: _builtins.str,
|
1308
|
+
gcp_resource_name: _builtins.str,
|
1309
|
+
last_backup_state: _builtins.str,
|
1310
|
+
last_successful_backup_time: _builtins.str,
|
1311
|
+
name: _builtins.str,
|
1312
|
+
resource_type: _builtins.str):
|
1313
|
+
"""
|
1314
|
+
:param _builtins.str backup_config_state: The state of the backup config for the data source.
|
1315
|
+
:param _builtins.int backup_count: The number of backups for the data source.
|
1316
|
+
:param _builtins.str data_source: The underlying data source resource.
|
1317
|
+
:param _builtins.str gcp_resource_name: The GCP resource name for the data source.
|
1318
|
+
:param _builtins.str last_backup_state: The state of the last backup.
|
1319
|
+
:param _builtins.str last_successful_backup_time: The last time a successful backup was made.
|
1320
|
+
:param _builtins.str resource_type: - (Required) The resource type to get the data source references for. Examples include, "sqladmin.googleapis.com/Instance" , "compute.googleapis.com/Instance" (right now this service not available for compute Instances , it will be added soon )
|
1321
|
+
"""
|
1322
|
+
pulumi.set(__self__, "backup_config_state", backup_config_state)
|
1323
|
+
pulumi.set(__self__, "backup_count", backup_count)
|
1324
|
+
pulumi.set(__self__, "data_source", data_source)
|
1325
|
+
pulumi.set(__self__, "gcp_resource_name", gcp_resource_name)
|
1326
|
+
pulumi.set(__self__, "last_backup_state", last_backup_state)
|
1327
|
+
pulumi.set(__self__, "last_successful_backup_time", last_successful_backup_time)
|
1328
|
+
pulumi.set(__self__, "name", name)
|
1329
|
+
pulumi.set(__self__, "resource_type", resource_type)
|
1330
|
+
|
1331
|
+
@_builtins.property
|
1332
|
+
@pulumi.getter(name="backupConfigState")
|
1333
|
+
def backup_config_state(self) -> _builtins.str:
|
1334
|
+
"""
|
1335
|
+
The state of the backup config for the data source.
|
1336
|
+
"""
|
1337
|
+
return pulumi.get(self, "backup_config_state")
|
1338
|
+
|
1339
|
+
@_builtins.property
|
1340
|
+
@pulumi.getter(name="backupCount")
|
1341
|
+
def backup_count(self) -> _builtins.int:
|
1342
|
+
"""
|
1343
|
+
The number of backups for the data source.
|
1344
|
+
"""
|
1345
|
+
return pulumi.get(self, "backup_count")
|
1346
|
+
|
1347
|
+
@_builtins.property
|
1348
|
+
@pulumi.getter(name="dataSource")
|
1349
|
+
def data_source(self) -> _builtins.str:
|
1350
|
+
"""
|
1351
|
+
The underlying data source resource.
|
1352
|
+
"""
|
1353
|
+
return pulumi.get(self, "data_source")
|
1354
|
+
|
1355
|
+
@_builtins.property
|
1356
|
+
@pulumi.getter(name="gcpResourceName")
|
1357
|
+
def gcp_resource_name(self) -> _builtins.str:
|
1358
|
+
"""
|
1359
|
+
The GCP resource name for the data source.
|
1360
|
+
"""
|
1361
|
+
return pulumi.get(self, "gcp_resource_name")
|
1362
|
+
|
1363
|
+
@_builtins.property
|
1364
|
+
@pulumi.getter(name="lastBackupState")
|
1365
|
+
def last_backup_state(self) -> _builtins.str:
|
1366
|
+
"""
|
1367
|
+
The state of the last backup.
|
1368
|
+
"""
|
1369
|
+
return pulumi.get(self, "last_backup_state")
|
1370
|
+
|
1371
|
+
@_builtins.property
|
1372
|
+
@pulumi.getter(name="lastSuccessfulBackupTime")
|
1373
|
+
def last_successful_backup_time(self) -> _builtins.str:
|
1374
|
+
"""
|
1375
|
+
The last time a successful backup was made.
|
1376
|
+
"""
|
1377
|
+
return pulumi.get(self, "last_successful_backup_time")
|
1378
|
+
|
1379
|
+
@_builtins.property
|
1380
|
+
@pulumi.getter
|
1381
|
+
def name(self) -> _builtins.str:
|
1382
|
+
return pulumi.get(self, "name")
|
1383
|
+
|
1384
|
+
@_builtins.property
|
1385
|
+
@pulumi.getter(name="resourceType")
|
1386
|
+
def resource_type(self) -> _builtins.str:
|
1387
|
+
"""
|
1388
|
+
- (Required) The resource type to get the data source references for. Examples include, "sqladmin.googleapis.com/Instance" , "compute.googleapis.com/Instance" (right now this service not available for compute Instances , it will be added soon )
|
1389
|
+
"""
|
1390
|
+
return pulumi.get(self, "resource_type")
|
1391
|
+
|
1392
|
+
|
1290
1393
|
@pulumi.output_type
|
1291
1394
|
class GetManagementServerManagementUriResult(dict):
|
1292
1395
|
def __init__(__self__, *,
|
@@ -9,14 +9,9 @@ import typing
|
|
9
9
|
from .app_connection import *
|
10
10
|
from .app_connector import *
|
11
11
|
from .app_gateway import *
|
12
|
-
from .application import *
|
13
|
-
from .application_iam_binding import *
|
14
|
-
from .application_iam_member import *
|
15
|
-
from .application_iam_policy import *
|
16
12
|
from .get_app_connection import *
|
17
13
|
from .get_app_connector import *
|
18
14
|
from .get_app_gateway import *
|
19
|
-
from .get_application_iam_policy import *
|
20
15
|
from .get_security_gateway import *
|
21
16
|
from .get_security_gateway_application_iam_policy import *
|
22
17
|
from .get_security_gateway_iam_policy import *
|