pulumi-gcp 7.20.0a1713918100__py3-none-any.whl → 7.20.0a1713986537__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 +8 -0
- pulumi_gcp/apigee/organization.py +162 -0
- pulumi_gcp/artifactregistry/_inputs.py +186 -0
- pulumi_gcp/artifactregistry/outputs.py +297 -4
- pulumi_gcp/artifactregistry/repository.py +346 -16
- pulumi_gcp/bigquery/table.py +61 -0
- pulumi_gcp/billing/budget.py +54 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +16 -0
- pulumi_gcp/cloudfunctionsv2/function.py +110 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +25 -0
- pulumi_gcp/compute/_inputs.py +48 -0
- pulumi_gcp/compute/get_instance_group_manager.py +11 -1
- pulumi_gcp/compute/instance_group_manager.py +68 -21
- pulumi_gcp/compute/outputs.py +93 -0
- pulumi_gcp/compute/region_instance_group_manager.py +61 -14
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/dns/_inputs.py +0 -128
- pulumi_gcp/dns/get_keys.py +1 -1
- pulumi_gcp/dns/get_managed_zones.py +3 -9
- pulumi_gcp/dns/get_record_set.py +3 -0
- pulumi_gcp/dns/outputs.py +34 -56
- pulumi_gcp/firestore/document.py +4 -4
- pulumi_gcp/organizations/get_active_folder.py +18 -3
- pulumi_gcp/projects/__init__.py +1 -0
- pulumi_gcp/projects/iam_member_remove.py +313 -0
- pulumi_gcp/vmwareengine/_inputs.py +63 -5
- pulumi_gcp/vmwareengine/get_private_cloud.py +1 -21
- pulumi_gcp/vmwareengine/outputs.py +113 -5
- pulumi_gcp/vmwareengine/private_cloud.py +0 -94
- pulumi_gcp/workbench/instance.py +4 -4
- pulumi_gcp/workstations/workstation_cluster.py +32 -0
- {pulumi_gcp-7.20.0a1713918100.dist-info → pulumi_gcp-7.20.0a1713986537.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.20.0a1713918100.dist-info → pulumi_gcp-7.20.0a1713986537.dist-info}/RECORD +35 -34
- {pulumi_gcp-7.20.0a1713918100.dist-info → pulumi_gcp-7.20.0a1713986537.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.20.0a1713918100.dist-info → pulumi_gcp-7.20.0a1713986537.dist-info}/top_level.txt +0 -0
@@ -20,6 +20,7 @@ __all__ = [
|
|
20
20
|
'PrivateCloudHcx',
|
21
21
|
'PrivateCloudManagementCluster',
|
22
22
|
'PrivateCloudManagementClusterNodeTypeConfig',
|
23
|
+
'PrivateCloudManagementClusterStretchedClusterConfig',
|
23
24
|
'PrivateCloudNetworkConfig',
|
24
25
|
'PrivateCloudNsx',
|
25
26
|
'PrivateCloudVcenter',
|
@@ -33,6 +34,7 @@ __all__ = [
|
|
33
34
|
'GetPrivateCloudHcxResult',
|
34
35
|
'GetPrivateCloudManagementClusterResult',
|
35
36
|
'GetPrivateCloudManagementClusterNodeTypeConfigResult',
|
37
|
+
'GetPrivateCloudManagementClusterStretchedClusterConfigResult',
|
36
38
|
'GetPrivateCloudNetworkConfigResult',
|
37
39
|
'GetPrivateCloudNsxResult',
|
38
40
|
'GetPrivateCloudVcenterResult',
|
@@ -397,6 +399,8 @@ class PrivateCloudManagementCluster(dict):
|
|
397
399
|
suggest = "cluster_id"
|
398
400
|
elif key == "nodeTypeConfigs":
|
399
401
|
suggest = "node_type_configs"
|
402
|
+
elif key == "stretchedClusterConfig":
|
403
|
+
suggest = "stretched_cluster_config"
|
400
404
|
|
401
405
|
if suggest:
|
402
406
|
pulumi.log.warn(f"Key '{key}' not found in PrivateCloudManagementCluster. Access the value via the '{suggest}' property getter instead.")
|
@@ -411,7 +415,8 @@ class PrivateCloudManagementCluster(dict):
|
|
411
415
|
|
412
416
|
def __init__(__self__, *,
|
413
417
|
cluster_id: str,
|
414
|
-
node_type_configs: Optional[Sequence['outputs.PrivateCloudManagementClusterNodeTypeConfig']] = None
|
418
|
+
node_type_configs: Optional[Sequence['outputs.PrivateCloudManagementClusterNodeTypeConfig']] = None,
|
419
|
+
stretched_cluster_config: Optional['outputs.PrivateCloudManagementClusterStretchedClusterConfig'] = None):
|
415
420
|
"""
|
416
421
|
:param str cluster_id: The user-provided identifier of the new Cluster. The identifier must meet the following requirements:
|
417
422
|
* Only contains 1-63 alphanumeric characters and hyphens
|
@@ -422,10 +427,14 @@ class PrivateCloudManagementCluster(dict):
|
|
422
427
|
:param Sequence['PrivateCloudManagementClusterNodeTypeConfigArgs'] node_type_configs: The map of cluster node types in this cluster,
|
423
428
|
where the key is canonical identifier of the node type (corresponds to the NodeType).
|
424
429
|
Structure is documented below.
|
430
|
+
:param 'PrivateCloudManagementClusterStretchedClusterConfigArgs' stretched_cluster_config: The stretched cluster configuration for the private cloud.
|
431
|
+
Structure is documented below.
|
425
432
|
"""
|
426
433
|
pulumi.set(__self__, "cluster_id", cluster_id)
|
427
434
|
if node_type_configs is not None:
|
428
435
|
pulumi.set(__self__, "node_type_configs", node_type_configs)
|
436
|
+
if stretched_cluster_config is not None:
|
437
|
+
pulumi.set(__self__, "stretched_cluster_config", stretched_cluster_config)
|
429
438
|
|
430
439
|
@property
|
431
440
|
@pulumi.getter(name="clusterId")
|
@@ -450,6 +459,15 @@ class PrivateCloudManagementCluster(dict):
|
|
450
459
|
"""
|
451
460
|
return pulumi.get(self, "node_type_configs")
|
452
461
|
|
462
|
+
@property
|
463
|
+
@pulumi.getter(name="stretchedClusterConfig")
|
464
|
+
def stretched_cluster_config(self) -> Optional['outputs.PrivateCloudManagementClusterStretchedClusterConfig']:
|
465
|
+
"""
|
466
|
+
The stretched cluster configuration for the private cloud.
|
467
|
+
Structure is documented below.
|
468
|
+
"""
|
469
|
+
return pulumi.get(self, "stretched_cluster_config")
|
470
|
+
|
453
471
|
|
454
472
|
@pulumi.output_type
|
455
473
|
class PrivateCloudManagementClusterNodeTypeConfig(dict):
|
@@ -485,8 +503,6 @@ class PrivateCloudManagementClusterNodeTypeConfig(dict):
|
|
485
503
|
This number must always be one of `nodeType.availableCustomCoreCounts`.
|
486
504
|
If zero is provided max value from `nodeType.availableCustomCoreCounts` will be used.
|
487
505
|
This cannot be changed once the PrivateCloud is created.
|
488
|
-
|
489
|
-
- - -
|
490
506
|
"""
|
491
507
|
pulumi.set(__self__, "node_count", node_count)
|
492
508
|
pulumi.set(__self__, "node_type_id", node_type_id)
|
@@ -517,10 +533,62 @@ class PrivateCloudManagementClusterNodeTypeConfig(dict):
|
|
517
533
|
This number must always be one of `nodeType.availableCustomCoreCounts`.
|
518
534
|
If zero is provided max value from `nodeType.availableCustomCoreCounts` will be used.
|
519
535
|
This cannot be changed once the PrivateCloud is created.
|
536
|
+
"""
|
537
|
+
return pulumi.get(self, "custom_core_count")
|
538
|
+
|
539
|
+
|
540
|
+
@pulumi.output_type
|
541
|
+
class PrivateCloudManagementClusterStretchedClusterConfig(dict):
|
542
|
+
@staticmethod
|
543
|
+
def __key_warning(key: str):
|
544
|
+
suggest = None
|
545
|
+
if key == "preferredLocation":
|
546
|
+
suggest = "preferred_location"
|
547
|
+
elif key == "secondaryLocation":
|
548
|
+
suggest = "secondary_location"
|
549
|
+
|
550
|
+
if suggest:
|
551
|
+
pulumi.log.warn(f"Key '{key}' not found in PrivateCloudManagementClusterStretchedClusterConfig. Access the value via the '{suggest}' property getter instead.")
|
552
|
+
|
553
|
+
def __getitem__(self, key: str) -> Any:
|
554
|
+
PrivateCloudManagementClusterStretchedClusterConfig.__key_warning(key)
|
555
|
+
return super().__getitem__(key)
|
556
|
+
|
557
|
+
def get(self, key: str, default = None) -> Any:
|
558
|
+
PrivateCloudManagementClusterStretchedClusterConfig.__key_warning(key)
|
559
|
+
return super().get(key, default)
|
560
|
+
|
561
|
+
def __init__(__self__, *,
|
562
|
+
preferred_location: Optional[str] = None,
|
563
|
+
secondary_location: Optional[str] = None):
|
564
|
+
"""
|
565
|
+
:param str preferred_location: Zone that will remain operational when connection between the two zones is lost.
|
566
|
+
:param str secondary_location: Additional zone for a higher level of availability and load balancing.
|
567
|
+
|
568
|
+
- - -
|
569
|
+
"""
|
570
|
+
if preferred_location is not None:
|
571
|
+
pulumi.set(__self__, "preferred_location", preferred_location)
|
572
|
+
if secondary_location is not None:
|
573
|
+
pulumi.set(__self__, "secondary_location", secondary_location)
|
574
|
+
|
575
|
+
@property
|
576
|
+
@pulumi.getter(name="preferredLocation")
|
577
|
+
def preferred_location(self) -> Optional[str]:
|
578
|
+
"""
|
579
|
+
Zone that will remain operational when connection between the two zones is lost.
|
580
|
+
"""
|
581
|
+
return pulumi.get(self, "preferred_location")
|
582
|
+
|
583
|
+
@property
|
584
|
+
@pulumi.getter(name="secondaryLocation")
|
585
|
+
def secondary_location(self) -> Optional[str]:
|
586
|
+
"""
|
587
|
+
Additional zone for a higher level of availability and load balancing.
|
520
588
|
|
521
589
|
- - -
|
522
590
|
"""
|
523
|
-
return pulumi.get(self, "
|
591
|
+
return pulumi.get(self, "secondary_location")
|
524
592
|
|
525
593
|
|
526
594
|
@pulumi.output_type
|
@@ -1082,7 +1150,8 @@ class GetPrivateCloudHcxResult(dict):
|
|
1082
1150
|
class GetPrivateCloudManagementClusterResult(dict):
|
1083
1151
|
def __init__(__self__, *,
|
1084
1152
|
cluster_id: str,
|
1085
|
-
node_type_configs: Sequence['outputs.GetPrivateCloudManagementClusterNodeTypeConfigResult']
|
1153
|
+
node_type_configs: Sequence['outputs.GetPrivateCloudManagementClusterNodeTypeConfigResult'],
|
1154
|
+
stretched_cluster_configs: Sequence['outputs.GetPrivateCloudManagementClusterStretchedClusterConfigResult']):
|
1086
1155
|
"""
|
1087
1156
|
:param str cluster_id: The user-provided identifier of the new Cluster. The identifier must meet the following requirements:
|
1088
1157
|
* Only contains 1-63 alphanumeric characters and hyphens
|
@@ -1092,9 +1161,11 @@ class GetPrivateCloudManagementClusterResult(dict):
|
|
1092
1161
|
* Complies with RFC 1034 (https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
|
1093
1162
|
:param Sequence['GetPrivateCloudManagementClusterNodeTypeConfigArgs'] node_type_configs: The map of cluster node types in this cluster,
|
1094
1163
|
where the key is canonical identifier of the node type (corresponds to the NodeType).
|
1164
|
+
:param Sequence['GetPrivateCloudManagementClusterStretchedClusterConfigArgs'] stretched_cluster_configs: The stretched cluster configuration for the private cloud.
|
1095
1165
|
"""
|
1096
1166
|
pulumi.set(__self__, "cluster_id", cluster_id)
|
1097
1167
|
pulumi.set(__self__, "node_type_configs", node_type_configs)
|
1168
|
+
pulumi.set(__self__, "stretched_cluster_configs", stretched_cluster_configs)
|
1098
1169
|
|
1099
1170
|
@property
|
1100
1171
|
@pulumi.getter(name="clusterId")
|
@@ -1118,6 +1189,14 @@ class GetPrivateCloudManagementClusterResult(dict):
|
|
1118
1189
|
"""
|
1119
1190
|
return pulumi.get(self, "node_type_configs")
|
1120
1191
|
|
1192
|
+
@property
|
1193
|
+
@pulumi.getter(name="stretchedClusterConfigs")
|
1194
|
+
def stretched_cluster_configs(self) -> Sequence['outputs.GetPrivateCloudManagementClusterStretchedClusterConfigResult']:
|
1195
|
+
"""
|
1196
|
+
The stretched cluster configuration for the private cloud.
|
1197
|
+
"""
|
1198
|
+
return pulumi.get(self, "stretched_cluster_configs")
|
1199
|
+
|
1121
1200
|
|
1122
1201
|
@pulumi.output_type
|
1123
1202
|
class GetPrivateCloudManagementClusterNodeTypeConfigResult(dict):
|
@@ -1161,6 +1240,35 @@ class GetPrivateCloudManagementClusterNodeTypeConfigResult(dict):
|
|
1161
1240
|
return pulumi.get(self, "node_type_id")
|
1162
1241
|
|
1163
1242
|
|
1243
|
+
@pulumi.output_type
|
1244
|
+
class GetPrivateCloudManagementClusterStretchedClusterConfigResult(dict):
|
1245
|
+
def __init__(__self__, *,
|
1246
|
+
preferred_location: str,
|
1247
|
+
secondary_location: str):
|
1248
|
+
"""
|
1249
|
+
:param str preferred_location: Zone that will remain operational when connection between the two zones is lost.
|
1250
|
+
:param str secondary_location: Additional zone for a higher level of availability and load balancing.
|
1251
|
+
"""
|
1252
|
+
pulumi.set(__self__, "preferred_location", preferred_location)
|
1253
|
+
pulumi.set(__self__, "secondary_location", secondary_location)
|
1254
|
+
|
1255
|
+
@property
|
1256
|
+
@pulumi.getter(name="preferredLocation")
|
1257
|
+
def preferred_location(self) -> str:
|
1258
|
+
"""
|
1259
|
+
Zone that will remain operational when connection between the two zones is lost.
|
1260
|
+
"""
|
1261
|
+
return pulumi.get(self, "preferred_location")
|
1262
|
+
|
1263
|
+
@property
|
1264
|
+
@pulumi.getter(name="secondaryLocation")
|
1265
|
+
def secondary_location(self) -> str:
|
1266
|
+
"""
|
1267
|
+
Additional zone for a higher level of availability and load balancing.
|
1268
|
+
"""
|
1269
|
+
return pulumi.get(self, "secondary_location")
|
1270
|
+
|
1271
|
+
|
1164
1272
|
@pulumi.output_type
|
1165
1273
|
class GetPrivateCloudNetworkConfigResult(dict):
|
1166
1274
|
def __init__(__self__, *,
|
@@ -21,9 +21,7 @@ class PrivateCloudArgs:
|
|
21
21
|
network_config: pulumi.Input['PrivateCloudNetworkConfigArgs'],
|
22
22
|
description: Optional[pulumi.Input[str]] = None,
|
23
23
|
name: Optional[pulumi.Input[str]] = None,
|
24
|
-
preferred_zone: Optional[pulumi.Input[str]] = None,
|
25
24
|
project: Optional[pulumi.Input[str]] = None,
|
26
|
-
secondary_zone: Optional[pulumi.Input[str]] = None,
|
27
25
|
type: Optional[pulumi.Input[str]] = None):
|
28
26
|
"""
|
29
27
|
The set of arguments for constructing a PrivateCloud resource.
|
@@ -34,8 +32,6 @@ class PrivateCloudArgs:
|
|
34
32
|
Structure is documented below.
|
35
33
|
:param pulumi.Input[str] description: User-provided description for this private cloud.
|
36
34
|
:param pulumi.Input[str] name: The ID of the PrivateCloud.
|
37
|
-
:param pulumi.Input[str] preferred_zone: The preferred single failure domain within a region.
|
38
|
-
:param pulumi.Input[str] secondary_zone: The secondary single failure domain within a region.
|
39
35
|
:param pulumi.Input[str] type: Initial type of the private cloud. Possible values: ["STANDARD", "TIME_LIMITED", "STRETCHED"]
|
40
36
|
"""
|
41
37
|
pulumi.set(__self__, "location", location)
|
@@ -45,12 +41,8 @@ class PrivateCloudArgs:
|
|
45
41
|
pulumi.set(__self__, "description", description)
|
46
42
|
if name is not None:
|
47
43
|
pulumi.set(__self__, "name", name)
|
48
|
-
if preferred_zone is not None:
|
49
|
-
pulumi.set(__self__, "preferred_zone", preferred_zone)
|
50
44
|
if project is not None:
|
51
45
|
pulumi.set(__self__, "project", project)
|
52
|
-
if secondary_zone is not None:
|
53
|
-
pulumi.set(__self__, "secondary_zone", secondary_zone)
|
54
46
|
if type is not None:
|
55
47
|
pulumi.set(__self__, "type", type)
|
56
48
|
|
@@ -116,18 +108,6 @@ class PrivateCloudArgs:
|
|
116
108
|
def name(self, value: Optional[pulumi.Input[str]]):
|
117
109
|
pulumi.set(self, "name", value)
|
118
110
|
|
119
|
-
@property
|
120
|
-
@pulumi.getter(name="preferredZone")
|
121
|
-
def preferred_zone(self) -> Optional[pulumi.Input[str]]:
|
122
|
-
"""
|
123
|
-
The preferred single failure domain within a region.
|
124
|
-
"""
|
125
|
-
return pulumi.get(self, "preferred_zone")
|
126
|
-
|
127
|
-
@preferred_zone.setter
|
128
|
-
def preferred_zone(self, value: Optional[pulumi.Input[str]]):
|
129
|
-
pulumi.set(self, "preferred_zone", value)
|
130
|
-
|
131
111
|
@property
|
132
112
|
@pulumi.getter
|
133
113
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -137,18 +117,6 @@ class PrivateCloudArgs:
|
|
137
117
|
def project(self, value: Optional[pulumi.Input[str]]):
|
138
118
|
pulumi.set(self, "project", value)
|
139
119
|
|
140
|
-
@property
|
141
|
-
@pulumi.getter(name="secondaryZone")
|
142
|
-
def secondary_zone(self) -> Optional[pulumi.Input[str]]:
|
143
|
-
"""
|
144
|
-
The secondary single failure domain within a region.
|
145
|
-
"""
|
146
|
-
return pulumi.get(self, "secondary_zone")
|
147
|
-
|
148
|
-
@secondary_zone.setter
|
149
|
-
def secondary_zone(self, value: Optional[pulumi.Input[str]]):
|
150
|
-
pulumi.set(self, "secondary_zone", value)
|
151
|
-
|
152
120
|
@property
|
153
121
|
@pulumi.getter
|
154
122
|
def type(self) -> Optional[pulumi.Input[str]]:
|
@@ -172,9 +140,7 @@ class _PrivateCloudState:
|
|
172
140
|
name: Optional[pulumi.Input[str]] = None,
|
173
141
|
network_config: Optional[pulumi.Input['PrivateCloudNetworkConfigArgs']] = None,
|
174
142
|
nsxes: Optional[pulumi.Input[Sequence[pulumi.Input['PrivateCloudNsxArgs']]]] = None,
|
175
|
-
preferred_zone: Optional[pulumi.Input[str]] = None,
|
176
143
|
project: Optional[pulumi.Input[str]] = None,
|
177
|
-
secondary_zone: Optional[pulumi.Input[str]] = None,
|
178
144
|
state: Optional[pulumi.Input[str]] = None,
|
179
145
|
type: Optional[pulumi.Input[str]] = None,
|
180
146
|
uid: Optional[pulumi.Input[str]] = None,
|
@@ -192,8 +158,6 @@ class _PrivateCloudState:
|
|
192
158
|
Structure is documented below.
|
193
159
|
:param pulumi.Input[Sequence[pulumi.Input['PrivateCloudNsxArgs']]] nsxes: Details about a NSX Manager appliance.
|
194
160
|
Structure is documented below.
|
195
|
-
:param pulumi.Input[str] preferred_zone: The preferred single failure domain within a region.
|
196
|
-
:param pulumi.Input[str] secondary_zone: The secondary single failure domain within a region.
|
197
161
|
:param pulumi.Input[str] state: State of the appliance.
|
198
162
|
Possible values are: `ACTIVE`, `CREATING`.
|
199
163
|
:param pulumi.Input[str] type: Initial type of the private cloud. Possible values: ["STANDARD", "TIME_LIMITED", "STRETCHED"]
|
@@ -215,12 +179,8 @@ class _PrivateCloudState:
|
|
215
179
|
pulumi.set(__self__, "network_config", network_config)
|
216
180
|
if nsxes is not None:
|
217
181
|
pulumi.set(__self__, "nsxes", nsxes)
|
218
|
-
if preferred_zone is not None:
|
219
|
-
pulumi.set(__self__, "preferred_zone", preferred_zone)
|
220
182
|
if project is not None:
|
221
183
|
pulumi.set(__self__, "project", project)
|
222
|
-
if secondary_zone is not None:
|
223
|
-
pulumi.set(__self__, "secondary_zone", secondary_zone)
|
224
184
|
if state is not None:
|
225
185
|
pulumi.set(__self__, "state", state)
|
226
186
|
if type is not None:
|
@@ -318,18 +278,6 @@ class _PrivateCloudState:
|
|
318
278
|
def nsxes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PrivateCloudNsxArgs']]]]):
|
319
279
|
pulumi.set(self, "nsxes", value)
|
320
280
|
|
321
|
-
@property
|
322
|
-
@pulumi.getter(name="preferredZone")
|
323
|
-
def preferred_zone(self) -> Optional[pulumi.Input[str]]:
|
324
|
-
"""
|
325
|
-
The preferred single failure domain within a region.
|
326
|
-
"""
|
327
|
-
return pulumi.get(self, "preferred_zone")
|
328
|
-
|
329
|
-
@preferred_zone.setter
|
330
|
-
def preferred_zone(self, value: Optional[pulumi.Input[str]]):
|
331
|
-
pulumi.set(self, "preferred_zone", value)
|
332
|
-
|
333
281
|
@property
|
334
282
|
@pulumi.getter
|
335
283
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -339,18 +287,6 @@ class _PrivateCloudState:
|
|
339
287
|
def project(self, value: Optional[pulumi.Input[str]]):
|
340
288
|
pulumi.set(self, "project", value)
|
341
289
|
|
342
|
-
@property
|
343
|
-
@pulumi.getter(name="secondaryZone")
|
344
|
-
def secondary_zone(self) -> Optional[pulumi.Input[str]]:
|
345
|
-
"""
|
346
|
-
The secondary single failure domain within a region.
|
347
|
-
"""
|
348
|
-
return pulumi.get(self, "secondary_zone")
|
349
|
-
|
350
|
-
@secondary_zone.setter
|
351
|
-
def secondary_zone(self, value: Optional[pulumi.Input[str]]):
|
352
|
-
pulumi.set(self, "secondary_zone", value)
|
353
|
-
|
354
290
|
@property
|
355
291
|
@pulumi.getter
|
356
292
|
def state(self) -> Optional[pulumi.Input[str]]:
|
@@ -412,9 +348,7 @@ class PrivateCloud(pulumi.CustomResource):
|
|
412
348
|
management_cluster: Optional[pulumi.Input[pulumi.InputType['PrivateCloudManagementClusterArgs']]] = None,
|
413
349
|
name: Optional[pulumi.Input[str]] = None,
|
414
350
|
network_config: Optional[pulumi.Input[pulumi.InputType['PrivateCloudNetworkConfigArgs']]] = None,
|
415
|
-
preferred_zone: Optional[pulumi.Input[str]] = None,
|
416
351
|
project: Optional[pulumi.Input[str]] = None,
|
417
|
-
secondary_zone: Optional[pulumi.Input[str]] = None,
|
418
352
|
type: Optional[pulumi.Input[str]] = None,
|
419
353
|
__props__=None):
|
420
354
|
"""
|
@@ -516,8 +450,6 @@ class PrivateCloud(pulumi.CustomResource):
|
|
516
450
|
:param pulumi.Input[str] name: The ID of the PrivateCloud.
|
517
451
|
:param pulumi.Input[pulumi.InputType['PrivateCloudNetworkConfigArgs']] network_config: Network configuration in the consumer project with which the peering has to be done.
|
518
452
|
Structure is documented below.
|
519
|
-
:param pulumi.Input[str] preferred_zone: The preferred single failure domain within a region.
|
520
|
-
:param pulumi.Input[str] secondary_zone: The secondary single failure domain within a region.
|
521
453
|
:param pulumi.Input[str] type: Initial type of the private cloud. Possible values: ["STANDARD", "TIME_LIMITED", "STRETCHED"]
|
522
454
|
"""
|
523
455
|
...
|
@@ -636,9 +568,7 @@ class PrivateCloud(pulumi.CustomResource):
|
|
636
568
|
management_cluster: Optional[pulumi.Input[pulumi.InputType['PrivateCloudManagementClusterArgs']]] = None,
|
637
569
|
name: Optional[pulumi.Input[str]] = None,
|
638
570
|
network_config: Optional[pulumi.Input[pulumi.InputType['PrivateCloudNetworkConfigArgs']]] = None,
|
639
|
-
preferred_zone: Optional[pulumi.Input[str]] = None,
|
640
571
|
project: Optional[pulumi.Input[str]] = None,
|
641
|
-
secondary_zone: Optional[pulumi.Input[str]] = None,
|
642
572
|
type: Optional[pulumi.Input[str]] = None,
|
643
573
|
__props__=None):
|
644
574
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -660,9 +590,7 @@ class PrivateCloud(pulumi.CustomResource):
|
|
660
590
|
if network_config is None and not opts.urn:
|
661
591
|
raise TypeError("Missing required property 'network_config'")
|
662
592
|
__props__.__dict__["network_config"] = network_config
|
663
|
-
__props__.__dict__["preferred_zone"] = preferred_zone
|
664
593
|
__props__.__dict__["project"] = project
|
665
|
-
__props__.__dict__["secondary_zone"] = secondary_zone
|
666
594
|
__props__.__dict__["type"] = type
|
667
595
|
__props__.__dict__["hcxes"] = None
|
668
596
|
__props__.__dict__["nsxes"] = None
|
@@ -686,9 +614,7 @@ class PrivateCloud(pulumi.CustomResource):
|
|
686
614
|
name: Optional[pulumi.Input[str]] = None,
|
687
615
|
network_config: Optional[pulumi.Input[pulumi.InputType['PrivateCloudNetworkConfigArgs']]] = None,
|
688
616
|
nsxes: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PrivateCloudNsxArgs']]]]] = None,
|
689
|
-
preferred_zone: Optional[pulumi.Input[str]] = None,
|
690
617
|
project: Optional[pulumi.Input[str]] = None,
|
691
|
-
secondary_zone: Optional[pulumi.Input[str]] = None,
|
692
618
|
state: Optional[pulumi.Input[str]] = None,
|
693
619
|
type: Optional[pulumi.Input[str]] = None,
|
694
620
|
uid: Optional[pulumi.Input[str]] = None,
|
@@ -711,8 +637,6 @@ class PrivateCloud(pulumi.CustomResource):
|
|
711
637
|
Structure is documented below.
|
712
638
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PrivateCloudNsxArgs']]]] nsxes: Details about a NSX Manager appliance.
|
713
639
|
Structure is documented below.
|
714
|
-
:param pulumi.Input[str] preferred_zone: The preferred single failure domain within a region.
|
715
|
-
:param pulumi.Input[str] secondary_zone: The secondary single failure domain within a region.
|
716
640
|
:param pulumi.Input[str] state: State of the appliance.
|
717
641
|
Possible values are: `ACTIVE`, `CREATING`.
|
718
642
|
:param pulumi.Input[str] type: Initial type of the private cloud. Possible values: ["STANDARD", "TIME_LIMITED", "STRETCHED"]
|
@@ -731,9 +655,7 @@ class PrivateCloud(pulumi.CustomResource):
|
|
731
655
|
__props__.__dict__["name"] = name
|
732
656
|
__props__.__dict__["network_config"] = network_config
|
733
657
|
__props__.__dict__["nsxes"] = nsxes
|
734
|
-
__props__.__dict__["preferred_zone"] = preferred_zone
|
735
658
|
__props__.__dict__["project"] = project
|
736
|
-
__props__.__dict__["secondary_zone"] = secondary_zone
|
737
659
|
__props__.__dict__["state"] = state
|
738
660
|
__props__.__dict__["type"] = type
|
739
661
|
__props__.__dict__["uid"] = uid
|
@@ -800,27 +722,11 @@ class PrivateCloud(pulumi.CustomResource):
|
|
800
722
|
"""
|
801
723
|
return pulumi.get(self, "nsxes")
|
802
724
|
|
803
|
-
@property
|
804
|
-
@pulumi.getter(name="preferredZone")
|
805
|
-
def preferred_zone(self) -> pulumi.Output[Optional[str]]:
|
806
|
-
"""
|
807
|
-
The preferred single failure domain within a region.
|
808
|
-
"""
|
809
|
-
return pulumi.get(self, "preferred_zone")
|
810
|
-
|
811
725
|
@property
|
812
726
|
@pulumi.getter
|
813
727
|
def project(self) -> pulumi.Output[str]:
|
814
728
|
return pulumi.get(self, "project")
|
815
729
|
|
816
|
-
@property
|
817
|
-
@pulumi.getter(name="secondaryZone")
|
818
|
-
def secondary_zone(self) -> pulumi.Output[Optional[str]]:
|
819
|
-
"""
|
820
|
-
The secondary single failure domain within a region.
|
821
|
-
"""
|
822
|
-
return pulumi.get(self, "secondary_zone")
|
823
|
-
|
824
730
|
@property
|
825
731
|
@pulumi.getter
|
826
732
|
def state(self) -> pulumi.Output[str]:
|
pulumi_gcp/workbench/instance.py
CHANGED
@@ -596,8 +596,8 @@ class Instance(pulumi.CustomResource):
|
|
596
596
|
core_count="1",
|
597
597
|
)],
|
598
598
|
vm_image=gcp.workbench.InstanceGceSetupVmImageArgs(
|
599
|
-
project="
|
600
|
-
family="
|
599
|
+
project="cloud-notebooks-managed",
|
600
|
+
family="workbench-instances",
|
601
601
|
),
|
602
602
|
))
|
603
603
|
```
|
@@ -796,8 +796,8 @@ class Instance(pulumi.CustomResource):
|
|
796
796
|
core_count="1",
|
797
797
|
)],
|
798
798
|
vm_image=gcp.workbench.InstanceGceSetupVmImageArgs(
|
799
|
-
project="
|
800
|
-
family="
|
799
|
+
project="cloud-notebooks-managed",
|
800
|
+
family="workbench-instances",
|
801
801
|
),
|
802
802
|
))
|
803
803
|
```
|
@@ -207,6 +207,7 @@ class _WorkstationClusterState:
|
|
207
207
|
def __init__(__self__, *,
|
208
208
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
209
209
|
conditions: Optional[pulumi.Input[Sequence[pulumi.Input['WorkstationClusterConditionArgs']]]] = None,
|
210
|
+
control_plane_ip: Optional[pulumi.Input[str]] = None,
|
210
211
|
create_time: Optional[pulumi.Input[str]] = None,
|
211
212
|
degraded: Optional[pulumi.Input[bool]] = None,
|
212
213
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -231,6 +232,8 @@ class _WorkstationClusterState:
|
|
231
232
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
232
233
|
:param pulumi.Input[Sequence[pulumi.Input['WorkstationClusterConditionArgs']]] conditions: Status conditions describing the current resource state.
|
233
234
|
Structure is documented below.
|
235
|
+
:param pulumi.Input[str] control_plane_ip: The private IP address of the control plane for this workstation cluster.
|
236
|
+
Workstation VMs need access to this IP address to work with the service, so make sure that your firewall rules allow egress from the workstation VMs to this address.
|
234
237
|
:param pulumi.Input[str] create_time: Time when this resource was created.
|
235
238
|
:param pulumi.Input[bool] degraded: Whether this resource is in degraded mode, in which case it may require user action to restore full functionality.
|
236
239
|
Details can be found in the conditions field.
|
@@ -267,6 +270,8 @@ class _WorkstationClusterState:
|
|
267
270
|
pulumi.set(__self__, "annotations", annotations)
|
268
271
|
if conditions is not None:
|
269
272
|
pulumi.set(__self__, "conditions", conditions)
|
273
|
+
if control_plane_ip is not None:
|
274
|
+
pulumi.set(__self__, "control_plane_ip", control_plane_ip)
|
270
275
|
if create_time is not None:
|
271
276
|
pulumi.set(__self__, "create_time", create_time)
|
272
277
|
if degraded is not None:
|
@@ -329,6 +334,19 @@ class _WorkstationClusterState:
|
|
329
334
|
def conditions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['WorkstationClusterConditionArgs']]]]):
|
330
335
|
pulumi.set(self, "conditions", value)
|
331
336
|
|
337
|
+
@property
|
338
|
+
@pulumi.getter(name="controlPlaneIp")
|
339
|
+
def control_plane_ip(self) -> Optional[pulumi.Input[str]]:
|
340
|
+
"""
|
341
|
+
The private IP address of the control plane for this workstation cluster.
|
342
|
+
Workstation VMs need access to this IP address to work with the service, so make sure that your firewall rules allow egress from the workstation VMs to this address.
|
343
|
+
"""
|
344
|
+
return pulumi.get(self, "control_plane_ip")
|
345
|
+
|
346
|
+
@control_plane_ip.setter
|
347
|
+
def control_plane_ip(self, value: Optional[pulumi.Input[str]]):
|
348
|
+
pulumi.set(self, "control_plane_ip", value)
|
349
|
+
|
332
350
|
@property
|
333
351
|
@pulumi.getter(name="createTime")
|
334
352
|
def create_time(self) -> Optional[pulumi.Input[str]]:
|
@@ -882,6 +900,7 @@ class WorkstationCluster(pulumi.CustomResource):
|
|
882
900
|
raise TypeError("Missing required property 'workstation_cluster_id'")
|
883
901
|
__props__.__dict__["workstation_cluster_id"] = workstation_cluster_id
|
884
902
|
__props__.__dict__["conditions"] = None
|
903
|
+
__props__.__dict__["control_plane_ip"] = None
|
885
904
|
__props__.__dict__["create_time"] = None
|
886
905
|
__props__.__dict__["degraded"] = None
|
887
906
|
__props__.__dict__["effective_annotations"] = None
|
@@ -904,6 +923,7 @@ class WorkstationCluster(pulumi.CustomResource):
|
|
904
923
|
opts: Optional[pulumi.ResourceOptions] = None,
|
905
924
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
906
925
|
conditions: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkstationClusterConditionArgs']]]]] = None,
|
926
|
+
control_plane_ip: Optional[pulumi.Input[str]] = None,
|
907
927
|
create_time: Optional[pulumi.Input[str]] = None,
|
908
928
|
degraded: Optional[pulumi.Input[bool]] = None,
|
909
929
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -933,6 +953,8 @@ class WorkstationCluster(pulumi.CustomResource):
|
|
933
953
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
934
954
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['WorkstationClusterConditionArgs']]]] conditions: Status conditions describing the current resource state.
|
935
955
|
Structure is documented below.
|
956
|
+
:param pulumi.Input[str] control_plane_ip: The private IP address of the control plane for this workstation cluster.
|
957
|
+
Workstation VMs need access to this IP address to work with the service, so make sure that your firewall rules allow egress from the workstation VMs to this address.
|
936
958
|
:param pulumi.Input[str] create_time: Time when this resource was created.
|
937
959
|
:param pulumi.Input[bool] degraded: Whether this resource is in degraded mode, in which case it may require user action to restore full functionality.
|
938
960
|
Details can be found in the conditions field.
|
@@ -971,6 +993,7 @@ class WorkstationCluster(pulumi.CustomResource):
|
|
971
993
|
|
972
994
|
__props__.__dict__["annotations"] = annotations
|
973
995
|
__props__.__dict__["conditions"] = conditions
|
996
|
+
__props__.__dict__["control_plane_ip"] = control_plane_ip
|
974
997
|
__props__.__dict__["create_time"] = create_time
|
975
998
|
__props__.__dict__["degraded"] = degraded
|
976
999
|
__props__.__dict__["display_name"] = display_name
|
@@ -1009,6 +1032,15 @@ class WorkstationCluster(pulumi.CustomResource):
|
|
1009
1032
|
"""
|
1010
1033
|
return pulumi.get(self, "conditions")
|
1011
1034
|
|
1035
|
+
@property
|
1036
|
+
@pulumi.getter(name="controlPlaneIp")
|
1037
|
+
def control_plane_ip(self) -> pulumi.Output[str]:
|
1038
|
+
"""
|
1039
|
+
The private IP address of the control plane for this workstation cluster.
|
1040
|
+
Workstation VMs need access to this IP address to work with the service, so make sure that your firewall rules allow egress from the workstation VMs to this address.
|
1041
|
+
"""
|
1042
|
+
return pulumi.get(self, "control_plane_ip")
|
1043
|
+
|
1012
1044
|
@property
|
1013
1045
|
@pulumi.getter(name="createTime")
|
1014
1046
|
def create_time(self) -> pulumi.Output[str]:
|