pulumi-gcp 7.20.0__py3-none-any.whl → 7.20.0a1713984378__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 +0 -8
- pulumi_gcp/apigee/organization.py +0 -162
- pulumi_gcp/artifactregistry/_inputs.py +0 -186
- pulumi_gcp/artifactregistry/outputs.py +4 -297
- pulumi_gcp/artifactregistry/repository.py +16 -346
- pulumi_gcp/bigquery/table.py +0 -61
- pulumi_gcp/billing/budget.py +0 -54
- pulumi_gcp/cloudfunctionsv2/_inputs.py +0 -16
- pulumi_gcp/cloudfunctionsv2/function.py +0 -110
- pulumi_gcp/cloudfunctionsv2/outputs.py +0 -25
- pulumi_gcp/compute/_inputs.py +0 -48
- pulumi_gcp/compute/get_instance_group_manager.py +1 -11
- pulumi_gcp/compute/instance_group_manager.py +21 -68
- pulumi_gcp/compute/outputs.py +0 -93
- pulumi_gcp/compute/region_instance_group_manager.py +14 -61
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/dns/_inputs.py +128 -0
- pulumi_gcp/dns/get_keys.py +1 -1
- pulumi_gcp/dns/get_managed_zones.py +9 -3
- pulumi_gcp/dns/get_record_set.py +0 -3
- pulumi_gcp/dns/outputs.py +56 -34
- pulumi_gcp/firestore/document.py +4 -4
- pulumi_gcp/organizations/get_active_folder.py +3 -18
- pulumi_gcp/projects/__init__.py +0 -1
- pulumi_gcp/vmwareengine/_inputs.py +5 -63
- pulumi_gcp/vmwareengine/get_private_cloud.py +21 -1
- pulumi_gcp/vmwareengine/outputs.py +5 -113
- pulumi_gcp/vmwareengine/private_cloud.py +94 -0
- pulumi_gcp/workbench/instance.py +4 -4
- pulumi_gcp/workstations/workstation_cluster.py +0 -32
- {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713984378.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713984378.dist-info}/RECORD +34 -35
- pulumi_gcp/projects/iam_member_remove.py +0 -313
- {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713984378.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713984378.dist-info}/top_level.txt +0 -0
@@ -25,7 +25,6 @@ class InstanceGroupManagerArgs:
|
|
25
25
|
list_managed_instances_results: Optional[pulumi.Input[str]] = None,
|
26
26
|
name: Optional[pulumi.Input[str]] = None,
|
27
27
|
named_ports: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerNamedPortArgs']]]] = None,
|
28
|
-
params: Optional[pulumi.Input['InstanceGroupManagerParamsArgs']] = None,
|
29
28
|
project: Optional[pulumi.Input[str]] = None,
|
30
29
|
stateful_disks: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerStatefulDiskArgs']]]] = None,
|
31
30
|
stateful_external_ips: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerStatefulExternalIpArgs']]]] = None,
|
@@ -67,9 +66,6 @@ class InstanceGroupManagerArgs:
|
|
67
66
|
include lowercase letters, numbers, and hyphens.
|
68
67
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerNamedPortArgs']]] named_ports: The named port configuration. See the section below
|
69
68
|
for details on configuration.
|
70
|
-
:param pulumi.Input['InstanceGroupManagerParamsArgs'] params: Input only additional params for instance group manager creation. Structure is documented below. For more information, see [API](https://cloud.google.com/compute/docs/reference/rest/beta/instanceGroupManagers/insert).
|
71
|
-
|
72
|
-
- - -
|
73
69
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
|
74
70
|
is not provided, the provider project is used.
|
75
71
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerStatefulDiskArgs']]] stateful_disks: Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs).
|
@@ -80,7 +76,9 @@ class InstanceGroupManagerArgs:
|
|
80
76
|
not affect existing instances.
|
81
77
|
:param pulumi.Input[int] target_size: The target number of running instances for this managed instance group. This value should always be explicitly set
|
82
78
|
unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
|
83
|
-
:param pulumi.Input['InstanceGroupManagerUpdatePolicyArgs'] update_policy: The update policy for this managed instance group. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/updating-managed-instance-groups) and [API](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroupManagers/patch)
|
79
|
+
:param pulumi.Input['InstanceGroupManagerUpdatePolicyArgs'] update_policy: The update policy for this managed instance group. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/updating-managed-instance-groups) and [API](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroupManagers/patch)
|
80
|
+
|
81
|
+
- - -
|
84
82
|
:param pulumi.Input[bool] wait_for_instances: Whether to wait for all instances to be created/updated before
|
85
83
|
returning. Note that if this is set to true and the operation does not succeed, this provider will
|
86
84
|
continue trying until it times out.
|
@@ -109,8 +107,6 @@ class InstanceGroupManagerArgs:
|
|
109
107
|
pulumi.set(__self__, "name", name)
|
110
108
|
if named_ports is not None:
|
111
109
|
pulumi.set(__self__, "named_ports", named_ports)
|
112
|
-
if params is not None:
|
113
|
-
pulumi.set(__self__, "params", params)
|
114
110
|
if project is not None:
|
115
111
|
pulumi.set(__self__, "project", project)
|
116
112
|
if stateful_disks is not None:
|
@@ -260,20 +256,6 @@ class InstanceGroupManagerArgs:
|
|
260
256
|
def named_ports(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerNamedPortArgs']]]]):
|
261
257
|
pulumi.set(self, "named_ports", value)
|
262
258
|
|
263
|
-
@property
|
264
|
-
@pulumi.getter
|
265
|
-
def params(self) -> Optional[pulumi.Input['InstanceGroupManagerParamsArgs']]:
|
266
|
-
"""
|
267
|
-
Input only additional params for instance group manager creation. Structure is documented below. For more information, see [API](https://cloud.google.com/compute/docs/reference/rest/beta/instanceGroupManagers/insert).
|
268
|
-
|
269
|
-
- - -
|
270
|
-
"""
|
271
|
-
return pulumi.get(self, "params")
|
272
|
-
|
273
|
-
@params.setter
|
274
|
-
def params(self, value: Optional[pulumi.Input['InstanceGroupManagerParamsArgs']]):
|
275
|
-
pulumi.set(self, "params", value)
|
276
|
-
|
277
259
|
@property
|
278
260
|
@pulumi.getter
|
279
261
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -354,7 +336,9 @@ class InstanceGroupManagerArgs:
|
|
354
336
|
@pulumi.getter(name="updatePolicy")
|
355
337
|
def update_policy(self) -> Optional[pulumi.Input['InstanceGroupManagerUpdatePolicyArgs']]:
|
356
338
|
"""
|
357
|
-
The update policy for this managed instance group. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/updating-managed-instance-groups) and [API](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroupManagers/patch)
|
339
|
+
The update policy for this managed instance group. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/updating-managed-instance-groups) and [API](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroupManagers/patch)
|
340
|
+
|
341
|
+
- - -
|
358
342
|
"""
|
359
343
|
return pulumi.get(self, "update_policy")
|
360
344
|
|
@@ -422,7 +406,6 @@ class _InstanceGroupManagerState:
|
|
422
406
|
name: Optional[pulumi.Input[str]] = None,
|
423
407
|
named_ports: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerNamedPortArgs']]]] = None,
|
424
408
|
operation: Optional[pulumi.Input[str]] = None,
|
425
|
-
params: Optional[pulumi.Input['InstanceGroupManagerParamsArgs']] = None,
|
426
409
|
project: Optional[pulumi.Input[str]] = None,
|
427
410
|
self_link: Optional[pulumi.Input[str]] = None,
|
428
411
|
stateful_disks: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerStatefulDiskArgs']]]] = None,
|
@@ -467,9 +450,6 @@ class _InstanceGroupManagerState:
|
|
467
450
|
include lowercase letters, numbers, and hyphens.
|
468
451
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerNamedPortArgs']]] named_ports: The named port configuration. See the section below
|
469
452
|
for details on configuration.
|
470
|
-
:param pulumi.Input['InstanceGroupManagerParamsArgs'] params: Input only additional params for instance group manager creation. Structure is documented below. For more information, see [API](https://cloud.google.com/compute/docs/reference/rest/beta/instanceGroupManagers/insert).
|
471
|
-
|
472
|
-
- - -
|
473
453
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
|
474
454
|
is not provided, the provider project is used.
|
475
455
|
:param pulumi.Input[str] self_link: The URL of the created resource.
|
@@ -482,7 +462,9 @@ class _InstanceGroupManagerState:
|
|
482
462
|
not affect existing instances.
|
483
463
|
:param pulumi.Input[int] target_size: The target number of running instances for this managed instance group. This value should always be explicitly set
|
484
464
|
unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
|
485
|
-
:param pulumi.Input['InstanceGroupManagerUpdatePolicyArgs'] update_policy: The update policy for this managed instance group. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/updating-managed-instance-groups) and [API](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroupManagers/patch)
|
465
|
+
:param pulumi.Input['InstanceGroupManagerUpdatePolicyArgs'] update_policy: The update policy for this managed instance group. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/updating-managed-instance-groups) and [API](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroupManagers/patch)
|
466
|
+
|
467
|
+
- - -
|
486
468
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerVersionArgs']]] versions: Application versions managed by this instance group. Each
|
487
469
|
version deals with a specific instance template, allowing canary release scenarios.
|
488
470
|
Structure is documented below.
|
@@ -522,8 +504,6 @@ class _InstanceGroupManagerState:
|
|
522
504
|
pulumi.set(__self__, "named_ports", named_ports)
|
523
505
|
if operation is not None:
|
524
506
|
pulumi.set(__self__, "operation", operation)
|
525
|
-
if params is not None:
|
526
|
-
pulumi.set(__self__, "params", params)
|
527
507
|
if project is not None:
|
528
508
|
pulumi.set(__self__, "project", project)
|
529
509
|
if self_link is not None:
|
@@ -710,20 +690,6 @@ class _InstanceGroupManagerState:
|
|
710
690
|
def operation(self, value: Optional[pulumi.Input[str]]):
|
711
691
|
pulumi.set(self, "operation", value)
|
712
692
|
|
713
|
-
@property
|
714
|
-
@pulumi.getter
|
715
|
-
def params(self) -> Optional[pulumi.Input['InstanceGroupManagerParamsArgs']]:
|
716
|
-
"""
|
717
|
-
Input only additional params for instance group manager creation. Structure is documented below. For more information, see [API](https://cloud.google.com/compute/docs/reference/rest/beta/instanceGroupManagers/insert).
|
718
|
-
|
719
|
-
- - -
|
720
|
-
"""
|
721
|
-
return pulumi.get(self, "params")
|
722
|
-
|
723
|
-
@params.setter
|
724
|
-
def params(self, value: Optional[pulumi.Input['InstanceGroupManagerParamsArgs']]):
|
725
|
-
pulumi.set(self, "params", value)
|
726
|
-
|
727
693
|
@property
|
728
694
|
@pulumi.getter
|
729
695
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -828,7 +794,9 @@ class _InstanceGroupManagerState:
|
|
828
794
|
@pulumi.getter(name="updatePolicy")
|
829
795
|
def update_policy(self) -> Optional[pulumi.Input['InstanceGroupManagerUpdatePolicyArgs']]:
|
830
796
|
"""
|
831
|
-
The update policy for this managed instance group. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/updating-managed-instance-groups) and [API](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroupManagers/patch)
|
797
|
+
The update policy for this managed instance group. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/updating-managed-instance-groups) and [API](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroupManagers/patch)
|
798
|
+
|
799
|
+
- - -
|
832
800
|
"""
|
833
801
|
return pulumi.get(self, "update_policy")
|
834
802
|
|
@@ -908,7 +876,6 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
908
876
|
list_managed_instances_results: Optional[pulumi.Input[str]] = None,
|
909
877
|
name: Optional[pulumi.Input[str]] = None,
|
910
878
|
named_ports: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerNamedPortArgs']]]]] = None,
|
911
|
-
params: Optional[pulumi.Input[pulumi.InputType['InstanceGroupManagerParamsArgs']]] = None,
|
912
879
|
project: Optional[pulumi.Input[str]] = None,
|
913
880
|
stateful_disks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerStatefulDiskArgs']]]]] = None,
|
914
881
|
stateful_external_ips: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerStatefulExternalIpArgs']]]]] = None,
|
@@ -1057,9 +1024,6 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1057
1024
|
include lowercase letters, numbers, and hyphens.
|
1058
1025
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerNamedPortArgs']]]] named_ports: The named port configuration. See the section below
|
1059
1026
|
for details on configuration.
|
1060
|
-
:param pulumi.Input[pulumi.InputType['InstanceGroupManagerParamsArgs']] params: Input only additional params for instance group manager creation. Structure is documented below. For more information, see [API](https://cloud.google.com/compute/docs/reference/rest/beta/instanceGroupManagers/insert).
|
1061
|
-
|
1062
|
-
- - -
|
1063
1027
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
|
1064
1028
|
is not provided, the provider project is used.
|
1065
1029
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerStatefulDiskArgs']]]] stateful_disks: Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs).
|
@@ -1070,7 +1034,9 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1070
1034
|
not affect existing instances.
|
1071
1035
|
:param pulumi.Input[int] target_size: The target number of running instances for this managed instance group. This value should always be explicitly set
|
1072
1036
|
unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
|
1073
|
-
:param pulumi.Input[pulumi.InputType['InstanceGroupManagerUpdatePolicyArgs']] update_policy: The update policy for this managed instance group. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/updating-managed-instance-groups) and [API](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroupManagers/patch)
|
1037
|
+
:param pulumi.Input[pulumi.InputType['InstanceGroupManagerUpdatePolicyArgs']] update_policy: The update policy for this managed instance group. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/updating-managed-instance-groups) and [API](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroupManagers/patch)
|
1038
|
+
|
1039
|
+
- - -
|
1074
1040
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerVersionArgs']]]] versions: Application versions managed by this instance group. Each
|
1075
1041
|
version deals with a specific instance template, allowing canary release scenarios.
|
1076
1042
|
Structure is documented below.
|
@@ -1223,7 +1189,6 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1223
1189
|
list_managed_instances_results: Optional[pulumi.Input[str]] = None,
|
1224
1190
|
name: Optional[pulumi.Input[str]] = None,
|
1225
1191
|
named_ports: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerNamedPortArgs']]]]] = None,
|
1226
|
-
params: Optional[pulumi.Input[pulumi.InputType['InstanceGroupManagerParamsArgs']]] = None,
|
1227
1192
|
project: Optional[pulumi.Input[str]] = None,
|
1228
1193
|
stateful_disks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerStatefulDiskArgs']]]]] = None,
|
1229
1194
|
stateful_external_ips: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerStatefulExternalIpArgs']]]]] = None,
|
@@ -1254,7 +1219,6 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1254
1219
|
__props__.__dict__["list_managed_instances_results"] = list_managed_instances_results
|
1255
1220
|
__props__.__dict__["name"] = name
|
1256
1221
|
__props__.__dict__["named_ports"] = named_ports
|
1257
|
-
__props__.__dict__["params"] = params
|
1258
1222
|
__props__.__dict__["project"] = project
|
1259
1223
|
__props__.__dict__["stateful_disks"] = stateful_disks
|
1260
1224
|
__props__.__dict__["stateful_external_ips"] = stateful_external_ips
|
@@ -1296,7 +1260,6 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1296
1260
|
name: Optional[pulumi.Input[str]] = None,
|
1297
1261
|
named_ports: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerNamedPortArgs']]]]] = None,
|
1298
1262
|
operation: Optional[pulumi.Input[str]] = None,
|
1299
|
-
params: Optional[pulumi.Input[pulumi.InputType['InstanceGroupManagerParamsArgs']]] = None,
|
1300
1263
|
project: Optional[pulumi.Input[str]] = None,
|
1301
1264
|
self_link: Optional[pulumi.Input[str]] = None,
|
1302
1265
|
stateful_disks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerStatefulDiskArgs']]]]] = None,
|
@@ -1346,9 +1309,6 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1346
1309
|
include lowercase letters, numbers, and hyphens.
|
1347
1310
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerNamedPortArgs']]]] named_ports: The named port configuration. See the section below
|
1348
1311
|
for details on configuration.
|
1349
|
-
:param pulumi.Input[pulumi.InputType['InstanceGroupManagerParamsArgs']] params: Input only additional params for instance group manager creation. Structure is documented below. For more information, see [API](https://cloud.google.com/compute/docs/reference/rest/beta/instanceGroupManagers/insert).
|
1350
|
-
|
1351
|
-
- - -
|
1352
1312
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
|
1353
1313
|
is not provided, the provider project is used.
|
1354
1314
|
:param pulumi.Input[str] self_link: The URL of the created resource.
|
@@ -1361,7 +1321,9 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1361
1321
|
not affect existing instances.
|
1362
1322
|
:param pulumi.Input[int] target_size: The target number of running instances for this managed instance group. This value should always be explicitly set
|
1363
1323
|
unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
|
1364
|
-
:param pulumi.Input[pulumi.InputType['InstanceGroupManagerUpdatePolicyArgs']] update_policy: The update policy for this managed instance group. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/updating-managed-instance-groups) and [API](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroupManagers/patch)
|
1324
|
+
:param pulumi.Input[pulumi.InputType['InstanceGroupManagerUpdatePolicyArgs']] update_policy: The update policy for this managed instance group. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/updating-managed-instance-groups) and [API](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroupManagers/patch)
|
1325
|
+
|
1326
|
+
- - -
|
1365
1327
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerVersionArgs']]]] versions: Application versions managed by this instance group. Each
|
1366
1328
|
version deals with a specific instance template, allowing canary release scenarios.
|
1367
1329
|
Structure is documented below.
|
@@ -1393,7 +1355,6 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1393
1355
|
__props__.__dict__["name"] = name
|
1394
1356
|
__props__.__dict__["named_ports"] = named_ports
|
1395
1357
|
__props__.__dict__["operation"] = operation
|
1396
|
-
__props__.__dict__["params"] = params
|
1397
1358
|
__props__.__dict__["project"] = project
|
1398
1359
|
__props__.__dict__["self_link"] = self_link
|
1399
1360
|
__props__.__dict__["stateful_disks"] = stateful_disks
|
@@ -1520,16 +1481,6 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1520
1481
|
def operation(self) -> pulumi.Output[str]:
|
1521
1482
|
return pulumi.get(self, "operation")
|
1522
1483
|
|
1523
|
-
@property
|
1524
|
-
@pulumi.getter
|
1525
|
-
def params(self) -> pulumi.Output[Optional['outputs.InstanceGroupManagerParams']]:
|
1526
|
-
"""
|
1527
|
-
Input only additional params for instance group manager creation. Structure is documented below. For more information, see [API](https://cloud.google.com/compute/docs/reference/rest/beta/instanceGroupManagers/insert).
|
1528
|
-
|
1529
|
-
- - -
|
1530
|
-
"""
|
1531
|
-
return pulumi.get(self, "params")
|
1532
|
-
|
1533
1484
|
@property
|
1534
1485
|
@pulumi.getter
|
1535
1486
|
def project(self) -> pulumi.Output[str]:
|
@@ -1602,7 +1553,9 @@ class InstanceGroupManager(pulumi.CustomResource):
|
|
1602
1553
|
@pulumi.getter(name="updatePolicy")
|
1603
1554
|
def update_policy(self) -> pulumi.Output['outputs.InstanceGroupManagerUpdatePolicy']:
|
1604
1555
|
"""
|
1605
|
-
The update policy for this managed instance group. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/updating-managed-instance-groups) and [API](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroupManagers/patch)
|
1556
|
+
The update policy for this managed instance group. Structure is documented below. For more information, see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/updating-managed-instance-groups) and [API](https://cloud.google.com/compute/docs/reference/rest/v1/instanceGroupManagers/patch)
|
1557
|
+
|
1558
|
+
- - -
|
1606
1559
|
"""
|
1607
1560
|
return pulumi.get(self, "update_policy")
|
1608
1561
|
|
pulumi_gcp/compute/outputs.py
CHANGED
@@ -129,7 +129,6 @@ __all__ = [
|
|
129
129
|
'InstanceGroupManagerAutoHealingPolicies',
|
130
130
|
'InstanceGroupManagerInstanceLifecyclePolicy',
|
131
131
|
'InstanceGroupManagerNamedPort',
|
132
|
-
'InstanceGroupManagerParams',
|
133
132
|
'InstanceGroupManagerStatefulDisk',
|
134
133
|
'InstanceGroupManagerStatefulExternalIp',
|
135
134
|
'InstanceGroupManagerStatefulInternalIp',
|
@@ -261,7 +260,6 @@ __all__ = [
|
|
261
260
|
'RegionInstanceGroupManagerAutoHealingPolicies',
|
262
261
|
'RegionInstanceGroupManagerInstanceLifecyclePolicy',
|
263
262
|
'RegionInstanceGroupManagerNamedPort',
|
264
|
-
'RegionInstanceGroupManagerParams',
|
265
263
|
'RegionInstanceGroupManagerStatefulDisk',
|
266
264
|
'RegionInstanceGroupManagerStatefulExternalIp',
|
267
265
|
'RegionInstanceGroupManagerStatefulInternalIp',
|
@@ -580,7 +578,6 @@ __all__ = [
|
|
580
578
|
'GetInstanceGroupManagerAutoHealingPolicyResult',
|
581
579
|
'GetInstanceGroupManagerInstanceLifecyclePolicyResult',
|
582
580
|
'GetInstanceGroupManagerNamedPortResult',
|
583
|
-
'GetInstanceGroupManagerParamResult',
|
584
581
|
'GetInstanceGroupManagerStatefulDiskResult',
|
585
582
|
'GetInstanceGroupManagerStatefulExternalIpResult',
|
586
583
|
'GetInstanceGroupManagerStatefulInternalIpResult',
|
@@ -9479,42 +9476,6 @@ class InstanceGroupManagerNamedPort(dict):
|
|
9479
9476
|
return pulumi.get(self, "port")
|
9480
9477
|
|
9481
9478
|
|
9482
|
-
@pulumi.output_type
|
9483
|
-
class InstanceGroupManagerParams(dict):
|
9484
|
-
@staticmethod
|
9485
|
-
def __key_warning(key: str):
|
9486
|
-
suggest = None
|
9487
|
-
if key == "resourceManagerTags":
|
9488
|
-
suggest = "resource_manager_tags"
|
9489
|
-
|
9490
|
-
if suggest:
|
9491
|
-
pulumi.log.warn(f"Key '{key}' not found in InstanceGroupManagerParams. Access the value via the '{suggest}' property getter instead.")
|
9492
|
-
|
9493
|
-
def __getitem__(self, key: str) -> Any:
|
9494
|
-
InstanceGroupManagerParams.__key_warning(key)
|
9495
|
-
return super().__getitem__(key)
|
9496
|
-
|
9497
|
-
def get(self, key: str, default = None) -> Any:
|
9498
|
-
InstanceGroupManagerParams.__key_warning(key)
|
9499
|
-
return super().get(key, default)
|
9500
|
-
|
9501
|
-
def __init__(__self__, *,
|
9502
|
-
resource_manager_tags: Optional[Mapping[str, Any]] = None):
|
9503
|
-
"""
|
9504
|
-
:param Mapping[str, Any] resource_manager_tags: Resource manager tags to bind to the managed instance group. The tags are key-value pairs. Keys must be in the format tagKeys/123 and values in the format tagValues/456. For more information, see [Manage tags for resources](https://cloud.google.com/compute/docs/tag-resources)
|
9505
|
-
"""
|
9506
|
-
if resource_manager_tags is not None:
|
9507
|
-
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
9508
|
-
|
9509
|
-
@property
|
9510
|
-
@pulumi.getter(name="resourceManagerTags")
|
9511
|
-
def resource_manager_tags(self) -> Optional[Mapping[str, Any]]:
|
9512
|
-
"""
|
9513
|
-
Resource manager tags to bind to the managed instance group. The tags are key-value pairs. Keys must be in the format tagKeys/123 and values in the format tagValues/456. For more information, see [Manage tags for resources](https://cloud.google.com/compute/docs/tag-resources)
|
9514
|
-
"""
|
9515
|
-
return pulumi.get(self, "resource_manager_tags")
|
9516
|
-
|
9517
|
-
|
9518
9479
|
@pulumi.output_type
|
9519
9480
|
class InstanceGroupManagerStatefulDisk(dict):
|
9520
9481
|
@staticmethod
|
@@ -18701,42 +18662,6 @@ class RegionInstanceGroupManagerNamedPort(dict):
|
|
18701
18662
|
return pulumi.get(self, "port")
|
18702
18663
|
|
18703
18664
|
|
18704
|
-
@pulumi.output_type
|
18705
|
-
class RegionInstanceGroupManagerParams(dict):
|
18706
|
-
@staticmethod
|
18707
|
-
def __key_warning(key: str):
|
18708
|
-
suggest = None
|
18709
|
-
if key == "resourceManagerTags":
|
18710
|
-
suggest = "resource_manager_tags"
|
18711
|
-
|
18712
|
-
if suggest:
|
18713
|
-
pulumi.log.warn(f"Key '{key}' not found in RegionInstanceGroupManagerParams. Access the value via the '{suggest}' property getter instead.")
|
18714
|
-
|
18715
|
-
def __getitem__(self, key: str) -> Any:
|
18716
|
-
RegionInstanceGroupManagerParams.__key_warning(key)
|
18717
|
-
return super().__getitem__(key)
|
18718
|
-
|
18719
|
-
def get(self, key: str, default = None) -> Any:
|
18720
|
-
RegionInstanceGroupManagerParams.__key_warning(key)
|
18721
|
-
return super().get(key, default)
|
18722
|
-
|
18723
|
-
def __init__(__self__, *,
|
18724
|
-
resource_manager_tags: Optional[Mapping[str, Any]] = None):
|
18725
|
-
"""
|
18726
|
-
:param Mapping[str, Any] resource_manager_tags: Resource manager tags to bind to the managed instance group. The tags are key-value pairs. Keys must be in the format tagKeys/123 and values in the format tagValues/456. For more information, see [Manage tags for resources](https://cloud.google.com/compute/docs/tag-resources)
|
18727
|
-
"""
|
18728
|
-
if resource_manager_tags is not None:
|
18729
|
-
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
18730
|
-
|
18731
|
-
@property
|
18732
|
-
@pulumi.getter(name="resourceManagerTags")
|
18733
|
-
def resource_manager_tags(self) -> Optional[Mapping[str, Any]]:
|
18734
|
-
"""
|
18735
|
-
Resource manager tags to bind to the managed instance group. The tags are key-value pairs. Keys must be in the format tagKeys/123 and values in the format tagValues/456. For more information, see [Manage tags for resources](https://cloud.google.com/compute/docs/tag-resources)
|
18736
|
-
"""
|
18737
|
-
return pulumi.get(self, "resource_manager_tags")
|
18738
|
-
|
18739
|
-
|
18740
18665
|
@pulumi.output_type
|
18741
18666
|
class RegionInstanceGroupManagerStatefulDisk(dict):
|
18742
18667
|
@staticmethod
|
@@ -42266,24 +42191,6 @@ class GetInstanceGroupManagerNamedPortResult(dict):
|
|
42266
42191
|
return pulumi.get(self, "port")
|
42267
42192
|
|
42268
42193
|
|
42269
|
-
@pulumi.output_type
|
42270
|
-
class GetInstanceGroupManagerParamResult(dict):
|
42271
|
-
def __init__(__self__, *,
|
42272
|
-
resource_manager_tags: Mapping[str, Any]):
|
42273
|
-
"""
|
42274
|
-
:param Mapping[str, Any] resource_manager_tags: Resource manager tags to bind to the managed instance group. The tags are key-value pairs. Keys must be in the format tagKeys/123 and values in the format tagValues/456.
|
42275
|
-
"""
|
42276
|
-
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
42277
|
-
|
42278
|
-
@property
|
42279
|
-
@pulumi.getter(name="resourceManagerTags")
|
42280
|
-
def resource_manager_tags(self) -> Mapping[str, Any]:
|
42281
|
-
"""
|
42282
|
-
Resource manager tags to bind to the managed instance group. The tags are key-value pairs. Keys must be in the format tagKeys/123 and values in the format tagValues/456.
|
42283
|
-
"""
|
42284
|
-
return pulumi.get(self, "resource_manager_tags")
|
42285
|
-
|
42286
|
-
|
42287
42194
|
@pulumi.output_type
|
42288
42195
|
class GetInstanceGroupManagerStatefulDiskResult(dict):
|
42289
42196
|
def __init__(__self__, *,
|
@@ -27,7 +27,6 @@ class RegionInstanceGroupManagerArgs:
|
|
27
27
|
list_managed_instances_results: Optional[pulumi.Input[str]] = None,
|
28
28
|
name: Optional[pulumi.Input[str]] = None,
|
29
29
|
named_ports: Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerNamedPortArgs']]]] = None,
|
30
|
-
params: Optional[pulumi.Input['RegionInstanceGroupManagerParamsArgs']] = None,
|
31
30
|
project: Optional[pulumi.Input[str]] = None,
|
32
31
|
region: Optional[pulumi.Input[str]] = None,
|
33
32
|
stateful_disks: Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulDiskArgs']]]] = None,
|
@@ -72,9 +71,6 @@ class RegionInstanceGroupManagerArgs:
|
|
72
71
|
include lowercase letters, numbers, and hyphens.
|
73
72
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerNamedPortArgs']]] named_ports: The named port configuration. See the section below
|
74
73
|
for details on configuration.
|
75
|
-
:param pulumi.Input['RegionInstanceGroupManagerParamsArgs'] params: Input only additional params for instance group manager creation. Structure is documented below. For more information, see [API](https://cloud.google.com/compute/docs/reference/rest/beta/instanceGroupManagers/insert).
|
76
|
-
|
77
|
-
- - -
|
78
74
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
|
79
75
|
is not provided, the provider project is used.
|
80
76
|
:param pulumi.Input[str] region: The region where the managed instance group resides. If not provided, the provider region is used.
|
@@ -82,6 +78,8 @@ class RegionInstanceGroupManagerArgs:
|
|
82
78
|
- - -
|
83
79
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulDiskArgs']]] stateful_disks: Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs). Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the `update_policy`.
|
84
80
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulExternalIpArgs']]] stateful_external_ips: External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
81
|
+
|
82
|
+
- - -
|
85
83
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulInternalIpArgs']]] stateful_internal_ips: Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
86
84
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] target_pools: The full URL of all target pools to which new
|
87
85
|
instances in the group are added. Updating the target pools attribute does
|
@@ -117,8 +115,6 @@ class RegionInstanceGroupManagerArgs:
|
|
117
115
|
pulumi.set(__self__, "name", name)
|
118
116
|
if named_ports is not None:
|
119
117
|
pulumi.set(__self__, "named_ports", named_ports)
|
120
|
-
if params is not None:
|
121
|
-
pulumi.set(__self__, "params", params)
|
122
118
|
if project is not None:
|
123
119
|
pulumi.set(__self__, "project", project)
|
124
120
|
if region is not None:
|
@@ -293,20 +289,6 @@ class RegionInstanceGroupManagerArgs:
|
|
293
289
|
def named_ports(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerNamedPortArgs']]]]):
|
294
290
|
pulumi.set(self, "named_ports", value)
|
295
291
|
|
296
|
-
@property
|
297
|
-
@pulumi.getter
|
298
|
-
def params(self) -> Optional[pulumi.Input['RegionInstanceGroupManagerParamsArgs']]:
|
299
|
-
"""
|
300
|
-
Input only additional params for instance group manager creation. Structure is documented below. For more information, see [API](https://cloud.google.com/compute/docs/reference/rest/beta/instanceGroupManagers/insert).
|
301
|
-
|
302
|
-
- - -
|
303
|
-
"""
|
304
|
-
return pulumi.get(self, "params")
|
305
|
-
|
306
|
-
@params.setter
|
307
|
-
def params(self, value: Optional[pulumi.Input['RegionInstanceGroupManagerParamsArgs']]):
|
308
|
-
pulumi.set(self, "params", value)
|
309
|
-
|
310
292
|
@property
|
311
293
|
@pulumi.getter
|
312
294
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -351,6 +333,8 @@ class RegionInstanceGroupManagerArgs:
|
|
351
333
|
def stateful_external_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulExternalIpArgs']]]]:
|
352
334
|
"""
|
353
335
|
External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
336
|
+
|
337
|
+
- - -
|
354
338
|
"""
|
355
339
|
return pulumi.get(self, "stateful_external_ips")
|
356
340
|
|
@@ -455,7 +439,6 @@ class _RegionInstanceGroupManagerState:
|
|
455
439
|
list_managed_instances_results: Optional[pulumi.Input[str]] = None,
|
456
440
|
name: Optional[pulumi.Input[str]] = None,
|
457
441
|
named_ports: Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerNamedPortArgs']]]] = None,
|
458
|
-
params: Optional[pulumi.Input['RegionInstanceGroupManagerParamsArgs']] = None,
|
459
442
|
project: Optional[pulumi.Input[str]] = None,
|
460
443
|
region: Optional[pulumi.Input[str]] = None,
|
461
444
|
self_link: Optional[pulumi.Input[str]] = None,
|
@@ -503,9 +486,6 @@ class _RegionInstanceGroupManagerState:
|
|
503
486
|
include lowercase letters, numbers, and hyphens.
|
504
487
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerNamedPortArgs']]] named_ports: The named port configuration. See the section below
|
505
488
|
for details on configuration.
|
506
|
-
:param pulumi.Input['RegionInstanceGroupManagerParamsArgs'] params: Input only additional params for instance group manager creation. Structure is documented below. For more information, see [API](https://cloud.google.com/compute/docs/reference/rest/beta/instanceGroupManagers/insert).
|
507
|
-
|
508
|
-
- - -
|
509
489
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
|
510
490
|
is not provided, the provider project is used.
|
511
491
|
:param pulumi.Input[str] region: The region where the managed instance group resides. If not provided, the provider region is used.
|
@@ -514,6 +494,8 @@ class _RegionInstanceGroupManagerState:
|
|
514
494
|
:param pulumi.Input[str] self_link: The URL of the created resource.
|
515
495
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulDiskArgs']]] stateful_disks: Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs). Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the `update_policy`.
|
516
496
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulExternalIpArgs']]] stateful_external_ips: External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
497
|
+
|
498
|
+
- - -
|
517
499
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulInternalIpArgs']]] stateful_internal_ips: Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
518
500
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatusArgs']]] statuses: The status of this managed instance group.
|
519
501
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] target_pools: The full URL of all target pools to which new
|
@@ -559,8 +541,6 @@ class _RegionInstanceGroupManagerState:
|
|
559
541
|
pulumi.set(__self__, "name", name)
|
560
542
|
if named_ports is not None:
|
561
543
|
pulumi.set(__self__, "named_ports", named_ports)
|
562
|
-
if params is not None:
|
563
|
-
pulumi.set(__self__, "params", params)
|
564
544
|
if project is not None:
|
565
545
|
pulumi.set(__self__, "project", project)
|
566
546
|
if region is not None:
|
@@ -763,20 +743,6 @@ class _RegionInstanceGroupManagerState:
|
|
763
743
|
def named_ports(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerNamedPortArgs']]]]):
|
764
744
|
pulumi.set(self, "named_ports", value)
|
765
745
|
|
766
|
-
@property
|
767
|
-
@pulumi.getter
|
768
|
-
def params(self) -> Optional[pulumi.Input['RegionInstanceGroupManagerParamsArgs']]:
|
769
|
-
"""
|
770
|
-
Input only additional params for instance group manager creation. Structure is documented below. For more information, see [API](https://cloud.google.com/compute/docs/reference/rest/beta/instanceGroupManagers/insert).
|
771
|
-
|
772
|
-
- - -
|
773
|
-
"""
|
774
|
-
return pulumi.get(self, "params")
|
775
|
-
|
776
|
-
@params.setter
|
777
|
-
def params(self, value: Optional[pulumi.Input['RegionInstanceGroupManagerParamsArgs']]):
|
778
|
-
pulumi.set(self, "params", value)
|
779
|
-
|
780
746
|
@property
|
781
747
|
@pulumi.getter
|
782
748
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -833,6 +799,8 @@ class _RegionInstanceGroupManagerState:
|
|
833
799
|
def stateful_external_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulExternalIpArgs']]]]:
|
834
800
|
"""
|
835
801
|
External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
802
|
+
|
803
|
+
- - -
|
836
804
|
"""
|
837
805
|
return pulumi.get(self, "stateful_external_ips")
|
838
806
|
|
@@ -962,7 +930,6 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
962
930
|
list_managed_instances_results: Optional[pulumi.Input[str]] = None,
|
963
931
|
name: Optional[pulumi.Input[str]] = None,
|
964
932
|
named_ports: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerNamedPortArgs']]]]] = None,
|
965
|
-
params: Optional[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerParamsArgs']]] = None,
|
966
933
|
project: Optional[pulumi.Input[str]] = None,
|
967
934
|
region: Optional[pulumi.Input[str]] = None,
|
968
935
|
stateful_disks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerStatefulDiskArgs']]]]] = None,
|
@@ -1103,9 +1070,6 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1103
1070
|
include lowercase letters, numbers, and hyphens.
|
1104
1071
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerNamedPortArgs']]]] named_ports: The named port configuration. See the section below
|
1105
1072
|
for details on configuration.
|
1106
|
-
:param pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerParamsArgs']] params: Input only additional params for instance group manager creation. Structure is documented below. For more information, see [API](https://cloud.google.com/compute/docs/reference/rest/beta/instanceGroupManagers/insert).
|
1107
|
-
|
1108
|
-
- - -
|
1109
1073
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
|
1110
1074
|
is not provided, the provider project is used.
|
1111
1075
|
:param pulumi.Input[str] region: The region where the managed instance group resides. If not provided, the provider region is used.
|
@@ -1113,6 +1077,8 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1113
1077
|
- - -
|
1114
1078
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerStatefulDiskArgs']]]] stateful_disks: Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs). Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the `update_policy`.
|
1115
1079
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerStatefulExternalIpArgs']]]] stateful_external_ips: External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
1080
|
+
|
1081
|
+
- - -
|
1116
1082
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerStatefulInternalIpArgs']]]] stateful_internal_ips: Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
1117
1083
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] target_pools: The full URL of all target pools to which new
|
1118
1084
|
instances in the group are added. Updating the target pools attribute does
|
@@ -1259,7 +1225,6 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1259
1225
|
list_managed_instances_results: Optional[pulumi.Input[str]] = None,
|
1260
1226
|
name: Optional[pulumi.Input[str]] = None,
|
1261
1227
|
named_ports: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerNamedPortArgs']]]]] = None,
|
1262
|
-
params: Optional[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerParamsArgs']]] = None,
|
1263
1228
|
project: Optional[pulumi.Input[str]] = None,
|
1264
1229
|
region: Optional[pulumi.Input[str]] = None,
|
1265
1230
|
stateful_disks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerStatefulDiskArgs']]]]] = None,
|
@@ -1292,7 +1257,6 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1292
1257
|
__props__.__dict__["list_managed_instances_results"] = list_managed_instances_results
|
1293
1258
|
__props__.__dict__["name"] = name
|
1294
1259
|
__props__.__dict__["named_ports"] = named_ports
|
1295
|
-
__props__.__dict__["params"] = params
|
1296
1260
|
__props__.__dict__["project"] = project
|
1297
1261
|
__props__.__dict__["region"] = region
|
1298
1262
|
__props__.__dict__["stateful_disks"] = stateful_disks
|
@@ -1334,7 +1298,6 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1334
1298
|
list_managed_instances_results: Optional[pulumi.Input[str]] = None,
|
1335
1299
|
name: Optional[pulumi.Input[str]] = None,
|
1336
1300
|
named_ports: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerNamedPortArgs']]]]] = None,
|
1337
|
-
params: Optional[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerParamsArgs']]] = None,
|
1338
1301
|
project: Optional[pulumi.Input[str]] = None,
|
1339
1302
|
region: Optional[pulumi.Input[str]] = None,
|
1340
1303
|
self_link: Optional[pulumi.Input[str]] = None,
|
@@ -1387,9 +1350,6 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1387
1350
|
include lowercase letters, numbers, and hyphens.
|
1388
1351
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerNamedPortArgs']]]] named_ports: The named port configuration. See the section below
|
1389
1352
|
for details on configuration.
|
1390
|
-
:param pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerParamsArgs']] params: Input only additional params for instance group manager creation. Structure is documented below. For more information, see [API](https://cloud.google.com/compute/docs/reference/rest/beta/instanceGroupManagers/insert).
|
1391
|
-
|
1392
|
-
- - -
|
1393
1353
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
|
1394
1354
|
is not provided, the provider project is used.
|
1395
1355
|
:param pulumi.Input[str] region: The region where the managed instance group resides. If not provided, the provider region is used.
|
@@ -1398,6 +1358,8 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1398
1358
|
:param pulumi.Input[str] self_link: The URL of the created resource.
|
1399
1359
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerStatefulDiskArgs']]]] stateful_disks: Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs). Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the `update_policy`.
|
1400
1360
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerStatefulExternalIpArgs']]]] stateful_external_ips: External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
1361
|
+
|
1362
|
+
- - -
|
1401
1363
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerStatefulInternalIpArgs']]]] stateful_internal_ips: Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
1402
1364
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerStatusArgs']]]] statuses: The status of this managed instance group.
|
1403
1365
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] target_pools: The full URL of all target pools to which new
|
@@ -1434,7 +1396,6 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1434
1396
|
__props__.__dict__["list_managed_instances_results"] = list_managed_instances_results
|
1435
1397
|
__props__.__dict__["name"] = name
|
1436
1398
|
__props__.__dict__["named_ports"] = named_ports
|
1437
|
-
__props__.__dict__["params"] = params
|
1438
1399
|
__props__.__dict__["project"] = project
|
1439
1400
|
__props__.__dict__["region"] = region
|
1440
1401
|
__props__.__dict__["self_link"] = self_link
|
@@ -1573,16 +1534,6 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1573
1534
|
"""
|
1574
1535
|
return pulumi.get(self, "named_ports")
|
1575
1536
|
|
1576
|
-
@property
|
1577
|
-
@pulumi.getter
|
1578
|
-
def params(self) -> pulumi.Output[Optional['outputs.RegionInstanceGroupManagerParams']]:
|
1579
|
-
"""
|
1580
|
-
Input only additional params for instance group manager creation. Structure is documented below. For more information, see [API](https://cloud.google.com/compute/docs/reference/rest/beta/instanceGroupManagers/insert).
|
1581
|
-
|
1582
|
-
- - -
|
1583
|
-
"""
|
1584
|
-
return pulumi.get(self, "params")
|
1585
|
-
|
1586
1537
|
@property
|
1587
1538
|
@pulumi.getter
|
1588
1539
|
def project(self) -> pulumi.Output[str]:
|
@@ -1623,6 +1574,8 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1623
1574
|
def stateful_external_ips(self) -> pulumi.Output[Optional[Sequence['outputs.RegionInstanceGroupManagerStatefulExternalIp']]]:
|
1624
1575
|
"""
|
1625
1576
|
External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
|
1577
|
+
|
1578
|
+
- - -
|
1626
1579
|
"""
|
1627
1580
|
return pulumi.get(self, "stateful_external_ips")
|
1628
1581
|
|