pulumi-gcp 8.11.0a1734348982__py3-none-any.whl → 8.12.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 +123 -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/get_repository_iam_policy.py +12 -4
- pulumi_gcp/artifactregistry/outputs.py +32 -20
- pulumi_gcp/artifactregistry/repository.py +214 -39
- pulumi_gcp/artifactregistry/repository_iam_binding.py +42 -14
- pulumi_gcp/artifactregistry/repository_iam_member.py +42 -14
- pulumi_gcp/artifactregistry/repository_iam_policy.py +42 -14
- 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 +23 -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 +142 -2
- 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/project_cloud_armor_tier.py +7 -7
- 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/firebase/_inputs.py +99 -0
- pulumi_gcp/firebase/database_instance.py +24 -6
- pulumi_gcp/firebase/hosting_version.py +96 -0
- pulumi_gcp/firebase/outputs.py +59 -0
- pulumi_gcp/firebase/project.py +6 -6
- 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/identityplatform/_inputs.py +6 -6
- pulumi_gcp/identityplatform/config.py +2 -2
- pulumi_gcp/identityplatform/outputs.py +4 -4
- pulumi_gcp/integrationconnectors/_inputs.py +15 -15
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/integrationconnectors/outputs.py +10 -10
- pulumi_gcp/looker/instance.py +35 -14
- 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/_inputs.py +10 -12
- pulumi_gcp/networkconnectivity/outputs.py +6 -8
- pulumi_gcp/networkconnectivity/spoke.py +10 -10
- pulumi_gcp/networksecurity/__init__.py +7 -0
- pulumi_gcp/networksecurity/_inputs.py +2018 -0
- pulumi_gcp/networksecurity/authz_policy.py +1008 -0
- pulumi_gcp/networksecurity/intercept_deployment.py +846 -0
- pulumi_gcp/networksecurity/intercept_deployment_group.py +752 -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 +1463 -0
- pulumi_gcp/networkservices/__init__.py +1 -0
- pulumi_gcp/networkservices/authz_extension.py +1080 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +46 -8
- 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/_inputs.py +40 -0
- pulumi_gcp/orgpolicy/outputs.py +24 -0
- pulumi_gcp/orgpolicy/policy.py +66 -10
- 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/sql/_inputs.py +3 -3
- pulumi_gcp/sql/database_instance.py +14 -14
- pulumi_gcp/sql/outputs.py +2 -2
- pulumi_gcp/storage/_inputs.py +53 -6
- pulumi_gcp/storage/get_bucket.py +2 -2
- pulumi_gcp/storage/get_bucket_object_content.py +2 -2
- pulumi_gcp/storage/outputs.py +33 -4
- pulumi_gcp/tpu/__init__.py +1 -0
- pulumi_gcp/tpu/_inputs.py +214 -24
- pulumi_gcp/tpu/outputs.py +182 -16
- pulumi_gcp/tpu/v2_queued_resource.py +434 -0
- pulumi_gcp/tpu/v2_vm.py +63 -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.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/RECORD +168 -147
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/disk.py
CHANGED
@@ -152,10 +152,12 @@ class DiskArgs:
|
|
152
152
|
if the source snapshot is protected by a customer-supplied encryption
|
153
153
|
key.
|
154
154
|
Structure is documented below.
|
155
|
-
:param pulumi.Input[str] storage_pool: The URL of the storage pool in which the new disk is created.
|
155
|
+
:param pulumi.Input[str] storage_pool: The URL or the name of the storage pool in which the new disk is created.
|
156
156
|
For example:
|
157
157
|
* https://www.googleapis.com/compute/v1/projects/{project}/zones/{zone}/storagePools/{storagePool}
|
158
158
|
* /projects/{project}/zones/{zone}/storagePools/{storagePool}
|
159
|
+
* /zones/{zone}/storagePools/{storagePool}
|
160
|
+
* /{storagePool}
|
159
161
|
:param pulumi.Input[str] type: URL of the disk type resource describing which disk type to use to
|
160
162
|
create the disk. Provide this when creating the disk.
|
161
163
|
:param pulumi.Input[str] zone: A reference to the zone where the disk resides.
|
@@ -565,10 +567,12 @@ class DiskArgs:
|
|
565
567
|
@pulumi.getter(name="storagePool")
|
566
568
|
def storage_pool(self) -> Optional[pulumi.Input[str]]:
|
567
569
|
"""
|
568
|
-
The URL of the storage pool in which the new disk is created.
|
570
|
+
The URL or the name of the storage pool in which the new disk is created.
|
569
571
|
For example:
|
570
572
|
* https://www.googleapis.com/compute/v1/projects/{project}/zones/{zone}/storagePools/{storagePool}
|
571
573
|
* /projects/{project}/zones/{zone}/storagePools/{storagePool}
|
574
|
+
* /zones/{zone}/storagePools/{storagePool}
|
575
|
+
* /{storagePool}
|
572
576
|
"""
|
573
577
|
return pulumi.get(self, "storage_pool")
|
574
578
|
|
@@ -772,10 +776,12 @@ class _DiskState:
|
|
772
776
|
that was later deleted and recreated under the same name, the source
|
773
777
|
snapshot ID would identify the exact version of the snapshot that was
|
774
778
|
used.
|
775
|
-
:param pulumi.Input[str] storage_pool: The URL of the storage pool in which the new disk is created.
|
779
|
+
:param pulumi.Input[str] storage_pool: The URL or the name of the storage pool in which the new disk is created.
|
776
780
|
For example:
|
777
781
|
* https://www.googleapis.com/compute/v1/projects/{project}/zones/{zone}/storagePools/{storagePool}
|
778
782
|
* /projects/{project}/zones/{zone}/storagePools/{storagePool}
|
783
|
+
* /zones/{zone}/storagePools/{storagePool}
|
784
|
+
* /{storagePool}
|
779
785
|
:param pulumi.Input[str] type: URL of the disk type resource describing which disk type to use to
|
780
786
|
create the disk. Provide this when creating the disk.
|
781
787
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] users: Links to the users of the disk (attached instances) in form:
|
@@ -1356,10 +1362,12 @@ class _DiskState:
|
|
1356
1362
|
@pulumi.getter(name="storagePool")
|
1357
1363
|
def storage_pool(self) -> Optional[pulumi.Input[str]]:
|
1358
1364
|
"""
|
1359
|
-
The URL of the storage pool in which the new disk is created.
|
1365
|
+
The URL or the name of the storage pool in which the new disk is created.
|
1360
1366
|
For example:
|
1361
1367
|
* https://www.googleapis.com/compute/v1/projects/{project}/zones/{zone}/storagePools/{storagePool}
|
1362
1368
|
* /projects/{project}/zones/{zone}/storagePools/{storagePool}
|
1369
|
+
* /zones/{zone}/storagePools/{storagePool}
|
1370
|
+
* /{storagePool}
|
1363
1371
|
"""
|
1364
1372
|
return pulumi.get(self, "storage_pool")
|
1365
1373
|
|
@@ -1662,10 +1670,12 @@ class Disk(pulumi.CustomResource):
|
|
1662
1670
|
if the source snapshot is protected by a customer-supplied encryption
|
1663
1671
|
key.
|
1664
1672
|
Structure is documented below.
|
1665
|
-
:param pulumi.Input[str] storage_pool: The URL of the storage pool in which the new disk is created.
|
1673
|
+
:param pulumi.Input[str] storage_pool: The URL or the name of the storage pool in which the new disk is created.
|
1666
1674
|
For example:
|
1667
1675
|
* https://www.googleapis.com/compute/v1/projects/{project}/zones/{zone}/storagePools/{storagePool}
|
1668
1676
|
* /projects/{project}/zones/{zone}/storagePools/{storagePool}
|
1677
|
+
* /zones/{zone}/storagePools/{storagePool}
|
1678
|
+
* /{storagePool}
|
1669
1679
|
:param pulumi.Input[str] type: URL of the disk type resource describing which disk type to use to
|
1670
1680
|
create the disk. Provide this when creating the disk.
|
1671
1681
|
:param pulumi.Input[str] zone: A reference to the zone where the disk resides.
|
@@ -2065,10 +2075,12 @@ class Disk(pulumi.CustomResource):
|
|
2065
2075
|
that was later deleted and recreated under the same name, the source
|
2066
2076
|
snapshot ID would identify the exact version of the snapshot that was
|
2067
2077
|
used.
|
2068
|
-
:param pulumi.Input[str] storage_pool: The URL of the storage pool in which the new disk is created.
|
2078
|
+
:param pulumi.Input[str] storage_pool: The URL or the name of the storage pool in which the new disk is created.
|
2069
2079
|
For example:
|
2070
2080
|
* https://www.googleapis.com/compute/v1/projects/{project}/zones/{zone}/storagePools/{storagePool}
|
2071
2081
|
* /projects/{project}/zones/{zone}/storagePools/{storagePool}
|
2082
|
+
* /zones/{zone}/storagePools/{storagePool}
|
2083
|
+
* /{storagePool}
|
2072
2084
|
:param pulumi.Input[str] type: URL of the disk type resource describing which disk type to use to
|
2073
2085
|
create the disk. Provide this when creating the disk.
|
2074
2086
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] users: Links to the users of the disk (attached instances) in form:
|
@@ -2482,10 +2494,12 @@ class Disk(pulumi.CustomResource):
|
|
2482
2494
|
@pulumi.getter(name="storagePool")
|
2483
2495
|
def storage_pool(self) -> pulumi.Output[Optional[str]]:
|
2484
2496
|
"""
|
2485
|
-
The URL of the storage pool in which the new disk is created.
|
2497
|
+
The URL or the name of the storage pool in which the new disk is created.
|
2486
2498
|
For example:
|
2487
2499
|
* https://www.googleapis.com/compute/v1/projects/{project}/zones/{zone}/storagePools/{storagePool}
|
2488
2500
|
* /projects/{project}/zones/{zone}/storagePools/{storagePool}
|
2501
|
+
* /zones/{zone}/storagePools/{storagePool}
|
2502
|
+
* /{storagePool}
|
2489
2503
|
"""
|
2490
2504
|
return pulumi.get(self, "storage_pool")
|
2491
2505
|
|
@@ -524,6 +524,12 @@ class FirewallPolicyRule(pulumi.CustomResource):
|
|
524
524
|
tls_inspect: Optional[pulumi.Input[bool]] = None,
|
525
525
|
__props__=None):
|
526
526
|
"""
|
527
|
+
Represents a rule that describes one or more match conditions along with the action to be taken when traffic matches this condition (allow or deny).
|
528
|
+
|
529
|
+
To get more information about FirewallPolicyRule, see:
|
530
|
+
|
531
|
+
* [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/firewallPolicies/addRule)
|
532
|
+
|
527
533
|
## Example Usage
|
528
534
|
|
529
535
|
### Firewall Policy Rule
|
@@ -628,6 +634,12 @@ class FirewallPolicyRule(pulumi.CustomResource):
|
|
628
634
|
args: FirewallPolicyRuleArgs,
|
629
635
|
opts: Optional[pulumi.ResourceOptions] = None):
|
630
636
|
"""
|
637
|
+
Represents a rule that describes one or more match conditions along with the action to be taken when traffic matches this condition (allow or deny).
|
638
|
+
|
639
|
+
To get more information about FirewallPolicyRule, see:
|
640
|
+
|
641
|
+
* [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/firewallPolicies/addRule)
|
642
|
+
|
631
643
|
## Example Usage
|
632
644
|
|
633
645
|
### Firewall Policy Rule
|
@@ -106,7 +106,7 @@ def get_forwarding_rules(project: Optional[str] = None,
|
|
106
106
|
:param str project: The name of the project.
|
107
107
|
:param str region: The region you want to get the forwarding rules from.
|
108
108
|
|
109
|
-
These arguments must be set in either the provider or the
|
109
|
+
These arguments must be set in either the provider or the resource in order for the information to be queried.
|
110
110
|
"""
|
111
111
|
__args__ = dict()
|
112
112
|
__args__['project'] = project
|
@@ -139,7 +139,7 @@ def get_forwarding_rules_output(project: Optional[pulumi.Input[Optional[str]]] =
|
|
139
139
|
:param str project: The name of the project.
|
140
140
|
:param str region: The region you want to get the forwarding rules from.
|
141
141
|
|
142
|
-
These arguments must be set in either the provider or the
|
142
|
+
These arguments must be set in either the provider or the resource in order for the information to be queried.
|
143
143
|
"""
|
144
144
|
__args__ = dict()
|
145
145
|
__args__['project'] = project
|
@@ -27,7 +27,7 @@ class GetGlobalForwardingRuleResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getGlobalForwardingRule.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, allow_psc_global_access=None, base_forwarding_rule=None, description=None, effective_labels=None, id=None, ip_address=None, ip_protocol=None, ip_version=None, label_fingerprint=None, labels=None, load_balancing_scheme=None, metadata_filters=None, name=None, network=None, no_automate_dns_zone=None, port_range=None, project=None, psc_connection_id=None, psc_connection_status=None, pulumi_labels=None, self_link=None, service_directory_registrations=None, source_ip_ranges=None, subnetwork=None, target=None):
|
30
|
+
def __init__(__self__, allow_psc_global_access=None, base_forwarding_rule=None, description=None, effective_labels=None, forwarding_rule_id=None, id=None, ip_address=None, ip_protocol=None, ip_version=None, label_fingerprint=None, labels=None, load_balancing_scheme=None, metadata_filters=None, name=None, network=None, network_tier=None, no_automate_dns_zone=None, port_range=None, project=None, psc_connection_id=None, psc_connection_status=None, pulumi_labels=None, self_link=None, service_directory_registrations=None, source_ip_ranges=None, subnetwork=None, target=None):
|
31
31
|
if allow_psc_global_access and not isinstance(allow_psc_global_access, bool):
|
32
32
|
raise TypeError("Expected argument 'allow_psc_global_access' to be a bool")
|
33
33
|
pulumi.set(__self__, "allow_psc_global_access", allow_psc_global_access)
|
@@ -40,6 +40,9 @@ class GetGlobalForwardingRuleResult:
|
|
40
40
|
if effective_labels and not isinstance(effective_labels, dict):
|
41
41
|
raise TypeError("Expected argument 'effective_labels' to be a dict")
|
42
42
|
pulumi.set(__self__, "effective_labels", effective_labels)
|
43
|
+
if forwarding_rule_id and not isinstance(forwarding_rule_id, int):
|
44
|
+
raise TypeError("Expected argument 'forwarding_rule_id' to be a int")
|
45
|
+
pulumi.set(__self__, "forwarding_rule_id", forwarding_rule_id)
|
43
46
|
if id and not isinstance(id, str):
|
44
47
|
raise TypeError("Expected argument 'id' to be a str")
|
45
48
|
pulumi.set(__self__, "id", id)
|
@@ -70,6 +73,9 @@ class GetGlobalForwardingRuleResult:
|
|
70
73
|
if network and not isinstance(network, str):
|
71
74
|
raise TypeError("Expected argument 'network' to be a str")
|
72
75
|
pulumi.set(__self__, "network", network)
|
76
|
+
if network_tier and not isinstance(network_tier, str):
|
77
|
+
raise TypeError("Expected argument 'network_tier' to be a str")
|
78
|
+
pulumi.set(__self__, "network_tier", network_tier)
|
73
79
|
if no_automate_dns_zone and not isinstance(no_automate_dns_zone, bool):
|
74
80
|
raise TypeError("Expected argument 'no_automate_dns_zone' to be a bool")
|
75
81
|
pulumi.set(__self__, "no_automate_dns_zone", no_automate_dns_zone)
|
@@ -124,6 +130,11 @@ class GetGlobalForwardingRuleResult:
|
|
124
130
|
def effective_labels(self) -> Mapping[str, str]:
|
125
131
|
return pulumi.get(self, "effective_labels")
|
126
132
|
|
133
|
+
@property
|
134
|
+
@pulumi.getter(name="forwardingRuleId")
|
135
|
+
def forwarding_rule_id(self) -> int:
|
136
|
+
return pulumi.get(self, "forwarding_rule_id")
|
137
|
+
|
127
138
|
@property
|
128
139
|
@pulumi.getter
|
129
140
|
def id(self) -> str:
|
@@ -177,6 +188,11 @@ class GetGlobalForwardingRuleResult:
|
|
177
188
|
def network(self) -> str:
|
178
189
|
return pulumi.get(self, "network")
|
179
190
|
|
191
|
+
@property
|
192
|
+
@pulumi.getter(name="networkTier")
|
193
|
+
def network_tier(self) -> str:
|
194
|
+
return pulumi.get(self, "network_tier")
|
195
|
+
|
180
196
|
@property
|
181
197
|
@pulumi.getter(name="noAutomateDnsZone")
|
182
198
|
def no_automate_dns_zone(self) -> bool:
|
@@ -243,6 +259,7 @@ class AwaitableGetGlobalForwardingRuleResult(GetGlobalForwardingRuleResult):
|
|
243
259
|
base_forwarding_rule=self.base_forwarding_rule,
|
244
260
|
description=self.description,
|
245
261
|
effective_labels=self.effective_labels,
|
262
|
+
forwarding_rule_id=self.forwarding_rule_id,
|
246
263
|
id=self.id,
|
247
264
|
ip_address=self.ip_address,
|
248
265
|
ip_protocol=self.ip_protocol,
|
@@ -253,6 +270,7 @@ class AwaitableGetGlobalForwardingRuleResult(GetGlobalForwardingRuleResult):
|
|
253
270
|
metadata_filters=self.metadata_filters,
|
254
271
|
name=self.name,
|
255
272
|
network=self.network,
|
273
|
+
network_tier=self.network_tier,
|
256
274
|
no_automate_dns_zone=self.no_automate_dns_zone,
|
257
275
|
port_range=self.port_range,
|
258
276
|
project=self.project,
|
@@ -299,6 +317,7 @@ def get_global_forwarding_rule(name: Optional[str] = None,
|
|
299
317
|
base_forwarding_rule=pulumi.get(__ret__, 'base_forwarding_rule'),
|
300
318
|
description=pulumi.get(__ret__, 'description'),
|
301
319
|
effective_labels=pulumi.get(__ret__, 'effective_labels'),
|
320
|
+
forwarding_rule_id=pulumi.get(__ret__, 'forwarding_rule_id'),
|
302
321
|
id=pulumi.get(__ret__, 'id'),
|
303
322
|
ip_address=pulumi.get(__ret__, 'ip_address'),
|
304
323
|
ip_protocol=pulumi.get(__ret__, 'ip_protocol'),
|
@@ -309,6 +328,7 @@ def get_global_forwarding_rule(name: Optional[str] = None,
|
|
309
328
|
metadata_filters=pulumi.get(__ret__, 'metadata_filters'),
|
310
329
|
name=pulumi.get(__ret__, 'name'),
|
311
330
|
network=pulumi.get(__ret__, 'network'),
|
331
|
+
network_tier=pulumi.get(__ret__, 'network_tier'),
|
312
332
|
no_automate_dns_zone=pulumi.get(__ret__, 'no_automate_dns_zone'),
|
313
333
|
port_range=pulumi.get(__ret__, 'port_range'),
|
314
334
|
project=pulumi.get(__ret__, 'project'),
|
@@ -352,6 +372,7 @@ def get_global_forwarding_rule_output(name: Optional[pulumi.Input[str]] = None,
|
|
352
372
|
base_forwarding_rule=pulumi.get(__response__, 'base_forwarding_rule'),
|
353
373
|
description=pulumi.get(__response__, 'description'),
|
354
374
|
effective_labels=pulumi.get(__response__, 'effective_labels'),
|
375
|
+
forwarding_rule_id=pulumi.get(__response__, 'forwarding_rule_id'),
|
355
376
|
id=pulumi.get(__response__, 'id'),
|
356
377
|
ip_address=pulumi.get(__response__, 'ip_address'),
|
357
378
|
ip_protocol=pulumi.get(__response__, 'ip_protocol'),
|
@@ -362,6 +383,7 @@ def get_global_forwarding_rule_output(name: Optional[pulumi.Input[str]] = None,
|
|
362
383
|
metadata_filters=pulumi.get(__response__, 'metadata_filters'),
|
363
384
|
name=pulumi.get(__response__, 'name'),
|
364
385
|
network=pulumi.get(__response__, 'network'),
|
386
|
+
network_tier=pulumi.get(__response__, 'network_tier'),
|
365
387
|
no_automate_dns_zone=pulumi.get(__response__, 'no_automate_dns_zone'),
|
366
388
|
port_range=pulumi.get(__response__, 'port_range'),
|
367
389
|
project=pulumi.get(__response__, 'project'),
|
@@ -27,7 +27,7 @@ class GetInstanceGroupManagerResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getInstanceGroupManager.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, all_instances_configs=None, auto_healing_policies=None, base_instance_name=None, creation_timestamp=None, description=None, fingerprint=None, id=None, instance_group=None, instance_lifecycle_policies=None, list_managed_instances_results=None, name=None, named_ports=None, operation=None, params=None, project=None, self_link=None, standby_policies=None, stateful_disks=None, stateful_external_ips=None, stateful_internal_ips=None, statuses=None, target_pools=None, target_size=None, target_stopped_size=None, target_suspended_size=None, update_policies=None, versions=None, wait_for_instances=None, wait_for_instances_status=None, zone=None):
|
30
|
+
def __init__(__self__, all_instances_configs=None, auto_healing_policies=None, base_instance_name=None, creation_timestamp=None, description=None, fingerprint=None, id=None, instance_group=None, instance_group_manager_id=None, instance_lifecycle_policies=None, list_managed_instances_results=None, name=None, named_ports=None, operation=None, params=None, project=None, self_link=None, standby_policies=None, stateful_disks=None, stateful_external_ips=None, stateful_internal_ips=None, statuses=None, target_pools=None, target_size=None, target_stopped_size=None, target_suspended_size=None, update_policies=None, versions=None, wait_for_instances=None, wait_for_instances_status=None, zone=None):
|
31
31
|
if all_instances_configs and not isinstance(all_instances_configs, list):
|
32
32
|
raise TypeError("Expected argument 'all_instances_configs' to be a list")
|
33
33
|
pulumi.set(__self__, "all_instances_configs", all_instances_configs)
|
@@ -52,6 +52,9 @@ class GetInstanceGroupManagerResult:
|
|
52
52
|
if instance_group and not isinstance(instance_group, str):
|
53
53
|
raise TypeError("Expected argument 'instance_group' to be a str")
|
54
54
|
pulumi.set(__self__, "instance_group", instance_group)
|
55
|
+
if instance_group_manager_id and not isinstance(instance_group_manager_id, int):
|
56
|
+
raise TypeError("Expected argument 'instance_group_manager_id' to be a int")
|
57
|
+
pulumi.set(__self__, "instance_group_manager_id", instance_group_manager_id)
|
55
58
|
if instance_lifecycle_policies and not isinstance(instance_lifecycle_policies, list):
|
56
59
|
raise TypeError("Expected argument 'instance_lifecycle_policies' to be a list")
|
57
60
|
pulumi.set(__self__, "instance_lifecycle_policies", instance_lifecycle_policies)
|
@@ -162,6 +165,11 @@ class GetInstanceGroupManagerResult:
|
|
162
165
|
def instance_group(self) -> str:
|
163
166
|
return pulumi.get(self, "instance_group")
|
164
167
|
|
168
|
+
@property
|
169
|
+
@pulumi.getter(name="instanceGroupManagerId")
|
170
|
+
def instance_group_manager_id(self) -> int:
|
171
|
+
return pulumi.get(self, "instance_group_manager_id")
|
172
|
+
|
165
173
|
@property
|
166
174
|
@pulumi.getter(name="instanceLifecyclePolicies")
|
167
175
|
def instance_lifecycle_policies(self) -> Sequence['outputs.GetInstanceGroupManagerInstanceLifecyclePolicyResult']:
|
@@ -287,6 +295,7 @@ class AwaitableGetInstanceGroupManagerResult(GetInstanceGroupManagerResult):
|
|
287
295
|
fingerprint=self.fingerprint,
|
288
296
|
id=self.id,
|
289
297
|
instance_group=self.instance_group,
|
298
|
+
instance_group_manager_id=self.instance_group_manager_id,
|
290
299
|
instance_lifecycle_policies=self.instance_lifecycle_policies,
|
291
300
|
list_managed_instances_results=self.list_managed_instances_results,
|
292
301
|
name=self.name,
|
@@ -355,6 +364,7 @@ def get_instance_group_manager(name: Optional[str] = None,
|
|
355
364
|
fingerprint=pulumi.get(__ret__, 'fingerprint'),
|
356
365
|
id=pulumi.get(__ret__, 'id'),
|
357
366
|
instance_group=pulumi.get(__ret__, 'instance_group'),
|
367
|
+
instance_group_manager_id=pulumi.get(__ret__, 'instance_group_manager_id'),
|
358
368
|
instance_lifecycle_policies=pulumi.get(__ret__, 'instance_lifecycle_policies'),
|
359
369
|
list_managed_instances_results=pulumi.get(__ret__, 'list_managed_instances_results'),
|
360
370
|
name=pulumi.get(__ret__, 'name'),
|
@@ -420,6 +430,7 @@ def get_instance_group_manager_output(name: Optional[pulumi.Input[Optional[str]]
|
|
420
430
|
fingerprint=pulumi.get(__response__, 'fingerprint'),
|
421
431
|
id=pulumi.get(__response__, 'id'),
|
422
432
|
instance_group=pulumi.get(__response__, 'instance_group'),
|
433
|
+
instance_group_manager_id=pulumi.get(__response__, 'instance_group_manager_id'),
|
423
434
|
instance_lifecycle_policies=pulumi.get(__response__, 'instance_lifecycle_policies'),
|
424
435
|
list_managed_instances_results=pulumi.get(__response__, 'list_managed_instances_results'),
|
425
436
|
name=pulumi.get(__response__, 'name'),
|
@@ -26,7 +26,7 @@ class GetNetworkResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getNetwork.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, description=None, gateway_ipv4=None, id=None, internal_ipv6_range=None, name=None, project=None, self_link=None, subnetworks_self_links=None):
|
29
|
+
def __init__(__self__, description=None, gateway_ipv4=None, id=None, internal_ipv6_range=None, name=None, network_profile=None, numeric_id=None, project=None, self_link=None, subnetworks_self_links=None):
|
30
30
|
if description and not isinstance(description, str):
|
31
31
|
raise TypeError("Expected argument 'description' to be a str")
|
32
32
|
pulumi.set(__self__, "description", description)
|
@@ -42,6 +42,12 @@ class GetNetworkResult:
|
|
42
42
|
if name and not isinstance(name, str):
|
43
43
|
raise TypeError("Expected argument 'name' to be a str")
|
44
44
|
pulumi.set(__self__, "name", name)
|
45
|
+
if network_profile and not isinstance(network_profile, str):
|
46
|
+
raise TypeError("Expected argument 'network_profile' to be a str")
|
47
|
+
pulumi.set(__self__, "network_profile", network_profile)
|
48
|
+
if numeric_id and not isinstance(numeric_id, str):
|
49
|
+
raise TypeError("Expected argument 'numeric_id' to be a str")
|
50
|
+
pulumi.set(__self__, "numeric_id", numeric_id)
|
45
51
|
if project and not isinstance(project, str):
|
46
52
|
raise TypeError("Expected argument 'project' to be a str")
|
47
53
|
pulumi.set(__self__, "project", project)
|
@@ -89,6 +95,22 @@ class GetNetworkResult:
|
|
89
95
|
def name(self) -> str:
|
90
96
|
return pulumi.get(self, "name")
|
91
97
|
|
98
|
+
@property
|
99
|
+
@pulumi.getter(name="networkProfile")
|
100
|
+
def network_profile(self) -> Optional[str]:
|
101
|
+
"""
|
102
|
+
Beta A full or partial URL of the network profile to apply to this network.
|
103
|
+
"""
|
104
|
+
return pulumi.get(self, "network_profile")
|
105
|
+
|
106
|
+
@property
|
107
|
+
@pulumi.getter(name="numericId")
|
108
|
+
def numeric_id(self) -> str:
|
109
|
+
"""
|
110
|
+
The numeric unique identifier for the resource.
|
111
|
+
"""
|
112
|
+
return pulumi.get(self, "numeric_id")
|
113
|
+
|
92
114
|
@property
|
93
115
|
@pulumi.getter
|
94
116
|
def project(self) -> Optional[str]:
|
@@ -122,12 +144,15 @@ class AwaitableGetNetworkResult(GetNetworkResult):
|
|
122
144
|
id=self.id,
|
123
145
|
internal_ipv6_range=self.internal_ipv6_range,
|
124
146
|
name=self.name,
|
147
|
+
network_profile=self.network_profile,
|
148
|
+
numeric_id=self.numeric_id,
|
125
149
|
project=self.project,
|
126
150
|
self_link=self.self_link,
|
127
151
|
subnetworks_self_links=self.subnetworks_self_links)
|
128
152
|
|
129
153
|
|
130
154
|
def get_network(name: Optional[str] = None,
|
155
|
+
network_profile: Optional[str] = None,
|
131
156
|
project: Optional[str] = None,
|
132
157
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNetworkResult:
|
133
158
|
"""
|
@@ -147,11 +172,13 @@ def get_network(name: Optional[str] = None,
|
|
147
172
|
|
148
173
|
|
149
174
|
- - -
|
175
|
+
:param str network_profile: Beta A full or partial URL of the network profile to apply to this network.
|
150
176
|
:param str project: The ID of the project in which the resource belongs. If it
|
151
177
|
is not provided, the provider project is used.
|
152
178
|
"""
|
153
179
|
__args__ = dict()
|
154
180
|
__args__['name'] = name
|
181
|
+
__args__['networkProfile'] = network_profile
|
155
182
|
__args__['project'] = project
|
156
183
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
157
184
|
__ret__ = pulumi.runtime.invoke('gcp:compute/getNetwork:getNetwork', __args__, opts=opts, typ=GetNetworkResult).value
|
@@ -162,10 +189,13 @@ def get_network(name: Optional[str] = None,
|
|
162
189
|
id=pulumi.get(__ret__, 'id'),
|
163
190
|
internal_ipv6_range=pulumi.get(__ret__, 'internal_ipv6_range'),
|
164
191
|
name=pulumi.get(__ret__, 'name'),
|
192
|
+
network_profile=pulumi.get(__ret__, 'network_profile'),
|
193
|
+
numeric_id=pulumi.get(__ret__, 'numeric_id'),
|
165
194
|
project=pulumi.get(__ret__, 'project'),
|
166
195
|
self_link=pulumi.get(__ret__, 'self_link'),
|
167
196
|
subnetworks_self_links=pulumi.get(__ret__, 'subnetworks_self_links'))
|
168
197
|
def get_network_output(name: Optional[pulumi.Input[str]] = None,
|
198
|
+
network_profile: Optional[pulumi.Input[Optional[str]]] = None,
|
169
199
|
project: Optional[pulumi.Input[Optional[str]]] = None,
|
170
200
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNetworkResult]:
|
171
201
|
"""
|
@@ -185,11 +215,13 @@ def get_network_output(name: Optional[pulumi.Input[str]] = None,
|
|
185
215
|
|
186
216
|
|
187
217
|
- - -
|
218
|
+
:param str network_profile: Beta A full or partial URL of the network profile to apply to this network.
|
188
219
|
:param str project: The ID of the project in which the resource belongs. If it
|
189
220
|
is not provided, the provider project is used.
|
190
221
|
"""
|
191
222
|
__args__ = dict()
|
192
223
|
__args__['name'] = name
|
224
|
+
__args__['networkProfile'] = network_profile
|
193
225
|
__args__['project'] = project
|
194
226
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
195
227
|
__ret__ = pulumi.runtime.invoke_output('gcp:compute/getNetwork:getNetwork', __args__, opts=opts, typ=GetNetworkResult)
|
@@ -199,6 +231,8 @@ def get_network_output(name: Optional[pulumi.Input[str]] = None,
|
|
199
231
|
id=pulumi.get(__response__, 'id'),
|
200
232
|
internal_ipv6_range=pulumi.get(__response__, 'internal_ipv6_range'),
|
201
233
|
name=pulumi.get(__response__, 'name'),
|
234
|
+
network_profile=pulumi.get(__response__, 'network_profile'),
|
235
|
+
numeric_id=pulumi.get(__response__, 'numeric_id'),
|
202
236
|
project=pulumi.get(__response__, 'project'),
|
203
237
|
self_link=pulumi.get(__response__, 'self_link'),
|
204
238
|
subnetworks_self_links=pulumi.get(__response__, 'subnetworks_self_links')))
|
@@ -27,7 +27,7 @@ class GetRegionInstanceGroupManagerResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getRegionInstanceGroupManager.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, all_instances_configs=None, auto_healing_policies=None, base_instance_name=None, creation_timestamp=None, description=None, distribution_policy_target_shape=None, distribution_policy_zones=None, fingerprint=None, id=None, instance_flexibility_policies=None, instance_group=None, instance_lifecycle_policies=None, list_managed_instances_results=None, name=None, named_ports=None, params=None, project=None, region=None, self_link=None, standby_policies=None, stateful_disks=None, stateful_external_ips=None, stateful_internal_ips=None, statuses=None, target_pools=None, target_size=None, target_stopped_size=None, target_suspended_size=None, update_policies=None, versions=None, wait_for_instances=None, wait_for_instances_status=None):
|
30
|
+
def __init__(__self__, all_instances_configs=None, auto_healing_policies=None, base_instance_name=None, creation_timestamp=None, description=None, distribution_policy_target_shape=None, distribution_policy_zones=None, fingerprint=None, id=None, instance_flexibility_policies=None, instance_group=None, instance_group_manager_id=None, instance_lifecycle_policies=None, list_managed_instances_results=None, name=None, named_ports=None, params=None, project=None, region=None, self_link=None, standby_policies=None, stateful_disks=None, stateful_external_ips=None, stateful_internal_ips=None, statuses=None, target_pools=None, target_size=None, target_stopped_size=None, target_suspended_size=None, update_policies=None, versions=None, wait_for_instances=None, wait_for_instances_status=None):
|
31
31
|
if all_instances_configs and not isinstance(all_instances_configs, list):
|
32
32
|
raise TypeError("Expected argument 'all_instances_configs' to be a list")
|
33
33
|
pulumi.set(__self__, "all_instances_configs", all_instances_configs)
|
@@ -61,6 +61,9 @@ class GetRegionInstanceGroupManagerResult:
|
|
61
61
|
if instance_group and not isinstance(instance_group, str):
|
62
62
|
raise TypeError("Expected argument 'instance_group' to be a str")
|
63
63
|
pulumi.set(__self__, "instance_group", instance_group)
|
64
|
+
if instance_group_manager_id and not isinstance(instance_group_manager_id, int):
|
65
|
+
raise TypeError("Expected argument 'instance_group_manager_id' to be a int")
|
66
|
+
pulumi.set(__self__, "instance_group_manager_id", instance_group_manager_id)
|
64
67
|
if instance_lifecycle_policies and not isinstance(instance_lifecycle_policies, list):
|
65
68
|
raise TypeError("Expected argument 'instance_lifecycle_policies' to be a list")
|
66
69
|
pulumi.set(__self__, "instance_lifecycle_policies", instance_lifecycle_policies)
|
@@ -183,6 +186,11 @@ class GetRegionInstanceGroupManagerResult:
|
|
183
186
|
def instance_group(self) -> str:
|
184
187
|
return pulumi.get(self, "instance_group")
|
185
188
|
|
189
|
+
@property
|
190
|
+
@pulumi.getter(name="instanceGroupManagerId")
|
191
|
+
def instance_group_manager_id(self) -> int:
|
192
|
+
return pulumi.get(self, "instance_group_manager_id")
|
193
|
+
|
186
194
|
@property
|
187
195
|
@pulumi.getter(name="instanceLifecyclePolicies")
|
188
196
|
def instance_lifecycle_policies(self) -> Sequence['outputs.GetRegionInstanceGroupManagerInstanceLifecyclePolicyResult']:
|
@@ -306,6 +314,7 @@ class AwaitableGetRegionInstanceGroupManagerResult(GetRegionInstanceGroupManager
|
|
306
314
|
id=self.id,
|
307
315
|
instance_flexibility_policies=self.instance_flexibility_policies,
|
308
316
|
instance_group=self.instance_group,
|
317
|
+
instance_group_manager_id=self.instance_group_manager_id,
|
309
318
|
instance_lifecycle_policies=self.instance_lifecycle_policies,
|
310
319
|
list_managed_instances_results=self.list_managed_instances_results,
|
311
320
|
name=self.name,
|
@@ -376,6 +385,7 @@ def get_region_instance_group_manager(name: Optional[str] = None,
|
|
376
385
|
id=pulumi.get(__ret__, 'id'),
|
377
386
|
instance_flexibility_policies=pulumi.get(__ret__, 'instance_flexibility_policies'),
|
378
387
|
instance_group=pulumi.get(__ret__, 'instance_group'),
|
388
|
+
instance_group_manager_id=pulumi.get(__ret__, 'instance_group_manager_id'),
|
379
389
|
instance_lifecycle_policies=pulumi.get(__ret__, 'instance_lifecycle_policies'),
|
380
390
|
list_managed_instances_results=pulumi.get(__ret__, 'list_managed_instances_results'),
|
381
391
|
name=pulumi.get(__ret__, 'name'),
|
@@ -443,6 +453,7 @@ def get_region_instance_group_manager_output(name: Optional[pulumi.Input[Optiona
|
|
443
453
|
id=pulumi.get(__response__, 'id'),
|
444
454
|
instance_flexibility_policies=pulumi.get(__response__, 'instance_flexibility_policies'),
|
445
455
|
instance_group=pulumi.get(__response__, 'instance_group'),
|
456
|
+
instance_group_manager_id=pulumi.get(__response__, 'instance_group_manager_id'),
|
446
457
|
instance_lifecycle_policies=pulumi.get(__response__, 'instance_lifecycle_policies'),
|
447
458
|
list_managed_instances_results=pulumi.get(__response__, 'list_managed_instances_results'),
|
448
459
|
name=pulumi.get(__response__, 'name'),
|
@@ -27,7 +27,7 @@ class GetRegionNetworkEndpointGroupResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getRegionNetworkEndpointGroup.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, app_engines=None, cloud_functions=None, cloud_runs=None, description=None, id=None, name=None, network=None, network_endpoint_type=None, project=None, psc_target_service=None, region=None, self_link=None, serverless_deployments=None, subnetwork=None):
|
30
|
+
def __init__(__self__, app_engines=None, cloud_functions=None, cloud_runs=None, description=None, id=None, name=None, network=None, network_endpoint_type=None, project=None, psc_datas=None, psc_target_service=None, region=None, self_link=None, serverless_deployments=None, subnetwork=None):
|
31
31
|
if app_engines and not isinstance(app_engines, list):
|
32
32
|
raise TypeError("Expected argument 'app_engines' to be a list")
|
33
33
|
pulumi.set(__self__, "app_engines", app_engines)
|
@@ -55,6 +55,9 @@ class GetRegionNetworkEndpointGroupResult:
|
|
55
55
|
if project and not isinstance(project, str):
|
56
56
|
raise TypeError("Expected argument 'project' to be a str")
|
57
57
|
pulumi.set(__self__, "project", project)
|
58
|
+
if psc_datas and not isinstance(psc_datas, list):
|
59
|
+
raise TypeError("Expected argument 'psc_datas' to be a list")
|
60
|
+
pulumi.set(__self__, "psc_datas", psc_datas)
|
58
61
|
if psc_target_service and not isinstance(psc_target_service, str):
|
59
62
|
raise TypeError("Expected argument 'psc_target_service' to be a str")
|
60
63
|
pulumi.set(__self__, "psc_target_service", psc_target_service)
|
@@ -128,6 +131,11 @@ class GetRegionNetworkEndpointGroupResult:
|
|
128
131
|
def project(self) -> Optional[str]:
|
129
132
|
return pulumi.get(self, "project")
|
130
133
|
|
134
|
+
@property
|
135
|
+
@pulumi.getter(name="pscDatas")
|
136
|
+
def psc_datas(self) -> Sequence['outputs.GetRegionNetworkEndpointGroupPscDataResult']:
|
137
|
+
return pulumi.get(self, "psc_datas")
|
138
|
+
|
131
139
|
@property
|
132
140
|
@pulumi.getter(name="pscTargetService")
|
133
141
|
def psc_target_service(self) -> str:
|
@@ -175,6 +183,7 @@ class AwaitableGetRegionNetworkEndpointGroupResult(GetRegionNetworkEndpointGroup
|
|
175
183
|
network=self.network,
|
176
184
|
network_endpoint_type=self.network_endpoint_type,
|
177
185
|
project=self.project,
|
186
|
+
psc_datas=self.psc_datas,
|
178
187
|
psc_target_service=self.psc_target_service,
|
179
188
|
region=self.region,
|
180
189
|
self_link=self.self_link,
|
@@ -227,6 +236,7 @@ def get_region_network_endpoint_group(name: Optional[str] = None,
|
|
227
236
|
network=pulumi.get(__ret__, 'network'),
|
228
237
|
network_endpoint_type=pulumi.get(__ret__, 'network_endpoint_type'),
|
229
238
|
project=pulumi.get(__ret__, 'project'),
|
239
|
+
psc_datas=pulumi.get(__ret__, 'psc_datas'),
|
230
240
|
psc_target_service=pulumi.get(__ret__, 'psc_target_service'),
|
231
241
|
region=pulumi.get(__ret__, 'region'),
|
232
242
|
self_link=pulumi.get(__ret__, 'self_link'),
|
@@ -276,6 +286,7 @@ def get_region_network_endpoint_group_output(name: Optional[pulumi.Input[Optiona
|
|
276
286
|
network=pulumi.get(__response__, 'network'),
|
277
287
|
network_endpoint_type=pulumi.get(__response__, 'network_endpoint_type'),
|
278
288
|
project=pulumi.get(__response__, 'project'),
|
289
|
+
psc_datas=pulumi.get(__response__, 'psc_datas'),
|
279
290
|
psc_target_service=pulumi.get(__response__, 'psc_target_service'),
|
280
291
|
region=pulumi.get(__response__, 'region'),
|
281
292
|
self_link=pulumi.get(__response__, 'self_link'),
|