pulumi-gcp 8.14.0a1736836474__py3-none-any.whl → 8.14.0a1736952890__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 +32 -0
- pulumi_gcp/applicationintegration/_inputs.py +3 -3
- pulumi_gcp/applicationintegration/outputs.py +2 -2
- pulumi_gcp/beyondcorp/__init__.py +1 -0
- pulumi_gcp/beyondcorp/_inputs.py +93 -0
- pulumi_gcp/beyondcorp/outputs.py +89 -0
- pulumi_gcp/beyondcorp/security_gateway.py +670 -0
- pulumi_gcp/blockchainnodeengine/_inputs.py +3 -3
- pulumi_gcp/blockchainnodeengine/outputs.py +2 -2
- pulumi_gcp/certificateauthority/_inputs.py +6 -6
- pulumi_gcp/certificateauthority/outputs.py +4 -4
- pulumi_gcp/certificatemanager/_inputs.py +3 -3
- pulumi_gcp/certificatemanager/outputs.py +2 -2
- pulumi_gcp/chronicle/__init__.py +2 -0
- pulumi_gcp/chronicle/_inputs.py +388 -0
- pulumi_gcp/chronicle/data_access_label.py +690 -0
- pulumi_gcp/chronicle/data_access_scope.py +1094 -0
- pulumi_gcp/chronicle/outputs.py +322 -0
- pulumi_gcp/chronicle/watchlist.py +68 -45
- pulumi_gcp/cloudbuild/_inputs.py +3 -3
- pulumi_gcp/cloudbuild/outputs.py +2 -2
- pulumi_gcp/cloudquota/__init__.py +1 -0
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +336 -0
- pulumi_gcp/compute/_inputs.py +33 -33
- pulumi_gcp/compute/instance_group_manager.py +9 -9
- pulumi_gcp/compute/outputs.py +22 -22
- pulumi_gcp/compute/region_instance_group_manager.py +9 -9
- pulumi_gcp/datacatalog/_inputs.py +3 -3
- pulumi_gcp/datacatalog/outputs.py +2 -2
- pulumi_gcp/developerconnect/_inputs.py +910 -42
- pulumi_gcp/developerconnect/connection.py +614 -86
- pulumi_gcp/developerconnect/git_repository_link.py +4 -0
- pulumi_gcp/developerconnect/outputs.py +717 -28
- pulumi_gcp/dns/_inputs.py +124 -20
- pulumi_gcp/dns/outputs.py +90 -16
- pulumi_gcp/dns/record_set.py +82 -0
- pulumi_gcp/edgecontainer/_inputs.py +3 -3
- pulumi_gcp/edgecontainer/outputs.py +2 -2
- pulumi_gcp/gkeonprem/_inputs.py +15 -15
- pulumi_gcp/gkeonprem/outputs.py +10 -10
- pulumi_gcp/gkeonprem/v_mware_cluster.py +1 -1
- pulumi_gcp/iap/_inputs.py +9 -3
- pulumi_gcp/iap/outputs.py +6 -2
- pulumi_gcp/iap/settings.py +63 -63
- pulumi_gcp/identityplatform/_inputs.py +9 -9
- pulumi_gcp/identityplatform/outputs.py +6 -6
- pulumi_gcp/integrationconnectors/_inputs.py +6 -6
- pulumi_gcp/integrationconnectors/outputs.py +4 -4
- pulumi_gcp/monitoring/_inputs.py +3 -3
- pulumi_gcp/monitoring/outputs.py +2 -2
- pulumi_gcp/oracledatabase/_inputs.py +3 -3
- pulumi_gcp/oracledatabase/outputs.py +2 -2
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/_inputs.py +20 -0
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/outputs.py +36 -0
- pulumi_gcp/transcoder/_inputs.py +6 -6
- pulumi_gcp/transcoder/outputs.py +4 -4
- {pulumi_gcp-8.14.0a1736836474.dist-info → pulumi_gcp-8.14.0a1736952890.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.14.0a1736836474.dist-info → pulumi_gcp-8.14.0a1736952890.dist-info}/RECORD +62 -58
- {pulumi_gcp-8.14.0a1736836474.dist-info → pulumi_gcp-8.14.0a1736952890.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.14.0a1736836474.dist-info → pulumi_gcp-8.14.0a1736952890.dist-info}/top_level.txt +0 -0
@@ -80,7 +80,7 @@ class InstanceGroupManagerArgs:
|
|
80
80
|
- - -
|
81
81
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
|
82
82
|
is not provided, the provider project is used.
|
83
|
-
:param pulumi.Input['InstanceGroupManagerStandbyPolicyArgs'] standby_policy: The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig)
|
83
|
+
:param pulumi.Input['InstanceGroupManagerStandbyPolicyArgs'] standby_policy: The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig).
|
84
84
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerStatefulDiskArgs']]] stateful_disks: Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs).
|
85
85
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerStatefulExternalIpArgs']]] stateful_external_ips: External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
86
86
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerStatefulInternalIpArgs']]] stateful_internal_ips: Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
@@ -308,7 +308,7 @@ class InstanceGroupManagerArgs:
|
|
308
308
|
@pulumi.getter(name="standbyPolicy")
|
309
309
|
def standby_policy(self) -> Optional[pulumi.Input['InstanceGroupManagerStandbyPolicyArgs']]:
|
310
310
|
"""
|
311
|
-
The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig)
|
311
|
+
The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig).
|
312
312
|
"""
|
313
313
|
return pulumi.get(self, "standby_policy")
|
314
314
|
|
@@ -531,7 +531,7 @@ class _InstanceGroupManagerState:
|
|
531
531
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
|
532
532
|
is not provided, the provider project is used.
|
533
533
|
:param pulumi.Input[str] self_link: The URL of the created resource.
|
534
|
-
:param pulumi.Input['InstanceGroupManagerStandbyPolicyArgs'] standby_policy: The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig)
|
534
|
+
:param pulumi.Input['InstanceGroupManagerStandbyPolicyArgs'] standby_policy: The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig).
|
535
535
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerStatefulDiskArgs']]] stateful_disks: Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs).
|
536
536
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerStatefulExternalIpArgs']]] stateful_external_ips: External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
537
537
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerStatefulInternalIpArgs']]] stateful_internal_ips: Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
@@ -834,7 +834,7 @@ class _InstanceGroupManagerState:
|
|
834
834
|
@pulumi.getter(name="standbyPolicy")
|
835
835
|
def standby_policy(self) -> Optional[pulumi.Input['InstanceGroupManagerStandbyPolicyArgs']]:
|
836
836
|
"""
|
837
|
-
The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig)
|
837
|
+
The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig).
|
838
838
|
"""
|
839
839
|
return pulumi.get(self, "standby_policy")
|
840
840
|
|
@@ -1119,7 +1119,7 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1119
1119
|
])
|
1120
1120
|
```
|
1121
1121
|
|
1122
|
-
### With Standby Policy (`Google
|
1122
|
+
### With Standby Policy (`Google` Provider)
|
1123
1123
|
```python
|
1124
1124
|
import pulumi
|
1125
1125
|
import pulumi_gcp as gcp
|
@@ -1204,7 +1204,7 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1204
1204
|
- - -
|
1205
1205
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
|
1206
1206
|
is not provided, the provider project is used.
|
1207
|
-
:param pulumi.Input[Union['InstanceGroupManagerStandbyPolicyArgs', 'InstanceGroupManagerStandbyPolicyArgsDict']] standby_policy: The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig)
|
1207
|
+
:param pulumi.Input[Union['InstanceGroupManagerStandbyPolicyArgs', 'InstanceGroupManagerStandbyPolicyArgsDict']] standby_policy: The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig).
|
1208
1208
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceGroupManagerStatefulDiskArgs', 'InstanceGroupManagerStatefulDiskArgsDict']]]] stateful_disks: Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs).
|
1209
1209
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceGroupManagerStatefulExternalIpArgs', 'InstanceGroupManagerStatefulExternalIpArgsDict']]]] stateful_external_ips: External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
1210
1210
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceGroupManagerStatefulInternalIpArgs', 'InstanceGroupManagerStatefulInternalIpArgsDict']]]] stateful_internal_ips: Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
@@ -1315,7 +1315,7 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1315
1315
|
])
|
1316
1316
|
```
|
1317
1317
|
|
1318
|
-
### With Standby Policy (`Google
|
1318
|
+
### With Standby Policy (`Google` Provider)
|
1319
1319
|
```python
|
1320
1320
|
import pulumi
|
1321
1321
|
import pulumi_gcp as gcp
|
@@ -1531,7 +1531,7 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1531
1531
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
|
1532
1532
|
is not provided, the provider project is used.
|
1533
1533
|
:param pulumi.Input[str] self_link: The URL of the created resource.
|
1534
|
-
:param pulumi.Input[Union['InstanceGroupManagerStandbyPolicyArgs', 'InstanceGroupManagerStandbyPolicyArgsDict']] standby_policy: The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig)
|
1534
|
+
:param pulumi.Input[Union['InstanceGroupManagerStandbyPolicyArgs', 'InstanceGroupManagerStandbyPolicyArgsDict']] standby_policy: The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig).
|
1535
1535
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceGroupManagerStatefulDiskArgs', 'InstanceGroupManagerStatefulDiskArgsDict']]]] stateful_disks: Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs).
|
1536
1536
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceGroupManagerStatefulExternalIpArgs', 'InstanceGroupManagerStatefulExternalIpArgsDict']]]] stateful_external_ips: External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
1537
1537
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceGroupManagerStatefulInternalIpArgs', 'InstanceGroupManagerStatefulInternalIpArgsDict']]]] stateful_internal_ips: Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
@@ -1745,7 +1745,7 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1745
1745
|
@pulumi.getter(name="standbyPolicy")
|
1746
1746
|
def standby_policy(self) -> pulumi.Output['outputs.InstanceGroupManagerStandbyPolicy']:
|
1747
1747
|
"""
|
1748
|
-
The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig)
|
1748
|
+
The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig).
|
1749
1749
|
"""
|
1750
1750
|
return pulumi.get(self, "standby_policy")
|
1751
1751
|
|
pulumi_gcp/compute/outputs.py
CHANGED
@@ -3743,7 +3743,7 @@ class BackendServiceSecuritySettings(dict):
|
|
3743
3743
|
Structure is documented below.
|
3744
3744
|
|
3745
3745
|
|
3746
|
-
<a name="
|
3746
|
+
<a name="nested_security_settings_aws_v4_authentication"></a>The `aws_v4_authentication` block supports:
|
3747
3747
|
:param str client_tls_policy: ClientTlsPolicy is a resource that specifies how a client should authenticate
|
3748
3748
|
connections to backends of a service. This resource itself does not affect
|
3749
3749
|
configuration unless it is attached to a backend service resource.
|
@@ -3767,7 +3767,7 @@ class BackendServiceSecuritySettings(dict):
|
|
3767
3767
|
Structure is documented below.
|
3768
3768
|
|
3769
3769
|
|
3770
|
-
<a name="
|
3770
|
+
<a name="nested_security_settings_aws_v4_authentication"></a>The `aws_v4_authentication` block supports:
|
3771
3771
|
"""
|
3772
3772
|
return pulumi.get(self, "aws_v4_authentication")
|
3773
3773
|
|
@@ -4643,7 +4643,7 @@ class FirewallPolicyRuleMatch(dict):
|
|
4643
4643
|
:param Sequence[str] src_threat_intelligences: Names of Network Threat Intelligence lists. The IPs in these lists will be matched against traffic source.
|
4644
4644
|
|
4645
4645
|
|
4646
|
-
<a name="
|
4646
|
+
<a name="nested_match_layer4_configs"></a>The `layer4_configs` block supports:
|
4647
4647
|
"""
|
4648
4648
|
pulumi.set(__self__, "layer4_configs", layer4_configs)
|
4649
4649
|
if dest_address_groups is not None:
|
@@ -4755,7 +4755,7 @@ class FirewallPolicyRuleMatch(dict):
|
|
4755
4755
|
Names of Network Threat Intelligence lists. The IPs in these lists will be matched against traffic source.
|
4756
4756
|
|
4757
4757
|
|
4758
|
-
<a name="
|
4758
|
+
<a name="nested_match_layer4_configs"></a>The `layer4_configs` block supports:
|
4759
4759
|
"""
|
4760
4760
|
return pulumi.get(self, "src_threat_intelligences")
|
4761
4761
|
|
@@ -5117,7 +5117,7 @@ class FirewallPolicyWithRulesPredefinedRuleMatch(dict):
|
|
5117
5117
|
Structure is documented below.
|
5118
5118
|
|
5119
5119
|
|
5120
|
-
<a name="
|
5120
|
+
<a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
|
5121
5121
|
:param Sequence[str] src_address_groups: Address groups which should be matched against the traffic source.
|
5122
5122
|
Maximum number of source address groups is 10.
|
5123
5123
|
:param Sequence[str] src_fqdns: Fully Qualified Domain Name (FQDN) which should be matched against
|
@@ -5209,7 +5209,7 @@ class FirewallPolicyWithRulesPredefinedRuleMatch(dict):
|
|
5209
5209
|
Structure is documented below.
|
5210
5210
|
|
5211
5211
|
|
5212
|
-
<a name="
|
5212
|
+
<a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
|
5213
5213
|
"""
|
5214
5214
|
return pulumi.get(self, "layer4_configs")
|
5215
5215
|
|
@@ -5600,7 +5600,7 @@ class FirewallPolicyWithRulesRuleMatch(dict):
|
|
5600
5600
|
Structure is documented below.
|
5601
5601
|
|
5602
5602
|
|
5603
|
-
<a name="
|
5603
|
+
<a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
|
5604
5604
|
:param Sequence[str] dest_address_groups: Address groups which should be matched against the traffic destination.
|
5605
5605
|
Maximum number of destination address groups is 10.
|
5606
5606
|
:param Sequence[str] dest_fqdns: Fully Qualified Domain Name (FQDN) which should be matched against
|
@@ -5656,7 +5656,7 @@ class FirewallPolicyWithRulesRuleMatch(dict):
|
|
5656
5656
|
Structure is documented below.
|
5657
5657
|
|
5658
5658
|
|
5659
|
-
<a name="
|
5659
|
+
<a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
|
5660
5660
|
"""
|
5661
5661
|
return pulumi.get(self, "layer4_configs")
|
5662
5662
|
|
@@ -16256,7 +16256,7 @@ class NetworkFirewallPolicyRuleMatch(dict):
|
|
16256
16256
|
:param Sequence[str] src_threat_intelligences: Names of Network Threat Intelligence lists. The IPs in these lists will be matched against traffic source.
|
16257
16257
|
|
16258
16258
|
|
16259
|
-
<a name="
|
16259
|
+
<a name="nested_match_layer4_configs"></a>The `layer4_configs` block supports:
|
16260
16260
|
"""
|
16261
16261
|
pulumi.set(__self__, "layer4_configs", layer4_configs)
|
16262
16262
|
if dest_address_groups is not None:
|
@@ -16379,7 +16379,7 @@ class NetworkFirewallPolicyRuleMatch(dict):
|
|
16379
16379
|
Names of Network Threat Intelligence lists. The IPs in these lists will be matched against traffic source.
|
16380
16380
|
|
16381
16381
|
|
16382
|
-
<a name="
|
16382
|
+
<a name="nested_match_layer4_configs"></a>The `layer4_configs` block supports:
|
16383
16383
|
"""
|
16384
16384
|
return pulumi.get(self, "src_threat_intelligences")
|
16385
16385
|
|
@@ -16846,7 +16846,7 @@ class NetworkFirewallPolicyWithRulesPredefinedRuleMatch(dict):
|
|
16846
16846
|
Structure is documented below.
|
16847
16847
|
|
16848
16848
|
|
16849
|
-
<a name="
|
16849
|
+
<a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
|
16850
16850
|
:param Sequence[str] src_threat_intelligences: Names of Network Threat Intelligence lists.
|
16851
16851
|
The IPs in these lists will be matched against traffic source.
|
16852
16852
|
"""
|
@@ -16981,7 +16981,7 @@ class NetworkFirewallPolicyWithRulesPredefinedRuleMatch(dict):
|
|
16981
16981
|
Structure is documented below.
|
16982
16982
|
|
16983
16983
|
|
16984
|
-
<a name="
|
16984
|
+
<a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
|
16985
16985
|
"""
|
16986
16986
|
return pulumi.get(self, "src_secure_tags")
|
16987
16987
|
|
@@ -17463,7 +17463,7 @@ class NetworkFirewallPolicyWithRulesRuleMatch(dict):
|
|
17463
17463
|
Structure is documented below.
|
17464
17464
|
|
17465
17465
|
|
17466
|
-
<a name="
|
17466
|
+
<a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
|
17467
17467
|
:param Sequence[str] src_threat_intelligences: Names of Network Threat Intelligence lists.
|
17468
17468
|
The IPs in these lists will be matched against traffic source.
|
17469
17469
|
"""
|
@@ -17597,7 +17597,7 @@ class NetworkFirewallPolicyWithRulesRuleMatch(dict):
|
|
17597
17597
|
Structure is documented below.
|
17598
17598
|
|
17599
17599
|
|
17600
|
-
<a name="
|
17600
|
+
<a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
|
17601
17601
|
"""
|
17602
17602
|
return pulumi.get(self, "src_secure_tags")
|
17603
17603
|
|
@@ -18293,7 +18293,7 @@ class OrganizationSecurityPolicyRuleMatchConfig(dict):
|
|
18293
18293
|
Structure is documented below.
|
18294
18294
|
|
18295
18295
|
|
18296
|
-
<a name="
|
18296
|
+
<a name="nested_match_config_layer4_config"></a>The `layer4_config` block supports:
|
18297
18297
|
:param Sequence[str] dest_ip_ranges: Destination IP address range in CIDR format. Required for
|
18298
18298
|
EGRESS rules.
|
18299
18299
|
:param Sequence[str] src_ip_ranges: Source IP address range in CIDR format. Required for
|
@@ -18313,7 +18313,7 @@ class OrganizationSecurityPolicyRuleMatchConfig(dict):
|
|
18313
18313
|
Structure is documented below.
|
18314
18314
|
|
18315
18315
|
|
18316
|
-
<a name="
|
18316
|
+
<a name="nested_match_config_layer4_config"></a>The `layer4_config` block supports:
|
18317
18317
|
"""
|
18318
18318
|
return pulumi.get(self, "layer4_configs")
|
18319
18319
|
|
@@ -25951,7 +25951,7 @@ class RegionNetworkFirewallPolicyRuleMatch(dict):
|
|
25951
25951
|
:param Sequence[str] src_threat_intelligences: Names of Network Threat Intelligence lists. The IPs in these lists will be matched against traffic source.
|
25952
25952
|
|
25953
25953
|
|
25954
|
-
<a name="
|
25954
|
+
<a name="nested_match_layer4_configs"></a>The `layer4_configs` block supports:
|
25955
25955
|
"""
|
25956
25956
|
pulumi.set(__self__, "layer4_configs", layer4_configs)
|
25957
25957
|
if dest_address_groups is not None:
|
@@ -26074,7 +26074,7 @@ class RegionNetworkFirewallPolicyRuleMatch(dict):
|
|
26074
26074
|
Names of Network Threat Intelligence lists. The IPs in these lists will be matched against traffic source.
|
26075
26075
|
|
26076
26076
|
|
26077
|
-
<a name="
|
26077
|
+
<a name="nested_match_layer4_configs"></a>The `layer4_configs` block supports:
|
26078
26078
|
"""
|
26079
26079
|
return pulumi.get(self, "src_threat_intelligences")
|
26080
26080
|
|
@@ -26541,7 +26541,7 @@ class RegionNetworkFirewallPolicyWithRulesPredefinedRuleMatch(dict):
|
|
26541
26541
|
Structure is documented below.
|
26542
26542
|
|
26543
26543
|
|
26544
|
-
<a name="
|
26544
|
+
<a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
|
26545
26545
|
:param Sequence[str] src_threat_intelligences: Names of Network Threat Intelligence lists.
|
26546
26546
|
The IPs in these lists will be matched against traffic source.
|
26547
26547
|
"""
|
@@ -26676,7 +26676,7 @@ class RegionNetworkFirewallPolicyWithRulesPredefinedRuleMatch(dict):
|
|
26676
26676
|
Structure is documented below.
|
26677
26677
|
|
26678
26678
|
|
26679
|
-
<a name="
|
26679
|
+
<a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
|
26680
26680
|
"""
|
26681
26681
|
return pulumi.get(self, "src_secure_tags")
|
26682
26682
|
|
@@ -27158,7 +27158,7 @@ class RegionNetworkFirewallPolicyWithRulesRuleMatch(dict):
|
|
27158
27158
|
Structure is documented below.
|
27159
27159
|
|
27160
27160
|
|
27161
|
-
<a name="
|
27161
|
+
<a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
|
27162
27162
|
:param Sequence[str] src_threat_intelligences: Names of Network Threat Intelligence lists.
|
27163
27163
|
The IPs in these lists will be matched against traffic source.
|
27164
27164
|
"""
|
@@ -27292,7 +27292,7 @@ class RegionNetworkFirewallPolicyWithRulesRuleMatch(dict):
|
|
27292
27292
|
Structure is documented below.
|
27293
27293
|
|
27294
27294
|
|
27295
|
-
<a name="
|
27295
|
+
<a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
|
27296
27296
|
"""
|
27297
27297
|
return pulumi.get(self, "src_secure_tags")
|
27298
27298
|
|
@@ -89,7 +89,7 @@ class RegionInstanceGroupManagerArgs:
|
|
89
89
|
:param pulumi.Input[str] region: The region where the managed instance group resides. If not provided, the provider region is used.
|
90
90
|
|
91
91
|
- - -
|
92
|
-
:param pulumi.Input['RegionInstanceGroupManagerStandbyPolicyArgs'] standby_policy: The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig)
|
92
|
+
:param pulumi.Input['RegionInstanceGroupManagerStandbyPolicyArgs'] standby_policy: The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig).
|
93
93
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulDiskArgs']]] stateful_disks: Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs). Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the `update_policy`.
|
94
94
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulExternalIpArgs']]] stateful_external_ips: External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
95
95
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulInternalIpArgs']]] stateful_internal_ips: Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
@@ -369,7 +369,7 @@ class RegionInstanceGroupManagerArgs:
|
|
369
369
|
@pulumi.getter(name="standbyPolicy")
|
370
370
|
def standby_policy(self) -> Optional[pulumi.Input['RegionInstanceGroupManagerStandbyPolicyArgs']]:
|
371
371
|
"""
|
372
|
-
The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig)
|
372
|
+
The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig).
|
373
373
|
"""
|
374
374
|
return pulumi.get(self, "standby_policy")
|
375
375
|
|
@@ -585,7 +585,7 @@ class _RegionInstanceGroupManagerState:
|
|
585
585
|
|
586
586
|
- - -
|
587
587
|
:param pulumi.Input[str] self_link: The URL of the created resource.
|
588
|
-
:param pulumi.Input['RegionInstanceGroupManagerStandbyPolicyArgs'] standby_policy: The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig)
|
588
|
+
:param pulumi.Input['RegionInstanceGroupManagerStandbyPolicyArgs'] standby_policy: The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig).
|
589
589
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulDiskArgs']]] stateful_disks: Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs). Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the `update_policy`.
|
590
590
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulExternalIpArgs']]] stateful_external_ips: External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
591
591
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulInternalIpArgs']]] stateful_internal_ips: Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
@@ -929,7 +929,7 @@ class _RegionInstanceGroupManagerState:
|
|
929
929
|
@pulumi.getter(name="standbyPolicy")
|
930
930
|
def standby_policy(self) -> Optional[pulumi.Input['RegionInstanceGroupManagerStandbyPolicyArgs']]:
|
931
931
|
"""
|
932
|
-
The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig)
|
932
|
+
The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig).
|
933
933
|
"""
|
934
934
|
return pulumi.get(self, "standby_policy")
|
935
935
|
|
@@ -1209,7 +1209,7 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1209
1209
|
])
|
1210
1210
|
```
|
1211
1211
|
|
1212
|
-
### With Standby Policy (`Google
|
1212
|
+
### With Standby Policy (`Google` Provider)
|
1213
1213
|
```python
|
1214
1214
|
import pulumi
|
1215
1215
|
import pulumi_gcp as gcp
|
@@ -1282,7 +1282,7 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1282
1282
|
:param pulumi.Input[str] region: The region where the managed instance group resides. If not provided, the provider region is used.
|
1283
1283
|
|
1284
1284
|
- - -
|
1285
|
-
:param pulumi.Input[Union['RegionInstanceGroupManagerStandbyPolicyArgs', 'RegionInstanceGroupManagerStandbyPolicyArgsDict']] standby_policy: The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig)
|
1285
|
+
:param pulumi.Input[Union['RegionInstanceGroupManagerStandbyPolicyArgs', 'RegionInstanceGroupManagerStandbyPolicyArgsDict']] standby_policy: The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig).
|
1286
1286
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RegionInstanceGroupManagerStatefulDiskArgs', 'RegionInstanceGroupManagerStatefulDiskArgsDict']]]] stateful_disks: Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs). Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the `update_policy`.
|
1287
1287
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RegionInstanceGroupManagerStatefulExternalIpArgs', 'RegionInstanceGroupManagerStatefulExternalIpArgsDict']]]] stateful_external_ips: External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
1288
1288
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RegionInstanceGroupManagerStatefulInternalIpArgs', 'RegionInstanceGroupManagerStatefulInternalIpArgsDict']]]] stateful_internal_ips: Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
@@ -1396,7 +1396,7 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1396
1396
|
])
|
1397
1397
|
```
|
1398
1398
|
|
1399
|
-
### With Standby Policy (`Google
|
1399
|
+
### With Standby Policy (`Google` Provider)
|
1400
1400
|
```python
|
1401
1401
|
import pulumi
|
1402
1402
|
import pulumi_gcp as gcp
|
@@ -1607,7 +1607,7 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1607
1607
|
|
1608
1608
|
- - -
|
1609
1609
|
:param pulumi.Input[str] self_link: The URL of the created resource.
|
1610
|
-
:param pulumi.Input[Union['RegionInstanceGroupManagerStandbyPolicyArgs', 'RegionInstanceGroupManagerStandbyPolicyArgsDict']] standby_policy: The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig)
|
1610
|
+
:param pulumi.Input[Union['RegionInstanceGroupManagerStandbyPolicyArgs', 'RegionInstanceGroupManagerStandbyPolicyArgsDict']] standby_policy: The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig).
|
1611
1611
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RegionInstanceGroupManagerStatefulDiskArgs', 'RegionInstanceGroupManagerStatefulDiskArgsDict']]]] stateful_disks: Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs). Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the `update_policy`.
|
1612
1612
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RegionInstanceGroupManagerStatefulExternalIpArgs', 'RegionInstanceGroupManagerStatefulExternalIpArgsDict']]]] stateful_external_ips: External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
1613
1613
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RegionInstanceGroupManagerStatefulInternalIpArgs', 'RegionInstanceGroupManagerStatefulInternalIpArgsDict']]]] stateful_internal_ips: Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
@@ -1848,7 +1848,7 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1848
1848
|
@pulumi.getter(name="standbyPolicy")
|
1849
1849
|
def standby_policy(self) -> pulumi.Output['outputs.RegionInstanceGroupManagerStandbyPolicy']:
|
1850
1850
|
"""
|
1851
|
-
The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig)
|
1851
|
+
The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/suspended-and-stopped-vms-in-mig).
|
1852
1852
|
"""
|
1853
1853
|
return pulumi.get(self, "standby_policy")
|
1854
1854
|
|
@@ -333,7 +333,7 @@ if not MYPY:
|
|
333
333
|
Structure is documented below.
|
334
334
|
|
335
335
|
|
336
|
-
<a name="
|
336
|
+
<a name="nested_gcs_fileset_spec_sample_gcs_file_specs"></a>The `sample_gcs_file_specs` block contains:
|
337
337
|
"""
|
338
338
|
elif False:
|
339
339
|
EntryGcsFilesetSpecArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -360,7 +360,7 @@ class EntryGcsFilesetSpecArgs:
|
|
360
360
|
Structure is documented below.
|
361
361
|
|
362
362
|
|
363
|
-
<a name="
|
363
|
+
<a name="nested_gcs_fileset_spec_sample_gcs_file_specs"></a>The `sample_gcs_file_specs` block contains:
|
364
364
|
"""
|
365
365
|
pulumi.set(__self__, "file_patterns", file_patterns)
|
366
366
|
if sample_gcs_file_specs is not None:
|
@@ -397,7 +397,7 @@ class EntryGcsFilesetSpecArgs:
|
|
397
397
|
Structure is documented below.
|
398
398
|
|
399
399
|
|
400
|
-
<a name="
|
400
|
+
<a name="nested_gcs_fileset_spec_sample_gcs_file_specs"></a>The `sample_gcs_file_specs` block contains:
|
401
401
|
"""
|
402
402
|
return pulumi.get(self, "sample_gcs_file_specs")
|
403
403
|
|
@@ -306,7 +306,7 @@ class EntryGcsFilesetSpec(dict):
|
|
306
306
|
Structure is documented below.
|
307
307
|
|
308
308
|
|
309
|
-
<a name="
|
309
|
+
<a name="nested_gcs_fileset_spec_sample_gcs_file_specs"></a>The `sample_gcs_file_specs` block contains:
|
310
310
|
"""
|
311
311
|
pulumi.set(__self__, "file_patterns", file_patterns)
|
312
312
|
if sample_gcs_file_specs is not None:
|
@@ -339,7 +339,7 @@ class EntryGcsFilesetSpec(dict):
|
|
339
339
|
Structure is documented below.
|
340
340
|
|
341
341
|
|
342
|
-
<a name="
|
342
|
+
<a name="nested_gcs_fileset_spec_sample_gcs_file_specs"></a>The `sample_gcs_file_specs` block contains:
|
343
343
|
"""
|
344
344
|
return pulumi.get(self, "sample_gcs_file_specs")
|
345
345
|
|