pulumi-gcp 7.33.0a1721974181__py3-none-any.whl → 7.34.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-gcp might be problematic. Click here for more details.
- pulumi_gcp/__init__.py +40 -0
- pulumi_gcp/alloydb/_inputs.py +174 -0
- pulumi_gcp/alloydb/instance.py +54 -0
- pulumi_gcp/alloydb/outputs.py +133 -0
- pulumi_gcp/apigee/__init__.py +2 -0
- pulumi_gcp/apigee/environment_keyvaluemaps.py +370 -0
- pulumi_gcp/apigee/environment_keyvaluemaps_entries.py +440 -0
- pulumi_gcp/apigee/instance.py +2 -2
- pulumi_gcp/apigee/nat_address.py +2 -2
- pulumi_gcp/apigee/organization.py +4 -4
- pulumi_gcp/apphub/service_project_attachment.py +11 -11
- pulumi_gcp/bigquery/_inputs.py +36 -0
- pulumi_gcp/bigquery/app_profile.py +54 -0
- pulumi_gcp/bigquery/outputs.py +38 -0
- pulumi_gcp/bigquery/reservation.py +34 -4
- pulumi_gcp/bigquery/table.py +65 -21
- pulumi_gcp/bigtable/table.py +27 -26
- pulumi_gcp/certificateauthority/authority.py +4 -4
- pulumi_gcp/cloudfunctions/function.py +47 -0
- pulumi_gcp/cloudfunctions/get_function.py +11 -1
- pulumi_gcp/cloudfunctionsv2/function.py +2 -2
- pulumi_gcp/cloudrun/_inputs.py +24 -21
- pulumi_gcp/cloudrun/outputs.py +20 -24
- pulumi_gcp/cloudrunv2/_inputs.py +3 -0
- pulumi_gcp/cloudrunv2/outputs.py +4 -0
- pulumi_gcp/compute/__init__.py +2 -0
- pulumi_gcp/compute/_inputs.py +2334 -329
- pulumi_gcp/compute/backend_service.py +6 -0
- pulumi_gcp/compute/outputs.py +1466 -7
- pulumi_gcp/compute/public_advertised_prefix.py +30 -2
- pulumi_gcp/compute/resize_request.py +782 -0
- pulumi_gcp/compute/router_peer.py +437 -0
- pulumi_gcp/compute/router_route_policy.py +616 -0
- pulumi_gcp/compute/service_attachment.py +7 -14
- pulumi_gcp/container/_inputs.py +215 -18
- pulumi_gcp/container/node_pool.py +0 -14
- pulumi_gcp/container/outputs.py +226 -12
- pulumi_gcp/databasemigrationservice/private_connection.py +10 -6
- pulumi_gcp/dataloss/_inputs.py +707 -21
- pulumi_gcp/dataloss/outputs.py +588 -14
- pulumi_gcp/datastore/data_store_index.py +24 -12
- pulumi_gcp/datastream/_inputs.py +83 -3
- pulumi_gcp/datastream/outputs.py +51 -3
- pulumi_gcp/datastream/stream.py +170 -0
- pulumi_gcp/firebase/database_instance.py +8 -8
- pulumi_gcp/firebase/hosting_site.py +8 -8
- pulumi_gcp/firestore/index.py +10 -10
- pulumi_gcp/gkeonprem/_inputs.py +78 -78
- pulumi_gcp/gkeonprem/outputs.py +52 -52
- pulumi_gcp/iap/client.py +4 -4
- pulumi_gcp/integrationconnectors/_inputs.py +30 -30
- pulumi_gcp/integrationconnectors/outputs.py +20 -20
- pulumi_gcp/netapp/volume.py +1 -1
- pulumi_gcp/networkconnectivity/_inputs.py +3 -6
- pulumi_gcp/networkconnectivity/hub.py +60 -49
- pulumi_gcp/networkconnectivity/outputs.py +2 -4
- pulumi_gcp/networkconnectivity/spoke.py +159 -104
- pulumi_gcp/networksecurity/tls_inspection_policy.py +2 -2
- pulumi_gcp/orgpolicy/policy.py +4 -4
- pulumi_gcp/projects/get_project_service.py +11 -1
- pulumi_gcp/projects/service.py +68 -0
- pulumi_gcp/projects/service_identity.py +30 -2
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securesourcemanager/instance.py +528 -4
- pulumi_gcp/securitycenter/__init__.py +1 -0
- pulumi_gcp/securitycenter/v2_organization_mute_config.py +673 -0
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vmwareengine/get_private_cloud.py +21 -1
- pulumi_gcp/vmwareengine/private_cloud.py +121 -2
- pulumi_gcp/workbench/_inputs.py +77 -0
- pulumi_gcp/workbench/instance.py +18 -4
- pulumi_gcp/workbench/outputs.py +67 -1
- {pulumi_gcp-7.33.0a1721974181.dist-info → pulumi_gcp-7.34.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.33.0a1721974181.dist-info → pulumi_gcp-7.34.0.dist-info}/RECORD +78 -73
- {pulumi_gcp-7.33.0a1721974181.dist-info → pulumi_gcp-7.34.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-7.33.0a1721974181.dist-info → pulumi_gcp-7.34.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/firestore/index.py
CHANGED
@@ -276,8 +276,9 @@ class Index(pulumi.CustomResource):
|
|
276
276
|
__props__=None):
|
277
277
|
"""
|
278
278
|
Cloud Firestore indexes enable simple and complex queries against documents in a database.
|
279
|
-
|
280
|
-
|
279
|
+
Both Firestore Native and Datastore Mode indexes are supported.
|
280
|
+
This resource manages composite indexes and not single field indexes.
|
281
|
+
To manage single field indexes, use the `firestore.Field` resource instead.
|
281
282
|
|
282
283
|
To get more information about Index, see:
|
283
284
|
|
@@ -289,9 +290,8 @@ class Index(pulumi.CustomResource):
|
|
289
290
|
a Firestore database. If you haven't already created it, you may
|
290
291
|
create a `firestore.Database` resource and `location_id` set
|
291
292
|
to your chosen location. If you wish to use App Engine, you may
|
292
|
-
instead create a `appengine.Application` resource
|
293
|
-
|
294
|
-
will be the same as the App Engine location specified.
|
293
|
+
instead create a `appengine.Application` resource.
|
294
|
+
Your Firestore location will be the same as the App Engine location specified.
|
295
295
|
|
296
296
|
## Example Usage
|
297
297
|
|
@@ -424,8 +424,9 @@ class Index(pulumi.CustomResource):
|
|
424
424
|
opts: Optional[pulumi.ResourceOptions] = None):
|
425
425
|
"""
|
426
426
|
Cloud Firestore indexes enable simple and complex queries against documents in a database.
|
427
|
-
|
428
|
-
|
427
|
+
Both Firestore Native and Datastore Mode indexes are supported.
|
428
|
+
This resource manages composite indexes and not single field indexes.
|
429
|
+
To manage single field indexes, use the `firestore.Field` resource instead.
|
429
430
|
|
430
431
|
To get more information about Index, see:
|
431
432
|
|
@@ -437,9 +438,8 @@ class Index(pulumi.CustomResource):
|
|
437
438
|
a Firestore database. If you haven't already created it, you may
|
438
439
|
create a `firestore.Database` resource and `location_id` set
|
439
440
|
to your chosen location. If you wish to use App Engine, you may
|
440
|
-
instead create a `appengine.Application` resource
|
441
|
-
|
442
|
-
will be the same as the App Engine location specified.
|
441
|
+
instead create a `appengine.Application` resource.
|
442
|
+
Your Firestore location will be the same as the App Engine location specified.
|
443
443
|
|
444
444
|
## Example Usage
|
445
445
|
|
pulumi_gcp/gkeonprem/_inputs.py
CHANGED
@@ -458,9 +458,9 @@ if not MYPY:
|
|
458
458
|
version -- it's best to assume the behavior is undefined and
|
459
459
|
conflicts should be avoided. For more information, including usage
|
460
460
|
and the valid values, see:
|
461
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
461
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
462
462
|
An object containing a list of "key": value pairs.
|
463
|
-
|
463
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
464
464
|
"""
|
465
465
|
node_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeConfigArgsDict']]]]
|
466
466
|
"""
|
@@ -494,9 +494,9 @@ class BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigA
|
|
494
494
|
version -- it's best to assume the behavior is undefined and
|
495
495
|
conflicts should be avoided. For more information, including usage
|
496
496
|
and the valid values, see:
|
497
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
497
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
498
498
|
An object containing a list of "key": value pairs.
|
499
|
-
|
499
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
500
500
|
:param pulumi.Input[Sequence[pulumi.Input['BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeConfigArgs']]] node_configs: The list of machine addresses in the Bare Metal Node Pool.
|
501
501
|
Structure is documented below.
|
502
502
|
:param pulumi.Input[str] operating_system: Specifies the nodes operating system (default: LINUX).
|
@@ -523,9 +523,9 @@ class BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigA
|
|
523
523
|
version -- it's best to assume the behavior is undefined and
|
524
524
|
conflicts should be avoided. For more information, including usage
|
525
525
|
and the valid values, see:
|
526
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
526
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
527
527
|
An object containing a list of "key": value pairs.
|
528
|
-
|
528
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
529
529
|
"""
|
530
530
|
return pulumi.get(self, "labels")
|
531
531
|
|
@@ -583,9 +583,9 @@ if not MYPY:
|
|
583
583
|
version -- it's best to assume the behavior is undefined and
|
584
584
|
conflicts should be avoided. For more information, including usage
|
585
585
|
and the valid values, see:
|
586
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
586
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
587
587
|
An object containing a list of "key": value pairs.
|
588
|
-
|
588
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
589
589
|
"""
|
590
590
|
node_ip: NotRequired[pulumi.Input[str]]
|
591
591
|
"""
|
@@ -608,9 +608,9 @@ class BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigN
|
|
608
608
|
version -- it's best to assume the behavior is undefined and
|
609
609
|
conflicts should be avoided. For more information, including usage
|
610
610
|
and the valid values, see:
|
611
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
611
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
612
612
|
An object containing a list of "key": value pairs.
|
613
|
-
|
613
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
614
614
|
:param pulumi.Input[str] node_ip: The default IPv4 address for SSH access and Kubernetes node.
|
615
615
|
Example: 192.168.0.1
|
616
616
|
"""
|
@@ -630,9 +630,9 @@ class BareMetalAdminClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigN
|
|
630
630
|
version -- it's best to assume the behavior is undefined and
|
631
631
|
conflicts should be avoided. For more information, including usage
|
632
632
|
and the valid values, see:
|
633
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
633
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
634
634
|
An object containing a list of "key": value pairs.
|
635
|
-
|
635
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
636
636
|
"""
|
637
637
|
return pulumi.get(self, "labels")
|
638
638
|
|
@@ -1142,14 +1142,14 @@ if not MYPY:
|
|
1142
1142
|
uri: pulumi.Input[str]
|
1143
1143
|
"""
|
1144
1144
|
Specifies the address of your proxy server.
|
1145
|
-
|
1145
|
+
For Example: http://domain
|
1146
1146
|
WARNING: Do not provide credentials in the format
|
1147
|
-
http://(username:password@)domain these will be rejected by the server.
|
1147
|
+
of http://(username:password@)domain these will be rejected by the server.
|
1148
1148
|
"""
|
1149
1149
|
no_proxies: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1150
1150
|
"""
|
1151
1151
|
A list of IPs, hostnames, and domains that should skip the proxy.
|
1152
|
-
|
1152
|
+
For example: ["127.0.0.1", "example.com", ".corp", "localhost"].
|
1153
1153
|
"""
|
1154
1154
|
elif False:
|
1155
1155
|
BareMetalAdminClusterProxyArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -1161,11 +1161,11 @@ class BareMetalAdminClusterProxyArgs:
|
|
1161
1161
|
no_proxies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
1162
1162
|
"""
|
1163
1163
|
:param pulumi.Input[str] uri: Specifies the address of your proxy server.
|
1164
|
-
|
1164
|
+
For Example: http://domain
|
1165
1165
|
WARNING: Do not provide credentials in the format
|
1166
|
-
http://(username:password@)domain these will be rejected by the server.
|
1166
|
+
of http://(username:password@)domain these will be rejected by the server.
|
1167
1167
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] no_proxies: A list of IPs, hostnames, and domains that should skip the proxy.
|
1168
|
-
|
1168
|
+
For example: ["127.0.0.1", "example.com", ".corp", "localhost"].
|
1169
1169
|
"""
|
1170
1170
|
pulumi.set(__self__, "uri", uri)
|
1171
1171
|
if no_proxies is not None:
|
@@ -1176,9 +1176,9 @@ class BareMetalAdminClusterProxyArgs:
|
|
1176
1176
|
def uri(self) -> pulumi.Input[str]:
|
1177
1177
|
"""
|
1178
1178
|
Specifies the address of your proxy server.
|
1179
|
-
|
1179
|
+
For Example: http://domain
|
1180
1180
|
WARNING: Do not provide credentials in the format
|
1181
|
-
http://(username:password@)domain these will be rejected by the server.
|
1181
|
+
of http://(username:password@)domain these will be rejected by the server.
|
1182
1182
|
"""
|
1183
1183
|
return pulumi.get(self, "uri")
|
1184
1184
|
|
@@ -1191,7 +1191,7 @@ class BareMetalAdminClusterProxyArgs:
|
|
1191
1191
|
def no_proxies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
1192
1192
|
"""
|
1193
1193
|
A list of IPs, hostnames, and domains that should skip the proxy.
|
1194
|
-
|
1194
|
+
For example: ["127.0.0.1", "example.com", ".corp", "localhost"].
|
1195
1195
|
"""
|
1196
1196
|
return pulumi.get(self, "no_proxies")
|
1197
1197
|
|
@@ -2196,9 +2196,9 @@ if not MYPY:
|
|
2196
2196
|
version -- it's best to assume the behavior is undefined and
|
2197
2197
|
conflicts should be avoided. For more information, including usage
|
2198
2198
|
and the valid values, see:
|
2199
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
2199
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
2200
2200
|
An object containing a list of "key": value pairs.
|
2201
|
-
|
2201
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
2202
2202
|
"""
|
2203
2203
|
node_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeConfigArgsDict']]]]
|
2204
2204
|
"""
|
@@ -2232,9 +2232,9 @@ class BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigArgs:
|
|
2232
2232
|
version -- it's best to assume the behavior is undefined and
|
2233
2233
|
conflicts should be avoided. For more information, including usage
|
2234
2234
|
and the valid values, see:
|
2235
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
2235
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
2236
2236
|
An object containing a list of "key": value pairs.
|
2237
|
-
|
2237
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
2238
2238
|
:param pulumi.Input[Sequence[pulumi.Input['BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeConfigArgs']]] node_configs: The list of machine addresses in the Bare Metal Node Pool.
|
2239
2239
|
Structure is documented below.
|
2240
2240
|
:param pulumi.Input[str] operating_system: Specifies the nodes operating system (default: LINUX).
|
@@ -2261,9 +2261,9 @@ class BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigArgs:
|
|
2261
2261
|
version -- it's best to assume the behavior is undefined and
|
2262
2262
|
conflicts should be avoided. For more information, including usage
|
2263
2263
|
and the valid values, see:
|
2264
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
2264
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
2265
2265
|
An object containing a list of "key": value pairs.
|
2266
|
-
|
2266
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
2267
2267
|
"""
|
2268
2268
|
return pulumi.get(self, "labels")
|
2269
2269
|
|
@@ -2321,9 +2321,9 @@ if not MYPY:
|
|
2321
2321
|
version -- it's best to assume the behavior is undefined and
|
2322
2322
|
conflicts should be avoided. For more information, including usage
|
2323
2323
|
and the valid values, see:
|
2324
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
2324
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
2325
2325
|
An object containing a list of "key": value pairs.
|
2326
|
-
|
2326
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
2327
2327
|
"""
|
2328
2328
|
node_ip: NotRequired[pulumi.Input[str]]
|
2329
2329
|
"""
|
@@ -2346,9 +2346,9 @@ class BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeCo
|
|
2346
2346
|
version -- it's best to assume the behavior is undefined and
|
2347
2347
|
conflicts should be avoided. For more information, including usage
|
2348
2348
|
and the valid values, see:
|
2349
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
2349
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
2350
2350
|
An object containing a list of "key": value pairs.
|
2351
|
-
|
2351
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
2352
2352
|
:param pulumi.Input[str] node_ip: The default IPv4 address for SSH access and Kubernetes node.
|
2353
2353
|
Example: 192.168.0.1
|
2354
2354
|
"""
|
@@ -2368,9 +2368,9 @@ class BareMetalClusterControlPlaneControlPlaneNodePoolConfigNodePoolConfigNodeCo
|
|
2368
2368
|
version -- it's best to assume the behavior is undefined and
|
2369
2369
|
conflicts should be avoided. For more information, including usage
|
2370
2370
|
and the valid values, see:
|
2371
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
2371
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
2372
2372
|
An object containing a list of "key": value pairs.
|
2373
|
-
|
2373
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
2374
2374
|
"""
|
2375
2375
|
return pulumi.get(self, "labels")
|
2376
2376
|
|
@@ -2987,9 +2987,9 @@ if not MYPY:
|
|
2987
2987
|
version -- it's best to assume the behavior is undefined and
|
2988
2988
|
conflicts should be avoided. For more information, including usage
|
2989
2989
|
and the valid values, see:
|
2990
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
2990
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
2991
2991
|
An object containing a list of "key": value pairs.
|
2992
|
-
|
2992
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
2993
2993
|
"""
|
2994
2994
|
node_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigNodeConfigArgsDict']]]]
|
2995
2995
|
"""
|
@@ -3026,9 +3026,9 @@ class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolC
|
|
3026
3026
|
version -- it's best to assume the behavior is undefined and
|
3027
3027
|
conflicts should be avoided. For more information, including usage
|
3028
3028
|
and the valid values, see:
|
3029
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3029
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3030
3030
|
An object containing a list of "key": value pairs.
|
3031
|
-
|
3031
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
3032
3032
|
:param pulumi.Input[Sequence[pulumi.Input['BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolConfigNodeConfigArgs']]] node_configs: The list of machine addresses in the Bare Metal Node Pool.
|
3033
3033
|
Structure is documented below.
|
3034
3034
|
:param pulumi.Input[str] operating_system: Specifies the nodes operating system (default: LINUX).
|
@@ -3070,9 +3070,9 @@ class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolC
|
|
3070
3070
|
version -- it's best to assume the behavior is undefined and
|
3071
3071
|
conflicts should be avoided. For more information, including usage
|
3072
3072
|
and the valid values, see:
|
3073
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3073
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3074
3074
|
An object containing a list of "key": value pairs.
|
3075
|
-
|
3075
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
3076
3076
|
"""
|
3077
3077
|
return pulumi.get(self, "labels")
|
3078
3078
|
|
@@ -3241,9 +3241,9 @@ if not MYPY:
|
|
3241
3241
|
version -- it's best to assume the behavior is undefined and
|
3242
3242
|
conflicts should be avoided. For more information, including usage
|
3243
3243
|
and the valid values, see:
|
3244
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3244
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3245
3245
|
An object containing a list of "key": value pairs.
|
3246
|
-
|
3246
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
3247
3247
|
"""
|
3248
3248
|
node_ip: NotRequired[pulumi.Input[str]]
|
3249
3249
|
"""
|
@@ -3266,9 +3266,9 @@ class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolC
|
|
3266
3266
|
version -- it's best to assume the behavior is undefined and
|
3267
3267
|
conflicts should be avoided. For more information, including usage
|
3268
3268
|
and the valid values, see:
|
3269
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3269
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3270
3270
|
An object containing a list of "key": value pairs.
|
3271
|
-
|
3271
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
3272
3272
|
:param pulumi.Input[str] node_ip: The default IPv4 address for SSH access and Kubernetes node.
|
3273
3273
|
Example: 192.168.0.1
|
3274
3274
|
"""
|
@@ -3288,9 +3288,9 @@ class BareMetalClusterLoadBalancerBgpLbConfigLoadBalancerNodePoolConfigNodePoolC
|
|
3288
3288
|
version -- it's best to assume the behavior is undefined and
|
3289
3289
|
conflicts should be avoided. For more information, including usage
|
3290
3290
|
and the valid values, see:
|
3291
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3291
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3292
3292
|
An object containing a list of "key": value pairs.
|
3293
|
-
|
3293
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
3294
3294
|
"""
|
3295
3295
|
return pulumi.get(self, "labels")
|
3296
3296
|
|
@@ -3620,9 +3620,9 @@ if not MYPY:
|
|
3620
3620
|
version -- it's best to assume the behavior is undefined and
|
3621
3621
|
conflicts should be avoided. For more information, including usage
|
3622
3622
|
and the valid values, see:
|
3623
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3623
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3624
3624
|
An object containing a list of "key": value pairs.
|
3625
|
-
|
3625
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
3626
3626
|
"""
|
3627
3627
|
node_configs: NotRequired[pulumi.Input[Sequence[pulumi.Input['BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigNodeConfigArgsDict']]]]
|
3628
3628
|
"""
|
@@ -3656,9 +3656,9 @@ class BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoo
|
|
3656
3656
|
version -- it's best to assume the behavior is undefined and
|
3657
3657
|
conflicts should be avoided. For more information, including usage
|
3658
3658
|
and the valid values, see:
|
3659
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3659
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3660
3660
|
An object containing a list of "key": value pairs.
|
3661
|
-
|
3661
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
3662
3662
|
:param pulumi.Input[Sequence[pulumi.Input['BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoolConfigNodeConfigArgs']]] node_configs: The list of machine addresses in the Bare Metal Node Pool.
|
3663
3663
|
Structure is documented below.
|
3664
3664
|
:param pulumi.Input[str] operating_system: Specifies the nodes operating system (default: LINUX).
|
@@ -3685,9 +3685,9 @@ class BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoo
|
|
3685
3685
|
version -- it's best to assume the behavior is undefined and
|
3686
3686
|
conflicts should be avoided. For more information, including usage
|
3687
3687
|
and the valid values, see:
|
3688
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3688
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3689
3689
|
An object containing a list of "key": value pairs.
|
3690
|
-
|
3690
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
3691
3691
|
"""
|
3692
3692
|
return pulumi.get(self, "labels")
|
3693
3693
|
|
@@ -3745,9 +3745,9 @@ if not MYPY:
|
|
3745
3745
|
version -- it's best to assume the behavior is undefined and
|
3746
3746
|
conflicts should be avoided. For more information, including usage
|
3747
3747
|
and the valid values, see:
|
3748
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3748
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3749
3749
|
An object containing a list of "key": value pairs.
|
3750
|
-
|
3750
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
3751
3751
|
"""
|
3752
3752
|
node_ip: NotRequired[pulumi.Input[str]]
|
3753
3753
|
"""
|
@@ -3770,9 +3770,9 @@ class BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoo
|
|
3770
3770
|
version -- it's best to assume the behavior is undefined and
|
3771
3771
|
conflicts should be avoided. For more information, including usage
|
3772
3772
|
and the valid values, see:
|
3773
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3773
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3774
3774
|
An object containing a list of "key": value pairs.
|
3775
|
-
|
3775
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
3776
3776
|
:param pulumi.Input[str] node_ip: The default IPv4 address for SSH access and Kubernetes node.
|
3777
3777
|
Example: 192.168.0.1
|
3778
3778
|
"""
|
@@ -3792,9 +3792,9 @@ class BareMetalClusterLoadBalancerMetalLbConfigLoadBalancerNodePoolConfigNodePoo
|
|
3792
3792
|
version -- it's best to assume the behavior is undefined and
|
3793
3793
|
conflicts should be avoided. For more information, including usage
|
3794
3794
|
and the valid values, see:
|
3795
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3795
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
3796
3796
|
An object containing a list of "key": value pairs.
|
3797
|
-
|
3797
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
3798
3798
|
"""
|
3799
3799
|
return pulumi.get(self, "labels")
|
3800
3800
|
|
@@ -4374,14 +4374,14 @@ if not MYPY:
|
|
4374
4374
|
uri: pulumi.Input[str]
|
4375
4375
|
"""
|
4376
4376
|
Specifies the address of your proxy server.
|
4377
|
-
|
4377
|
+
For example: http://domain
|
4378
4378
|
WARNING: Do not provide credentials in the format
|
4379
|
-
http://(username:password@)domain these will be rejected by the server.
|
4379
|
+
of http://(username:password@)domain these will be rejected by the server.
|
4380
4380
|
"""
|
4381
4381
|
no_proxies: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
4382
4382
|
"""
|
4383
4383
|
A list of IPs, hostnames, and domains that should skip the proxy.
|
4384
|
-
|
4384
|
+
For example ["127.0.0.1", "example.com", ".corp", "localhost"].
|
4385
4385
|
"""
|
4386
4386
|
elif False:
|
4387
4387
|
BareMetalClusterProxyArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -4393,11 +4393,11 @@ class BareMetalClusterProxyArgs:
|
|
4393
4393
|
no_proxies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
4394
4394
|
"""
|
4395
4395
|
:param pulumi.Input[str] uri: Specifies the address of your proxy server.
|
4396
|
-
|
4396
|
+
For example: http://domain
|
4397
4397
|
WARNING: Do not provide credentials in the format
|
4398
|
-
http://(username:password@)domain these will be rejected by the server.
|
4398
|
+
of http://(username:password@)domain these will be rejected by the server.
|
4399
4399
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] no_proxies: A list of IPs, hostnames, and domains that should skip the proxy.
|
4400
|
-
|
4400
|
+
For example ["127.0.0.1", "example.com", ".corp", "localhost"].
|
4401
4401
|
"""
|
4402
4402
|
pulumi.set(__self__, "uri", uri)
|
4403
4403
|
if no_proxies is not None:
|
@@ -4408,9 +4408,9 @@ class BareMetalClusterProxyArgs:
|
|
4408
4408
|
def uri(self) -> pulumi.Input[str]:
|
4409
4409
|
"""
|
4410
4410
|
Specifies the address of your proxy server.
|
4411
|
-
|
4411
|
+
For example: http://domain
|
4412
4412
|
WARNING: Do not provide credentials in the format
|
4413
|
-
http://(username:password@)domain these will be rejected by the server.
|
4413
|
+
of http://(username:password@)domain these will be rejected by the server.
|
4414
4414
|
"""
|
4415
4415
|
return pulumi.get(self, "uri")
|
4416
4416
|
|
@@ -4423,7 +4423,7 @@ class BareMetalClusterProxyArgs:
|
|
4423
4423
|
def no_proxies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
4424
4424
|
"""
|
4425
4425
|
A list of IPs, hostnames, and domains that should skip the proxy.
|
4426
|
-
|
4426
|
+
For example ["127.0.0.1", "example.com", ".corp", "localhost"].
|
4427
4427
|
"""
|
4428
4428
|
return pulumi.get(self, "no_proxies")
|
4429
4429
|
|
@@ -5257,9 +5257,9 @@ if not MYPY:
|
|
5257
5257
|
version -- it's best to assume the behavior is undefined and
|
5258
5258
|
conflicts should be avoided. For more information, including usage
|
5259
5259
|
and the valid values, see:
|
5260
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
5260
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
5261
5261
|
An object containing a list of "key": value pairs.
|
5262
|
-
|
5262
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
5263
5263
|
"""
|
5264
5264
|
operating_system: NotRequired[pulumi.Input[str]]
|
5265
5265
|
"""
|
@@ -5290,9 +5290,9 @@ class BareMetalNodePoolNodePoolConfigArgs:
|
|
5290
5290
|
version -- it's best to assume the behavior is undefined and
|
5291
5291
|
conflicts should be avoided. For more information, including usage
|
5292
5292
|
and the valid values, see:
|
5293
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
5293
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
5294
5294
|
An object containing a list of "key": value pairs.
|
5295
|
-
|
5295
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
5296
5296
|
:param pulumi.Input[str] operating_system: Specifies the nodes operating system (default: LINUX).
|
5297
5297
|
:param pulumi.Input[Sequence[pulumi.Input['BareMetalNodePoolNodePoolConfigTaintArgs']]] taints: The initial taints assigned to nodes of this node pool.
|
5298
5298
|
Structure is documented below.
|
@@ -5329,9 +5329,9 @@ class BareMetalNodePoolNodePoolConfigArgs:
|
|
5329
5329
|
version -- it's best to assume the behavior is undefined and
|
5330
5330
|
conflicts should be avoided. For more information, including usage
|
5331
5331
|
and the valid values, see:
|
5332
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
5332
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
5333
5333
|
An object containing a list of "key": value pairs.
|
5334
|
-
|
5334
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
5335
5335
|
"""
|
5336
5336
|
return pulumi.get(self, "labels")
|
5337
5337
|
|
@@ -5376,9 +5376,9 @@ if not MYPY:
|
|
5376
5376
|
version -- it's best to assume the behavior is undefined and
|
5377
5377
|
conflicts should be avoided. For more information, including usage
|
5378
5378
|
and the valid values, see:
|
5379
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
5379
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
5380
5380
|
An object containing a list of "key": value pairs.
|
5381
|
-
|
5381
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
5382
5382
|
"""
|
5383
5383
|
node_ip: NotRequired[pulumi.Input[str]]
|
5384
5384
|
"""
|
@@ -5401,9 +5401,9 @@ class BareMetalNodePoolNodePoolConfigNodeConfigArgs:
|
|
5401
5401
|
version -- it's best to assume the behavior is undefined and
|
5402
5402
|
conflicts should be avoided. For more information, including usage
|
5403
5403
|
and the valid values, see:
|
5404
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
5404
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
5405
5405
|
An object containing a list of "key": value pairs.
|
5406
|
-
|
5406
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
5407
5407
|
:param pulumi.Input[str] node_ip: The default IPv4 address for SSH access and Kubernetes node.
|
5408
5408
|
Example: 192.168.0.1
|
5409
5409
|
"""
|
@@ -5423,9 +5423,9 @@ class BareMetalNodePoolNodePoolConfigNodeConfigArgs:
|
|
5423
5423
|
version -- it's best to assume the behavior is undefined and
|
5424
5424
|
conflicts should be avoided. For more information, including usage
|
5425
5425
|
and the valid values, see:
|
5426
|
-
http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
5426
|
+
- http://kubernetes.io/v1.1/docs/user-guide/labels.html
|
5427
5427
|
An object containing a list of "key": value pairs.
|
5428
|
-
|
5428
|
+
For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
|
5429
5429
|
"""
|
5430
5430
|
return pulumi.get(self, "labels")
|
5431
5431
|
|