pulumi-gcp 8.36.0a1751060819__py3-none-any.whl → 8.37.0a1751903932__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 +24 -0
- pulumi_gcp/apihub/__init__.py +1 -0
- pulumi_gcp/apihub/_inputs.py +675 -0
- pulumi_gcp/apihub/outputs.py +567 -0
- pulumi_gcp/apihub/plugin.py +1146 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +7 -7
- pulumi_gcp/bigqueryanalyticshub/listing.py +7 -7
- pulumi_gcp/cloudidentity/group_membership.py +47 -0
- pulumi_gcp/cloudidentity/outputs.py +11 -0
- pulumi_gcp/cloudrunv2/_inputs.py +65 -9
- pulumi_gcp/cloudrunv2/job.py +44 -0
- pulumi_gcp/cloudrunv2/outputs.py +73 -8
- pulumi_gcp/cloudrunv2/service.py +0 -2
- pulumi_gcp/cloudrunv2/worker_pool.py +18 -20
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +763 -6
- pulumi_gcp/compute/disk.py +35 -28
- pulumi_gcp/compute/firewall_policy_rule.py +207 -0
- pulumi_gcp/compute/get_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_region_disk.py +12 -1
- pulumi_gcp/compute/instance_group_manager.py +165 -14
- pulumi_gcp/compute/network.py +56 -0
- pulumi_gcp/compute/network_firewall_policy.py +68 -0
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +61 -0
- pulumi_gcp/compute/outputs.py +604 -4
- pulumi_gcp/compute/region_disk.py +114 -0
- pulumi_gcp/compute/region_network_firewall_policy.py +90 -0
- pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +109 -0
- pulumi_gcp/compute/wire_group.py +751 -0
- pulumi_gcp/container/_inputs.py +135 -16
- pulumi_gcp/container/cluster.py +54 -0
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/node_pool.py +14 -0
- pulumi_gcp/container/outputs.py +222 -12
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +431 -0
- pulumi_gcp/diagflow/cx_generative_settings.py +625 -0
- pulumi_gcp/diagflow/outputs.py +370 -0
- pulumi_gcp/dns/record_set.py +4 -2
- pulumi_gcp/firestore/database.py +0 -9
- pulumi_gcp/iam/_inputs.py +36 -0
- pulumi_gcp/iam/outputs.py +38 -0
- pulumi_gcp/iam/workload_identity_pool_managed_identity.py +88 -2
- pulumi_gcp/kms/autokey_config.py +28 -0
- pulumi_gcp/kms/get_autokey_config.py +12 -1
- pulumi_gcp/memorystore/get_instance.py +12 -1
- pulumi_gcp/memorystore/instance.py +49 -0
- pulumi_gcp/monitoring/metric_descriptor.py +55 -57
- pulumi_gcp/notebooks/instance.py +8 -8
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/get_instance.py +12 -1
- pulumi_gcp/redis/instance.py +44 -0
- pulumi_gcp/secretmanager/get_regional_secret.py +12 -1
- pulumi_gcp/secretmanager/outputs.py +7 -0
- pulumi_gcp/secretmanager/regional_secret.py +38 -2
- pulumi_gcp/spanner/_inputs.py +24 -1
- pulumi_gcp/spanner/outputs.py +17 -1
- pulumi_gcp/storage/_inputs.py +43 -3
- pulumi_gcp/storage/outputs.py +53 -3
- pulumi_gcp/workbench/instance.py +2 -0
- {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/RECORD +64 -61
- {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/top_level.txt +0 -0
@@ -25,6 +25,7 @@ class RegionNetworkFirewallPolicyWithRulesArgs:
|
|
25
25
|
rules: pulumi.Input[Sequence[pulumi.Input['RegionNetworkFirewallPolicyWithRulesRuleArgs']]],
|
26
26
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
27
27
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
28
|
+
policy_type: Optional[pulumi.Input[builtins.str]] = None,
|
28
29
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
29
30
|
region: Optional[pulumi.Input[builtins.str]] = None):
|
30
31
|
"""
|
@@ -39,6 +40,9 @@ class RegionNetworkFirewallPolicyWithRulesArgs:
|
|
39
40
|
the name must be 1-63 characters long and match the regular expression a-z?
|
40
41
|
which means the first character must be a lowercase letter, and all following characters must be a dash,
|
41
42
|
lowercase letter, or digit, except the last character, which cannot be a dash.
|
43
|
+
:param pulumi.Input[builtins.str] policy_type: Policy type is used to determine which resources (networks) the policy can be associated with. A policy can be
|
44
|
+
associated with a network only if the network has the matching policyType in its network profile. Different policy types
|
45
|
+
may support some of the Firewall Rules features. Possible values: ["VPC_POLICY", "RDMA_ROCE_POLICY"]
|
42
46
|
:param pulumi.Input[builtins.str] region: The region of this resource.
|
43
47
|
"""
|
44
48
|
pulumi.set(__self__, "rules", rules)
|
@@ -46,6 +50,8 @@ class RegionNetworkFirewallPolicyWithRulesArgs:
|
|
46
50
|
pulumi.set(__self__, "description", description)
|
47
51
|
if name is not None:
|
48
52
|
pulumi.set(__self__, "name", name)
|
53
|
+
if policy_type is not None:
|
54
|
+
pulumi.set(__self__, "policy_type", policy_type)
|
49
55
|
if project is not None:
|
50
56
|
pulumi.set(__self__, "project", project)
|
51
57
|
if region is not None:
|
@@ -94,6 +100,20 @@ class RegionNetworkFirewallPolicyWithRulesArgs:
|
|
94
100
|
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
95
101
|
pulumi.set(self, "name", value)
|
96
102
|
|
103
|
+
@property
|
104
|
+
@pulumi.getter(name="policyType")
|
105
|
+
def policy_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
106
|
+
"""
|
107
|
+
Policy type is used to determine which resources (networks) the policy can be associated with. A policy can be
|
108
|
+
associated with a network only if the network has the matching policyType in its network profile. Different policy types
|
109
|
+
may support some of the Firewall Rules features. Possible values: ["VPC_POLICY", "RDMA_ROCE_POLICY"]
|
110
|
+
"""
|
111
|
+
return pulumi.get(self, "policy_type")
|
112
|
+
|
113
|
+
@policy_type.setter
|
114
|
+
def policy_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
115
|
+
pulumi.set(self, "policy_type", value)
|
116
|
+
|
97
117
|
@property
|
98
118
|
@pulumi.getter
|
99
119
|
def project(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -124,6 +144,7 @@ class _RegionNetworkFirewallPolicyWithRulesState:
|
|
124
144
|
fingerprint: Optional[pulumi.Input[builtins.str]] = None,
|
125
145
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
126
146
|
network_firewall_policy_id: Optional[pulumi.Input[builtins.str]] = None,
|
147
|
+
policy_type: Optional[pulumi.Input[builtins.str]] = None,
|
127
148
|
predefined_rules: Optional[pulumi.Input[Sequence[pulumi.Input['RegionNetworkFirewallPolicyWithRulesPredefinedRuleArgs']]]] = None,
|
128
149
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
129
150
|
region: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -144,6 +165,9 @@ class _RegionNetworkFirewallPolicyWithRulesState:
|
|
144
165
|
which means the first character must be a lowercase letter, and all following characters must be a dash,
|
145
166
|
lowercase letter, or digit, except the last character, which cannot be a dash.
|
146
167
|
:param pulumi.Input[builtins.str] network_firewall_policy_id: The unique identifier for the resource. This identifier is defined by the server.
|
168
|
+
:param pulumi.Input[builtins.str] policy_type: Policy type is used to determine which resources (networks) the policy can be associated with. A policy can be
|
169
|
+
associated with a network only if the network has the matching policyType in its network profile. Different policy types
|
170
|
+
may support some of the Firewall Rules features. Possible values: ["VPC_POLICY", "RDMA_ROCE_POLICY"]
|
147
171
|
:param pulumi.Input[Sequence[pulumi.Input['RegionNetworkFirewallPolicyWithRulesPredefinedRuleArgs']]] predefined_rules: A list of firewall policy pre-defined rules.
|
148
172
|
Structure is documented below.
|
149
173
|
:param pulumi.Input[builtins.str] region: The region of this resource.
|
@@ -163,6 +187,8 @@ class _RegionNetworkFirewallPolicyWithRulesState:
|
|
163
187
|
pulumi.set(__self__, "name", name)
|
164
188
|
if network_firewall_policy_id is not None:
|
165
189
|
pulumi.set(__self__, "network_firewall_policy_id", network_firewall_policy_id)
|
190
|
+
if policy_type is not None:
|
191
|
+
pulumi.set(__self__, "policy_type", policy_type)
|
166
192
|
if predefined_rules is not None:
|
167
193
|
pulumi.set(__self__, "predefined_rules", predefined_rules)
|
168
194
|
if project is not None:
|
@@ -244,6 +270,20 @@ class _RegionNetworkFirewallPolicyWithRulesState:
|
|
244
270
|
def network_firewall_policy_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
245
271
|
pulumi.set(self, "network_firewall_policy_id", value)
|
246
272
|
|
273
|
+
@property
|
274
|
+
@pulumi.getter(name="policyType")
|
275
|
+
def policy_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
276
|
+
"""
|
277
|
+
Policy type is used to determine which resources (networks) the policy can be associated with. A policy can be
|
278
|
+
associated with a network only if the network has the matching policyType in its network profile. Different policy types
|
279
|
+
may support some of the Firewall Rules features. Possible values: ["VPC_POLICY", "RDMA_ROCE_POLICY"]
|
280
|
+
"""
|
281
|
+
return pulumi.get(self, "policy_type")
|
282
|
+
|
283
|
+
@policy_type.setter
|
284
|
+
def policy_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
285
|
+
pulumi.set(self, "policy_type", value)
|
286
|
+
|
247
287
|
@property
|
248
288
|
@pulumi.getter(name="predefinedRules")
|
249
289
|
def predefined_rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RegionNetworkFirewallPolicyWithRulesPredefinedRuleArgs']]]]:
|
@@ -336,6 +376,7 @@ class RegionNetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
336
376
|
opts: Optional[pulumi.ResourceOptions] = None,
|
337
377
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
338
378
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
379
|
+
policy_type: Optional[pulumi.Input[builtins.str]] = None,
|
339
380
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
340
381
|
region: Optional[pulumi.Input[builtins.str]] = None,
|
341
382
|
rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RegionNetworkFirewallPolicyWithRulesRuleArgs', 'RegionNetworkFirewallPolicyWithRulesRuleArgsDict']]]]] = None,
|
@@ -443,6 +484,30 @@ class RegionNetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
443
484
|
},
|
444
485
|
])
|
445
486
|
```
|
487
|
+
### Compute Region Network Firewall Policy With Rules Roce
|
488
|
+
|
489
|
+
```python
|
490
|
+
import pulumi
|
491
|
+
import pulumi_gcp as gcp
|
492
|
+
|
493
|
+
policy = gcp.compute.RegionNetworkFirewallPolicyWithRules("policy",
|
494
|
+
name="rnf-policy",
|
495
|
+
description="Terraform test",
|
496
|
+
policy_type="RDMA_ROCE_POLICY",
|
497
|
+
rules=[{
|
498
|
+
"description": "deny all rule",
|
499
|
+
"priority": 1000,
|
500
|
+
"enable_logging": True,
|
501
|
+
"action": "deny",
|
502
|
+
"direction": "INGRESS",
|
503
|
+
"match": {
|
504
|
+
"src_ip_ranges": ["0.0.0.0/0"],
|
505
|
+
"layer4_configs": [{
|
506
|
+
"ip_protocol": "all",
|
507
|
+
}],
|
508
|
+
},
|
509
|
+
}])
|
510
|
+
```
|
446
511
|
|
447
512
|
## Import
|
448
513
|
|
@@ -484,6 +549,9 @@ class RegionNetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
484
549
|
the name must be 1-63 characters long and match the regular expression a-z?
|
485
550
|
which means the first character must be a lowercase letter, and all following characters must be a dash,
|
486
551
|
lowercase letter, or digit, except the last character, which cannot be a dash.
|
552
|
+
:param pulumi.Input[builtins.str] policy_type: Policy type is used to determine which resources (networks) the policy can be associated with. A policy can be
|
553
|
+
associated with a network only if the network has the matching policyType in its network profile. Different policy types
|
554
|
+
may support some of the Firewall Rules features. Possible values: ["VPC_POLICY", "RDMA_ROCE_POLICY"]
|
487
555
|
:param pulumi.Input[builtins.str] region: The region of this resource.
|
488
556
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RegionNetworkFirewallPolicyWithRulesRuleArgs', 'RegionNetworkFirewallPolicyWithRulesRuleArgsDict']]]] rules: A list of firewall policy rules.
|
489
557
|
Structure is documented below.
|
@@ -597,6 +665,30 @@ class RegionNetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
597
665
|
},
|
598
666
|
])
|
599
667
|
```
|
668
|
+
### Compute Region Network Firewall Policy With Rules Roce
|
669
|
+
|
670
|
+
```python
|
671
|
+
import pulumi
|
672
|
+
import pulumi_gcp as gcp
|
673
|
+
|
674
|
+
policy = gcp.compute.RegionNetworkFirewallPolicyWithRules("policy",
|
675
|
+
name="rnf-policy",
|
676
|
+
description="Terraform test",
|
677
|
+
policy_type="RDMA_ROCE_POLICY",
|
678
|
+
rules=[{
|
679
|
+
"description": "deny all rule",
|
680
|
+
"priority": 1000,
|
681
|
+
"enable_logging": True,
|
682
|
+
"action": "deny",
|
683
|
+
"direction": "INGRESS",
|
684
|
+
"match": {
|
685
|
+
"src_ip_ranges": ["0.0.0.0/0"],
|
686
|
+
"layer4_configs": [{
|
687
|
+
"ip_protocol": "all",
|
688
|
+
}],
|
689
|
+
},
|
690
|
+
}])
|
691
|
+
```
|
600
692
|
|
601
693
|
## Import
|
602
694
|
|
@@ -645,6 +737,7 @@ class RegionNetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
645
737
|
opts: Optional[pulumi.ResourceOptions] = None,
|
646
738
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
647
739
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
740
|
+
policy_type: Optional[pulumi.Input[builtins.str]] = None,
|
648
741
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
649
742
|
region: Optional[pulumi.Input[builtins.str]] = None,
|
650
743
|
rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RegionNetworkFirewallPolicyWithRulesRuleArgs', 'RegionNetworkFirewallPolicyWithRulesRuleArgsDict']]]]] = None,
|
@@ -659,6 +752,7 @@ class RegionNetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
659
752
|
|
660
753
|
__props__.__dict__["description"] = description
|
661
754
|
__props__.__dict__["name"] = name
|
755
|
+
__props__.__dict__["policy_type"] = policy_type
|
662
756
|
__props__.__dict__["project"] = project
|
663
757
|
__props__.__dict__["region"] = region
|
664
758
|
if rules is None and not opts.urn:
|
@@ -686,6 +780,7 @@ class RegionNetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
686
780
|
fingerprint: Optional[pulumi.Input[builtins.str]] = None,
|
687
781
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
688
782
|
network_firewall_policy_id: Optional[pulumi.Input[builtins.str]] = None,
|
783
|
+
policy_type: Optional[pulumi.Input[builtins.str]] = None,
|
689
784
|
predefined_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RegionNetworkFirewallPolicyWithRulesPredefinedRuleArgs', 'RegionNetworkFirewallPolicyWithRulesPredefinedRuleArgsDict']]]]] = None,
|
690
785
|
project: Optional[pulumi.Input[builtins.str]] = None,
|
691
786
|
region: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -711,6 +806,9 @@ class RegionNetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
711
806
|
which means the first character must be a lowercase letter, and all following characters must be a dash,
|
712
807
|
lowercase letter, or digit, except the last character, which cannot be a dash.
|
713
808
|
:param pulumi.Input[builtins.str] network_firewall_policy_id: The unique identifier for the resource. This identifier is defined by the server.
|
809
|
+
:param pulumi.Input[builtins.str] policy_type: Policy type is used to determine which resources (networks) the policy can be associated with. A policy can be
|
810
|
+
associated with a network only if the network has the matching policyType in its network profile. Different policy types
|
811
|
+
may support some of the Firewall Rules features. Possible values: ["VPC_POLICY", "RDMA_ROCE_POLICY"]
|
714
812
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RegionNetworkFirewallPolicyWithRulesPredefinedRuleArgs', 'RegionNetworkFirewallPolicyWithRulesPredefinedRuleArgsDict']]]] predefined_rules: A list of firewall policy pre-defined rules.
|
715
813
|
Structure is documented below.
|
716
814
|
:param pulumi.Input[builtins.str] region: The region of this resource.
|
@@ -729,6 +827,7 @@ class RegionNetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
729
827
|
__props__.__dict__["fingerprint"] = fingerprint
|
730
828
|
__props__.__dict__["name"] = name
|
731
829
|
__props__.__dict__["network_firewall_policy_id"] = network_firewall_policy_id
|
830
|
+
__props__.__dict__["policy_type"] = policy_type
|
732
831
|
__props__.__dict__["predefined_rules"] = predefined_rules
|
733
832
|
__props__.__dict__["project"] = project
|
734
833
|
__props__.__dict__["region"] = region
|
@@ -784,6 +883,16 @@ class RegionNetworkFirewallPolicyWithRules(pulumi.CustomResource):
|
|
784
883
|
"""
|
785
884
|
return pulumi.get(self, "network_firewall_policy_id")
|
786
885
|
|
886
|
+
@property
|
887
|
+
@pulumi.getter(name="policyType")
|
888
|
+
def policy_type(self) -> pulumi.Output[builtins.str]:
|
889
|
+
"""
|
890
|
+
Policy type is used to determine which resources (networks) the policy can be associated with. A policy can be
|
891
|
+
associated with a network only if the network has the matching policyType in its network profile. Different policy types
|
892
|
+
may support some of the Firewall Rules features. Possible values: ["VPC_POLICY", "RDMA_ROCE_POLICY"]
|
893
|
+
"""
|
894
|
+
return pulumi.get(self, "policy_type")
|
895
|
+
|
787
896
|
@property
|
788
897
|
@pulumi.getter(name="predefinedRules")
|
789
898
|
def predefined_rules(self) -> pulumi.Output[Sequence['outputs.RegionNetworkFirewallPolicyWithRulesPredefinedRule']]:
|