pulumi-gcp 8.11.0a1734157575__py3-none-any.whl → 8.11.0a1734385115__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 +91 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +29 -0
- pulumi_gcp/accesscontextmanager/outputs.py +18 -0
- pulumi_gcp/accesscontextmanager/service_perimeter.py +36 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +6 -0
- pulumi_gcp/apigee/app_group.py +7 -7
- pulumi_gcp/applicationintegration/client.py +8 -6
- pulumi_gcp/artifactregistry/_inputs.py +24 -15
- pulumi_gcp/artifactregistry/outputs.py +32 -20
- pulumi_gcp/artifactregistry/repository.py +128 -0
- pulumi_gcp/assuredworkloads/workload.py +7 -7
- pulumi_gcp/backupdisasterrecovery/__init__.py +2 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +2 -2
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +12 -8
- pulumi_gcp/backupdisasterrecovery/get_backup.py +153 -0
- pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +415 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +63 -0
- pulumi_gcp/bigquery/app_profile.py +75 -0
- pulumi_gcp/billing/_inputs.py +6 -6
- pulumi_gcp/billing/outputs.py +4 -4
- pulumi_gcp/certificateauthority/_inputs.py +9 -9
- pulumi_gcp/certificateauthority/outputs.py +8 -8
- pulumi_gcp/cloudbuild/_inputs.py +53 -0
- pulumi_gcp/cloudbuild/outputs.py +50 -0
- pulumi_gcp/cloudbuild/worker_pool.py +47 -0
- pulumi_gcp/clouddeploy/_inputs.py +254 -0
- pulumi_gcp/clouddeploy/outputs.py +211 -0
- pulumi_gcp/clouddeploy/target.py +47 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +6 -6
- pulumi_gcp/cloudfunctionsv2/outputs.py +8 -8
- pulumi_gcp/cloudrunv2/job.py +4 -4
- pulumi_gcp/cloudrunv2/service.py +4 -4
- pulumi_gcp/composer/get_user_workloads_config_map.py +4 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +4 -0
- pulumi_gcp/composer/user_workloads_config_map.py +14 -0
- pulumi_gcp/composer/user_workloads_secret.py +6 -0
- pulumi_gcp/compute/_inputs.py +566 -25
- pulumi_gcp/compute/disk.py +21 -7
- pulumi_gcp/compute/firewall_policy_rule.py +12 -0
- pulumi_gcp/compute/get_forwarding_rules.py +2 -2
- pulumi_gcp/compute/get_global_forwarding_rule.py +12 -1
- pulumi_gcp/compute/get_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_network.py +35 -1
- pulumi_gcp/compute/get_region_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_region_network_endpoint_group.py +12 -1
- pulumi_gcp/compute/global_forwarding_rule.py +28 -0
- pulumi_gcp/compute/instance_group_manager.py +28 -0
- pulumi_gcp/compute/network.py +75 -0
- pulumi_gcp/compute/outputs.py +655 -26
- pulumi_gcp/compute/region_health_check.py +28 -0
- pulumi_gcp/compute/region_instance_group_manager.py +28 -0
- pulumi_gcp/compute/region_network_endpoint.py +28 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +70 -2
- pulumi_gcp/compute/subnetwork.py +30 -2
- pulumi_gcp/compute/url_map.py +7 -7
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +201 -3
- pulumi_gcp/container/cluster.py +68 -14
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +249 -3
- pulumi_gcp/dataproc/_inputs.py +209 -1
- pulumi_gcp/dataproc/batch.py +76 -0
- pulumi_gcp/dataproc/outputs.py +169 -3
- pulumi_gcp/diagflow/_inputs.py +3 -3
- pulumi_gcp/diagflow/outputs.py +2 -2
- pulumi_gcp/discoveryengine/search_engine.py +7 -7
- pulumi_gcp/firebaserules/release.py +76 -0
- pulumi_gcp/firestore/field.py +4 -4
- pulumi_gcp/gemini/__init__.py +15 -0
- pulumi_gcp/gemini/_inputs.py +183 -0
- pulumi_gcp/gemini/code_repository_index.py +659 -0
- pulumi_gcp/gemini/get_repository_group_iam_policy.py +171 -0
- pulumi_gcp/gemini/outputs.py +130 -0
- pulumi_gcp/gemini/repository_group.py +586 -0
- pulumi_gcp/gemini/repository_group_iam_binding.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_member.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_policy.py +443 -0
- pulumi_gcp/gkehub/_inputs.py +30 -10
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/outputs.py +21 -7
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/iam/__init__.py +1 -0
- pulumi_gcp/iam/_inputs.py +137 -0
- pulumi_gcp/iam/folders_policy_binding.py +16 -0
- pulumi_gcp/iam/organizations_policy_binding.py +16 -0
- pulumi_gcp/iam/outputs.py +99 -0
- pulumi_gcp/iam/principal_access_boundary_policy.py +16 -0
- pulumi_gcp/iam/projects_policy_binding.py +917 -0
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/_inputs.py +15 -15
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/integrationconnectors/outputs.py +10 -10
- pulumi_gcp/monitoring/_inputs.py +13 -6
- pulumi_gcp/monitoring/outputs.py +10 -4
- pulumi_gcp/netapp/_inputs.py +3 -3
- pulumi_gcp/netapp/active_directory.py +7 -7
- pulumi_gcp/netapp/outputs.py +2 -2
- pulumi_gcp/netapp/volume.py +11 -11
- pulumi_gcp/networkconnectivity/spoke.py +10 -10
- pulumi_gcp/networksecurity/__init__.py +4 -0
- pulumi_gcp/networksecurity/_inputs.py +115 -0
- pulumi_gcp/networksecurity/mirroring_deployment.py +848 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +752 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +737 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +840 -0
- pulumi_gcp/networksecurity/outputs.py +70 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +42 -4
- pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +42 -4
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +50 -8
- pulumi_gcp/oracledatabase/get_autonomous_database.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +12 -1
- pulumi_gcp/oracledatabase/outputs.py +21 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parallelstore/instance.py +4 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +435 -3
- pulumi_gcp/redis/cluster.py +287 -16
- pulumi_gcp/redis/outputs.py +304 -2
- pulumi_gcp/serviceaccount/get_account_id_token.py +2 -2
- pulumi_gcp/serviceaccount/get_account_key.py +2 -2
- pulumi_gcp/storage/get_bucket.py +2 -2
- pulumi_gcp/storage/get_bucket_object_content.py +2 -2
- pulumi_gcp/tpu/__init__.py +1 -0
- pulumi_gcp/tpu/_inputs.py +188 -6
- pulumi_gcp/tpu/outputs.py +164 -4
- pulumi_gcp/tpu/v2_queued_resource.py +434 -0
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
- {pulumi_gcp-8.11.0a1734157575.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/METADATA +3 -3
- {pulumi_gcp-8.11.0a1734157575.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/RECORD +142 -125
- {pulumi_gcp-8.11.0a1734157575.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.11.0a1734157575.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/top_level.txt +0 -0
@@ -596,15 +596,15 @@ class Spoke(pulumi.CustomResource):
|
|
596
596
|
import pulumi_gcp as gcp
|
597
597
|
|
598
598
|
network = gcp.compute.Network("network",
|
599
|
-
name="tf-test-
|
599
|
+
name="tf-test-network_55138",
|
600
600
|
auto_create_subnetworks=False)
|
601
601
|
subnetwork = gcp.compute.Subnetwork("subnetwork",
|
602
|
-
name="tf-test-
|
602
|
+
name="tf-test-subnet_37559",
|
603
603
|
ip_cidr_range="10.0.0.0/28",
|
604
604
|
region="us-central1",
|
605
605
|
network=network.self_link)
|
606
606
|
instance = gcp.compute.Instance("instance",
|
607
|
-
name="tf-test-
|
607
|
+
name="tf-test-instance_91980",
|
608
608
|
machine_type="e2-medium",
|
609
609
|
can_ip_forward=True,
|
610
610
|
zone="us-central1-a",
|
@@ -621,13 +621,13 @@ class Spoke(pulumi.CustomResource):
|
|
621
621
|
}],
|
622
622
|
}])
|
623
623
|
basic_hub = gcp.networkconnectivity.Hub("basic_hub",
|
624
|
-
name="tf-test-
|
624
|
+
name="tf-test-hub_37118",
|
625
625
|
description="A sample hub",
|
626
626
|
labels={
|
627
627
|
"label-two": "value-one",
|
628
628
|
})
|
629
629
|
primary = gcp.networkconnectivity.Spoke("primary",
|
630
|
-
name="tf-test-
|
630
|
+
name="tf-test-name_80332",
|
631
631
|
location="us-central1",
|
632
632
|
description="A sample spoke with a linked routher appliance instance",
|
633
633
|
labels={
|
@@ -951,15 +951,15 @@ class Spoke(pulumi.CustomResource):
|
|
951
951
|
import pulumi_gcp as gcp
|
952
952
|
|
953
953
|
network = gcp.compute.Network("network",
|
954
|
-
name="tf-test-
|
954
|
+
name="tf-test-network_55138",
|
955
955
|
auto_create_subnetworks=False)
|
956
956
|
subnetwork = gcp.compute.Subnetwork("subnetwork",
|
957
|
-
name="tf-test-
|
957
|
+
name="tf-test-subnet_37559",
|
958
958
|
ip_cidr_range="10.0.0.0/28",
|
959
959
|
region="us-central1",
|
960
960
|
network=network.self_link)
|
961
961
|
instance = gcp.compute.Instance("instance",
|
962
|
-
name="tf-test-
|
962
|
+
name="tf-test-instance_91980",
|
963
963
|
machine_type="e2-medium",
|
964
964
|
can_ip_forward=True,
|
965
965
|
zone="us-central1-a",
|
@@ -976,13 +976,13 @@ class Spoke(pulumi.CustomResource):
|
|
976
976
|
}],
|
977
977
|
}])
|
978
978
|
basic_hub = gcp.networkconnectivity.Hub("basic_hub",
|
979
|
-
name="tf-test-
|
979
|
+
name="tf-test-hub_37118",
|
980
980
|
description="A sample hub",
|
981
981
|
labels={
|
982
982
|
"label-two": "value-one",
|
983
983
|
})
|
984
984
|
primary = gcp.networkconnectivity.Spoke("primary",
|
985
|
-
name="tf-test-
|
985
|
+
name="tf-test-name_80332",
|
986
986
|
location="us-central1",
|
987
987
|
description="A sample spoke with a linked routher appliance instance",
|
988
988
|
labels={
|
@@ -16,6 +16,10 @@ from .firewall_endpoint_association import *
|
|
16
16
|
from .gateway_security_policy import *
|
17
17
|
from .gateway_security_policy_rule import *
|
18
18
|
from .get_address_group_iam_policy import *
|
19
|
+
from .mirroring_deployment import *
|
20
|
+
from .mirroring_deployment_group import *
|
21
|
+
from .mirroring_endpoint_group import *
|
22
|
+
from .mirroring_endpoint_group_association import *
|
19
23
|
from .security_profile import *
|
20
24
|
from .security_profile_group import *
|
21
25
|
from .server_tls_policy import *
|
@@ -39,6 +39,10 @@ __all__ = [
|
|
39
39
|
'ClientTlsPolicyServerValidationCaCertificateProviderInstanceArgsDict',
|
40
40
|
'ClientTlsPolicyServerValidationCaGrpcEndpointArgs',
|
41
41
|
'ClientTlsPolicyServerValidationCaGrpcEndpointArgsDict',
|
42
|
+
'MirroringDeploymentGroupConnectedEndpointGroupArgs',
|
43
|
+
'MirroringDeploymentGroupConnectedEndpointGroupArgsDict',
|
44
|
+
'MirroringEndpointGroupAssociationLocationsDetailArgs',
|
45
|
+
'MirroringEndpointGroupAssociationLocationsDetailArgsDict',
|
42
46
|
'SecurityProfileThreatPreventionProfileArgs',
|
43
47
|
'SecurityProfileThreatPreventionProfileArgsDict',
|
44
48
|
'SecurityProfileThreatPreventionProfileSeverityOverrideArgs',
|
@@ -664,6 +668,117 @@ class ClientTlsPolicyServerValidationCaGrpcEndpointArgs:
|
|
664
668
|
pulumi.set(self, "target_uri", value)
|
665
669
|
|
666
670
|
|
671
|
+
if not MYPY:
|
672
|
+
class MirroringDeploymentGroupConnectedEndpointGroupArgsDict(TypedDict):
|
673
|
+
name: NotRequired[pulumi.Input[str]]
|
674
|
+
"""
|
675
|
+
(Output)
|
676
|
+
Output only. A connected mirroring endpoint group.
|
677
|
+
"""
|
678
|
+
elif False:
|
679
|
+
MirroringDeploymentGroupConnectedEndpointGroupArgsDict: TypeAlias = Mapping[str, Any]
|
680
|
+
|
681
|
+
@pulumi.input_type
|
682
|
+
class MirroringDeploymentGroupConnectedEndpointGroupArgs:
|
683
|
+
def __init__(__self__, *,
|
684
|
+
name: Optional[pulumi.Input[str]] = None):
|
685
|
+
"""
|
686
|
+
:param pulumi.Input[str] name: (Output)
|
687
|
+
Output only. A connected mirroring endpoint group.
|
688
|
+
"""
|
689
|
+
if name is not None:
|
690
|
+
pulumi.set(__self__, "name", name)
|
691
|
+
|
692
|
+
@property
|
693
|
+
@pulumi.getter
|
694
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
695
|
+
"""
|
696
|
+
(Output)
|
697
|
+
Output only. A connected mirroring endpoint group.
|
698
|
+
"""
|
699
|
+
return pulumi.get(self, "name")
|
700
|
+
|
701
|
+
@name.setter
|
702
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
703
|
+
pulumi.set(self, "name", value)
|
704
|
+
|
705
|
+
|
706
|
+
if not MYPY:
|
707
|
+
class MirroringEndpointGroupAssociationLocationsDetailArgsDict(TypedDict):
|
708
|
+
location: NotRequired[pulumi.Input[str]]
|
709
|
+
"""
|
710
|
+
Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type `networksecurity.googleapis.com/MirroringEndpointGroupAssociation`.
|
711
|
+
|
712
|
+
|
713
|
+
- - -
|
714
|
+
"""
|
715
|
+
state: NotRequired[pulumi.Input[str]]
|
716
|
+
"""
|
717
|
+
(Output)
|
718
|
+
Output only. The association state in this location.
|
719
|
+
Possible values:
|
720
|
+
STATE_UNSPECIFIED
|
721
|
+
ACTIVE
|
722
|
+
OUT_OF_SYNC
|
723
|
+
"""
|
724
|
+
elif False:
|
725
|
+
MirroringEndpointGroupAssociationLocationsDetailArgsDict: TypeAlias = Mapping[str, Any]
|
726
|
+
|
727
|
+
@pulumi.input_type
|
728
|
+
class MirroringEndpointGroupAssociationLocationsDetailArgs:
|
729
|
+
def __init__(__self__, *,
|
730
|
+
location: Optional[pulumi.Input[str]] = None,
|
731
|
+
state: Optional[pulumi.Input[str]] = None):
|
732
|
+
"""
|
733
|
+
:param pulumi.Input[str] location: Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type `networksecurity.googleapis.com/MirroringEndpointGroupAssociation`.
|
734
|
+
|
735
|
+
|
736
|
+
- - -
|
737
|
+
:param pulumi.Input[str] state: (Output)
|
738
|
+
Output only. The association state in this location.
|
739
|
+
Possible values:
|
740
|
+
STATE_UNSPECIFIED
|
741
|
+
ACTIVE
|
742
|
+
OUT_OF_SYNC
|
743
|
+
"""
|
744
|
+
if location is not None:
|
745
|
+
pulumi.set(__self__, "location", location)
|
746
|
+
if state is not None:
|
747
|
+
pulumi.set(__self__, "state", state)
|
748
|
+
|
749
|
+
@property
|
750
|
+
@pulumi.getter
|
751
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
752
|
+
"""
|
753
|
+
Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type `networksecurity.googleapis.com/MirroringEndpointGroupAssociation`.
|
754
|
+
|
755
|
+
|
756
|
+
- - -
|
757
|
+
"""
|
758
|
+
return pulumi.get(self, "location")
|
759
|
+
|
760
|
+
@location.setter
|
761
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
762
|
+
pulumi.set(self, "location", value)
|
763
|
+
|
764
|
+
@property
|
765
|
+
@pulumi.getter
|
766
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
767
|
+
"""
|
768
|
+
(Output)
|
769
|
+
Output only. The association state in this location.
|
770
|
+
Possible values:
|
771
|
+
STATE_UNSPECIFIED
|
772
|
+
ACTIVE
|
773
|
+
OUT_OF_SYNC
|
774
|
+
"""
|
775
|
+
return pulumi.get(self, "state")
|
776
|
+
|
777
|
+
@state.setter
|
778
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
779
|
+
pulumi.set(self, "state", value)
|
780
|
+
|
781
|
+
|
667
782
|
if not MYPY:
|
668
783
|
class SecurityProfileThreatPreventionProfileArgsDict(TypedDict):
|
669
784
|
severity_overrides: NotRequired[pulumi.Input[Sequence[pulumi.Input['SecurityProfileThreatPreventionProfileSeverityOverrideArgsDict']]]]
|