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.
Files changed (35) hide show
  1. pulumi_gcp/__init__.py +8 -0
  2. pulumi_gcp/apigee/organization.py +162 -0
  3. pulumi_gcp/artifactregistry/_inputs.py +186 -0
  4. pulumi_gcp/artifactregistry/outputs.py +297 -4
  5. pulumi_gcp/artifactregistry/repository.py +346 -16
  6. pulumi_gcp/bigquery/table.py +61 -0
  7. pulumi_gcp/billing/budget.py +54 -0
  8. pulumi_gcp/cloudfunctionsv2/_inputs.py +16 -0
  9. pulumi_gcp/cloudfunctionsv2/function.py +110 -0
  10. pulumi_gcp/cloudfunctionsv2/outputs.py +25 -0
  11. pulumi_gcp/compute/_inputs.py +48 -0
  12. pulumi_gcp/compute/get_instance_group_manager.py +11 -1
  13. pulumi_gcp/compute/instance_group_manager.py +68 -21
  14. pulumi_gcp/compute/outputs.py +93 -0
  15. pulumi_gcp/compute/region_instance_group_manager.py +61 -14
  16. pulumi_gcp/container/outputs.py +4 -4
  17. pulumi_gcp/dns/_inputs.py +0 -128
  18. pulumi_gcp/dns/get_keys.py +1 -1
  19. pulumi_gcp/dns/get_managed_zones.py +3 -9
  20. pulumi_gcp/dns/get_record_set.py +3 -0
  21. pulumi_gcp/dns/outputs.py +34 -56
  22. pulumi_gcp/firestore/document.py +4 -4
  23. pulumi_gcp/organizations/get_active_folder.py +18 -3
  24. pulumi_gcp/projects/__init__.py +1 -0
  25. pulumi_gcp/projects/iam_member_remove.py +313 -0
  26. pulumi_gcp/vmwareengine/_inputs.py +63 -5
  27. pulumi_gcp/vmwareengine/get_private_cloud.py +1 -21
  28. pulumi_gcp/vmwareengine/outputs.py +113 -5
  29. pulumi_gcp/vmwareengine/private_cloud.py +0 -94
  30. pulumi_gcp/workbench/instance.py +4 -4
  31. pulumi_gcp/workstations/workstation_cluster.py +32 -0
  32. {pulumi_gcp-7.20.0a1713918100.dist-info → pulumi_gcp-7.20.0a1713986537.dist-info}/METADATA +1 -1
  33. {pulumi_gcp-7.20.0a1713918100.dist-info → pulumi_gcp-7.20.0a1713986537.dist-info}/RECORD +35 -34
  34. {pulumi_gcp-7.20.0a1713918100.dist-info → pulumi_gcp-7.20.0a1713986537.dist-info}/WHEEL +0 -0
  35. {pulumi_gcp-7.20.0a1713918100.dist-info → pulumi_gcp-7.20.0a1713986537.dist-info}/top_level.txt +0 -0
@@ -25,6 +25,7 @@ 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,
28
29
  project: Optional[pulumi.Input[str]] = None,
29
30
  stateful_disks: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerStatefulDiskArgs']]]] = None,
30
31
  stateful_external_ips: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerStatefulExternalIpArgs']]]] = None,
@@ -66,6 +67,9 @@ class InstanceGroupManagerArgs:
66
67
  include lowercase letters, numbers, and hyphens.
67
68
  :param pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerNamedPortArgs']]] named_ports: The named port configuration. See the section below
68
69
  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
+ - - -
69
73
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
70
74
  is not provided, the provider project is used.
71
75
  :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).
@@ -76,9 +80,7 @@ class InstanceGroupManagerArgs:
76
80
  not affect existing instances.
77
81
  :param pulumi.Input[int] target_size: The target number of running instances for this managed instance group. This value should always be explicitly set
78
82
  unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
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
- - - -
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).
82
84
  :param pulumi.Input[bool] wait_for_instances: Whether to wait for all instances to be created/updated before
83
85
  returning. Note that if this is set to true and the operation does not succeed, this provider will
84
86
  continue trying until it times out.
@@ -107,6 +109,8 @@ class InstanceGroupManagerArgs:
107
109
  pulumi.set(__self__, "name", name)
108
110
  if named_ports is not None:
109
111
  pulumi.set(__self__, "named_ports", named_ports)
112
+ if params is not None:
113
+ pulumi.set(__self__, "params", params)
110
114
  if project is not None:
111
115
  pulumi.set(__self__, "project", project)
112
116
  if stateful_disks is not None:
@@ -256,6 +260,20 @@ class InstanceGroupManagerArgs:
256
260
  def named_ports(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerNamedPortArgs']]]]):
257
261
  pulumi.set(self, "named_ports", value)
258
262
 
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
+
259
277
  @property
260
278
  @pulumi.getter
261
279
  def project(self) -> Optional[pulumi.Input[str]]:
@@ -336,9 +354,7 @@ class InstanceGroupManagerArgs:
336
354
  @pulumi.getter(name="updatePolicy")
337
355
  def update_policy(self) -> Optional[pulumi.Input['InstanceGroupManagerUpdatePolicyArgs']]:
338
356
  """
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
- - - -
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).
342
358
  """
343
359
  return pulumi.get(self, "update_policy")
344
360
 
@@ -406,6 +422,7 @@ class _InstanceGroupManagerState:
406
422
  name: Optional[pulumi.Input[str]] = None,
407
423
  named_ports: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerNamedPortArgs']]]] = None,
408
424
  operation: Optional[pulumi.Input[str]] = None,
425
+ params: Optional[pulumi.Input['InstanceGroupManagerParamsArgs']] = None,
409
426
  project: Optional[pulumi.Input[str]] = None,
410
427
  self_link: Optional[pulumi.Input[str]] = None,
411
428
  stateful_disks: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerStatefulDiskArgs']]]] = None,
@@ -450,6 +467,9 @@ class _InstanceGroupManagerState:
450
467
  include lowercase letters, numbers, and hyphens.
451
468
  :param pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerNamedPortArgs']]] named_ports: The named port configuration. See the section below
452
469
  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
+ - - -
453
473
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
454
474
  is not provided, the provider project is used.
455
475
  :param pulumi.Input[str] self_link: The URL of the created resource.
@@ -462,9 +482,7 @@ class _InstanceGroupManagerState:
462
482
  not affect existing instances.
463
483
  :param pulumi.Input[int] target_size: The target number of running instances for this managed instance group. This value should always be explicitly set
464
484
  unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
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
- - - -
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).
468
486
  :param pulumi.Input[Sequence[pulumi.Input['InstanceGroupManagerVersionArgs']]] versions: Application versions managed by this instance group. Each
469
487
  version deals with a specific instance template, allowing canary release scenarios.
470
488
  Structure is documented below.
@@ -504,6 +522,8 @@ class _InstanceGroupManagerState:
504
522
  pulumi.set(__self__, "named_ports", named_ports)
505
523
  if operation is not None:
506
524
  pulumi.set(__self__, "operation", operation)
525
+ if params is not None:
526
+ pulumi.set(__self__, "params", params)
507
527
  if project is not None:
508
528
  pulumi.set(__self__, "project", project)
509
529
  if self_link is not None:
@@ -690,6 +710,20 @@ class _InstanceGroupManagerState:
690
710
  def operation(self, value: Optional[pulumi.Input[str]]):
691
711
  pulumi.set(self, "operation", value)
692
712
 
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
+
693
727
  @property
694
728
  @pulumi.getter
695
729
  def project(self) -> Optional[pulumi.Input[str]]:
@@ -794,9 +828,7 @@ class _InstanceGroupManagerState:
794
828
  @pulumi.getter(name="updatePolicy")
795
829
  def update_policy(self) -> Optional[pulumi.Input['InstanceGroupManagerUpdatePolicyArgs']]:
796
830
  """
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
- - - -
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).
800
832
  """
801
833
  return pulumi.get(self, "update_policy")
802
834
 
@@ -876,6 +908,7 @@ class InstanceGroupManager(pulumi.CustomResource):
876
908
  list_managed_instances_results: Optional[pulumi.Input[str]] = None,
877
909
  name: Optional[pulumi.Input[str]] = None,
878
910
  named_ports: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerNamedPortArgs']]]]] = None,
911
+ params: Optional[pulumi.Input[pulumi.InputType['InstanceGroupManagerParamsArgs']]] = None,
879
912
  project: Optional[pulumi.Input[str]] = None,
880
913
  stateful_disks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerStatefulDiskArgs']]]]] = None,
881
914
  stateful_external_ips: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerStatefulExternalIpArgs']]]]] = None,
@@ -1024,6 +1057,9 @@ class InstanceGroupManager(pulumi.CustomResource):
1024
1057
  include lowercase letters, numbers, and hyphens.
1025
1058
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerNamedPortArgs']]]] named_ports: The named port configuration. See the section below
1026
1059
  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
+ - - -
1027
1063
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
1028
1064
  is not provided, the provider project is used.
1029
1065
  :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).
@@ -1034,9 +1070,7 @@ class InstanceGroupManager(pulumi.CustomResource):
1034
1070
  not affect existing instances.
1035
1071
  :param pulumi.Input[int] target_size: The target number of running instances for this managed instance group. This value should always be explicitly set
1036
1072
  unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
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
- - - -
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).
1040
1074
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerVersionArgs']]]] versions: Application versions managed by this instance group. Each
1041
1075
  version deals with a specific instance template, allowing canary release scenarios.
1042
1076
  Structure is documented below.
@@ -1189,6 +1223,7 @@ class InstanceGroupManager(pulumi.CustomResource):
1189
1223
  list_managed_instances_results: Optional[pulumi.Input[str]] = None,
1190
1224
  name: Optional[pulumi.Input[str]] = None,
1191
1225
  named_ports: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerNamedPortArgs']]]]] = None,
1226
+ params: Optional[pulumi.Input[pulumi.InputType['InstanceGroupManagerParamsArgs']]] = None,
1192
1227
  project: Optional[pulumi.Input[str]] = None,
1193
1228
  stateful_disks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerStatefulDiskArgs']]]]] = None,
1194
1229
  stateful_external_ips: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerStatefulExternalIpArgs']]]]] = None,
@@ -1219,6 +1254,7 @@ class InstanceGroupManager(pulumi.CustomResource):
1219
1254
  __props__.__dict__["list_managed_instances_results"] = list_managed_instances_results
1220
1255
  __props__.__dict__["name"] = name
1221
1256
  __props__.__dict__["named_ports"] = named_ports
1257
+ __props__.__dict__["params"] = params
1222
1258
  __props__.__dict__["project"] = project
1223
1259
  __props__.__dict__["stateful_disks"] = stateful_disks
1224
1260
  __props__.__dict__["stateful_external_ips"] = stateful_external_ips
@@ -1260,6 +1296,7 @@ class InstanceGroupManager(pulumi.CustomResource):
1260
1296
  name: Optional[pulumi.Input[str]] = None,
1261
1297
  named_ports: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerNamedPortArgs']]]]] = None,
1262
1298
  operation: Optional[pulumi.Input[str]] = None,
1299
+ params: Optional[pulumi.Input[pulumi.InputType['InstanceGroupManagerParamsArgs']]] = None,
1263
1300
  project: Optional[pulumi.Input[str]] = None,
1264
1301
  self_link: Optional[pulumi.Input[str]] = None,
1265
1302
  stateful_disks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerStatefulDiskArgs']]]]] = None,
@@ -1309,6 +1346,9 @@ class InstanceGroupManager(pulumi.CustomResource):
1309
1346
  include lowercase letters, numbers, and hyphens.
1310
1347
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerNamedPortArgs']]]] named_ports: The named port configuration. See the section below
1311
1348
  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
+ - - -
1312
1352
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
1313
1353
  is not provided, the provider project is used.
1314
1354
  :param pulumi.Input[str] self_link: The URL of the created resource.
@@ -1321,9 +1361,7 @@ class InstanceGroupManager(pulumi.CustomResource):
1321
1361
  not affect existing instances.
1322
1362
  :param pulumi.Input[int] target_size: The target number of running instances for this managed instance group. This value should always be explicitly set
1323
1363
  unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
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
- - - -
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).
1327
1365
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceGroupManagerVersionArgs']]]] versions: Application versions managed by this instance group. Each
1328
1366
  version deals with a specific instance template, allowing canary release scenarios.
1329
1367
  Structure is documented below.
@@ -1355,6 +1393,7 @@ class InstanceGroupManager(pulumi.CustomResource):
1355
1393
  __props__.__dict__["name"] = name
1356
1394
  __props__.__dict__["named_ports"] = named_ports
1357
1395
  __props__.__dict__["operation"] = operation
1396
+ __props__.__dict__["params"] = params
1358
1397
  __props__.__dict__["project"] = project
1359
1398
  __props__.__dict__["self_link"] = self_link
1360
1399
  __props__.__dict__["stateful_disks"] = stateful_disks
@@ -1481,6 +1520,16 @@ class InstanceGroupManager(pulumi.CustomResource):
1481
1520
  def operation(self) -> pulumi.Output[str]:
1482
1521
  return pulumi.get(self, "operation")
1483
1522
 
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
+
1484
1533
  @property
1485
1534
  @pulumi.getter
1486
1535
  def project(self) -> pulumi.Output[str]:
@@ -1553,9 +1602,7 @@ class InstanceGroupManager(pulumi.CustomResource):
1553
1602
  @pulumi.getter(name="updatePolicy")
1554
1603
  def update_policy(self) -> pulumi.Output['outputs.InstanceGroupManagerUpdatePolicy']:
1555
1604
  """
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
- - - -
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).
1559
1606
  """
1560
1607
  return pulumi.get(self, "update_policy")
1561
1608
 
@@ -129,6 +129,7 @@ __all__ = [
129
129
  'InstanceGroupManagerAutoHealingPolicies',
130
130
  'InstanceGroupManagerInstanceLifecyclePolicy',
131
131
  'InstanceGroupManagerNamedPort',
132
+ 'InstanceGroupManagerParams',
132
133
  'InstanceGroupManagerStatefulDisk',
133
134
  'InstanceGroupManagerStatefulExternalIp',
134
135
  'InstanceGroupManagerStatefulInternalIp',
@@ -260,6 +261,7 @@ __all__ = [
260
261
  'RegionInstanceGroupManagerAutoHealingPolicies',
261
262
  'RegionInstanceGroupManagerInstanceLifecyclePolicy',
262
263
  'RegionInstanceGroupManagerNamedPort',
264
+ 'RegionInstanceGroupManagerParams',
263
265
  'RegionInstanceGroupManagerStatefulDisk',
264
266
  'RegionInstanceGroupManagerStatefulExternalIp',
265
267
  'RegionInstanceGroupManagerStatefulInternalIp',
@@ -578,6 +580,7 @@ __all__ = [
578
580
  'GetInstanceGroupManagerAutoHealingPolicyResult',
579
581
  'GetInstanceGroupManagerInstanceLifecyclePolicyResult',
580
582
  'GetInstanceGroupManagerNamedPortResult',
583
+ 'GetInstanceGroupManagerParamResult',
581
584
  'GetInstanceGroupManagerStatefulDiskResult',
582
585
  'GetInstanceGroupManagerStatefulExternalIpResult',
583
586
  'GetInstanceGroupManagerStatefulInternalIpResult',
@@ -9476,6 +9479,42 @@ class InstanceGroupManagerNamedPort(dict):
9476
9479
  return pulumi.get(self, "port")
9477
9480
 
9478
9481
 
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
+
9479
9518
  @pulumi.output_type
9480
9519
  class InstanceGroupManagerStatefulDisk(dict):
9481
9520
  @staticmethod
@@ -18662,6 +18701,42 @@ class RegionInstanceGroupManagerNamedPort(dict):
18662
18701
  return pulumi.get(self, "port")
18663
18702
 
18664
18703
 
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
+
18665
18740
  @pulumi.output_type
18666
18741
  class RegionInstanceGroupManagerStatefulDisk(dict):
18667
18742
  @staticmethod
@@ -42191,6 +42266,24 @@ class GetInstanceGroupManagerNamedPortResult(dict):
42191
42266
  return pulumi.get(self, "port")
42192
42267
 
42193
42268
 
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
+
42194
42287
  @pulumi.output_type
42195
42288
  class GetInstanceGroupManagerStatefulDiskResult(dict):
42196
42289
  def __init__(__self__, *,
@@ -27,6 +27,7 @@ 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,
30
31
  project: Optional[pulumi.Input[str]] = None,
31
32
  region: Optional[pulumi.Input[str]] = None,
32
33
  stateful_disks: Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulDiskArgs']]]] = None,
@@ -71,6 +72,9 @@ class RegionInstanceGroupManagerArgs:
71
72
  include lowercase letters, numbers, and hyphens.
72
73
  :param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerNamedPortArgs']]] named_ports: The named port configuration. See the section below
73
74
  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
+ - - -
74
78
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
75
79
  is not provided, the provider project is used.
76
80
  :param pulumi.Input[str] region: The region where the managed instance group resides. If not provided, the provider region is used.
@@ -78,8 +82,6 @@ class RegionInstanceGroupManagerArgs:
78
82
  - - -
79
83
  :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`.
80
84
  :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
- - - -
83
85
  :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.
84
86
  :param pulumi.Input[Sequence[pulumi.Input[str]]] target_pools: The full URL of all target pools to which new
85
87
  instances in the group are added. Updating the target pools attribute does
@@ -115,6 +117,8 @@ class RegionInstanceGroupManagerArgs:
115
117
  pulumi.set(__self__, "name", name)
116
118
  if named_ports is not None:
117
119
  pulumi.set(__self__, "named_ports", named_ports)
120
+ if params is not None:
121
+ pulumi.set(__self__, "params", params)
118
122
  if project is not None:
119
123
  pulumi.set(__self__, "project", project)
120
124
  if region is not None:
@@ -289,6 +293,20 @@ class RegionInstanceGroupManagerArgs:
289
293
  def named_ports(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerNamedPortArgs']]]]):
290
294
  pulumi.set(self, "named_ports", value)
291
295
 
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
+
292
310
  @property
293
311
  @pulumi.getter
294
312
  def project(self) -> Optional[pulumi.Input[str]]:
@@ -333,8 +351,6 @@ class RegionInstanceGroupManagerArgs:
333
351
  def stateful_external_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulExternalIpArgs']]]]:
334
352
  """
335
353
  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
- - - -
338
354
  """
339
355
  return pulumi.get(self, "stateful_external_ips")
340
356
 
@@ -439,6 +455,7 @@ class _RegionInstanceGroupManagerState:
439
455
  list_managed_instances_results: Optional[pulumi.Input[str]] = None,
440
456
  name: Optional[pulumi.Input[str]] = None,
441
457
  named_ports: Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerNamedPortArgs']]]] = None,
458
+ params: Optional[pulumi.Input['RegionInstanceGroupManagerParamsArgs']] = None,
442
459
  project: Optional[pulumi.Input[str]] = None,
443
460
  region: Optional[pulumi.Input[str]] = None,
444
461
  self_link: Optional[pulumi.Input[str]] = None,
@@ -486,6 +503,9 @@ class _RegionInstanceGroupManagerState:
486
503
  include lowercase letters, numbers, and hyphens.
487
504
  :param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerNamedPortArgs']]] named_ports: The named port configuration. See the section below
488
505
  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
+ - - -
489
509
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
490
510
  is not provided, the provider project is used.
491
511
  :param pulumi.Input[str] region: The region where the managed instance group resides. If not provided, the provider region is used.
@@ -494,8 +514,6 @@ class _RegionInstanceGroupManagerState:
494
514
  :param pulumi.Input[str] self_link: The URL of the created resource.
495
515
  :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`.
496
516
  :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
- - - -
499
517
  :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.
500
518
  :param pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatusArgs']]] statuses: The status of this managed instance group.
501
519
  :param pulumi.Input[Sequence[pulumi.Input[str]]] target_pools: The full URL of all target pools to which new
@@ -541,6 +559,8 @@ class _RegionInstanceGroupManagerState:
541
559
  pulumi.set(__self__, "name", name)
542
560
  if named_ports is not None:
543
561
  pulumi.set(__self__, "named_ports", named_ports)
562
+ if params is not None:
563
+ pulumi.set(__self__, "params", params)
544
564
  if project is not None:
545
565
  pulumi.set(__self__, "project", project)
546
566
  if region is not None:
@@ -743,6 +763,20 @@ class _RegionInstanceGroupManagerState:
743
763
  def named_ports(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerNamedPortArgs']]]]):
744
764
  pulumi.set(self, "named_ports", value)
745
765
 
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
+
746
780
  @property
747
781
  @pulumi.getter
748
782
  def project(self) -> Optional[pulumi.Input[str]]:
@@ -799,8 +833,6 @@ class _RegionInstanceGroupManagerState:
799
833
  def stateful_external_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceGroupManagerStatefulExternalIpArgs']]]]:
800
834
  """
801
835
  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
- - - -
804
836
  """
805
837
  return pulumi.get(self, "stateful_external_ips")
806
838
 
@@ -930,6 +962,7 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
930
962
  list_managed_instances_results: Optional[pulumi.Input[str]] = None,
931
963
  name: Optional[pulumi.Input[str]] = None,
932
964
  named_ports: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerNamedPortArgs']]]]] = None,
965
+ params: Optional[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerParamsArgs']]] = None,
933
966
  project: Optional[pulumi.Input[str]] = None,
934
967
  region: Optional[pulumi.Input[str]] = None,
935
968
  stateful_disks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerStatefulDiskArgs']]]]] = None,
@@ -1070,6 +1103,9 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
1070
1103
  include lowercase letters, numbers, and hyphens.
1071
1104
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerNamedPortArgs']]]] named_ports: The named port configuration. See the section below
1072
1105
  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
+ - - -
1073
1109
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
1074
1110
  is not provided, the provider project is used.
1075
1111
  :param pulumi.Input[str] region: The region where the managed instance group resides. If not provided, the provider region is used.
@@ -1077,8 +1113,6 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
1077
1113
  - - -
1078
1114
  :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`.
1079
1115
  :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
- - - -
1082
1116
  :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.
1083
1117
  :param pulumi.Input[Sequence[pulumi.Input[str]]] target_pools: The full URL of all target pools to which new
1084
1118
  instances in the group are added. Updating the target pools attribute does
@@ -1225,6 +1259,7 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
1225
1259
  list_managed_instances_results: Optional[pulumi.Input[str]] = None,
1226
1260
  name: Optional[pulumi.Input[str]] = None,
1227
1261
  named_ports: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerNamedPortArgs']]]]] = None,
1262
+ params: Optional[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerParamsArgs']]] = None,
1228
1263
  project: Optional[pulumi.Input[str]] = None,
1229
1264
  region: Optional[pulumi.Input[str]] = None,
1230
1265
  stateful_disks: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerStatefulDiskArgs']]]]] = None,
@@ -1257,6 +1292,7 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
1257
1292
  __props__.__dict__["list_managed_instances_results"] = list_managed_instances_results
1258
1293
  __props__.__dict__["name"] = name
1259
1294
  __props__.__dict__["named_ports"] = named_ports
1295
+ __props__.__dict__["params"] = params
1260
1296
  __props__.__dict__["project"] = project
1261
1297
  __props__.__dict__["region"] = region
1262
1298
  __props__.__dict__["stateful_disks"] = stateful_disks
@@ -1298,6 +1334,7 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
1298
1334
  list_managed_instances_results: Optional[pulumi.Input[str]] = None,
1299
1335
  name: Optional[pulumi.Input[str]] = None,
1300
1336
  named_ports: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerNamedPortArgs']]]]] = None,
1337
+ params: Optional[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerParamsArgs']]] = None,
1301
1338
  project: Optional[pulumi.Input[str]] = None,
1302
1339
  region: Optional[pulumi.Input[str]] = None,
1303
1340
  self_link: Optional[pulumi.Input[str]] = None,
@@ -1350,6 +1387,9 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
1350
1387
  include lowercase letters, numbers, and hyphens.
1351
1388
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerNamedPortArgs']]]] named_ports: The named port configuration. See the section below
1352
1389
  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
+ - - -
1353
1393
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it
1354
1394
  is not provided, the provider project is used.
1355
1395
  :param pulumi.Input[str] region: The region where the managed instance group resides. If not provided, the provider region is used.
@@ -1358,8 +1398,6 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
1358
1398
  :param pulumi.Input[str] self_link: The URL of the created resource.
1359
1399
  :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`.
1360
1400
  :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
- - - -
1363
1401
  :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.
1364
1402
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RegionInstanceGroupManagerStatusArgs']]]] statuses: The status of this managed instance group.
1365
1403
  :param pulumi.Input[Sequence[pulumi.Input[str]]] target_pools: The full URL of all target pools to which new
@@ -1396,6 +1434,7 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
1396
1434
  __props__.__dict__["list_managed_instances_results"] = list_managed_instances_results
1397
1435
  __props__.__dict__["name"] = name
1398
1436
  __props__.__dict__["named_ports"] = named_ports
1437
+ __props__.__dict__["params"] = params
1399
1438
  __props__.__dict__["project"] = project
1400
1439
  __props__.__dict__["region"] = region
1401
1440
  __props__.__dict__["self_link"] = self_link
@@ -1534,6 +1573,16 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
1534
1573
  """
1535
1574
  return pulumi.get(self, "named_ports")
1536
1575
 
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
+
1537
1586
  @property
1538
1587
  @pulumi.getter
1539
1588
  def project(self) -> pulumi.Output[str]:
@@ -1574,8 +1623,6 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
1574
1623
  def stateful_external_ips(self) -> pulumi.Output[Optional[Sequence['outputs.RegionInstanceGroupManagerStatefulExternalIp']]]:
1575
1624
  """
1576
1625
  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
- - - -
1579
1626
  """
1580
1627
  return pulumi.get(self, "stateful_external_ips")
1581
1628