pulumi-gcp 7.18.0a1712683935__py3-none-any.whl → 7.18.0a1712714650__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/applicationintegration/client.py +22 -14
- pulumi_gcp/cloudrunv2/_inputs.py +73 -0
- pulumi_gcp/cloudrunv2/outputs.py +126 -0
- pulumi_gcp/container/_inputs.py +17 -1
- pulumi_gcp/container/cluster.py +47 -0
- pulumi_gcp/container/get_cluster.py +11 -1
- pulumi_gcp/container/outputs.py +27 -2
- pulumi_gcp/firestore/backup_schedule.py +9 -9
- pulumi_gcp/gkeonprem/v_mware_cluster.py +49 -0
- pulumi_gcp/looker/instance.py +20 -30
- pulumi_gcp/redis/cluster.py +91 -0
- pulumi_gcp/storage/bucket.py +28 -0
- pulumi_gcp/storage/get_bucket.py +17 -2
- {pulumi_gcp-7.18.0a1712683935.dist-info → pulumi_gcp-7.18.0a1712714650.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.18.0a1712683935.dist-info → pulumi_gcp-7.18.0a1712714650.dist-info}/RECORD +17 -17
- {pulumi_gcp-7.18.0a1712683935.dist-info → pulumi_gcp-7.18.0a1712714650.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.18.0a1712683935.dist-info → pulumi_gcp-7.18.0a1712714650.dist-info}/top_level.txt +0 -0
pulumi_gcp/container/outputs.py
CHANGED
@@ -8273,6 +8273,8 @@ 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"
|
8276
8278
|
|
8277
8279
|
if suggest:
|
8278
8280
|
pulumi.log.warn(f"Key '{key}' not found in ClusterNodePoolAutoConfig. Access the value via the '{suggest}' property getter instead.")
|
@@ -8286,12 +8288,16 @@ class ClusterNodePoolAutoConfig(dict):
|
|
8286
8288
|
return super().get(key, default)
|
8287
8289
|
|
8288
8290
|
def __init__(__self__, *,
|
8289
|
-
network_tags: Optional['outputs.ClusterNodePoolAutoConfigNetworkTags'] = None
|
8291
|
+
network_tags: Optional['outputs.ClusterNodePoolAutoConfigNetworkTags'] = None,
|
8292
|
+
resource_manager_tags: Optional[Mapping[str, Any]] = None):
|
8290
8293
|
"""
|
8291
8294
|
: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}`.
|
8292
8296
|
"""
|
8293
8297
|
if network_tags is not None:
|
8294
8298
|
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)
|
8295
8301
|
|
8296
8302
|
@property
|
8297
8303
|
@pulumi.getter(name="networkTags")
|
@@ -8301,6 +8307,14 @@ class ClusterNodePoolAutoConfig(dict):
|
|
8301
8307
|
"""
|
8302
8308
|
return pulumi.get(self, "network_tags")
|
8303
8309
|
|
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
|
+
|
8304
8318
|
|
8305
8319
|
@pulumi.output_type
|
8306
8320
|
class ClusterNodePoolAutoConfigNetworkTags(dict):
|
@@ -16423,11 +16437,14 @@ class GetClusterNodePoolResult(dict):
|
|
16423
16437
|
@pulumi.output_type
|
16424
16438
|
class GetClusterNodePoolAutoConfigResult(dict):
|
16425
16439
|
def __init__(__self__, *,
|
16426
|
-
network_tags: Sequence['outputs.GetClusterNodePoolAutoConfigNetworkTagResult']
|
16440
|
+
network_tags: Sequence['outputs.GetClusterNodePoolAutoConfigNetworkTagResult'],
|
16441
|
+
resource_manager_tags: Mapping[str, Any]):
|
16427
16442
|
"""
|
16428
16443
|
: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.
|
16429
16445
|
"""
|
16430
16446
|
pulumi.set(__self__, "network_tags", network_tags)
|
16447
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
16431
16448
|
|
16432
16449
|
@property
|
16433
16450
|
@pulumi.getter(name="networkTags")
|
@@ -16437,6 +16454,14 @@ class GetClusterNodePoolAutoConfigResult(dict):
|
|
16437
16454
|
"""
|
16438
16455
|
return pulumi.get(self, "network_tags")
|
16439
16456
|
|
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
|
+
|
16440
16465
|
|
16441
16466
|
@pulumi.output_type
|
16442
16467
|
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
|
-
|
28
|
+
You can 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
|
-
|
55
|
+
You can 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
|
-
|
136
|
+
You can 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
|
-
|
212
|
+
You can 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="
|
283
|
+
retention="8467200s",
|
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
|
-
|
343
|
+
You can 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="
|
391
|
+
retention="8467200s",
|
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
|
-
|
511
|
+
You can 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
|
-
|
570
|
+
You can set this to a value up to 14 weeks.
|
571
571
|
|
572
572
|
|
573
573
|
- - -
|
@@ -26,6 +26,7 @@ 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,
|
29
30
|
enable_control_plane_v2: Optional[pulumi.Input[bool]] = None,
|
30
31
|
load_balancer: Optional[pulumi.Input['VMwareClusterLoadBalancerArgs']] = None,
|
31
32
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -66,6 +67,7 @@ class VMwareClusterArgs:
|
|
66
67
|
:param pulumi.Input['VMwareClusterDataplaneV2Args'] dataplane_v2: VmwareDataplaneV2Config specifies configuration for Dataplane V2.
|
67
68
|
Structure is documented below.
|
68
69
|
: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.
|
69
71
|
:param pulumi.Input[bool] enable_control_plane_v2: Enable control plane V2. Default to false.
|
70
72
|
:param pulumi.Input['VMwareClusterLoadBalancerArgs'] load_balancer: Load Balancer configuration.
|
71
73
|
Structure is documented below.
|
@@ -99,6 +101,8 @@ class VMwareClusterArgs:
|
|
99
101
|
pulumi.set(__self__, "dataplane_v2", dataplane_v2)
|
100
102
|
if description is not None:
|
101
103
|
pulumi.set(__self__, "description", description)
|
104
|
+
if disable_bundled_ingress is not None:
|
105
|
+
pulumi.set(__self__, "disable_bundled_ingress", disable_bundled_ingress)
|
102
106
|
if enable_control_plane_v2 is not None:
|
103
107
|
pulumi.set(__self__, "enable_control_plane_v2", enable_control_plane_v2)
|
104
108
|
if load_balancer is not None:
|
@@ -257,6 +261,18 @@ class VMwareClusterArgs:
|
|
257
261
|
def description(self, value: Optional[pulumi.Input[str]]):
|
258
262
|
pulumi.set(self, "description", value)
|
259
263
|
|
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
|
+
|
260
276
|
@property
|
261
277
|
@pulumi.getter(name="enableControlPlaneV2")
|
262
278
|
def enable_control_plane_v2(self) -> Optional[pulumi.Input[bool]]:
|
@@ -386,6 +402,7 @@ class _VMwareClusterState:
|
|
386
402
|
dataplane_v2: Optional[pulumi.Input['VMwareClusterDataplaneV2Args']] = None,
|
387
403
|
delete_time: Optional[pulumi.Input[str]] = None,
|
388
404
|
description: Optional[pulumi.Input[str]] = None,
|
405
|
+
disable_bundled_ingress: Optional[pulumi.Input[bool]] = None,
|
389
406
|
effective_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
390
407
|
enable_control_plane_v2: Optional[pulumi.Input[bool]] = None,
|
391
408
|
endpoint: Optional[pulumi.Input[str]] = None,
|
@@ -439,6 +456,7 @@ class _VMwareClusterState:
|
|
439
456
|
Structure is documented below.
|
440
457
|
:param pulumi.Input[str] delete_time: The time at which VMware User Cluster was deleted.
|
441
458
|
: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.
|
442
460
|
: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
|
443
461
|
Terraform, other clients and services.
|
444
462
|
:param pulumi.Input[bool] enable_control_plane_v2: Enable control plane V2. Default to false.
|
@@ -508,6 +526,8 @@ class _VMwareClusterState:
|
|
508
526
|
pulumi.set(__self__, "delete_time", delete_time)
|
509
527
|
if description is not None:
|
510
528
|
pulumi.set(__self__, "description", description)
|
529
|
+
if disable_bundled_ingress is not None:
|
530
|
+
pulumi.set(__self__, "disable_bundled_ingress", disable_bundled_ingress)
|
511
531
|
if effective_annotations is not None:
|
512
532
|
pulumi.set(__self__, "effective_annotations", effective_annotations)
|
513
533
|
if enable_control_plane_v2 is not None:
|
@@ -692,6 +712,18 @@ class _VMwareClusterState:
|
|
692
712
|
def description(self, value: Optional[pulumi.Input[str]]):
|
693
713
|
pulumi.set(self, "description", value)
|
694
714
|
|
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
|
+
|
695
727
|
@property
|
696
728
|
@pulumi.getter(name="effectiveAnnotations")
|
697
729
|
def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -996,6 +1028,7 @@ class VMwareCluster(pulumi.CustomResource):
|
|
996
1028
|
control_plane_node: Optional[pulumi.Input[pulumi.InputType['VMwareClusterControlPlaneNodeArgs']]] = None,
|
997
1029
|
dataplane_v2: Optional[pulumi.Input[pulumi.InputType['VMwareClusterDataplaneV2Args']]] = None,
|
998
1030
|
description: Optional[pulumi.Input[str]] = None,
|
1031
|
+
disable_bundled_ingress: Optional[pulumi.Input[bool]] = None,
|
999
1032
|
enable_control_plane_v2: Optional[pulumi.Input[bool]] = None,
|
1000
1033
|
load_balancer: Optional[pulumi.Input[pulumi.InputType['VMwareClusterLoadBalancerArgs']]] = None,
|
1001
1034
|
location: Optional[pulumi.Input[str]] = None,
|
@@ -1121,6 +1154,7 @@ class VMwareCluster(pulumi.CustomResource):
|
|
1121
1154
|
),
|
1122
1155
|
vm_tracking_enabled=True,
|
1123
1156
|
enable_control_plane_v2=True,
|
1157
|
+
disable_bundled_ingress=True,
|
1124
1158
|
authorization=gcp.gkeonprem.VMwareClusterAuthorizationArgs(
|
1125
1159
|
admin_users=[gcp.gkeonprem.VMwareClusterAuthorizationAdminUserArgs(
|
1126
1160
|
username="testuser@gmail.com",
|
@@ -1290,6 +1324,7 @@ class VMwareCluster(pulumi.CustomResource):
|
|
1290
1324
|
:param pulumi.Input[pulumi.InputType['VMwareClusterDataplaneV2Args']] dataplane_v2: VmwareDataplaneV2Config specifies configuration for Dataplane V2.
|
1291
1325
|
Structure is documented below.
|
1292
1326
|
: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.
|
1293
1328
|
:param pulumi.Input[bool] enable_control_plane_v2: Enable control plane V2. Default to false.
|
1294
1329
|
:param pulumi.Input[pulumi.InputType['VMwareClusterLoadBalancerArgs']] load_balancer: Load Balancer configuration.
|
1295
1330
|
Structure is documented below.
|
@@ -1428,6 +1463,7 @@ class VMwareCluster(pulumi.CustomResource):
|
|
1428
1463
|
),
|
1429
1464
|
vm_tracking_enabled=True,
|
1430
1465
|
enable_control_plane_v2=True,
|
1466
|
+
disable_bundled_ingress=True,
|
1431
1467
|
authorization=gcp.gkeonprem.VMwareClusterAuthorizationArgs(
|
1432
1468
|
admin_users=[gcp.gkeonprem.VMwareClusterAuthorizationAdminUserArgs(
|
1433
1469
|
username="testuser@gmail.com",
|
@@ -1591,6 +1627,7 @@ class VMwareCluster(pulumi.CustomResource):
|
|
1591
1627
|
control_plane_node: Optional[pulumi.Input[pulumi.InputType['VMwareClusterControlPlaneNodeArgs']]] = None,
|
1592
1628
|
dataplane_v2: Optional[pulumi.Input[pulumi.InputType['VMwareClusterDataplaneV2Args']]] = None,
|
1593
1629
|
description: Optional[pulumi.Input[str]] = None,
|
1630
|
+
disable_bundled_ingress: Optional[pulumi.Input[bool]] = None,
|
1594
1631
|
enable_control_plane_v2: Optional[pulumi.Input[bool]] = None,
|
1595
1632
|
load_balancer: Optional[pulumi.Input[pulumi.InputType['VMwareClusterLoadBalancerArgs']]] = None,
|
1596
1633
|
location: Optional[pulumi.Input[str]] = None,
|
@@ -1623,6 +1660,7 @@ class VMwareCluster(pulumi.CustomResource):
|
|
1623
1660
|
__props__.__dict__["control_plane_node"] = control_plane_node
|
1624
1661
|
__props__.__dict__["dataplane_v2"] = dataplane_v2
|
1625
1662
|
__props__.__dict__["description"] = description
|
1663
|
+
__props__.__dict__["disable_bundled_ingress"] = disable_bundled_ingress
|
1626
1664
|
__props__.__dict__["enable_control_plane_v2"] = enable_control_plane_v2
|
1627
1665
|
__props__.__dict__["load_balancer"] = load_balancer
|
1628
1666
|
if location is None and not opts.urn:
|
@@ -1671,6 +1709,7 @@ class VMwareCluster(pulumi.CustomResource):
|
|
1671
1709
|
dataplane_v2: Optional[pulumi.Input[pulumi.InputType['VMwareClusterDataplaneV2Args']]] = None,
|
1672
1710
|
delete_time: Optional[pulumi.Input[str]] = None,
|
1673
1711
|
description: Optional[pulumi.Input[str]] = None,
|
1712
|
+
disable_bundled_ingress: Optional[pulumi.Input[bool]] = None,
|
1674
1713
|
effective_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1675
1714
|
enable_control_plane_v2: Optional[pulumi.Input[bool]] = None,
|
1676
1715
|
endpoint: Optional[pulumi.Input[str]] = None,
|
@@ -1729,6 +1768,7 @@ class VMwareCluster(pulumi.CustomResource):
|
|
1729
1768
|
Structure is documented below.
|
1730
1769
|
:param pulumi.Input[str] delete_time: The time at which VMware User Cluster was deleted.
|
1731
1770
|
: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.
|
1732
1772
|
: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
|
1733
1773
|
Terraform, other clients and services.
|
1734
1774
|
:param pulumi.Input[bool] enable_control_plane_v2: Enable control plane V2. Default to false.
|
@@ -1792,6 +1832,7 @@ class VMwareCluster(pulumi.CustomResource):
|
|
1792
1832
|
__props__.__dict__["dataplane_v2"] = dataplane_v2
|
1793
1833
|
__props__.__dict__["delete_time"] = delete_time
|
1794
1834
|
__props__.__dict__["description"] = description
|
1835
|
+
__props__.__dict__["disable_bundled_ingress"] = disable_bundled_ingress
|
1795
1836
|
__props__.__dict__["effective_annotations"] = effective_annotations
|
1796
1837
|
__props__.__dict__["enable_control_plane_v2"] = enable_control_plane_v2
|
1797
1838
|
__props__.__dict__["endpoint"] = endpoint
|
@@ -1915,6 +1956,14 @@ class VMwareCluster(pulumi.CustomResource):
|
|
1915
1956
|
"""
|
1916
1957
|
return pulumi.get(self, "description")
|
1917
1958
|
|
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
|
+
|
1918
1967
|
@property
|
1919
1968
|
@pulumi.getter(name="effectiveAnnotations")
|
1920
1969
|
def effective_annotations(self) -> pulumi.Output[Mapping[str, str]]:
|
pulumi_gcp/looker/instance.py
CHANGED
@@ -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
|
62
|
-
- LOOKER_CORE_STANDARD: pay as you go standard instance
|
61
|
+
- LOOKER_CORE_TRIAL: trial instance (Currently Unavailable)
|
62
|
+
- LOOKER_CORE_STANDARD: pay as you go standard instance (Currently Unavailable)
|
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
|
233
|
-
- LOOKER_CORE_STANDARD: pay as you go standard instance
|
232
|
+
- LOOKER_CORE_TRIAL: trial instance (Currently Unavailable)
|
233
|
+
- LOOKER_CORE_STANDARD: pay as you go standard instance (Currently Unavailable)
|
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
|
388
|
-
- LOOKER_CORE_STANDARD: pay as you go standard instance
|
387
|
+
- LOOKER_CORE_TRIAL: trial instance (Currently Unavailable)
|
388
|
+
- LOOKER_CORE_STANDARD: pay as you go standard instance (Currently Unavailable)
|
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
|
648
|
-
- LOOKER_CORE_STANDARD: pay as you go standard instance
|
647
|
+
- LOOKER_CORE_TRIAL: trial instance (Currently Unavailable)
|
648
|
+
- LOOKER_CORE_STANDARD: pay as you go standard instance (Currently Unavailable)
|
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="
|
798
|
+
platform_edition="LOOKER_CORE_STANDARD_ANNUAL",
|
799
799
|
region="us-central1",
|
800
800
|
oauth_config=gcp.looker.InstanceOauthConfigArgs(
|
801
801
|
client_id="my-client-id",
|
@@ -812,17 +812,12 @@ class Instance(pulumi.CustomResource):
|
|
812
812
|
|
813
813
|
looker_instance = gcp.looker.Instance("looker-instance",
|
814
814
|
name="my-instance",
|
815
|
-
platform_edition="
|
815
|
+
platform_edition="LOOKER_CORE_STANDARD_ANNUAL",
|
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
|
-
),
|
826
821
|
maintenance_window=gcp.looker.InstanceMaintenanceWindowArgs(
|
827
822
|
day_of_week="THURSDAY",
|
828
823
|
start_time=gcp.looker.InstanceMaintenanceWindowStartTimeArgs(
|
@@ -935,7 +930,7 @@ class Instance(pulumi.CustomResource):
|
|
935
930
|
|
936
931
|
looker_instance = gcp.looker.Instance("looker-instance",
|
937
932
|
name="my-instance",
|
938
|
-
platform_edition="
|
933
|
+
platform_edition="LOOKER_CORE_STANDARD_ANNUAL",
|
939
934
|
region="us-central1",
|
940
935
|
oauth_config=gcp.looker.InstanceOauthConfigArgs(
|
941
936
|
client_id="my-client-id",
|
@@ -1004,8 +999,8 @@ class Instance(pulumi.CustomResource):
|
|
1004
999
|
:param pulumi.Input[pulumi.InputType['InstanceOauthConfigArgs']] oauth_config: Looker Instance OAuth login settings.
|
1005
1000
|
Structure is documented below.
|
1006
1001
|
: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:
|
1007
|
-
- LOOKER_CORE_TRIAL: trial instance
|
1008
|
-
- LOOKER_CORE_STANDARD: pay as you go standard instance
|
1002
|
+
- LOOKER_CORE_TRIAL: trial instance (Currently Unavailable)
|
1003
|
+
- LOOKER_CORE_STANDARD: pay as you go standard instance (Currently Unavailable)
|
1009
1004
|
- LOOKER_CORE_STANDARD_ANNUAL: subscription standard instance
|
1010
1005
|
- LOOKER_CORE_ENTERPRISE_ANNUAL: subscription enterprise instance
|
1011
1006
|
- LOOKER_CORE_EMBED_ANNUAL: subscription embed instance
|
@@ -1054,7 +1049,7 @@ class Instance(pulumi.CustomResource):
|
|
1054
1049
|
|
1055
1050
|
looker_instance = gcp.looker.Instance("looker-instance",
|
1056
1051
|
name="my-instance",
|
1057
|
-
platform_edition="
|
1052
|
+
platform_edition="LOOKER_CORE_STANDARD_ANNUAL",
|
1058
1053
|
region="us-central1",
|
1059
1054
|
oauth_config=gcp.looker.InstanceOauthConfigArgs(
|
1060
1055
|
client_id="my-client-id",
|
@@ -1071,17 +1066,12 @@ class Instance(pulumi.CustomResource):
|
|
1071
1066
|
|
1072
1067
|
looker_instance = gcp.looker.Instance("looker-instance",
|
1073
1068
|
name="my-instance",
|
1074
|
-
platform_edition="
|
1069
|
+
platform_edition="LOOKER_CORE_STANDARD_ANNUAL",
|
1075
1070
|
region="us-central1",
|
1076
1071
|
public_ip_enabled=True,
|
1077
1072
|
admin_settings=gcp.looker.InstanceAdminSettingsArgs(
|
1078
1073
|
allowed_email_domains=["google.com"],
|
1079
1074
|
),
|
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
|
-
),
|
1085
1075
|
maintenance_window=gcp.looker.InstanceMaintenanceWindowArgs(
|
1086
1076
|
day_of_week="THURSDAY",
|
1087
1077
|
start_time=gcp.looker.InstanceMaintenanceWindowStartTimeArgs(
|
@@ -1194,7 +1184,7 @@ class Instance(pulumi.CustomResource):
|
|
1194
1184
|
|
1195
1185
|
looker_instance = gcp.looker.Instance("looker-instance",
|
1196
1186
|
name="my-instance",
|
1197
|
-
platform_edition="
|
1187
|
+
platform_edition="LOOKER_CORE_STANDARD_ANNUAL",
|
1198
1188
|
region="us-central1",
|
1199
1189
|
oauth_config=gcp.looker.InstanceOauthConfigArgs(
|
1200
1190
|
client_id="my-client-id",
|
@@ -1368,8 +1358,8 @@ class Instance(pulumi.CustomResource):
|
|
1368
1358
|
:param pulumi.Input[pulumi.InputType['InstanceOauthConfigArgs']] oauth_config: Looker Instance OAuth login settings.
|
1369
1359
|
Structure is documented below.
|
1370
1360
|
: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:
|
1371
|
-
- LOOKER_CORE_TRIAL: trial instance
|
1372
|
-
- LOOKER_CORE_STANDARD: pay as you go standard instance
|
1361
|
+
- LOOKER_CORE_TRIAL: trial instance (Currently Unavailable)
|
1362
|
+
- LOOKER_CORE_STANDARD: pay as you go standard instance (Currently Unavailable)
|
1373
1363
|
- LOOKER_CORE_STANDARD_ANNUAL: subscription standard instance
|
1374
1364
|
- LOOKER_CORE_ENTERPRISE_ANNUAL: subscription enterprise instance
|
1375
1365
|
- LOOKER_CORE_EMBED_ANNUAL: subscription embed instance
|
@@ -1555,8 +1545,8 @@ class Instance(pulumi.CustomResource):
|
|
1555
1545
|
def platform_edition(self) -> pulumi.Output[Optional[str]]:
|
1556
1546
|
"""
|
1557
1547
|
Platform editions for a Looker instance. Each edition maps to a set of instance features, like its size. Must be one of these values:
|
1558
|
-
- LOOKER_CORE_TRIAL: trial instance
|
1559
|
-
- LOOKER_CORE_STANDARD: pay as you go standard instance
|
1548
|
+
- LOOKER_CORE_TRIAL: trial instance (Currently Unavailable)
|
1549
|
+
- LOOKER_CORE_STANDARD: pay as you go standard instance (Currently Unavailable)
|
1560
1550
|
- LOOKER_CORE_STANDARD_ANNUAL: subscription standard instance
|
1561
1551
|
- LOOKER_CORE_ENTERPRISE_ANNUAL: subscription enterprise instance
|
1562
1552
|
- LOOKER_CORE_EMBED_ANNUAL: subscription embed instance
|