pulumi-gcp 7.18.0__py3-none-any.whl → 7.18.0a1712683935__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.
@@ -8273,8 +8273,6 @@ class ClusterNodePoolAutoConfig(dict):
8273
8273
  suggest = None
8274
8274
  if key == "networkTags":
8275
8275
  suggest = "network_tags"
8276
- elif key == "resourceManagerTags":
8277
- suggest = "resource_manager_tags"
8278
8276
 
8279
8277
  if suggest:
8280
8278
  pulumi.log.warn(f"Key '{key}' not found in ClusterNodePoolAutoConfig. Access the value via the '{suggest}' property getter instead.")
@@ -8288,16 +8286,12 @@ class ClusterNodePoolAutoConfig(dict):
8288
8286
  return super().get(key, default)
8289
8287
 
8290
8288
  def __init__(__self__, *,
8291
- network_tags: Optional['outputs.ClusterNodePoolAutoConfigNetworkTags'] = None,
8292
- resource_manager_tags: Optional[Mapping[str, Any]] = None):
8289
+ network_tags: Optional['outputs.ClusterNodePoolAutoConfigNetworkTags'] = None):
8293
8290
  """
8294
8291
  :param 'ClusterNodePoolAutoConfigNetworkTagsArgs' network_tags: The network tag config for the cluster's automatically provisioned node pools.
8295
- :param Mapping[str, Any] resource_manager_tags: A map of resource manager tag keys and values to be attached to the nodes for managing Compute Engine firewalls using Network Firewall Policies. Tags must be according to specifications found [here](https://cloud.google.com/vpc/docs/tags-firewalls-overview#specifications). A maximum of 5 tag key-value pairs can be specified. Existing tags will be replaced with new values. Tags must be in one of the following formats ([KEY]=[VALUE]) 1. `tagKeys/{tag_key_id}=tagValues/{tag_value_id}` 2. `{org_id}/{tag_key_name}={tag_value_name}` 3. `{project_id}/{tag_key_name}={tag_value_name}`.
8296
8292
  """
8297
8293
  if network_tags is not None:
8298
8294
  pulumi.set(__self__, "network_tags", network_tags)
8299
- if resource_manager_tags is not None:
8300
- pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
8301
8295
 
8302
8296
  @property
8303
8297
  @pulumi.getter(name="networkTags")
@@ -8307,14 +8301,6 @@ class ClusterNodePoolAutoConfig(dict):
8307
8301
  """
8308
8302
  return pulumi.get(self, "network_tags")
8309
8303
 
8310
- @property
8311
- @pulumi.getter(name="resourceManagerTags")
8312
- def resource_manager_tags(self) -> Optional[Mapping[str, Any]]:
8313
- """
8314
- A map of resource manager tag keys and values to be attached to the nodes for managing Compute Engine firewalls using Network Firewall Policies. Tags must be according to specifications found [here](https://cloud.google.com/vpc/docs/tags-firewalls-overview#specifications). A maximum of 5 tag key-value pairs can be specified. Existing tags will be replaced with new values. Tags must be in one of the following formats ([KEY]=[VALUE]) 1. `tagKeys/{tag_key_id}=tagValues/{tag_value_id}` 2. `{org_id}/{tag_key_name}={tag_value_name}` 3. `{project_id}/{tag_key_name}={tag_value_name}`.
8315
- """
8316
- return pulumi.get(self, "resource_manager_tags")
8317
-
8318
8304
 
8319
8305
  @pulumi.output_type
8320
8306
  class ClusterNodePoolAutoConfigNetworkTags(dict):
@@ -16437,14 +16423,11 @@ class GetClusterNodePoolResult(dict):
16437
16423
  @pulumi.output_type
16438
16424
  class GetClusterNodePoolAutoConfigResult(dict):
16439
16425
  def __init__(__self__, *,
16440
- network_tags: Sequence['outputs.GetClusterNodePoolAutoConfigNetworkTagResult'],
16441
- resource_manager_tags: Mapping[str, Any]):
16426
+ network_tags: Sequence['outputs.GetClusterNodePoolAutoConfigNetworkTagResult']):
16442
16427
  """
16443
16428
  :param Sequence['GetClusterNodePoolAutoConfigNetworkTagArgs'] network_tags: Collection of Compute Engine network tags that can be applied to a node's underlying VM instance.
16444
- :param Mapping[str, Any] resource_manager_tags: A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
16445
16429
  """
16446
16430
  pulumi.set(__self__, "network_tags", network_tags)
16447
- pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
16448
16431
 
16449
16432
  @property
16450
16433
  @pulumi.getter(name="networkTags")
@@ -16454,14 +16437,6 @@ class GetClusterNodePoolAutoConfigResult(dict):
16454
16437
  """
16455
16438
  return pulumi.get(self, "network_tags")
16456
16439
 
16457
- @property
16458
- @pulumi.getter(name="resourceManagerTags")
16459
- def resource_manager_tags(self) -> Mapping[str, Any]:
16460
- """
16461
- A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
16462
- """
16463
- return pulumi.get(self, "resource_manager_tags")
16464
-
16465
16440
 
16466
16441
  @pulumi.output_type
16467
16442
  class GetClusterNodePoolAutoConfigNetworkTagResult(dict):
@@ -25,7 +25,7 @@ class BackupScheduleArgs:
25
25
  The set of arguments for constructing a BackupSchedule resource.
26
26
  :param pulumi.Input[str] retention: At what relative time in the future, compared to its creation time, the backup should be deleted, e.g. keep backups for 7 days.
27
27
  A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
28
- You can set this to a value up to 14 weeks.
28
+ For a daily backup recurrence, set this to a value up to 7 days. If you set a weekly backup recurrence, set this to a value up to 14 weeks.
29
29
 
30
30
 
31
31
  - - -
@@ -52,7 +52,7 @@ class BackupScheduleArgs:
52
52
  """
53
53
  At what relative time in the future, compared to its creation time, the backup should be deleted, e.g. keep backups for 7 days.
54
54
  A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
55
- You can set this to a value up to 14 weeks.
55
+ For a daily backup recurrence, set this to a value up to 7 days. If you set a weekly backup recurrence, set this to a value up to 14 weeks.
56
56
 
57
57
 
58
58
  - - -
@@ -133,7 +133,7 @@ class _BackupScheduleState:
133
133
  If it is not provided, the provider project is used.
134
134
  :param pulumi.Input[str] retention: At what relative time in the future, compared to its creation time, the backup should be deleted, e.g. keep backups for 7 days.
135
135
  A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
136
- You can set this to a value up to 14 weeks.
136
+ For a daily backup recurrence, set this to a value up to 7 days. If you set a weekly backup recurrence, set this to a value up to 14 weeks.
137
137
 
138
138
 
139
139
  - - -
@@ -209,7 +209,7 @@ class _BackupScheduleState:
209
209
  """
210
210
  At what relative time in the future, compared to its creation time, the backup should be deleted, e.g. keep backups for 7 days.
211
211
  A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
212
- You can set this to a value up to 14 weeks.
212
+ For a daily backup recurrence, set this to a value up to 7 days. If you set a weekly backup recurrence, set this to a value up to 14 weeks.
213
213
 
214
214
 
215
215
  - - -
@@ -280,7 +280,7 @@ class BackupSchedule(pulumi.CustomResource):
280
280
  daily_backup = gcp.firestore.BackupSchedule("daily-backup",
281
281
  project="my-project-name",
282
282
  database=database.name,
283
- retention="8467200s",
283
+ retention="604800s",
284
284
  daily_recurrence=gcp.firestore.BackupScheduleDailyRecurrenceArgs())
285
285
  ```
286
286
  <!--End PulumiCodeChooser -->
@@ -340,7 +340,7 @@ class BackupSchedule(pulumi.CustomResource):
340
340
  If it is not provided, the provider project is used.
341
341
  :param pulumi.Input[str] retention: At what relative time in the future, compared to its creation time, the backup should be deleted, e.g. keep backups for 7 days.
342
342
  A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
343
- You can set this to a value up to 14 weeks.
343
+ For a daily backup recurrence, set this to a value up to 7 days. If you set a weekly backup recurrence, set this to a value up to 14 weeks.
344
344
 
345
345
 
346
346
  - - -
@@ -388,7 +388,7 @@ class BackupSchedule(pulumi.CustomResource):
388
388
  daily_backup = gcp.firestore.BackupSchedule("daily-backup",
389
389
  project="my-project-name",
390
390
  database=database.name,
391
- retention="8467200s",
391
+ retention="604800s",
392
392
  daily_recurrence=gcp.firestore.BackupScheduleDailyRecurrenceArgs())
393
393
  ```
394
394
  <!--End PulumiCodeChooser -->
@@ -508,7 +508,7 @@ class BackupSchedule(pulumi.CustomResource):
508
508
  If it is not provided, the provider project is used.
509
509
  :param pulumi.Input[str] retention: At what relative time in the future, compared to its creation time, the backup should be deleted, e.g. keep backups for 7 days.
510
510
  A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
511
- You can set this to a value up to 14 weeks.
511
+ For a daily backup recurrence, set this to a value up to 7 days. If you set a weekly backup recurrence, set this to a value up to 14 weeks.
512
512
 
513
513
 
514
514
  - - -
@@ -567,7 +567,7 @@ class BackupSchedule(pulumi.CustomResource):
567
567
  """
568
568
  At what relative time in the future, compared to its creation time, the backup should be deleted, e.g. keep backups for 7 days.
569
569
  A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
570
- You can set this to a value up to 14 weeks.
570
+ For a daily backup recurrence, set this to a value up to 7 days. If you set a weekly backup recurrence, set this to a value up to 14 weeks.
571
571
 
572
572
 
573
573
  - - -
@@ -26,7 +26,6 @@ class VMwareClusterArgs:
26
26
  auto_repair_config: Optional[pulumi.Input['VMwareClusterAutoRepairConfigArgs']] = None,
27
27
  dataplane_v2: Optional[pulumi.Input['VMwareClusterDataplaneV2Args']] = None,
28
28
  description: Optional[pulumi.Input[str]] = None,
29
- disable_bundled_ingress: Optional[pulumi.Input[bool]] = None,
30
29
  enable_control_plane_v2: Optional[pulumi.Input[bool]] = None,
31
30
  load_balancer: Optional[pulumi.Input['VMwareClusterLoadBalancerArgs']] = None,
32
31
  name: Optional[pulumi.Input[str]] = None,
@@ -67,7 +66,6 @@ class VMwareClusterArgs:
67
66
  :param pulumi.Input['VMwareClusterDataplaneV2Args'] dataplane_v2: VmwareDataplaneV2Config specifies configuration for Dataplane V2.
68
67
  Structure is documented below.
69
68
  :param pulumi.Input[str] description: A human readable description of this VMware User Cluster.
70
- :param pulumi.Input[bool] disable_bundled_ingress: Disable bundled ingress.
71
69
  :param pulumi.Input[bool] enable_control_plane_v2: Enable control plane V2. Default to false.
72
70
  :param pulumi.Input['VMwareClusterLoadBalancerArgs'] load_balancer: Load Balancer configuration.
73
71
  Structure is documented below.
@@ -101,8 +99,6 @@ class VMwareClusterArgs:
101
99
  pulumi.set(__self__, "dataplane_v2", dataplane_v2)
102
100
  if description is not None:
103
101
  pulumi.set(__self__, "description", description)
104
- if disable_bundled_ingress is not None:
105
- pulumi.set(__self__, "disable_bundled_ingress", disable_bundled_ingress)
106
102
  if enable_control_plane_v2 is not None:
107
103
  pulumi.set(__self__, "enable_control_plane_v2", enable_control_plane_v2)
108
104
  if load_balancer is not None:
@@ -261,18 +257,6 @@ class VMwareClusterArgs:
261
257
  def description(self, value: Optional[pulumi.Input[str]]):
262
258
  pulumi.set(self, "description", value)
263
259
 
264
- @property
265
- @pulumi.getter(name="disableBundledIngress")
266
- def disable_bundled_ingress(self) -> Optional[pulumi.Input[bool]]:
267
- """
268
- Disable bundled ingress.
269
- """
270
- return pulumi.get(self, "disable_bundled_ingress")
271
-
272
- @disable_bundled_ingress.setter
273
- def disable_bundled_ingress(self, value: Optional[pulumi.Input[bool]]):
274
- pulumi.set(self, "disable_bundled_ingress", value)
275
-
276
260
  @property
277
261
  @pulumi.getter(name="enableControlPlaneV2")
278
262
  def enable_control_plane_v2(self) -> Optional[pulumi.Input[bool]]:
@@ -402,7 +386,6 @@ class _VMwareClusterState:
402
386
  dataplane_v2: Optional[pulumi.Input['VMwareClusterDataplaneV2Args']] = None,
403
387
  delete_time: Optional[pulumi.Input[str]] = None,
404
388
  description: Optional[pulumi.Input[str]] = None,
405
- disable_bundled_ingress: Optional[pulumi.Input[bool]] = None,
406
389
  effective_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
407
390
  enable_control_plane_v2: Optional[pulumi.Input[bool]] = None,
408
391
  endpoint: Optional[pulumi.Input[str]] = None,
@@ -456,7 +439,6 @@ class _VMwareClusterState:
456
439
  Structure is documented below.
457
440
  :param pulumi.Input[str] delete_time: The time at which VMware User Cluster was deleted.
458
441
  :param pulumi.Input[str] description: A human readable description of this VMware User Cluster.
459
- :param pulumi.Input[bool] disable_bundled_ingress: Disable bundled ingress.
460
442
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
461
443
  Terraform, other clients and services.
462
444
  :param pulumi.Input[bool] enable_control_plane_v2: Enable control plane V2. Default to false.
@@ -526,8 +508,6 @@ class _VMwareClusterState:
526
508
  pulumi.set(__self__, "delete_time", delete_time)
527
509
  if description is not None:
528
510
  pulumi.set(__self__, "description", description)
529
- if disable_bundled_ingress is not None:
530
- pulumi.set(__self__, "disable_bundled_ingress", disable_bundled_ingress)
531
511
  if effective_annotations is not None:
532
512
  pulumi.set(__self__, "effective_annotations", effective_annotations)
533
513
  if enable_control_plane_v2 is not None:
@@ -712,18 +692,6 @@ class _VMwareClusterState:
712
692
  def description(self, value: Optional[pulumi.Input[str]]):
713
693
  pulumi.set(self, "description", value)
714
694
 
715
- @property
716
- @pulumi.getter(name="disableBundledIngress")
717
- def disable_bundled_ingress(self) -> Optional[pulumi.Input[bool]]:
718
- """
719
- Disable bundled ingress.
720
- """
721
- return pulumi.get(self, "disable_bundled_ingress")
722
-
723
- @disable_bundled_ingress.setter
724
- def disable_bundled_ingress(self, value: Optional[pulumi.Input[bool]]):
725
- pulumi.set(self, "disable_bundled_ingress", value)
726
-
727
695
  @property
728
696
  @pulumi.getter(name="effectiveAnnotations")
729
697
  def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -1028,7 +996,6 @@ class VMwareCluster(pulumi.CustomResource):
1028
996
  control_plane_node: Optional[pulumi.Input[pulumi.InputType['VMwareClusterControlPlaneNodeArgs']]] = None,
1029
997
  dataplane_v2: Optional[pulumi.Input[pulumi.InputType['VMwareClusterDataplaneV2Args']]] = None,
1030
998
  description: Optional[pulumi.Input[str]] = None,
1031
- disable_bundled_ingress: Optional[pulumi.Input[bool]] = None,
1032
999
  enable_control_plane_v2: Optional[pulumi.Input[bool]] = None,
1033
1000
  load_balancer: Optional[pulumi.Input[pulumi.InputType['VMwareClusterLoadBalancerArgs']]] = None,
1034
1001
  location: Optional[pulumi.Input[str]] = None,
@@ -1154,7 +1121,6 @@ class VMwareCluster(pulumi.CustomResource):
1154
1121
  ),
1155
1122
  vm_tracking_enabled=True,
1156
1123
  enable_control_plane_v2=True,
1157
- disable_bundled_ingress=True,
1158
1124
  authorization=gcp.gkeonprem.VMwareClusterAuthorizationArgs(
1159
1125
  admin_users=[gcp.gkeonprem.VMwareClusterAuthorizationAdminUserArgs(
1160
1126
  username="testuser@gmail.com",
@@ -1324,7 +1290,6 @@ class VMwareCluster(pulumi.CustomResource):
1324
1290
  :param pulumi.Input[pulumi.InputType['VMwareClusterDataplaneV2Args']] dataplane_v2: VmwareDataplaneV2Config specifies configuration for Dataplane V2.
1325
1291
  Structure is documented below.
1326
1292
  :param pulumi.Input[str] description: A human readable description of this VMware User Cluster.
1327
- :param pulumi.Input[bool] disable_bundled_ingress: Disable bundled ingress.
1328
1293
  :param pulumi.Input[bool] enable_control_plane_v2: Enable control plane V2. Default to false.
1329
1294
  :param pulumi.Input[pulumi.InputType['VMwareClusterLoadBalancerArgs']] load_balancer: Load Balancer configuration.
1330
1295
  Structure is documented below.
@@ -1463,7 +1428,6 @@ class VMwareCluster(pulumi.CustomResource):
1463
1428
  ),
1464
1429
  vm_tracking_enabled=True,
1465
1430
  enable_control_plane_v2=True,
1466
- disable_bundled_ingress=True,
1467
1431
  authorization=gcp.gkeonprem.VMwareClusterAuthorizationArgs(
1468
1432
  admin_users=[gcp.gkeonprem.VMwareClusterAuthorizationAdminUserArgs(
1469
1433
  username="testuser@gmail.com",
@@ -1627,7 +1591,6 @@ class VMwareCluster(pulumi.CustomResource):
1627
1591
  control_plane_node: Optional[pulumi.Input[pulumi.InputType['VMwareClusterControlPlaneNodeArgs']]] = None,
1628
1592
  dataplane_v2: Optional[pulumi.Input[pulumi.InputType['VMwareClusterDataplaneV2Args']]] = None,
1629
1593
  description: Optional[pulumi.Input[str]] = None,
1630
- disable_bundled_ingress: Optional[pulumi.Input[bool]] = None,
1631
1594
  enable_control_plane_v2: Optional[pulumi.Input[bool]] = None,
1632
1595
  load_balancer: Optional[pulumi.Input[pulumi.InputType['VMwareClusterLoadBalancerArgs']]] = None,
1633
1596
  location: Optional[pulumi.Input[str]] = None,
@@ -1660,7 +1623,6 @@ class VMwareCluster(pulumi.CustomResource):
1660
1623
  __props__.__dict__["control_plane_node"] = control_plane_node
1661
1624
  __props__.__dict__["dataplane_v2"] = dataplane_v2
1662
1625
  __props__.__dict__["description"] = description
1663
- __props__.__dict__["disable_bundled_ingress"] = disable_bundled_ingress
1664
1626
  __props__.__dict__["enable_control_plane_v2"] = enable_control_plane_v2
1665
1627
  __props__.__dict__["load_balancer"] = load_balancer
1666
1628
  if location is None and not opts.urn:
@@ -1709,7 +1671,6 @@ class VMwareCluster(pulumi.CustomResource):
1709
1671
  dataplane_v2: Optional[pulumi.Input[pulumi.InputType['VMwareClusterDataplaneV2Args']]] = None,
1710
1672
  delete_time: Optional[pulumi.Input[str]] = None,
1711
1673
  description: Optional[pulumi.Input[str]] = None,
1712
- disable_bundled_ingress: Optional[pulumi.Input[bool]] = None,
1713
1674
  effective_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1714
1675
  enable_control_plane_v2: Optional[pulumi.Input[bool]] = None,
1715
1676
  endpoint: Optional[pulumi.Input[str]] = None,
@@ -1768,7 +1729,6 @@ class VMwareCluster(pulumi.CustomResource):
1768
1729
  Structure is documented below.
1769
1730
  :param pulumi.Input[str] delete_time: The time at which VMware User Cluster was deleted.
1770
1731
  :param pulumi.Input[str] description: A human readable description of this VMware User Cluster.
1771
- :param pulumi.Input[bool] disable_bundled_ingress: Disable bundled ingress.
1772
1732
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
1773
1733
  Terraform, other clients and services.
1774
1734
  :param pulumi.Input[bool] enable_control_plane_v2: Enable control plane V2. Default to false.
@@ -1832,7 +1792,6 @@ class VMwareCluster(pulumi.CustomResource):
1832
1792
  __props__.__dict__["dataplane_v2"] = dataplane_v2
1833
1793
  __props__.__dict__["delete_time"] = delete_time
1834
1794
  __props__.__dict__["description"] = description
1835
- __props__.__dict__["disable_bundled_ingress"] = disable_bundled_ingress
1836
1795
  __props__.__dict__["effective_annotations"] = effective_annotations
1837
1796
  __props__.__dict__["enable_control_plane_v2"] = enable_control_plane_v2
1838
1797
  __props__.__dict__["endpoint"] = endpoint
@@ -1956,14 +1915,6 @@ class VMwareCluster(pulumi.CustomResource):
1956
1915
  """
1957
1916
  return pulumi.get(self, "description")
1958
1917
 
1959
- @property
1960
- @pulumi.getter(name="disableBundledIngress")
1961
- def disable_bundled_ingress(self) -> pulumi.Output[Optional[bool]]:
1962
- """
1963
- Disable bundled ingress.
1964
- """
1965
- return pulumi.get(self, "disable_bundled_ingress")
1966
-
1967
1918
  @property
1968
1919
  @pulumi.getter(name="effectiveAnnotations")
1969
1920
  def effective_annotations(self) -> pulumi.Output[Mapping[str, str]]:
@@ -58,8 +58,8 @@ class InstanceArgs:
58
58
  :param pulumi.Input['InstanceOauthConfigArgs'] oauth_config: Looker Instance OAuth login settings.
59
59
  Structure is documented below.
60
60
  :param pulumi.Input[str] platform_edition: Platform editions for a Looker instance. Each edition maps to a set of instance features, like its size. Must be one of these values:
61
- - LOOKER_CORE_TRIAL: trial instance (Currently Unavailable)
62
- - LOOKER_CORE_STANDARD: pay as you go standard instance (Currently Unavailable)
61
+ - LOOKER_CORE_TRIAL: trial instance
62
+ - LOOKER_CORE_STANDARD: pay as you go standard instance
63
63
  - LOOKER_CORE_STANDARD_ANNUAL: subscription standard instance
64
64
  - LOOKER_CORE_ENTERPRISE_ANNUAL: subscription enterprise instance
65
65
  - LOOKER_CORE_EMBED_ANNUAL: subscription embed instance
@@ -229,8 +229,8 @@ class InstanceArgs:
229
229
  def platform_edition(self) -> Optional[pulumi.Input[str]]:
230
230
  """
231
231
  Platform editions for a Looker instance. Each edition maps to a set of instance features, like its size. Must be one of these values:
232
- - LOOKER_CORE_TRIAL: trial instance (Currently Unavailable)
233
- - LOOKER_CORE_STANDARD: pay as you go standard instance (Currently Unavailable)
232
+ - LOOKER_CORE_TRIAL: trial instance
233
+ - LOOKER_CORE_STANDARD: pay as you go standard instance
234
234
  - LOOKER_CORE_STANDARD_ANNUAL: subscription standard instance
235
235
  - LOOKER_CORE_ENTERPRISE_ANNUAL: subscription enterprise instance
236
236
  - LOOKER_CORE_EMBED_ANNUAL: subscription embed instance
@@ -384,8 +384,8 @@ class _InstanceState:
384
384
  :param pulumi.Input['InstanceOauthConfigArgs'] oauth_config: Looker Instance OAuth login settings.
385
385
  Structure is documented below.
386
386
  :param pulumi.Input[str] platform_edition: Platform editions for a Looker instance. Each edition maps to a set of instance features, like its size. Must be one of these values:
387
- - LOOKER_CORE_TRIAL: trial instance (Currently Unavailable)
388
- - LOOKER_CORE_STANDARD: pay as you go standard instance (Currently Unavailable)
387
+ - LOOKER_CORE_TRIAL: trial instance
388
+ - LOOKER_CORE_STANDARD: pay as you go standard instance
389
389
  - LOOKER_CORE_STANDARD_ANNUAL: subscription standard instance
390
390
  - LOOKER_CORE_ENTERPRISE_ANNUAL: subscription enterprise instance
391
391
  - LOOKER_CORE_EMBED_ANNUAL: subscription embed instance
@@ -644,8 +644,8 @@ class _InstanceState:
644
644
  def platform_edition(self) -> Optional[pulumi.Input[str]]:
645
645
  """
646
646
  Platform editions for a Looker instance. Each edition maps to a set of instance features, like its size. Must be one of these values:
647
- - LOOKER_CORE_TRIAL: trial instance (Currently Unavailable)
648
- - LOOKER_CORE_STANDARD: pay as you go standard instance (Currently Unavailable)
647
+ - LOOKER_CORE_TRIAL: trial instance
648
+ - LOOKER_CORE_STANDARD: pay as you go standard instance
649
649
  - LOOKER_CORE_STANDARD_ANNUAL: subscription standard instance
650
650
  - LOOKER_CORE_ENTERPRISE_ANNUAL: subscription enterprise instance
651
651
  - LOOKER_CORE_EMBED_ANNUAL: subscription embed instance
@@ -795,7 +795,7 @@ class Instance(pulumi.CustomResource):
795
795
 
796
796
  looker_instance = gcp.looker.Instance("looker-instance",
797
797
  name="my-instance",
798
- platform_edition="LOOKER_CORE_STANDARD_ANNUAL",
798
+ platform_edition="LOOKER_CORE_STANDARD",
799
799
  region="us-central1",
800
800
  oauth_config=gcp.looker.InstanceOauthConfigArgs(
801
801
  client_id="my-client-id",
@@ -812,12 +812,17 @@ class Instance(pulumi.CustomResource):
812
812
 
813
813
  looker_instance = gcp.looker.Instance("looker-instance",
814
814
  name="my-instance",
815
- platform_edition="LOOKER_CORE_STANDARD_ANNUAL",
815
+ platform_edition="LOOKER_CORE_STANDARD",
816
816
  region="us-central1",
817
817
  public_ip_enabled=True,
818
818
  admin_settings=gcp.looker.InstanceAdminSettingsArgs(
819
819
  allowed_email_domains=["google.com"],
820
820
  ),
821
+ user_metadata=gcp.looker.InstanceUserMetadataArgs(
822
+ additional_developer_user_count=10,
823
+ additional_standard_user_count=10,
824
+ additional_viewer_user_count=10,
825
+ ),
821
826
  maintenance_window=gcp.looker.InstanceMaintenanceWindowArgs(
822
827
  day_of_week="THURSDAY",
823
828
  start_time=gcp.looker.InstanceMaintenanceWindowStartTimeArgs(
@@ -930,7 +935,7 @@ class Instance(pulumi.CustomResource):
930
935
 
931
936
  looker_instance = gcp.looker.Instance("looker-instance",
932
937
  name="my-instance",
933
- platform_edition="LOOKER_CORE_STANDARD_ANNUAL",
938
+ platform_edition="LOOKER_CORE_STANDARD",
934
939
  region="us-central1",
935
940
  oauth_config=gcp.looker.InstanceOauthConfigArgs(
936
941
  client_id="my-client-id",
@@ -999,8 +1004,8 @@ class Instance(pulumi.CustomResource):
999
1004
  :param pulumi.Input[pulumi.InputType['InstanceOauthConfigArgs']] oauth_config: Looker Instance OAuth login settings.
1000
1005
  Structure is documented below.
1001
1006
  :param pulumi.Input[str] platform_edition: Platform editions for a Looker instance. Each edition maps to a set of instance features, like its size. Must be one of these values:
1002
- - LOOKER_CORE_TRIAL: trial instance (Currently Unavailable)
1003
- - LOOKER_CORE_STANDARD: pay as you go standard instance (Currently Unavailable)
1007
+ - LOOKER_CORE_TRIAL: trial instance
1008
+ - LOOKER_CORE_STANDARD: pay as you go standard instance
1004
1009
  - LOOKER_CORE_STANDARD_ANNUAL: subscription standard instance
1005
1010
  - LOOKER_CORE_ENTERPRISE_ANNUAL: subscription enterprise instance
1006
1011
  - LOOKER_CORE_EMBED_ANNUAL: subscription embed instance
@@ -1049,7 +1054,7 @@ class Instance(pulumi.CustomResource):
1049
1054
 
1050
1055
  looker_instance = gcp.looker.Instance("looker-instance",
1051
1056
  name="my-instance",
1052
- platform_edition="LOOKER_CORE_STANDARD_ANNUAL",
1057
+ platform_edition="LOOKER_CORE_STANDARD",
1053
1058
  region="us-central1",
1054
1059
  oauth_config=gcp.looker.InstanceOauthConfigArgs(
1055
1060
  client_id="my-client-id",
@@ -1066,12 +1071,17 @@ class Instance(pulumi.CustomResource):
1066
1071
 
1067
1072
  looker_instance = gcp.looker.Instance("looker-instance",
1068
1073
  name="my-instance",
1069
- platform_edition="LOOKER_CORE_STANDARD_ANNUAL",
1074
+ platform_edition="LOOKER_CORE_STANDARD",
1070
1075
  region="us-central1",
1071
1076
  public_ip_enabled=True,
1072
1077
  admin_settings=gcp.looker.InstanceAdminSettingsArgs(
1073
1078
  allowed_email_domains=["google.com"],
1074
1079
  ),
1080
+ user_metadata=gcp.looker.InstanceUserMetadataArgs(
1081
+ additional_developer_user_count=10,
1082
+ additional_standard_user_count=10,
1083
+ additional_viewer_user_count=10,
1084
+ ),
1075
1085
  maintenance_window=gcp.looker.InstanceMaintenanceWindowArgs(
1076
1086
  day_of_week="THURSDAY",
1077
1087
  start_time=gcp.looker.InstanceMaintenanceWindowStartTimeArgs(
@@ -1184,7 +1194,7 @@ class Instance(pulumi.CustomResource):
1184
1194
 
1185
1195
  looker_instance = gcp.looker.Instance("looker-instance",
1186
1196
  name="my-instance",
1187
- platform_edition="LOOKER_CORE_STANDARD_ANNUAL",
1197
+ platform_edition="LOOKER_CORE_STANDARD",
1188
1198
  region="us-central1",
1189
1199
  oauth_config=gcp.looker.InstanceOauthConfigArgs(
1190
1200
  client_id="my-client-id",
@@ -1358,8 +1368,8 @@ class Instance(pulumi.CustomResource):
1358
1368
  :param pulumi.Input[pulumi.InputType['InstanceOauthConfigArgs']] oauth_config: Looker Instance OAuth login settings.
1359
1369
  Structure is documented below.
1360
1370
  :param pulumi.Input[str] platform_edition: Platform editions for a Looker instance. Each edition maps to a set of instance features, like its size. Must be one of these values:
1361
- - LOOKER_CORE_TRIAL: trial instance (Currently Unavailable)
1362
- - LOOKER_CORE_STANDARD: pay as you go standard instance (Currently Unavailable)
1371
+ - LOOKER_CORE_TRIAL: trial instance
1372
+ - LOOKER_CORE_STANDARD: pay as you go standard instance
1363
1373
  - LOOKER_CORE_STANDARD_ANNUAL: subscription standard instance
1364
1374
  - LOOKER_CORE_ENTERPRISE_ANNUAL: subscription enterprise instance
1365
1375
  - LOOKER_CORE_EMBED_ANNUAL: subscription embed instance
@@ -1545,8 +1555,8 @@ class Instance(pulumi.CustomResource):
1545
1555
  def platform_edition(self) -> pulumi.Output[Optional[str]]:
1546
1556
  """
1547
1557
  Platform editions for a Looker instance. Each edition maps to a set of instance features, like its size. Must be one of these values:
1548
- - LOOKER_CORE_TRIAL: trial instance (Currently Unavailable)
1549
- - LOOKER_CORE_STANDARD: pay as you go standard instance (Currently Unavailable)
1558
+ - LOOKER_CORE_TRIAL: trial instance
1559
+ - LOOKER_CORE_STANDARD: pay as you go standard instance
1550
1560
  - LOOKER_CORE_STANDARD_ANNUAL: subscription standard instance
1551
1561
  - LOOKER_CORE_ENTERPRISE_ANNUAL: subscription enterprise instance
1552
1562
  - LOOKER_CORE_EMBED_ANNUAL: subscription embed instance