pulumi-gcp 7.34.0a1722421695__py3-none-any.whl → 7.35.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.

Files changed (96) hide show
  1. pulumi_gcp/__init__.py +40 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +12 -3
  3. pulumi_gcp/accesscontextmanager/access_policy.py +18 -18
  4. pulumi_gcp/accesscontextmanager/outputs.py +8 -2
  5. pulumi_gcp/alloydb/_inputs.py +174 -0
  6. pulumi_gcp/alloydb/instance.py +54 -0
  7. pulumi_gcp/alloydb/outputs.py +133 -0
  8. pulumi_gcp/apigee/__init__.py +2 -0
  9. pulumi_gcp/apigee/environment_keyvaluemaps.py +370 -0
  10. pulumi_gcp/apigee/environment_keyvaluemaps_entries.py +440 -0
  11. pulumi_gcp/apigee/instance.py +2 -2
  12. pulumi_gcp/apigee/nat_address.py +2 -2
  13. pulumi_gcp/apigee/organization.py +4 -4
  14. pulumi_gcp/apphub/service_project_attachment.py +11 -11
  15. pulumi_gcp/bigquery/_inputs.py +36 -0
  16. pulumi_gcp/bigquery/app_profile.py +54 -0
  17. pulumi_gcp/bigquery/data_transfer_config.py +52 -0
  18. pulumi_gcp/bigquery/outputs.py +38 -0
  19. pulumi_gcp/bigquery/reservation.py +34 -4
  20. pulumi_gcp/bigquery/table.py +65 -21
  21. pulumi_gcp/bigtable/table.py +27 -26
  22. pulumi_gcp/certificateauthority/authority.py +4 -4
  23. pulumi_gcp/cloudfunctions/function.py +47 -0
  24. pulumi_gcp/cloudfunctions/get_function.py +11 -1
  25. pulumi_gcp/cloudfunctionsv2/function.py +2 -2
  26. pulumi_gcp/cloudrun/_inputs.py +24 -21
  27. pulumi_gcp/cloudrun/outputs.py +20 -24
  28. pulumi_gcp/cloudrunv2/_inputs.py +3 -0
  29. pulumi_gcp/cloudrunv2/outputs.py +4 -0
  30. pulumi_gcp/compute/__init__.py +2 -0
  31. pulumi_gcp/compute/_inputs.py +2358 -353
  32. pulumi_gcp/compute/backend_service.py +6 -0
  33. pulumi_gcp/compute/disk.py +75 -0
  34. pulumi_gcp/compute/get_disk.py +11 -1
  35. pulumi_gcp/compute/get_hc_vpn_gateway.py +11 -1
  36. pulumi_gcp/compute/get_instance_template.py +2 -2
  37. pulumi_gcp/compute/get_region_instance_template.py +2 -2
  38. pulumi_gcp/compute/get_snapshot.py +2 -2
  39. pulumi_gcp/compute/ha_vpn_gateway.py +68 -7
  40. pulumi_gcp/compute/outputs.py +1490 -31
  41. pulumi_gcp/compute/public_advertised_prefix.py +30 -2
  42. pulumi_gcp/compute/resize_request.py +782 -0
  43. pulumi_gcp/compute/router_peer.py +437 -0
  44. pulumi_gcp/compute/router_route_policy.py +616 -0
  45. pulumi_gcp/compute/service_attachment.py +7 -14
  46. pulumi_gcp/container/_inputs.py +218 -21
  47. pulumi_gcp/container/node_pool.py +0 -14
  48. pulumi_gcp/container/outputs.py +228 -14
  49. pulumi_gcp/databasemigrationservice/private_connection.py +10 -6
  50. pulumi_gcp/dataloss/_inputs.py +707 -21
  51. pulumi_gcp/dataloss/outputs.py +588 -14
  52. pulumi_gcp/datastore/data_store_index.py +24 -12
  53. pulumi_gcp/datastream/_inputs.py +83 -3
  54. pulumi_gcp/datastream/outputs.py +51 -3
  55. pulumi_gcp/datastream/stream.py +170 -0
  56. pulumi_gcp/firebase/database_instance.py +8 -8
  57. pulumi_gcp/firebase/hosting_site.py +8 -8
  58. pulumi_gcp/firebase/project.py +10 -2
  59. pulumi_gcp/firestore/index.py +10 -10
  60. pulumi_gcp/gkeonprem/_inputs.py +78 -78
  61. pulumi_gcp/gkeonprem/outputs.py +52 -52
  62. pulumi_gcp/iap/client.py +4 -4
  63. pulumi_gcp/integrationconnectors/_inputs.py +30 -30
  64. pulumi_gcp/integrationconnectors/outputs.py +20 -20
  65. pulumi_gcp/kms/key_handle.py +7 -7
  66. pulumi_gcp/migrationcenter/_inputs.py +21 -129
  67. pulumi_gcp/migrationcenter/outputs.py +14 -86
  68. pulumi_gcp/netapp/volume.py +1 -1
  69. pulumi_gcp/networkconnectivity/_inputs.py +3 -6
  70. pulumi_gcp/networkconnectivity/hub.py +129 -49
  71. pulumi_gcp/networkconnectivity/outputs.py +2 -4
  72. pulumi_gcp/networkconnectivity/spoke.py +159 -104
  73. pulumi_gcp/networksecurity/tls_inspection_policy.py +2 -2
  74. pulumi_gcp/organizations/project.py +16 -7
  75. pulumi_gcp/orgpolicy/policy.py +4 -4
  76. pulumi_gcp/projects/get_project_service.py +11 -1
  77. pulumi_gcp/projects/service.py +68 -0
  78. pulumi_gcp/projects/service_identity.py +30 -2
  79. pulumi_gcp/pubsub/subscription.py +6 -6
  80. pulumi_gcp/pulumi-plugin.json +1 -1
  81. pulumi_gcp/securesourcemanager/instance.py +528 -4
  82. pulumi_gcp/securitycenter/__init__.py +1 -0
  83. pulumi_gcp/securitycenter/v2_organization_mute_config.py +673 -0
  84. pulumi_gcp/sql/_inputs.py +35 -15
  85. pulumi_gcp/sql/database_instance.py +2 -2
  86. pulumi_gcp/sql/outputs.py +50 -14
  87. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  88. pulumi_gcp/vmwareengine/get_private_cloud.py +21 -1
  89. pulumi_gcp/vmwareengine/private_cloud.py +121 -2
  90. pulumi_gcp/workbench/_inputs.py +77 -0
  91. pulumi_gcp/workbench/instance.py +18 -4
  92. pulumi_gcp/workbench/outputs.py +67 -1
  93. {pulumi_gcp-7.34.0a1722421695.dist-info → pulumi_gcp-7.35.0.dist-info}/METADATA +1 -1
  94. {pulumi_gcp-7.34.0a1722421695.dist-info → pulumi_gcp-7.35.0.dist-info}/RECORD +96 -91
  95. {pulumi_gcp-7.34.0a1722421695.dist-info → pulumi_gcp-7.35.0.dist-info}/WHEEL +0 -0
  96. {pulumi_gcp-7.34.0a1722421695.dist-info → pulumi_gcp-7.35.0.dist-info}/top_level.txt +0 -0
@@ -117,7 +117,11 @@ class Project(pulumi.CustomResource):
117
117
 
118
118
  * [API documentation](https://firebase.google.com/docs/reference/firebase-management/rest/v1beta1/projects)
119
119
  * How-to Guides
120
- * [Official Documentation](https://firebase.google.com/)
120
+ * Official Documentation
121
+
122
+ > **Note:** This resource should usually be used with a provider configuration
123
+ with `user_project_override = true` unless you wish for your quota
124
+ project to be different from the Firebase project.
121
125
 
122
126
  ## Example Usage
123
127
 
@@ -176,7 +180,11 @@ class Project(pulumi.CustomResource):
176
180
 
177
181
  * [API documentation](https://firebase.google.com/docs/reference/firebase-management/rest/v1beta1/projects)
178
182
  * How-to Guides
179
- * [Official Documentation](https://firebase.google.com/)
183
+ * Official Documentation
184
+
185
+ > **Note:** This resource should usually be used with a provider configuration
186
+ with `user_project_override = true` unless you wish for your quota
187
+ project to be different from the Firebase project.
180
188
 
181
189
  ## Example Usage
182
190
 
@@ -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
- This resource manages composite indexes and not single
280
- field indexes.
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 with
293
- `database_type` set to `"CLOUD_FIRESTORE"`. Your Firestore location
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
- This resource manages composite indexes and not single
428
- field indexes.
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 with
441
- `database_type` set to `"CLOUD_FIRESTORE"`. Your Firestore location
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
 
@@ -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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Examples: http://domain
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
- Examples: ["127.0.0.1", "example.com", ".corp", "localhost"].
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
- Examples: http://domain
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
- Examples: ["127.0.0.1", "example.com", ".corp", "localhost"].
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
- Examples: http://domain
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
- Examples: ["127.0.0.1", "example.com", ".corp", "localhost"].
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Examples: http://domain
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
- Examples: ["127.0.0.1", "example.com", ".corp", "localhost"].
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
- Examples: http://domain
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
- Examples: ["127.0.0.1", "example.com", ".corp", "localhost"].
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
- Examples: http://domain
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
- Examples: ["127.0.0.1", "example.com", ".corp", "localhost"].
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
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
- Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
5428
+ For example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
5429
5429
  """
5430
5430
  return pulumi.get(self, "labels")
5431
5431