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
@@ -32,6 +32,7 @@ class GlobalForwardingRuleArgs:
|
|
32
32
|
metadata_filters: Optional[pulumi.Input[Sequence[pulumi.Input['GlobalForwardingRuleMetadataFilterArgs']]]] = None,
|
33
33
|
name: Optional[pulumi.Input[str]] = None,
|
34
34
|
network: Optional[pulumi.Input[str]] = None,
|
35
|
+
network_tier: Optional[pulumi.Input[str]] = None,
|
35
36
|
no_automate_dns_zone: Optional[pulumi.Input[bool]] = None,
|
36
37
|
port_range: Optional[pulumi.Input[str]] = None,
|
37
38
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -141,6 +142,16 @@ class GlobalForwardingRuleArgs:
|
|
141
142
|
be used.
|
142
143
|
For Private Service Connect forwarding rules that forward traffic to Google
|
143
144
|
APIs, a network must be provided.
|
145
|
+
:param pulumi.Input[str] network_tier: This signifies the networking tier used for configuring
|
146
|
+
this load balancer and can only take the following values:
|
147
|
+
`PREMIUM`, `STANDARD`.
|
148
|
+
For regional ForwardingRule, the valid values are `PREMIUM` and
|
149
|
+
`STANDARD`. For GlobalForwardingRule, the valid value is
|
150
|
+
`PREMIUM`.
|
151
|
+
If this field is not specified, it is assumed to be `PREMIUM`.
|
152
|
+
If `IPAddress` is specified, this value must be equal to the
|
153
|
+
networkTier of the Address.
|
154
|
+
Possible values are: `PREMIUM`, `STANDARD`.
|
144
155
|
:param pulumi.Input[bool] no_automate_dns_zone: This is used in PSC consumer ForwardingRule to control whether it should try to auto-generate a DNS zone or not. Non-PSC forwarding rules do not use this field.
|
145
156
|
:param pulumi.Input[str] port_range: The `portRange` field has the following limitations:
|
146
157
|
* It requires that the forwarding rule `IPProtocol` be TCP, UDP, or SCTP,
|
@@ -193,6 +204,8 @@ class GlobalForwardingRuleArgs:
|
|
193
204
|
pulumi.set(__self__, "name", name)
|
194
205
|
if network is not None:
|
195
206
|
pulumi.set(__self__, "network", network)
|
207
|
+
if network_tier is not None:
|
208
|
+
pulumi.set(__self__, "network_tier", network_tier)
|
196
209
|
if no_automate_dns_zone is not None:
|
197
210
|
pulumi.set(__self__, "no_automate_dns_zone", no_automate_dns_zone)
|
198
211
|
if port_range is not None:
|
@@ -428,6 +441,27 @@ class GlobalForwardingRuleArgs:
|
|
428
441
|
def network(self, value: Optional[pulumi.Input[str]]):
|
429
442
|
pulumi.set(self, "network", value)
|
430
443
|
|
444
|
+
@property
|
445
|
+
@pulumi.getter(name="networkTier")
|
446
|
+
def network_tier(self) -> Optional[pulumi.Input[str]]:
|
447
|
+
"""
|
448
|
+
This signifies the networking tier used for configuring
|
449
|
+
this load balancer and can only take the following values:
|
450
|
+
`PREMIUM`, `STANDARD`.
|
451
|
+
For regional ForwardingRule, the valid values are `PREMIUM` and
|
452
|
+
`STANDARD`. For GlobalForwardingRule, the valid value is
|
453
|
+
`PREMIUM`.
|
454
|
+
If this field is not specified, it is assumed to be `PREMIUM`.
|
455
|
+
If `IPAddress` is specified, this value must be equal to the
|
456
|
+
networkTier of the Address.
|
457
|
+
Possible values are: `PREMIUM`, `STANDARD`.
|
458
|
+
"""
|
459
|
+
return pulumi.get(self, "network_tier")
|
460
|
+
|
461
|
+
@network_tier.setter
|
462
|
+
def network_tier(self, value: Optional[pulumi.Input[str]]):
|
463
|
+
pulumi.set(self, "network_tier", value)
|
464
|
+
|
431
465
|
@property
|
432
466
|
@pulumi.getter(name="noAutomateDnsZone")
|
433
467
|
def no_automate_dns_zone(self) -> Optional[pulumi.Input[bool]]:
|
@@ -532,6 +566,7 @@ class _GlobalForwardingRuleState:
|
|
532
566
|
base_forwarding_rule: Optional[pulumi.Input[str]] = None,
|
533
567
|
description: Optional[pulumi.Input[str]] = None,
|
534
568
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
569
|
+
forwarding_rule_id: Optional[pulumi.Input[int]] = None,
|
535
570
|
ip_address: Optional[pulumi.Input[str]] = None,
|
536
571
|
ip_protocol: Optional[pulumi.Input[str]] = None,
|
537
572
|
ip_version: Optional[pulumi.Input[str]] = None,
|
@@ -541,6 +576,7 @@ class _GlobalForwardingRuleState:
|
|
541
576
|
metadata_filters: Optional[pulumi.Input[Sequence[pulumi.Input['GlobalForwardingRuleMetadataFilterArgs']]]] = None,
|
542
577
|
name: Optional[pulumi.Input[str]] = None,
|
543
578
|
network: Optional[pulumi.Input[str]] = None,
|
579
|
+
network_tier: Optional[pulumi.Input[str]] = None,
|
544
580
|
no_automate_dns_zone: Optional[pulumi.Input[bool]] = None,
|
545
581
|
port_range: Optional[pulumi.Input[str]] = None,
|
546
582
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -559,6 +595,7 @@ class _GlobalForwardingRuleState:
|
|
559
595
|
:param pulumi.Input[str] description: An optional description of this resource. Provide this property when
|
560
596
|
you create the resource.
|
561
597
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
598
|
+
:param pulumi.Input[int] forwarding_rule_id: The unique identifier number for the resource. This identifier is defined by the server.
|
562
599
|
:param pulumi.Input[str] ip_address: IP address for which this forwarding rule accepts traffic. When a client
|
563
600
|
sends traffic to this IP address, the forwarding rule directs the traffic
|
564
601
|
to the referenced `target`.
|
@@ -646,6 +683,16 @@ class _GlobalForwardingRuleState:
|
|
646
683
|
be used.
|
647
684
|
For Private Service Connect forwarding rules that forward traffic to Google
|
648
685
|
APIs, a network must be provided.
|
686
|
+
:param pulumi.Input[str] network_tier: This signifies the networking tier used for configuring
|
687
|
+
this load balancer and can only take the following values:
|
688
|
+
`PREMIUM`, `STANDARD`.
|
689
|
+
For regional ForwardingRule, the valid values are `PREMIUM` and
|
690
|
+
`STANDARD`. For GlobalForwardingRule, the valid value is
|
691
|
+
`PREMIUM`.
|
692
|
+
If this field is not specified, it is assumed to be `PREMIUM`.
|
693
|
+
If `IPAddress` is specified, this value must be equal to the
|
694
|
+
networkTier of the Address.
|
695
|
+
Possible values are: `PREMIUM`, `STANDARD`.
|
649
696
|
:param pulumi.Input[bool] no_automate_dns_zone: This is used in PSC consumer ForwardingRule to control whether it should try to auto-generate a DNS zone or not. Non-PSC forwarding rules do not use this field.
|
650
697
|
:param pulumi.Input[str] port_range: The `portRange` field has the following limitations:
|
651
698
|
* It requires that the forwarding rule `IPProtocol` be TCP, UDP, or SCTP,
|
@@ -703,6 +750,8 @@ class _GlobalForwardingRuleState:
|
|
703
750
|
pulumi.set(__self__, "description", description)
|
704
751
|
if effective_labels is not None:
|
705
752
|
pulumi.set(__self__, "effective_labels", effective_labels)
|
753
|
+
if forwarding_rule_id is not None:
|
754
|
+
pulumi.set(__self__, "forwarding_rule_id", forwarding_rule_id)
|
706
755
|
if ip_address is not None:
|
707
756
|
pulumi.set(__self__, "ip_address", ip_address)
|
708
757
|
if ip_protocol is not None:
|
@@ -721,6 +770,8 @@ class _GlobalForwardingRuleState:
|
|
721
770
|
pulumi.set(__self__, "name", name)
|
722
771
|
if network is not None:
|
723
772
|
pulumi.set(__self__, "network", network)
|
773
|
+
if network_tier is not None:
|
774
|
+
pulumi.set(__self__, "network_tier", network_tier)
|
724
775
|
if no_automate_dns_zone is not None:
|
725
776
|
pulumi.set(__self__, "no_automate_dns_zone", no_automate_dns_zone)
|
726
777
|
if port_range is not None:
|
@@ -793,6 +844,18 @@ class _GlobalForwardingRuleState:
|
|
793
844
|
def effective_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
794
845
|
pulumi.set(self, "effective_labels", value)
|
795
846
|
|
847
|
+
@property
|
848
|
+
@pulumi.getter(name="forwardingRuleId")
|
849
|
+
def forwarding_rule_id(self) -> Optional[pulumi.Input[int]]:
|
850
|
+
"""
|
851
|
+
The unique identifier number for the resource. This identifier is defined by the server.
|
852
|
+
"""
|
853
|
+
return pulumi.get(self, "forwarding_rule_id")
|
854
|
+
|
855
|
+
@forwarding_rule_id.setter
|
856
|
+
def forwarding_rule_id(self, value: Optional[pulumi.Input[int]]):
|
857
|
+
pulumi.set(self, "forwarding_rule_id", value)
|
858
|
+
|
796
859
|
@property
|
797
860
|
@pulumi.getter(name="ipAddress")
|
798
861
|
def ip_address(self) -> Optional[pulumi.Input[str]]:
|
@@ -979,6 +1042,27 @@ class _GlobalForwardingRuleState:
|
|
979
1042
|
def network(self, value: Optional[pulumi.Input[str]]):
|
980
1043
|
pulumi.set(self, "network", value)
|
981
1044
|
|
1045
|
+
@property
|
1046
|
+
@pulumi.getter(name="networkTier")
|
1047
|
+
def network_tier(self) -> Optional[pulumi.Input[str]]:
|
1048
|
+
"""
|
1049
|
+
This signifies the networking tier used for configuring
|
1050
|
+
this load balancer and can only take the following values:
|
1051
|
+
`PREMIUM`, `STANDARD`.
|
1052
|
+
For regional ForwardingRule, the valid values are `PREMIUM` and
|
1053
|
+
`STANDARD`. For GlobalForwardingRule, the valid value is
|
1054
|
+
`PREMIUM`.
|
1055
|
+
If this field is not specified, it is assumed to be `PREMIUM`.
|
1056
|
+
If `IPAddress` is specified, this value must be equal to the
|
1057
|
+
networkTier of the Address.
|
1058
|
+
Possible values are: `PREMIUM`, `STANDARD`.
|
1059
|
+
"""
|
1060
|
+
return pulumi.get(self, "network_tier")
|
1061
|
+
|
1062
|
+
@network_tier.setter
|
1063
|
+
def network_tier(self, value: Optional[pulumi.Input[str]]):
|
1064
|
+
pulumi.set(self, "network_tier", value)
|
1065
|
+
|
982
1066
|
@property
|
983
1067
|
@pulumi.getter(name="noAutomateDnsZone")
|
984
1068
|
def no_automate_dns_zone(self) -> Optional[pulumi.Input[bool]]:
|
@@ -1164,6 +1248,7 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
1164
1248
|
metadata_filters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['GlobalForwardingRuleMetadataFilterArgs', 'GlobalForwardingRuleMetadataFilterArgsDict']]]]] = None,
|
1165
1249
|
name: Optional[pulumi.Input[str]] = None,
|
1166
1250
|
network: Optional[pulumi.Input[str]] = None,
|
1251
|
+
network_tier: Optional[pulumi.Input[str]] = None,
|
1167
1252
|
no_automate_dns_zone: Optional[pulumi.Input[bool]] = None,
|
1168
1253
|
port_range: Optional[pulumi.Input[str]] = None,
|
1169
1254
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -1342,7 +1427,8 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
1342
1427
|
name="global-rule",
|
1343
1428
|
target=default_target_http_proxy.id,
|
1344
1429
|
port_range="80",
|
1345
|
-
load_balancing_scheme="EXTERNAL_MANAGED"
|
1430
|
+
load_balancing_scheme="EXTERNAL_MANAGED",
|
1431
|
+
network_tier="PREMIUM")
|
1346
1432
|
```
|
1347
1433
|
### Global Forwarding Rule Hybrid
|
1348
1434
|
|
@@ -1635,6 +1721,16 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
1635
1721
|
be used.
|
1636
1722
|
For Private Service Connect forwarding rules that forward traffic to Google
|
1637
1723
|
APIs, a network must be provided.
|
1724
|
+
:param pulumi.Input[str] network_tier: This signifies the networking tier used for configuring
|
1725
|
+
this load balancer and can only take the following values:
|
1726
|
+
`PREMIUM`, `STANDARD`.
|
1727
|
+
For regional ForwardingRule, the valid values are `PREMIUM` and
|
1728
|
+
`STANDARD`. For GlobalForwardingRule, the valid value is
|
1729
|
+
`PREMIUM`.
|
1730
|
+
If this field is not specified, it is assumed to be `PREMIUM`.
|
1731
|
+
If `IPAddress` is specified, this value must be equal to the
|
1732
|
+
networkTier of the Address.
|
1733
|
+
Possible values are: `PREMIUM`, `STANDARD`.
|
1638
1734
|
:param pulumi.Input[bool] no_automate_dns_zone: This is used in PSC consumer ForwardingRule to control whether it should try to auto-generate a DNS zone or not. Non-PSC forwarding rules do not use this field.
|
1639
1735
|
:param pulumi.Input[str] port_range: The `portRange` field has the following limitations:
|
1640
1736
|
* It requires that the forwarding rule `IPProtocol` be TCP, UDP, or SCTP,
|
@@ -1855,7 +1951,8 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
1855
1951
|
name="global-rule",
|
1856
1952
|
target=default_target_http_proxy.id,
|
1857
1953
|
port_range="80",
|
1858
|
-
load_balancing_scheme="EXTERNAL_MANAGED"
|
1954
|
+
load_balancing_scheme="EXTERNAL_MANAGED",
|
1955
|
+
network_tier="PREMIUM")
|
1859
1956
|
```
|
1860
1957
|
### Global Forwarding Rule Hybrid
|
1861
1958
|
|
@@ -2083,6 +2180,7 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2083
2180
|
metadata_filters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['GlobalForwardingRuleMetadataFilterArgs', 'GlobalForwardingRuleMetadataFilterArgsDict']]]]] = None,
|
2084
2181
|
name: Optional[pulumi.Input[str]] = None,
|
2085
2182
|
network: Optional[pulumi.Input[str]] = None,
|
2183
|
+
network_tier: Optional[pulumi.Input[str]] = None,
|
2086
2184
|
no_automate_dns_zone: Optional[pulumi.Input[bool]] = None,
|
2087
2185
|
port_range: Optional[pulumi.Input[str]] = None,
|
2088
2186
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -2109,6 +2207,7 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2109
2207
|
__props__.__dict__["metadata_filters"] = metadata_filters
|
2110
2208
|
__props__.__dict__["name"] = name
|
2111
2209
|
__props__.__dict__["network"] = network
|
2210
|
+
__props__.__dict__["network_tier"] = network_tier
|
2112
2211
|
__props__.__dict__["no_automate_dns_zone"] = no_automate_dns_zone
|
2113
2212
|
__props__.__dict__["port_range"] = port_range
|
2114
2213
|
__props__.__dict__["project"] = project
|
@@ -2120,6 +2219,7 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2120
2219
|
__props__.__dict__["target"] = target
|
2121
2220
|
__props__.__dict__["base_forwarding_rule"] = None
|
2122
2221
|
__props__.__dict__["effective_labels"] = None
|
2222
|
+
__props__.__dict__["forwarding_rule_id"] = None
|
2123
2223
|
__props__.__dict__["label_fingerprint"] = None
|
2124
2224
|
__props__.__dict__["psc_connection_id"] = None
|
2125
2225
|
__props__.__dict__["psc_connection_status"] = None
|
@@ -2141,6 +2241,7 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2141
2241
|
base_forwarding_rule: Optional[pulumi.Input[str]] = None,
|
2142
2242
|
description: Optional[pulumi.Input[str]] = None,
|
2143
2243
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
2244
|
+
forwarding_rule_id: Optional[pulumi.Input[int]] = None,
|
2144
2245
|
ip_address: Optional[pulumi.Input[str]] = None,
|
2145
2246
|
ip_protocol: Optional[pulumi.Input[str]] = None,
|
2146
2247
|
ip_version: Optional[pulumi.Input[str]] = None,
|
@@ -2150,6 +2251,7 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2150
2251
|
metadata_filters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['GlobalForwardingRuleMetadataFilterArgs', 'GlobalForwardingRuleMetadataFilterArgsDict']]]]] = None,
|
2151
2252
|
name: Optional[pulumi.Input[str]] = None,
|
2152
2253
|
network: Optional[pulumi.Input[str]] = None,
|
2254
|
+
network_tier: Optional[pulumi.Input[str]] = None,
|
2153
2255
|
no_automate_dns_zone: Optional[pulumi.Input[bool]] = None,
|
2154
2256
|
port_range: Optional[pulumi.Input[str]] = None,
|
2155
2257
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -2173,6 +2275,7 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2173
2275
|
:param pulumi.Input[str] description: An optional description of this resource. Provide this property when
|
2174
2276
|
you create the resource.
|
2175
2277
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
2278
|
+
:param pulumi.Input[int] forwarding_rule_id: The unique identifier number for the resource. This identifier is defined by the server.
|
2176
2279
|
:param pulumi.Input[str] ip_address: IP address for which this forwarding rule accepts traffic. When a client
|
2177
2280
|
sends traffic to this IP address, the forwarding rule directs the traffic
|
2178
2281
|
to the referenced `target`.
|
@@ -2260,6 +2363,16 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2260
2363
|
be used.
|
2261
2364
|
For Private Service Connect forwarding rules that forward traffic to Google
|
2262
2365
|
APIs, a network must be provided.
|
2366
|
+
:param pulumi.Input[str] network_tier: This signifies the networking tier used for configuring
|
2367
|
+
this load balancer and can only take the following values:
|
2368
|
+
`PREMIUM`, `STANDARD`.
|
2369
|
+
For regional ForwardingRule, the valid values are `PREMIUM` and
|
2370
|
+
`STANDARD`. For GlobalForwardingRule, the valid value is
|
2371
|
+
`PREMIUM`.
|
2372
|
+
If this field is not specified, it is assumed to be `PREMIUM`.
|
2373
|
+
If `IPAddress` is specified, this value must be equal to the
|
2374
|
+
networkTier of the Address.
|
2375
|
+
Possible values are: `PREMIUM`, `STANDARD`.
|
2263
2376
|
:param pulumi.Input[bool] no_automate_dns_zone: This is used in PSC consumer ForwardingRule to control whether it should try to auto-generate a DNS zone or not. Non-PSC forwarding rules do not use this field.
|
2264
2377
|
:param pulumi.Input[str] port_range: The `portRange` field has the following limitations:
|
2265
2378
|
* It requires that the forwarding rule `IPProtocol` be TCP, UDP, or SCTP,
|
@@ -2317,6 +2430,7 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2317
2430
|
__props__.__dict__["base_forwarding_rule"] = base_forwarding_rule
|
2318
2431
|
__props__.__dict__["description"] = description
|
2319
2432
|
__props__.__dict__["effective_labels"] = effective_labels
|
2433
|
+
__props__.__dict__["forwarding_rule_id"] = forwarding_rule_id
|
2320
2434
|
__props__.__dict__["ip_address"] = ip_address
|
2321
2435
|
__props__.__dict__["ip_protocol"] = ip_protocol
|
2322
2436
|
__props__.__dict__["ip_version"] = ip_version
|
@@ -2326,6 +2440,7 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2326
2440
|
__props__.__dict__["metadata_filters"] = metadata_filters
|
2327
2441
|
__props__.__dict__["name"] = name
|
2328
2442
|
__props__.__dict__["network"] = network
|
2443
|
+
__props__.__dict__["network_tier"] = network_tier
|
2329
2444
|
__props__.__dict__["no_automate_dns_zone"] = no_automate_dns_zone
|
2330
2445
|
__props__.__dict__["port_range"] = port_range
|
2331
2446
|
__props__.__dict__["project"] = project
|
@@ -2372,6 +2487,14 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2372
2487
|
"""
|
2373
2488
|
return pulumi.get(self, "effective_labels")
|
2374
2489
|
|
2490
|
+
@property
|
2491
|
+
@pulumi.getter(name="forwardingRuleId")
|
2492
|
+
def forwarding_rule_id(self) -> pulumi.Output[int]:
|
2493
|
+
"""
|
2494
|
+
The unique identifier number for the resource. This identifier is defined by the server.
|
2495
|
+
"""
|
2496
|
+
return pulumi.get(self, "forwarding_rule_id")
|
2497
|
+
|
2375
2498
|
@property
|
2376
2499
|
@pulumi.getter(name="ipAddress")
|
2377
2500
|
def ip_address(self) -> pulumi.Output[str]:
|
@@ -2522,6 +2645,23 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2522
2645
|
"""
|
2523
2646
|
return pulumi.get(self, "network")
|
2524
2647
|
|
2648
|
+
@property
|
2649
|
+
@pulumi.getter(name="networkTier")
|
2650
|
+
def network_tier(self) -> pulumi.Output[str]:
|
2651
|
+
"""
|
2652
|
+
This signifies the networking tier used for configuring
|
2653
|
+
this load balancer and can only take the following values:
|
2654
|
+
`PREMIUM`, `STANDARD`.
|
2655
|
+
For regional ForwardingRule, the valid values are `PREMIUM` and
|
2656
|
+
`STANDARD`. For GlobalForwardingRule, the valid value is
|
2657
|
+
`PREMIUM`.
|
2658
|
+
If this field is not specified, it is assumed to be `PREMIUM`.
|
2659
|
+
If `IPAddress` is specified, this value must be equal to the
|
2660
|
+
networkTier of the Address.
|
2661
|
+
Possible values are: `PREMIUM`, `STANDARD`.
|
2662
|
+
"""
|
2663
|
+
return pulumi.get(self, "network_tier")
|
2664
|
+
|
2525
2665
|
@property
|
2526
2666
|
@pulumi.getter(name="noAutomateDnsZone")
|
2527
2667
|
def no_automate_dns_zone(self) -> pulumi.Output[Optional[bool]]:
|
@@ -470,6 +470,7 @@ class _InstanceGroupManagerState:
|
|
470
470
|
description: Optional[pulumi.Input[str]] = None,
|
471
471
|
fingerprint: Optional[pulumi.Input[str]] = None,
|
472
472
|
instance_group: Optional[pulumi.Input[str]] = None,
|
473
|
+
instance_group_manager_id: Optional[pulumi.Input[int]] = None,
|
473
474
|
instance_lifecycle_policy: Optional[pulumi.Input['InstanceGroupManagerInstanceLifecyclePolicyArgs']] = None,
|
474
475
|
list_managed_instances_results: Optional[pulumi.Input[str]] = None,
|
475
476
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -510,6 +511,7 @@ class _InstanceGroupManagerState:
|
|
510
511
|
group manager.
|
511
512
|
:param pulumi.Input[str] fingerprint: The fingerprint of the instance group manager.
|
512
513
|
:param pulumi.Input[str] instance_group: The full URL of the instance group created by the manager.
|
514
|
+
:param pulumi.Input[int] instance_group_manager_id: The unique identifier number for the resource. This identifier is defined by the server.
|
513
515
|
:param pulumi.Input['InstanceGroupManagerInstanceLifecyclePolicyArgs'] instance_lifecycle_policy: The instance lifecycle policy for this managed instance group.
|
514
516
|
:param pulumi.Input[str] list_managed_instances_results: Pagination behavior of the `listManagedInstances` API
|
515
517
|
method for this managed instance group. Valid values are: `PAGELESS`, `PAGINATED`.
|
@@ -571,6 +573,8 @@ class _InstanceGroupManagerState:
|
|
571
573
|
pulumi.set(__self__, "fingerprint", fingerprint)
|
572
574
|
if instance_group is not None:
|
573
575
|
pulumi.set(__self__, "instance_group", instance_group)
|
576
|
+
if instance_group_manager_id is not None:
|
577
|
+
pulumi.set(__self__, "instance_group_manager_id", instance_group_manager_id)
|
574
578
|
if instance_lifecycle_policy is not None:
|
575
579
|
pulumi.set(__self__, "instance_lifecycle_policy", instance_lifecycle_policy)
|
576
580
|
if list_managed_instances_results is not None:
|
@@ -709,6 +713,18 @@ class _InstanceGroupManagerState:
|
|
709
713
|
def instance_group(self, value: Optional[pulumi.Input[str]]):
|
710
714
|
pulumi.set(self, "instance_group", value)
|
711
715
|
|
716
|
+
@property
|
717
|
+
@pulumi.getter(name="instanceGroupManagerId")
|
718
|
+
def instance_group_manager_id(self) -> Optional[pulumi.Input[int]]:
|
719
|
+
"""
|
720
|
+
The unique identifier number for the resource. This identifier is defined by the server.
|
721
|
+
"""
|
722
|
+
return pulumi.get(self, "instance_group_manager_id")
|
723
|
+
|
724
|
+
@instance_group_manager_id.setter
|
725
|
+
def instance_group_manager_id(self, value: Optional[pulumi.Input[int]]):
|
726
|
+
pulumi.set(self, "instance_group_manager_id", value)
|
727
|
+
|
712
728
|
@property
|
713
729
|
@pulumi.getter(name="instanceLifecyclePolicy")
|
714
730
|
def instance_lifecycle_policy(self) -> Optional[pulumi.Input['InstanceGroupManagerInstanceLifecyclePolicyArgs']]:
|
@@ -1428,6 +1444,7 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1428
1444
|
__props__.__dict__["creation_timestamp"] = None
|
1429
1445
|
__props__.__dict__["fingerprint"] = None
|
1430
1446
|
__props__.__dict__["instance_group"] = None
|
1447
|
+
__props__.__dict__["instance_group_manager_id"] = None
|
1431
1448
|
__props__.__dict__["operation"] = None
|
1432
1449
|
__props__.__dict__["self_link"] = None
|
1433
1450
|
__props__.__dict__["statuses"] = None
|
@@ -1448,6 +1465,7 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1448
1465
|
description: Optional[pulumi.Input[str]] = None,
|
1449
1466
|
fingerprint: Optional[pulumi.Input[str]] = None,
|
1450
1467
|
instance_group: Optional[pulumi.Input[str]] = None,
|
1468
|
+
instance_group_manager_id: Optional[pulumi.Input[int]] = None,
|
1451
1469
|
instance_lifecycle_policy: Optional[pulumi.Input[Union['InstanceGroupManagerInstanceLifecyclePolicyArgs', 'InstanceGroupManagerInstanceLifecyclePolicyArgsDict']]] = None,
|
1452
1470
|
list_managed_instances_results: Optional[pulumi.Input[str]] = None,
|
1453
1471
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -1493,6 +1511,7 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1493
1511
|
group manager.
|
1494
1512
|
:param pulumi.Input[str] fingerprint: The fingerprint of the instance group manager.
|
1495
1513
|
:param pulumi.Input[str] instance_group: The full URL of the instance group created by the manager.
|
1514
|
+
:param pulumi.Input[int] instance_group_manager_id: The unique identifier number for the resource. This identifier is defined by the server.
|
1496
1515
|
:param pulumi.Input[Union['InstanceGroupManagerInstanceLifecyclePolicyArgs', 'InstanceGroupManagerInstanceLifecyclePolicyArgsDict']] instance_lifecycle_policy: The instance lifecycle policy for this managed instance group.
|
1497
1516
|
:param pulumi.Input[str] list_managed_instances_results: Pagination behavior of the `listManagedInstances` API
|
1498
1517
|
method for this managed instance group. Valid values are: `PAGELESS`, `PAGINATED`.
|
@@ -1551,6 +1570,7 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1551
1570
|
__props__.__dict__["description"] = description
|
1552
1571
|
__props__.__dict__["fingerprint"] = fingerprint
|
1553
1572
|
__props__.__dict__["instance_group"] = instance_group
|
1573
|
+
__props__.__dict__["instance_group_manager_id"] = instance_group_manager_id
|
1554
1574
|
__props__.__dict__["instance_lifecycle_policy"] = instance_lifecycle_policy
|
1555
1575
|
__props__.__dict__["list_managed_instances_results"] = list_managed_instances_results
|
1556
1576
|
__props__.__dict__["name"] = name
|
@@ -1640,6 +1660,14 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1640
1660
|
"""
|
1641
1661
|
return pulumi.get(self, "instance_group")
|
1642
1662
|
|
1663
|
+
@property
|
1664
|
+
@pulumi.getter(name="instanceGroupManagerId")
|
1665
|
+
def instance_group_manager_id(self) -> pulumi.Output[int]:
|
1666
|
+
"""
|
1667
|
+
The unique identifier number for the resource. This identifier is defined by the server.
|
1668
|
+
"""
|
1669
|
+
return pulumi.get(self, "instance_group_manager_id")
|
1670
|
+
|
1643
1671
|
@property
|
1644
1672
|
@pulumi.getter(name="instanceLifecyclePolicy")
|
1645
1673
|
def instance_lifecycle_policy(self) -> pulumi.Output['outputs.InstanceGroupManagerInstanceLifecyclePolicy']:
|
pulumi_gcp/compute/network.py
CHANGED
@@ -30,6 +30,7 @@ class NetworkArgs:
|
|
30
30
|
mtu: Optional[pulumi.Input[int]] = None,
|
31
31
|
name: Optional[pulumi.Input[str]] = None,
|
32
32
|
network_firewall_policy_enforcement_order: Optional[pulumi.Input[str]] = None,
|
33
|
+
network_profile: Optional[pulumi.Input[str]] = None,
|
33
34
|
project: Optional[pulumi.Input[str]] = None,
|
34
35
|
routing_mode: Optional[pulumi.Input[str]] = None):
|
35
36
|
"""
|
@@ -74,6 +75,11 @@ class NetworkArgs:
|
|
74
75
|
:param pulumi.Input[str] network_firewall_policy_enforcement_order: Set the order that Firewall Rules and Firewall Policies are evaluated.
|
75
76
|
Default value is `AFTER_CLASSIC_FIREWALL`.
|
76
77
|
Possible values are: `BEFORE_CLASSIC_FIREWALL`, `AFTER_CLASSIC_FIREWALL`.
|
78
|
+
:param pulumi.Input[str] network_profile: A full or partial URL of the network profile to apply to this network.
|
79
|
+
This field can be set only at resource creation time. For example, the
|
80
|
+
following are valid URLs:
|
81
|
+
* https://www.googleapis.com/compute/beta/projects/{projectId}/global/networkProfiles/{network_profile_name}
|
82
|
+
* projects/{projectId}/global/networkProfiles/{network_profile_name}
|
77
83
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
78
84
|
If it is not provided, the provider project is used.
|
79
85
|
:param pulumi.Input[str] routing_mode: The network-wide routing mode to use. If set to `REGIONAL`, this
|
@@ -105,6 +111,8 @@ class NetworkArgs:
|
|
105
111
|
pulumi.set(__self__, "name", name)
|
106
112
|
if network_firewall_policy_enforcement_order is not None:
|
107
113
|
pulumi.set(__self__, "network_firewall_policy_enforcement_order", network_firewall_policy_enforcement_order)
|
114
|
+
if network_profile is not None:
|
115
|
+
pulumi.set(__self__, "network_profile", network_profile)
|
108
116
|
if project is not None:
|
109
117
|
pulumi.set(__self__, "project", project)
|
110
118
|
if routing_mode is not None:
|
@@ -271,6 +279,22 @@ class NetworkArgs:
|
|
271
279
|
def network_firewall_policy_enforcement_order(self, value: Optional[pulumi.Input[str]]):
|
272
280
|
pulumi.set(self, "network_firewall_policy_enforcement_order", value)
|
273
281
|
|
282
|
+
@property
|
283
|
+
@pulumi.getter(name="networkProfile")
|
284
|
+
def network_profile(self) -> Optional[pulumi.Input[str]]:
|
285
|
+
"""
|
286
|
+
A full or partial URL of the network profile to apply to this network.
|
287
|
+
This field can be set only at resource creation time. For example, the
|
288
|
+
following are valid URLs:
|
289
|
+
* https://www.googleapis.com/compute/beta/projects/{projectId}/global/networkProfiles/{network_profile_name}
|
290
|
+
* projects/{projectId}/global/networkProfiles/{network_profile_name}
|
291
|
+
"""
|
292
|
+
return pulumi.get(self, "network_profile")
|
293
|
+
|
294
|
+
@network_profile.setter
|
295
|
+
def network_profile(self, value: Optional[pulumi.Input[str]]):
|
296
|
+
pulumi.set(self, "network_profile", value)
|
297
|
+
|
274
298
|
@property
|
275
299
|
@pulumi.getter
|
276
300
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -317,6 +341,7 @@ class _NetworkState:
|
|
317
341
|
mtu: Optional[pulumi.Input[int]] = None,
|
318
342
|
name: Optional[pulumi.Input[str]] = None,
|
319
343
|
network_firewall_policy_enforcement_order: Optional[pulumi.Input[str]] = None,
|
344
|
+
network_profile: Optional[pulumi.Input[str]] = None,
|
320
345
|
numeric_id: Optional[pulumi.Input[str]] = None,
|
321
346
|
project: Optional[pulumi.Input[str]] = None,
|
322
347
|
routing_mode: Optional[pulumi.Input[str]] = None,
|
@@ -365,6 +390,11 @@ class _NetworkState:
|
|
365
390
|
:param pulumi.Input[str] network_firewall_policy_enforcement_order: Set the order that Firewall Rules and Firewall Policies are evaluated.
|
366
391
|
Default value is `AFTER_CLASSIC_FIREWALL`.
|
367
392
|
Possible values are: `BEFORE_CLASSIC_FIREWALL`, `AFTER_CLASSIC_FIREWALL`.
|
393
|
+
:param pulumi.Input[str] network_profile: A full or partial URL of the network profile to apply to this network.
|
394
|
+
This field can be set only at resource creation time. For example, the
|
395
|
+
following are valid URLs:
|
396
|
+
* https://www.googleapis.com/compute/beta/projects/{projectId}/global/networkProfiles/{network_profile_name}
|
397
|
+
* projects/{projectId}/global/networkProfiles/{network_profile_name}
|
368
398
|
:param pulumi.Input[str] numeric_id: The unique identifier for the resource. This identifier is defined by the server.
|
369
399
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
370
400
|
If it is not provided, the provider project is used.
|
@@ -400,6 +430,8 @@ class _NetworkState:
|
|
400
430
|
pulumi.set(__self__, "name", name)
|
401
431
|
if network_firewall_policy_enforcement_order is not None:
|
402
432
|
pulumi.set(__self__, "network_firewall_policy_enforcement_order", network_firewall_policy_enforcement_order)
|
433
|
+
if network_profile is not None:
|
434
|
+
pulumi.set(__self__, "network_profile", network_profile)
|
403
435
|
if numeric_id is not None:
|
404
436
|
pulumi.set(__self__, "numeric_id", numeric_id)
|
405
437
|
if project is not None:
|
@@ -583,6 +615,22 @@ class _NetworkState:
|
|
583
615
|
def network_firewall_policy_enforcement_order(self, value: Optional[pulumi.Input[str]]):
|
584
616
|
pulumi.set(self, "network_firewall_policy_enforcement_order", value)
|
585
617
|
|
618
|
+
@property
|
619
|
+
@pulumi.getter(name="networkProfile")
|
620
|
+
def network_profile(self) -> Optional[pulumi.Input[str]]:
|
621
|
+
"""
|
622
|
+
A full or partial URL of the network profile to apply to this network.
|
623
|
+
This field can be set only at resource creation time. For example, the
|
624
|
+
following are valid URLs:
|
625
|
+
* https://www.googleapis.com/compute/beta/projects/{projectId}/global/networkProfiles/{network_profile_name}
|
626
|
+
* projects/{projectId}/global/networkProfiles/{network_profile_name}
|
627
|
+
"""
|
628
|
+
return pulumi.get(self, "network_profile")
|
629
|
+
|
630
|
+
@network_profile.setter
|
631
|
+
def network_profile(self, value: Optional[pulumi.Input[str]]):
|
632
|
+
pulumi.set(self, "network_profile", value)
|
633
|
+
|
586
634
|
@property
|
587
635
|
@pulumi.getter(name="numericId")
|
588
636
|
def numeric_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -654,6 +702,7 @@ class Network(pulumi.CustomResource):
|
|
654
702
|
mtu: Optional[pulumi.Input[int]] = None,
|
655
703
|
name: Optional[pulumi.Input[str]] = None,
|
656
704
|
network_firewall_policy_enforcement_order: Optional[pulumi.Input[str]] = None,
|
705
|
+
network_profile: Optional[pulumi.Input[str]] = None,
|
657
706
|
project: Optional[pulumi.Input[str]] = None,
|
658
707
|
routing_mode: Optional[pulumi.Input[str]] = None,
|
659
708
|
__props__=None):
|
@@ -804,6 +853,11 @@ class Network(pulumi.CustomResource):
|
|
804
853
|
:param pulumi.Input[str] network_firewall_policy_enforcement_order: Set the order that Firewall Rules and Firewall Policies are evaluated.
|
805
854
|
Default value is `AFTER_CLASSIC_FIREWALL`.
|
806
855
|
Possible values are: `BEFORE_CLASSIC_FIREWALL`, `AFTER_CLASSIC_FIREWALL`.
|
856
|
+
:param pulumi.Input[str] network_profile: A full or partial URL of the network profile to apply to this network.
|
857
|
+
This field can be set only at resource creation time. For example, the
|
858
|
+
following are valid URLs:
|
859
|
+
* https://www.googleapis.com/compute/beta/projects/{projectId}/global/networkProfiles/{network_profile_name}
|
860
|
+
* projects/{projectId}/global/networkProfiles/{network_profile_name}
|
807
861
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
808
862
|
If it is not provided, the provider project is used.
|
809
863
|
:param pulumi.Input[str] routing_mode: The network-wide routing mode to use. If set to `REGIONAL`, this
|
@@ -950,6 +1004,7 @@ class Network(pulumi.CustomResource):
|
|
950
1004
|
mtu: Optional[pulumi.Input[int]] = None,
|
951
1005
|
name: Optional[pulumi.Input[str]] = None,
|
952
1006
|
network_firewall_policy_enforcement_order: Optional[pulumi.Input[str]] = None,
|
1007
|
+
network_profile: Optional[pulumi.Input[str]] = None,
|
953
1008
|
project: Optional[pulumi.Input[str]] = None,
|
954
1009
|
routing_mode: Optional[pulumi.Input[str]] = None,
|
955
1010
|
__props__=None):
|
@@ -972,6 +1027,7 @@ class Network(pulumi.CustomResource):
|
|
972
1027
|
__props__.__dict__["mtu"] = mtu
|
973
1028
|
__props__.__dict__["name"] = name
|
974
1029
|
__props__.__dict__["network_firewall_policy_enforcement_order"] = network_firewall_policy_enforcement_order
|
1030
|
+
__props__.__dict__["network_profile"] = network_profile
|
975
1031
|
__props__.__dict__["project"] = project
|
976
1032
|
__props__.__dict__["routing_mode"] = routing_mode
|
977
1033
|
__props__.__dict__["gateway_ipv4"] = None
|
@@ -999,6 +1055,7 @@ class Network(pulumi.CustomResource):
|
|
999
1055
|
mtu: Optional[pulumi.Input[int]] = None,
|
1000
1056
|
name: Optional[pulumi.Input[str]] = None,
|
1001
1057
|
network_firewall_policy_enforcement_order: Optional[pulumi.Input[str]] = None,
|
1058
|
+
network_profile: Optional[pulumi.Input[str]] = None,
|
1002
1059
|
numeric_id: Optional[pulumi.Input[str]] = None,
|
1003
1060
|
project: Optional[pulumi.Input[str]] = None,
|
1004
1061
|
routing_mode: Optional[pulumi.Input[str]] = None,
|
@@ -1052,6 +1109,11 @@ class Network(pulumi.CustomResource):
|
|
1052
1109
|
:param pulumi.Input[str] network_firewall_policy_enforcement_order: Set the order that Firewall Rules and Firewall Policies are evaluated.
|
1053
1110
|
Default value is `AFTER_CLASSIC_FIREWALL`.
|
1054
1111
|
Possible values are: `BEFORE_CLASSIC_FIREWALL`, `AFTER_CLASSIC_FIREWALL`.
|
1112
|
+
:param pulumi.Input[str] network_profile: A full or partial URL of the network profile to apply to this network.
|
1113
|
+
This field can be set only at resource creation time. For example, the
|
1114
|
+
following are valid URLs:
|
1115
|
+
* https://www.googleapis.com/compute/beta/projects/{projectId}/global/networkProfiles/{network_profile_name}
|
1116
|
+
* projects/{projectId}/global/networkProfiles/{network_profile_name}
|
1055
1117
|
:param pulumi.Input[str] numeric_id: The unique identifier for the resource. This identifier is defined by the server.
|
1056
1118
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
1057
1119
|
If it is not provided, the provider project is used.
|
@@ -1079,6 +1141,7 @@ class Network(pulumi.CustomResource):
|
|
1079
1141
|
__props__.__dict__["mtu"] = mtu
|
1080
1142
|
__props__.__dict__["name"] = name
|
1081
1143
|
__props__.__dict__["network_firewall_policy_enforcement_order"] = network_firewall_policy_enforcement_order
|
1144
|
+
__props__.__dict__["network_profile"] = network_profile
|
1082
1145
|
__props__.__dict__["numeric_id"] = numeric_id
|
1083
1146
|
__props__.__dict__["project"] = project
|
1084
1147
|
__props__.__dict__["routing_mode"] = routing_mode
|
@@ -1211,6 +1274,18 @@ class Network(pulumi.CustomResource):
|
|
1211
1274
|
"""
|
1212
1275
|
return pulumi.get(self, "network_firewall_policy_enforcement_order")
|
1213
1276
|
|
1277
|
+
@property
|
1278
|
+
@pulumi.getter(name="networkProfile")
|
1279
|
+
def network_profile(self) -> pulumi.Output[Optional[str]]:
|
1280
|
+
"""
|
1281
|
+
A full or partial URL of the network profile to apply to this network.
|
1282
|
+
This field can be set only at resource creation time. For example, the
|
1283
|
+
following are valid URLs:
|
1284
|
+
* https://www.googleapis.com/compute/beta/projects/{projectId}/global/networkProfiles/{network_profile_name}
|
1285
|
+
* projects/{projectId}/global/networkProfiles/{network_profile_name}
|
1286
|
+
"""
|
1287
|
+
return pulumi.get(self, "network_profile")
|
1288
|
+
|
1214
1289
|
@property
|
1215
1290
|
@pulumi.getter(name="numericId")
|
1216
1291
|
def numeric_id(self) -> pulumi.Output[str]:
|