pulumi-gcp 7.30.0a1720039709__py3-none-any.whl → 7.30.0a1720437548__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/artifactregistry/get_docker_image.py +2 -2
- pulumi_gcp/bigtable/gc_policy.py +68 -14
- pulumi_gcp/cloudfunctionsv2/_inputs.py +97 -0
- pulumi_gcp/cloudfunctionsv2/function.py +232 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +129 -1
- pulumi_gcp/compute/_inputs.py +622 -0
- pulumi_gcp/compute/address.py +0 -7
- pulumi_gcp/compute/backend_service.py +0 -14
- pulumi_gcp/compute/forwarding_rule.py +0 -21
- pulumi_gcp/compute/global_forwarding_rule.py +0 -21
- pulumi_gcp/compute/managed_ssl_certificate.py +0 -7
- pulumi_gcp/compute/manged_ssl_certificate.py +0 -7
- pulumi_gcp/compute/network_attachment.py +16 -0
- pulumi_gcp/compute/outputs.py +504 -8
- pulumi_gcp/compute/region_backend_service.py +0 -14
- pulumi_gcp/compute/region_ssl_certificate.py +0 -7
- pulumi_gcp/compute/ssl_certificate.py +0 -7
- pulumi_gcp/compute/target_https_proxy.py +76 -1
- pulumi_gcp/compute/url_map.py +255 -0
- pulumi_gcp/container/aws_cluster.py +2 -2
- pulumi_gcp/container/aws_node_pool.py +2 -2
- pulumi_gcp/container/azure_client.py +2 -2
- pulumi_gcp/container/azure_cluster.py +2 -2
- pulumi_gcp/container/azure_node_pool.py +2 -2
- pulumi_gcp/datafusion/_inputs.py +163 -11
- pulumi_gcp/datafusion/instance.py +64 -0
- pulumi_gcp/datafusion/outputs.py +127 -7
- pulumi_gcp/healthcare/_inputs.py +43 -0
- pulumi_gcp/healthcare/dataset.py +110 -0
- pulumi_gcp/healthcare/outputs.py +43 -0
- pulumi_gcp/identityplatform/config.py +1 -1
- pulumi_gcp/logging/billing_account_bucket_config.py +1 -1
- pulumi_gcp/logging/folder_bucket_config.py +1 -1
- pulumi_gcp/logging/organization_bucket_config.py +1 -1
- pulumi_gcp/monitoring/_inputs.py +77 -0
- pulumi_gcp/monitoring/outputs.py +63 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/instance_iam_binding.py +64 -0
- pulumi_gcp/securitycenter/instance_iam_member.py +64 -0
- pulumi_gcp/securitycenter/instance_iam_policy.py +64 -0
- pulumi_gcp/storage/__init__.py +5 -0
- pulumi_gcp/storage/_inputs.py +130 -0
- pulumi_gcp/storage/get_managed_folder_iam_policy.py +115 -0
- pulumi_gcp/storage/managed_folder.py +440 -0
- pulumi_gcp/storage/managed_folder_iam_binding.py +947 -0
- pulumi_gcp/storage/managed_folder_iam_member.py +947 -0
- pulumi_gcp/storage/managed_folder_iam_policy.py +766 -0
- pulumi_gcp/storage/outputs.py +76 -0
- pulumi_gcp/vertex/_inputs.py +3 -3
- pulumi_gcp/vertex/ai_feature_online_store.py +9 -9
- pulumi_gcp/vertex/outputs.py +2 -2
- {pulumi_gcp-7.30.0a1720039709.dist-info → pulumi_gcp-7.30.0a1720437548.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.30.0a1720039709.dist-info → pulumi_gcp-7.30.0a1720437548.dist-info}/RECORD +56 -51
- {pulumi_gcp-7.30.0a1720039709.dist-info → pulumi_gcp-7.30.0a1720437548.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.30.0a1720039709.dist-info → pulumi_gcp-7.30.0a1720437548.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/address.py
CHANGED
@@ -84,7 +84,6 @@ class AddressArgs:
|
|
84
84
|
* PRIVATE_SERVICE_CONNECT for a private network address that is used to
|
85
85
|
configure Private Service Connect. Only global internal addresses can use
|
86
86
|
this purpose.
|
87
|
-
|
88
87
|
This should only be set when using an Internal address.
|
89
88
|
:param pulumi.Input[str] region: The Region in which the created address should reside.
|
90
89
|
If it is not provided, the provider region is used.
|
@@ -296,7 +295,6 @@ class AddressArgs:
|
|
296
295
|
* PRIVATE_SERVICE_CONNECT for a private network address that is used to
|
297
296
|
configure Private Service Connect. Only global internal addresses can use
|
298
297
|
this purpose.
|
299
|
-
|
300
298
|
This should only be set when using an Internal address.
|
301
299
|
"""
|
302
300
|
return pulumi.get(self, "purpose")
|
@@ -414,7 +412,6 @@ class _AddressState:
|
|
414
412
|
* PRIVATE_SERVICE_CONNECT for a private network address that is used to
|
415
413
|
configure Private Service Connect. Only global internal addresses can use
|
416
414
|
this purpose.
|
417
|
-
|
418
415
|
This should only be set when using an Internal address.
|
419
416
|
:param pulumi.Input[str] region: The Region in which the created address should reside.
|
420
417
|
If it is not provided, the provider region is used.
|
@@ -690,7 +687,6 @@ class _AddressState:
|
|
690
687
|
* PRIVATE_SERVICE_CONNECT for a private network address that is used to
|
691
688
|
configure Private Service Connect. Only global internal addresses can use
|
692
689
|
this purpose.
|
693
|
-
|
694
690
|
This should only be set when using an Internal address.
|
695
691
|
"""
|
696
692
|
return pulumi.get(self, "purpose")
|
@@ -958,7 +954,6 @@ class Address(pulumi.CustomResource):
|
|
958
954
|
* PRIVATE_SERVICE_CONNECT for a private network address that is used to
|
959
955
|
configure Private Service Connect. Only global internal addresses can use
|
960
956
|
this purpose.
|
961
|
-
|
962
957
|
This should only be set when using an Internal address.
|
963
958
|
:param pulumi.Input[str] region: The Region in which the created address should reside.
|
964
959
|
If it is not provided, the provider region is used.
|
@@ -1260,7 +1255,6 @@ class Address(pulumi.CustomResource):
|
|
1260
1255
|
* PRIVATE_SERVICE_CONNECT for a private network address that is used to
|
1261
1256
|
configure Private Service Connect. Only global internal addresses can use
|
1262
1257
|
this purpose.
|
1263
|
-
|
1264
1258
|
This should only be set when using an Internal address.
|
1265
1259
|
:param pulumi.Input[str] region: The Region in which the created address should reside.
|
1266
1260
|
If it is not provided, the provider region is used.
|
@@ -1461,7 +1455,6 @@ class Address(pulumi.CustomResource):
|
|
1461
1455
|
* PRIVATE_SERVICE_CONNECT for a private network address that is used to
|
1462
1456
|
configure Private Service Connect. Only global internal addresses can use
|
1463
1457
|
this purpose.
|
1464
|
-
|
1465
1458
|
This should only be set when using an Internal address.
|
1466
1459
|
"""
|
1467
1460
|
return pulumi.get(self, "purpose")
|
@@ -136,7 +136,6 @@ class BackendServiceArgs:
|
|
136
136
|
instance either reported a valid weight or had
|
137
137
|
UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
|
138
138
|
equal-weight.
|
139
|
-
|
140
139
|
This field is applicable to either:
|
141
140
|
* A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
|
142
141
|
and loadBalancingScheme set to INTERNAL_MANAGED.
|
@@ -144,7 +143,6 @@ class BackendServiceArgs:
|
|
144
143
|
* A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
|
145
144
|
Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
|
146
145
|
Network Load Balancing. The default is MAGLEV.
|
147
|
-
|
148
146
|
If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
|
149
147
|
or RING_HASH, session affinity settings will not take effect.
|
150
148
|
Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
|
@@ -513,7 +511,6 @@ class BackendServiceArgs:
|
|
513
511
|
instance either reported a valid weight or had
|
514
512
|
UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
|
515
513
|
equal-weight.
|
516
|
-
|
517
514
|
This field is applicable to either:
|
518
515
|
* A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
|
519
516
|
and loadBalancingScheme set to INTERNAL_MANAGED.
|
@@ -521,7 +518,6 @@ class BackendServiceArgs:
|
|
521
518
|
* A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
|
522
519
|
Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
|
523
520
|
Network Load Balancing. The default is MAGLEV.
|
524
|
-
|
525
521
|
If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
|
526
522
|
or RING_HASH, session affinity settings will not take effect.
|
527
523
|
Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
|
@@ -820,7 +816,6 @@ class _BackendServiceState:
|
|
820
816
|
instance either reported a valid weight or had
|
821
817
|
UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
|
822
818
|
equal-weight.
|
823
|
-
|
824
819
|
This field is applicable to either:
|
825
820
|
* A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
|
826
821
|
and loadBalancingScheme set to INTERNAL_MANAGED.
|
@@ -828,7 +823,6 @@ class _BackendServiceState:
|
|
828
823
|
* A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
|
829
824
|
Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
|
830
825
|
Network Load Balancing. The default is MAGLEV.
|
831
|
-
|
832
826
|
If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
|
833
827
|
or RING_HASH, session affinity settings will not take effect.
|
834
828
|
Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
|
@@ -1243,7 +1237,6 @@ class _BackendServiceState:
|
|
1243
1237
|
instance either reported a valid weight or had
|
1244
1238
|
UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
|
1245
1239
|
equal-weight.
|
1246
|
-
|
1247
1240
|
This field is applicable to either:
|
1248
1241
|
* A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
|
1249
1242
|
and loadBalancingScheme set to INTERNAL_MANAGED.
|
@@ -1251,7 +1244,6 @@ class _BackendServiceState:
|
|
1251
1244
|
* A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
|
1252
1245
|
Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
|
1253
1246
|
Network Load Balancing. The default is MAGLEV.
|
1254
|
-
|
1255
1247
|
If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
|
1256
1248
|
or RING_HASH, session affinity settings will not take effect.
|
1257
1249
|
Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
|
@@ -1838,7 +1830,6 @@ class BackendService(pulumi.CustomResource):
|
|
1838
1830
|
instance either reported a valid weight or had
|
1839
1831
|
UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
|
1840
1832
|
equal-weight.
|
1841
|
-
|
1842
1833
|
This field is applicable to either:
|
1843
1834
|
* A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
|
1844
1835
|
and loadBalancingScheme set to INTERNAL_MANAGED.
|
@@ -1846,7 +1837,6 @@ class BackendService(pulumi.CustomResource):
|
|
1846
1837
|
* A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
|
1847
1838
|
Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
|
1848
1839
|
Network Load Balancing. The default is MAGLEV.
|
1849
|
-
|
1850
1840
|
If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
|
1851
1841
|
or RING_HASH, session affinity settings will not take effect.
|
1852
1842
|
Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
|
@@ -2402,7 +2392,6 @@ class BackendService(pulumi.CustomResource):
|
|
2402
2392
|
instance either reported a valid weight or had
|
2403
2393
|
UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
|
2404
2394
|
equal-weight.
|
2405
|
-
|
2406
2395
|
This field is applicable to either:
|
2407
2396
|
* A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
|
2408
2397
|
and loadBalancingScheme set to INTERNAL_MANAGED.
|
@@ -2410,7 +2399,6 @@ class BackendService(pulumi.CustomResource):
|
|
2410
2399
|
* A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
|
2411
2400
|
Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
|
2412
2401
|
Network Load Balancing. The default is MAGLEV.
|
2413
|
-
|
2414
2402
|
If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
|
2415
2403
|
or RING_HASH, session affinity settings will not take effect.
|
2416
2404
|
Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
|
@@ -2722,7 +2710,6 @@ class BackendService(pulumi.CustomResource):
|
|
2722
2710
|
instance either reported a valid weight or had
|
2723
2711
|
UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
|
2724
2712
|
equal-weight.
|
2725
|
-
|
2726
2713
|
This field is applicable to either:
|
2727
2714
|
* A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
|
2728
2715
|
and loadBalancingScheme set to INTERNAL_MANAGED.
|
@@ -2730,7 +2717,6 @@ class BackendService(pulumi.CustomResource):
|
|
2730
2717
|
* A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
|
2731
2718
|
Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
|
2732
2719
|
Network Load Balancing. The default is MAGLEV.
|
2733
|
-
|
2734
2720
|
If session_affinity is not NONE, and this field is not set to MAGLEV, WEIGHTED_MAGLEV,
|
2735
2721
|
or RING_HASH, session affinity settings will not take effect.
|
2736
2722
|
Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
|
@@ -85,7 +85,6 @@ class ForwardingRuleArgs:
|
|
85
85
|
`IPAddress` should be set to `0.0.0.0`.
|
86
86
|
* When the `target` is a Private Service Connect Google APIs
|
87
87
|
bundle, you must specify an `IPAddress`.
|
88
|
-
|
89
88
|
Otherwise, you can optionally specify an IP address that references an
|
90
89
|
existing static (reserved) IP address resource. When omitted, Google Cloud
|
91
90
|
assigns an ephemeral IP address.
|
@@ -100,7 +99,6 @@ class ForwardingRuleArgs:
|
|
100
99
|
* `regions/region/addresses/address-name`
|
101
100
|
* `global/addresses/address-name`
|
102
101
|
* `address-name`
|
103
|
-
|
104
102
|
The forwarding rule's `target` or `backendService`,
|
105
103
|
and in most cases, also the `loadBalancingScheme`, determine the
|
106
104
|
type of IP address that you can use. For detailed information, see
|
@@ -241,7 +239,6 @@ class ForwardingRuleArgs:
|
|
241
239
|
* For Private Service Connect forwarding rules that forward traffic to Google APIs, provide the name of a supported Google API bundle:
|
242
240
|
* `vpc-sc` - [ APIs that support VPC Service Controls](https://cloud.google.com/vpc-service-controls/docs/supported-products).
|
243
241
|
* `all-apis` - [All supported Google APIs](https://cloud.google.com/vpc/docs/private-service-connect#supported-apis).
|
244
|
-
|
245
242
|
For Private Service Connect forwarding rules that forward traffic to managed services, the target must be a service attachment.
|
246
243
|
"""
|
247
244
|
if all_ports is not None:
|
@@ -391,7 +388,6 @@ class ForwardingRuleArgs:
|
|
391
388
|
`IPAddress` should be set to `0.0.0.0`.
|
392
389
|
* When the `target` is a Private Service Connect Google APIs
|
393
390
|
bundle, you must specify an `IPAddress`.
|
394
|
-
|
395
391
|
Otherwise, you can optionally specify an IP address that references an
|
396
392
|
existing static (reserved) IP address resource. When omitted, Google Cloud
|
397
393
|
assigns an ephemeral IP address.
|
@@ -406,7 +402,6 @@ class ForwardingRuleArgs:
|
|
406
402
|
* `regions/region/addresses/address-name`
|
407
403
|
* `global/addresses/address-name`
|
408
404
|
* `address-name`
|
409
|
-
|
410
405
|
The forwarding rule's `target` or `backendService`,
|
411
406
|
and in most cases, also the `loadBalancingScheme`, determine the
|
412
407
|
type of IP address that you can use. For detailed information, see
|
@@ -754,7 +749,6 @@ class ForwardingRuleArgs:
|
|
754
749
|
* For Private Service Connect forwarding rules that forward traffic to Google APIs, provide the name of a supported Google API bundle:
|
755
750
|
* `vpc-sc` - [ APIs that support VPC Service Controls](https://cloud.google.com/vpc-service-controls/docs/supported-products).
|
756
751
|
* `all-apis` - [All supported Google APIs](https://cloud.google.com/vpc/docs/private-service-connect#supported-apis).
|
757
|
-
|
758
752
|
For Private Service Connect forwarding rules that forward traffic to managed services, the target must be a service attachment.
|
759
753
|
"""
|
760
754
|
return pulumi.get(self, "target")
|
@@ -843,7 +837,6 @@ class _ForwardingRuleState:
|
|
843
837
|
`IPAddress` should be set to `0.0.0.0`.
|
844
838
|
* When the `target` is a Private Service Connect Google APIs
|
845
839
|
bundle, you must specify an `IPAddress`.
|
846
|
-
|
847
840
|
Otherwise, you can optionally specify an IP address that references an
|
848
841
|
existing static (reserved) IP address resource. When omitted, Google Cloud
|
849
842
|
assigns an ephemeral IP address.
|
@@ -858,7 +851,6 @@ class _ForwardingRuleState:
|
|
858
851
|
* `regions/region/addresses/address-name`
|
859
852
|
* `global/addresses/address-name`
|
860
853
|
* `address-name`
|
861
|
-
|
862
854
|
The forwarding rule's `target` or `backendService`,
|
863
855
|
and in most cases, also the `loadBalancingScheme`, determine the
|
864
856
|
type of IP address that you can use. For detailed information, see
|
@@ -1008,7 +1000,6 @@ class _ForwardingRuleState:
|
|
1008
1000
|
* For Private Service Connect forwarding rules that forward traffic to Google APIs, provide the name of a supported Google API bundle:
|
1009
1001
|
* `vpc-sc` - [ APIs that support VPC Service Controls](https://cloud.google.com/vpc-service-controls/docs/supported-products).
|
1010
1002
|
* `all-apis` - [All supported Google APIs](https://cloud.google.com/vpc/docs/private-service-connect#supported-apis).
|
1011
|
-
|
1012
1003
|
For Private Service Connect forwarding rules that forward traffic to managed services, the target must be a service attachment.
|
1013
1004
|
"""
|
1014
1005
|
if all_ports is not None:
|
@@ -1212,7 +1203,6 @@ class _ForwardingRuleState:
|
|
1212
1203
|
`IPAddress` should be set to `0.0.0.0`.
|
1213
1204
|
* When the `target` is a Private Service Connect Google APIs
|
1214
1205
|
bundle, you must specify an `IPAddress`.
|
1215
|
-
|
1216
1206
|
Otherwise, you can optionally specify an IP address that references an
|
1217
1207
|
existing static (reserved) IP address resource. When omitted, Google Cloud
|
1218
1208
|
assigns an ephemeral IP address.
|
@@ -1227,7 +1217,6 @@ class _ForwardingRuleState:
|
|
1227
1217
|
* `regions/region/addresses/address-name`
|
1228
1218
|
* `global/addresses/address-name`
|
1229
1219
|
* `address-name`
|
1230
|
-
|
1231
1220
|
The forwarding rule's `target` or `backendService`,
|
1232
1221
|
and in most cases, also the `loadBalancingScheme`, determine the
|
1233
1222
|
type of IP address that you can use. For detailed information, see
|
@@ -1650,7 +1639,6 @@ class _ForwardingRuleState:
|
|
1650
1639
|
* For Private Service Connect forwarding rules that forward traffic to Google APIs, provide the name of a supported Google API bundle:
|
1651
1640
|
* `vpc-sc` - [ APIs that support VPC Service Controls](https://cloud.google.com/vpc-service-controls/docs/supported-products).
|
1652
1641
|
* `all-apis` - [All supported Google APIs](https://cloud.google.com/vpc/docs/private-service-connect#supported-apis).
|
1653
|
-
|
1654
1642
|
For Private Service Connect forwarding rules that forward traffic to managed services, the target must be a service attachment.
|
1655
1643
|
"""
|
1656
1644
|
return pulumi.get(self, "target")
|
@@ -2424,7 +2412,6 @@ class ForwardingRule(pulumi.CustomResource):
|
|
2424
2412
|
`IPAddress` should be set to `0.0.0.0`.
|
2425
2413
|
* When the `target` is a Private Service Connect Google APIs
|
2426
2414
|
bundle, you must specify an `IPAddress`.
|
2427
|
-
|
2428
2415
|
Otherwise, you can optionally specify an IP address that references an
|
2429
2416
|
existing static (reserved) IP address resource. When omitted, Google Cloud
|
2430
2417
|
assigns an ephemeral IP address.
|
@@ -2439,7 +2426,6 @@ class ForwardingRule(pulumi.CustomResource):
|
|
2439
2426
|
* `regions/region/addresses/address-name`
|
2440
2427
|
* `global/addresses/address-name`
|
2441
2428
|
* `address-name`
|
2442
|
-
|
2443
2429
|
The forwarding rule's `target` or `backendService`,
|
2444
2430
|
and in most cases, also the `loadBalancingScheme`, determine the
|
2445
2431
|
type of IP address that you can use. For detailed information, see
|
@@ -2580,7 +2566,6 @@ class ForwardingRule(pulumi.CustomResource):
|
|
2580
2566
|
* For Private Service Connect forwarding rules that forward traffic to Google APIs, provide the name of a supported Google API bundle:
|
2581
2567
|
* `vpc-sc` - [ APIs that support VPC Service Controls](https://cloud.google.com/vpc-service-controls/docs/supported-products).
|
2582
2568
|
* `all-apis` - [All supported Google APIs](https://cloud.google.com/vpc/docs/private-service-connect#supported-apis).
|
2583
|
-
|
2584
2569
|
For Private Service Connect forwarding rules that forward traffic to managed services, the target must be a service attachment.
|
2585
2570
|
"""
|
2586
2571
|
...
|
@@ -3459,7 +3444,6 @@ class ForwardingRule(pulumi.CustomResource):
|
|
3459
3444
|
`IPAddress` should be set to `0.0.0.0`.
|
3460
3445
|
* When the `target` is a Private Service Connect Google APIs
|
3461
3446
|
bundle, you must specify an `IPAddress`.
|
3462
|
-
|
3463
3447
|
Otherwise, you can optionally specify an IP address that references an
|
3464
3448
|
existing static (reserved) IP address resource. When omitted, Google Cloud
|
3465
3449
|
assigns an ephemeral IP address.
|
@@ -3474,7 +3458,6 @@ class ForwardingRule(pulumi.CustomResource):
|
|
3474
3458
|
* `regions/region/addresses/address-name`
|
3475
3459
|
* `global/addresses/address-name`
|
3476
3460
|
* `address-name`
|
3477
|
-
|
3478
3461
|
The forwarding rule's `target` or `backendService`,
|
3479
3462
|
and in most cases, also the `loadBalancingScheme`, determine the
|
3480
3463
|
type of IP address that you can use. For detailed information, see
|
@@ -3624,7 +3607,6 @@ class ForwardingRule(pulumi.CustomResource):
|
|
3624
3607
|
* For Private Service Connect forwarding rules that forward traffic to Google APIs, provide the name of a supported Google API bundle:
|
3625
3608
|
* `vpc-sc` - [ APIs that support VPC Service Controls](https://cloud.google.com/vpc-service-controls/docs/supported-products).
|
3626
3609
|
* `all-apis` - [All supported Google APIs](https://cloud.google.com/vpc/docs/private-service-connect#supported-apis).
|
3627
|
-
|
3628
3610
|
For Private Service Connect forwarding rules that forward traffic to managed services, the target must be a service attachment.
|
3629
3611
|
"""
|
3630
3612
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -3767,7 +3749,6 @@ class ForwardingRule(pulumi.CustomResource):
|
|
3767
3749
|
`IPAddress` should be set to `0.0.0.0`.
|
3768
3750
|
* When the `target` is a Private Service Connect Google APIs
|
3769
3751
|
bundle, you must specify an `IPAddress`.
|
3770
|
-
|
3771
3752
|
Otherwise, you can optionally specify an IP address that references an
|
3772
3753
|
existing static (reserved) IP address resource. When omitted, Google Cloud
|
3773
3754
|
assigns an ephemeral IP address.
|
@@ -3782,7 +3763,6 @@ class ForwardingRule(pulumi.CustomResource):
|
|
3782
3763
|
* `regions/region/addresses/address-name`
|
3783
3764
|
* `global/addresses/address-name`
|
3784
3765
|
* `address-name`
|
3785
|
-
|
3786
3766
|
The forwarding rule's `target` or `backendService`,
|
3787
3767
|
and in most cases, also the `loadBalancingScheme`, determine the
|
3788
3768
|
type of IP address that you can use. For detailed information, see
|
@@ -4105,7 +4085,6 @@ class ForwardingRule(pulumi.CustomResource):
|
|
4105
4085
|
* For Private Service Connect forwarding rules that forward traffic to Google APIs, provide the name of a supported Google API bundle:
|
4106
4086
|
* `vpc-sc` - [ APIs that support VPC Service Controls](https://cloud.google.com/vpc-service-controls/docs/supported-products).
|
4107
4087
|
* `all-apis` - [All supported Google APIs](https://cloud.google.com/vpc/docs/private-service-connect#supported-apis).
|
4108
|
-
|
4109
4088
|
For Private Service Connect forwarding rules that forward traffic to managed services, the target must be a service attachment.
|
4110
4089
|
"""
|
4111
4090
|
return pulumi.get(self, "target")
|
@@ -49,7 +49,6 @@ class GlobalForwardingRuleArgs:
|
|
49
49
|
* For Private Service Connect forwarding rules that forward traffic to Google APIs, provide the name of a supported Google API bundle:
|
50
50
|
* `vpc-sc` - [ APIs that support VPC Service Controls](https://cloud.google.com/vpc-service-controls/docs/supported-products).
|
51
51
|
* `all-apis` - [All supported Google APIs](https://cloud.google.com/vpc/docs/private-service-connect#supported-apis).
|
52
|
-
|
53
52
|
For Private Service Connect forwarding rules that forward traffic to managed services, the target must be a service attachment.
|
54
53
|
|
55
54
|
|
@@ -67,7 +66,6 @@ class GlobalForwardingRuleArgs:
|
|
67
66
|
`IPAddress` should be set to `0.0.0.0`.
|
68
67
|
* When the `target` is a Private Service Connect Google APIs
|
69
68
|
bundle, you must specify an `IPAddress`.
|
70
|
-
|
71
69
|
Otherwise, you can optionally specify an IP address that references an
|
72
70
|
existing static (reserved) IP address resource. When omitted, Google Cloud
|
73
71
|
assigns an ephemeral IP address.
|
@@ -82,7 +80,6 @@ class GlobalForwardingRuleArgs:
|
|
82
80
|
* `regions/region/addresses/address-name`
|
83
81
|
* `global/addresses/address-name`
|
84
82
|
* `address-name`
|
85
|
-
|
86
83
|
The forwarding rule's `target`,
|
87
84
|
and in most cases, also the `loadBalancingScheme`, determine the
|
88
85
|
type of IP address that you can use. For detailed information, see
|
@@ -221,7 +218,6 @@ class GlobalForwardingRuleArgs:
|
|
221
218
|
* For Private Service Connect forwarding rules that forward traffic to Google APIs, provide the name of a supported Google API bundle:
|
222
219
|
* `vpc-sc` - [ APIs that support VPC Service Controls](https://cloud.google.com/vpc-service-controls/docs/supported-products).
|
223
220
|
* `all-apis` - [All supported Google APIs](https://cloud.google.com/vpc/docs/private-service-connect#supported-apis).
|
224
|
-
|
225
221
|
For Private Service Connect forwarding rules that forward traffic to managed services, the target must be a service attachment.
|
226
222
|
|
227
223
|
|
@@ -272,7 +268,6 @@ class GlobalForwardingRuleArgs:
|
|
272
268
|
`IPAddress` should be set to `0.0.0.0`.
|
273
269
|
* When the `target` is a Private Service Connect Google APIs
|
274
270
|
bundle, you must specify an `IPAddress`.
|
275
|
-
|
276
271
|
Otherwise, you can optionally specify an IP address that references an
|
277
272
|
existing static (reserved) IP address resource. When omitted, Google Cloud
|
278
273
|
assigns an ephemeral IP address.
|
@@ -287,7 +282,6 @@ class GlobalForwardingRuleArgs:
|
|
287
282
|
* `regions/region/addresses/address-name`
|
288
283
|
* `global/addresses/address-name`
|
289
284
|
* `address-name`
|
290
|
-
|
291
285
|
The forwarding rule's `target`,
|
292
286
|
and in most cases, also the `loadBalancingScheme`, determine the
|
293
287
|
type of IP address that you can use. For detailed information, see
|
@@ -573,7 +567,6 @@ class _GlobalForwardingRuleState:
|
|
573
567
|
`IPAddress` should be set to `0.0.0.0`.
|
574
568
|
* When the `target` is a Private Service Connect Google APIs
|
575
569
|
bundle, you must specify an `IPAddress`.
|
576
|
-
|
577
570
|
Otherwise, you can optionally specify an IP address that references an
|
578
571
|
existing static (reserved) IP address resource. When omitted, Google Cloud
|
579
572
|
assigns an ephemeral IP address.
|
@@ -588,7 +581,6 @@ class _GlobalForwardingRuleState:
|
|
588
581
|
* `regions/region/addresses/address-name`
|
589
582
|
* `global/addresses/address-name`
|
590
583
|
* `address-name`
|
591
|
-
|
592
584
|
The forwarding rule's `target`,
|
593
585
|
and in most cases, also the `loadBalancingScheme`, determine the
|
594
586
|
type of IP address that you can use. For detailed information, see
|
@@ -695,7 +687,6 @@ class _GlobalForwardingRuleState:
|
|
695
687
|
* For Private Service Connect forwarding rules that forward traffic to Google APIs, provide the name of a supported Google API bundle:
|
696
688
|
* `vpc-sc` - [ APIs that support VPC Service Controls](https://cloud.google.com/vpc-service-controls/docs/supported-products).
|
697
689
|
* `all-apis` - [All supported Google APIs](https://cloud.google.com/vpc/docs/private-service-connect#supported-apis).
|
698
|
-
|
699
690
|
For Private Service Connect forwarding rules that forward traffic to managed services, the target must be a service attachment.
|
700
691
|
|
701
692
|
|
@@ -813,7 +804,6 @@ class _GlobalForwardingRuleState:
|
|
813
804
|
`IPAddress` should be set to `0.0.0.0`.
|
814
805
|
* When the `target` is a Private Service Connect Google APIs
|
815
806
|
bundle, you must specify an `IPAddress`.
|
816
|
-
|
817
807
|
Otherwise, you can optionally specify an IP address that references an
|
818
808
|
existing static (reserved) IP address resource. When omitted, Google Cloud
|
819
809
|
assigns an ephemeral IP address.
|
@@ -828,7 +818,6 @@ class _GlobalForwardingRuleState:
|
|
828
818
|
* `regions/region/addresses/address-name`
|
829
819
|
* `global/addresses/address-name`
|
830
820
|
* `address-name`
|
831
|
-
|
832
821
|
The forwarding rule's `target`,
|
833
822
|
and in most cases, also the `loadBalancingScheme`, determine the
|
834
823
|
type of IP address that you can use. For detailed information, see
|
@@ -1144,7 +1133,6 @@ class _GlobalForwardingRuleState:
|
|
1144
1133
|
* For Private Service Connect forwarding rules that forward traffic to Google APIs, provide the name of a supported Google API bundle:
|
1145
1134
|
* `vpc-sc` - [ APIs that support VPC Service Controls](https://cloud.google.com/vpc-service-controls/docs/supported-products).
|
1146
1135
|
* `all-apis` - [All supported Google APIs](https://cloud.google.com/vpc/docs/private-service-connect#supported-apis).
|
1147
|
-
|
1148
1136
|
For Private Service Connect forwarding rules that forward traffic to managed services, the target must be a service attachment.
|
1149
1137
|
|
1150
1138
|
|
@@ -1569,7 +1557,6 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
1569
1557
|
`IPAddress` should be set to `0.0.0.0`.
|
1570
1558
|
* When the `target` is a Private Service Connect Google APIs
|
1571
1559
|
bundle, you must specify an `IPAddress`.
|
1572
|
-
|
1573
1560
|
Otherwise, you can optionally specify an IP address that references an
|
1574
1561
|
existing static (reserved) IP address resource. When omitted, Google Cloud
|
1575
1562
|
assigns an ephemeral IP address.
|
@@ -1584,7 +1571,6 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
1584
1571
|
* `regions/region/addresses/address-name`
|
1585
1572
|
* `global/addresses/address-name`
|
1586
1573
|
* `address-name`
|
1587
|
-
|
1588
1574
|
The forwarding rule's `target`,
|
1589
1575
|
and in most cases, also the `loadBalancingScheme`, determine the
|
1590
1576
|
type of IP address that you can use. For detailed information, see
|
@@ -1684,7 +1670,6 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
1684
1670
|
* For Private Service Connect forwarding rules that forward traffic to Google APIs, provide the name of a supported Google API bundle:
|
1685
1671
|
* `vpc-sc` - [ APIs that support VPC Service Controls](https://cloud.google.com/vpc-service-controls/docs/supported-products).
|
1686
1672
|
* `all-apis` - [All supported Google APIs](https://cloud.google.com/vpc/docs/private-service-connect#supported-apis).
|
1687
|
-
|
1688
1673
|
For Private Service Connect forwarding rules that forward traffic to managed services, the target must be a service attachment.
|
1689
1674
|
|
1690
1675
|
|
@@ -2195,7 +2180,6 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2195
2180
|
`IPAddress` should be set to `0.0.0.0`.
|
2196
2181
|
* When the `target` is a Private Service Connect Google APIs
|
2197
2182
|
bundle, you must specify an `IPAddress`.
|
2198
|
-
|
2199
2183
|
Otherwise, you can optionally specify an IP address that references an
|
2200
2184
|
existing static (reserved) IP address resource. When omitted, Google Cloud
|
2201
2185
|
assigns an ephemeral IP address.
|
@@ -2210,7 +2194,6 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2210
2194
|
* `regions/region/addresses/address-name`
|
2211
2195
|
* `global/addresses/address-name`
|
2212
2196
|
* `address-name`
|
2213
|
-
|
2214
2197
|
The forwarding rule's `target`,
|
2215
2198
|
and in most cases, also the `loadBalancingScheme`, determine the
|
2216
2199
|
type of IP address that you can use. For detailed information, see
|
@@ -2317,7 +2300,6 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2317
2300
|
* For Private Service Connect forwarding rules that forward traffic to Google APIs, provide the name of a supported Google API bundle:
|
2318
2301
|
* `vpc-sc` - [ APIs that support VPC Service Controls](https://cloud.google.com/vpc-service-controls/docs/supported-products).
|
2319
2302
|
* `all-apis` - [All supported Google APIs](https://cloud.google.com/vpc/docs/private-service-connect#supported-apis).
|
2320
|
-
|
2321
2303
|
For Private Service Connect forwarding rules that forward traffic to managed services, the target must be a service attachment.
|
2322
2304
|
|
2323
2305
|
|
@@ -2400,7 +2382,6 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2400
2382
|
`IPAddress` should be set to `0.0.0.0`.
|
2401
2383
|
* When the `target` is a Private Service Connect Google APIs
|
2402
2384
|
bundle, you must specify an `IPAddress`.
|
2403
|
-
|
2404
2385
|
Otherwise, you can optionally specify an IP address that references an
|
2405
2386
|
existing static (reserved) IP address resource. When omitted, Google Cloud
|
2406
2387
|
assigns an ephemeral IP address.
|
@@ -2415,7 +2396,6 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2415
2396
|
* `regions/region/addresses/address-name`
|
2416
2397
|
* `global/addresses/address-name`
|
2417
2398
|
* `address-name`
|
2418
|
-
|
2419
2399
|
The forwarding rule's `target`,
|
2420
2400
|
and in most cases, also the `loadBalancingScheme`, determine the
|
2421
2401
|
type of IP address that you can use. For detailed information, see
|
@@ -2655,7 +2635,6 @@ class GlobalForwardingRule(pulumi.CustomResource):
|
|
2655
2635
|
* For Private Service Connect forwarding rules that forward traffic to Google APIs, provide the name of a supported Google API bundle:
|
2656
2636
|
* `vpc-sc` - [ APIs that support VPC Service Controls](https://cloud.google.com/vpc-service-controls/docs/supported-products).
|
2657
2637
|
* `all-apis` - [All supported Google APIs](https://cloud.google.com/vpc/docs/private-service-connect#supported-apis).
|
2658
|
-
|
2659
2638
|
For Private Service Connect forwarding rules that forward traffic to managed services, the target must be a service attachment.
|
2660
2639
|
|
2661
2640
|
|
@@ -41,7 +41,6 @@ class ManagedSslCertificateArgs:
|
|
41
41
|
first character must be a lowercase letter, and all following
|
42
42
|
characters must be a dash, lowercase letter, or digit, except the last
|
43
43
|
character, which cannot be a dash.
|
44
|
-
|
45
44
|
These are in the same namespace as the managed SSL certificates.
|
46
45
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
47
46
|
If it is not provided, the provider project is used.
|
@@ -112,7 +111,6 @@ class ManagedSslCertificateArgs:
|
|
112
111
|
first character must be a lowercase letter, and all following
|
113
112
|
characters must be a dash, lowercase letter, or digit, except the last
|
114
113
|
character, which cannot be a dash.
|
115
|
-
|
116
114
|
These are in the same namespace as the managed SSL certificates.
|
117
115
|
"""
|
118
116
|
return pulumi.get(self, "name")
|
@@ -179,7 +177,6 @@ class _ManagedSslCertificateState:
|
|
179
177
|
first character must be a lowercase letter, and all following
|
180
178
|
characters must be a dash, lowercase letter, or digit, except the last
|
181
179
|
character, which cannot be a dash.
|
182
|
-
|
183
180
|
These are in the same namespace as the managed SSL certificates.
|
184
181
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
185
182
|
If it is not provided, the provider project is used.
|
@@ -284,7 +281,6 @@ class _ManagedSslCertificateState:
|
|
284
281
|
first character must be a lowercase letter, and all following
|
285
282
|
characters must be a dash, lowercase letter, or digit, except the last
|
286
283
|
character, which cannot be a dash.
|
287
|
-
|
288
284
|
These are in the same namespace as the managed SSL certificates.
|
289
285
|
"""
|
290
286
|
return pulumi.get(self, "name")
|
@@ -472,7 +468,6 @@ class ManagedSslCertificate(pulumi.CustomResource):
|
|
472
468
|
first character must be a lowercase letter, and all following
|
473
469
|
characters must be a dash, lowercase letter, or digit, except the last
|
474
470
|
character, which cannot be a dash.
|
475
|
-
|
476
471
|
These are in the same namespace as the managed SSL certificates.
|
477
472
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
478
473
|
If it is not provided, the provider project is used.
|
@@ -670,7 +665,6 @@ class ManagedSslCertificate(pulumi.CustomResource):
|
|
670
665
|
first character must be a lowercase letter, and all following
|
671
666
|
characters must be a dash, lowercase letter, or digit, except the last
|
672
667
|
character, which cannot be a dash.
|
673
|
-
|
674
668
|
These are in the same namespace as the managed SSL certificates.
|
675
669
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
676
670
|
If it is not provided, the provider project is used.
|
@@ -750,7 +744,6 @@ class ManagedSslCertificate(pulumi.CustomResource):
|
|
750
744
|
first character must be a lowercase letter, and all following
|
751
745
|
characters must be a dash, lowercase letter, or digit, except the last
|
752
746
|
character, which cannot be a dash.
|
753
|
-
|
754
747
|
These are in the same namespace as the managed SSL certificates.
|
755
748
|
"""
|
756
749
|
return pulumi.get(self, "name")
|
@@ -41,7 +41,6 @@ class MangedSslCertificateArgs:
|
|
41
41
|
first character must be a lowercase letter, and all following
|
42
42
|
characters must be a dash, lowercase letter, or digit, except the last
|
43
43
|
character, which cannot be a dash.
|
44
|
-
|
45
44
|
These are in the same namespace as the managed SSL certificates.
|
46
45
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
47
46
|
If it is not provided, the provider project is used.
|
@@ -112,7 +111,6 @@ class MangedSslCertificateArgs:
|
|
112
111
|
first character must be a lowercase letter, and all following
|
113
112
|
characters must be a dash, lowercase letter, or digit, except the last
|
114
113
|
character, which cannot be a dash.
|
115
|
-
|
116
114
|
These are in the same namespace as the managed SSL certificates.
|
117
115
|
"""
|
118
116
|
return pulumi.get(self, "name")
|
@@ -179,7 +177,6 @@ class _MangedSslCertificateState:
|
|
179
177
|
first character must be a lowercase letter, and all following
|
180
178
|
characters must be a dash, lowercase letter, or digit, except the last
|
181
179
|
character, which cannot be a dash.
|
182
|
-
|
183
180
|
These are in the same namespace as the managed SSL certificates.
|
184
181
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
185
182
|
If it is not provided, the provider project is used.
|
@@ -284,7 +281,6 @@ class _MangedSslCertificateState:
|
|
284
281
|
first character must be a lowercase letter, and all following
|
285
282
|
characters must be a dash, lowercase letter, or digit, except the last
|
286
283
|
character, which cannot be a dash.
|
287
|
-
|
288
284
|
These are in the same namespace as the managed SSL certificates.
|
289
285
|
"""
|
290
286
|
return pulumi.get(self, "name")
|
@@ -477,7 +473,6 @@ class MangedSslCertificate(pulumi.CustomResource):
|
|
477
473
|
first character must be a lowercase letter, and all following
|
478
474
|
characters must be a dash, lowercase letter, or digit, except the last
|
479
475
|
character, which cannot be a dash.
|
480
|
-
|
481
476
|
These are in the same namespace as the managed SSL certificates.
|
482
477
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
483
478
|
If it is not provided, the provider project is used.
|
@@ -674,7 +669,6 @@ class MangedSslCertificate(pulumi.CustomResource):
|
|
674
669
|
first character must be a lowercase letter, and all following
|
675
670
|
characters must be a dash, lowercase letter, or digit, except the last
|
676
671
|
character, which cannot be a dash.
|
677
|
-
|
678
672
|
These are in the same namespace as the managed SSL certificates.
|
679
673
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
680
674
|
If it is not provided, the provider project is used.
|
@@ -754,7 +748,6 @@ class MangedSslCertificate(pulumi.CustomResource):
|
|
754
748
|
first character must be a lowercase letter, and all following
|
755
749
|
characters must be a dash, lowercase letter, or digit, except the last
|
756
750
|
character, which cannot be a dash.
|
757
|
-
|
758
751
|
These are in the same namespace as the managed SSL certificates.
|
759
752
|
"""
|
760
753
|
return pulumi.get(self, "name")
|
@@ -441,6 +441,14 @@ class NetworkAttachment(pulumi.CustomResource):
|
|
441
441
|
subnetworks: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
442
442
|
__props__=None):
|
443
443
|
"""
|
444
|
+
A network attachment is a resource that lets a producer Virtual Private Cloud (VPC) network initiate connections to a consumer VPC network through a Private Service Connect interface.
|
445
|
+
|
446
|
+
To get more information about NetworkAttachment, see:
|
447
|
+
|
448
|
+
* [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/networkAttachments)
|
449
|
+
* How-to Guides
|
450
|
+
* [Official Documentation](https://cloud.google.com/vpc/docs/about-network-attachments)
|
451
|
+
|
444
452
|
## Example Usage
|
445
453
|
|
446
454
|
### Network Attachment Basic
|
@@ -568,6 +576,14 @@ class NetworkAttachment(pulumi.CustomResource):
|
|
568
576
|
args: NetworkAttachmentArgs,
|
569
577
|
opts: Optional[pulumi.ResourceOptions] = None):
|
570
578
|
"""
|
579
|
+
A network attachment is a resource that lets a producer Virtual Private Cloud (VPC) network initiate connections to a consumer VPC network through a Private Service Connect interface.
|
580
|
+
|
581
|
+
To get more information about NetworkAttachment, see:
|
582
|
+
|
583
|
+
* [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/networkAttachments)
|
584
|
+
* How-to Guides
|
585
|
+
* [Official Documentation](https://cloud.google.com/vpc/docs/about-network-attachments)
|
586
|
+
|
571
587
|
## Example Usage
|
572
588
|
|
573
589
|
### Network Attachment Basic
|