pulumi-gcp 8.10.0__py3-none-any.whl → 8.10.0a1731739693__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +0 -24
- pulumi_gcp/accesscontextmanager/__init__.py +0 -1
- pulumi_gcp/accesscontextmanager/_inputs.py +54 -90
- pulumi_gcp/accesscontextmanager/outputs.py +36 -60
- pulumi_gcp/artifactregistry/_inputs.py +0 -56
- pulumi_gcp/artifactregistry/outputs.py +0 -65
- pulumi_gcp/artifactregistry/repository.py +0 -48
- pulumi_gcp/backupdisasterrecovery/__init__.py +0 -1
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +0 -63
- pulumi_gcp/backupdisasterrecovery/outputs.py +0 -402
- pulumi_gcp/certificateauthority/authority.py +138 -28
- pulumi_gcp/cloudrun/service.py +10 -0
- pulumi_gcp/cloudrunv2/get_service.py +4 -15
- pulumi_gcp/cloudrunv2/service.py +2 -30
- pulumi_gcp/compute/_inputs.py +12 -12
- pulumi_gcp/compute/outputs.py +10 -10
- pulumi_gcp/dataproc/__init__.py +0 -1
- pulumi_gcp/dataproc/_inputs.py +0 -490
- pulumi_gcp/dataproc/outputs.py +0 -385
- pulumi_gcp/filestore/_inputs.py +0 -152
- pulumi_gcp/filestore/get_instance.py +1 -12
- pulumi_gcp/filestore/instance.py +0 -47
- pulumi_gcp/filestore/outputs.py +0 -229
- pulumi_gcp/iam/__init__.py +0 -2
- pulumi_gcp/iam/_inputs.py +0 -274
- pulumi_gcp/iam/outputs.py +0 -198
- pulumi_gcp/managedkafka/cluster.py +0 -4
- pulumi_gcp/managedkafka/topic.py +0 -4
- pulumi_gcp/pubsub/subscription.py +8 -8
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +0 -213
- pulumi_gcp/redis/cluster.py +0 -289
- pulumi_gcp/redis/outputs.py +0 -185
- pulumi_gcp/securesourcemanager/_inputs.py +0 -33
- pulumi_gcp/securesourcemanager/instance.py +3 -90
- pulumi_gcp/securesourcemanager/outputs.py +0 -19
- pulumi_gcp/spanner/database.py +14 -14
- pulumi_gcp/sql/_inputs.py +0 -73
- pulumi_gcp/sql/database_instance.py +0 -60
- pulumi_gcp/sql/outputs.py +0 -146
- pulumi_gcp/sql/user.py +2 -2
- pulumi_gcp/tags/location_tag_binding.py +8 -8
- pulumi_gcp/vertex/ai_endpoint.py +29 -22
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731739693.dist-info}/METADATA +5 -5
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731739693.dist-info}/RECORD +47 -52
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731739693.dist-info}/WHEEL +1 -1
- pulumi_gcp/accesscontextmanager/get_access_policy.py +0 -158
- pulumi_gcp/backupdisasterrecovery/get_data_source.py +0 -263
- pulumi_gcp/dataproc/gdc_spark_application.py +0 -1658
- pulumi_gcp/iam/folders_policy_binding.py +0 -917
- pulumi_gcp/iam/organizations_policy_binding.py +0 -901
- {pulumi_gcp-8.10.0.dist-info → pulumi_gcp-8.10.0a1731739693.dist-info}/top_level.txt +0 -0
pulumi_gcp/redis/outputs.py
CHANGED
@@ -22,9 +22,6 @@ __all__ = [
|
|
22
22
|
'ClusterMaintenancePolicyWeeklyMaintenanceWindow',
|
23
23
|
'ClusterMaintenancePolicyWeeklyMaintenanceWindowStartTime',
|
24
24
|
'ClusterMaintenanceSchedule',
|
25
|
-
'ClusterPersistenceConfig',
|
26
|
-
'ClusterPersistenceConfigAofConfig',
|
27
|
-
'ClusterPersistenceConfigRdbConfig',
|
28
25
|
'ClusterPscConfig',
|
29
26
|
'ClusterPscConnection',
|
30
27
|
'ClusterStateInfo',
|
@@ -440,188 +437,6 @@ class ClusterMaintenanceSchedule(dict):
|
|
440
437
|
return pulumi.get(self, "start_time")
|
441
438
|
|
442
439
|
|
443
|
-
@pulumi.output_type
|
444
|
-
class ClusterPersistenceConfig(dict):
|
445
|
-
@staticmethod
|
446
|
-
def __key_warning(key: str):
|
447
|
-
suggest = None
|
448
|
-
if key == "aofConfig":
|
449
|
-
suggest = "aof_config"
|
450
|
-
elif key == "rdbConfig":
|
451
|
-
suggest = "rdb_config"
|
452
|
-
|
453
|
-
if suggest:
|
454
|
-
pulumi.log.warn(f"Key '{key}' not found in ClusterPersistenceConfig. Access the value via the '{suggest}' property getter instead.")
|
455
|
-
|
456
|
-
def __getitem__(self, key: str) -> Any:
|
457
|
-
ClusterPersistenceConfig.__key_warning(key)
|
458
|
-
return super().__getitem__(key)
|
459
|
-
|
460
|
-
def get(self, key: str, default = None) -> Any:
|
461
|
-
ClusterPersistenceConfig.__key_warning(key)
|
462
|
-
return super().get(key, default)
|
463
|
-
|
464
|
-
def __init__(__self__, *,
|
465
|
-
aof_config: Optional['outputs.ClusterPersistenceConfigAofConfig'] = None,
|
466
|
-
mode: Optional[str] = None,
|
467
|
-
rdb_config: Optional['outputs.ClusterPersistenceConfigRdbConfig'] = None):
|
468
|
-
"""
|
469
|
-
:param 'ClusterPersistenceConfigAofConfigArgs' aof_config: AOF configuration. This field will be ignored if mode is not AOF.
|
470
|
-
Structure is documented below.
|
471
|
-
:param str mode: Optional. Controls whether Persistence features are enabled. If not provided, the existing value will be used.
|
472
|
-
- DISABLED: Persistence (both backup and restore) is disabled for the cluster.
|
473
|
-
- RDB: RDB based Persistence is enabled.
|
474
|
-
- AOF: AOF based Persistence is enabled.
|
475
|
-
Possible values are: `PERSISTENCE_MODE_UNSPECIFIED`, `DISABLED`, `RDB`, `AOF`.
|
476
|
-
:param 'ClusterPersistenceConfigRdbConfigArgs' rdb_config: RDB configuration. This field will be ignored if mode is not RDB.
|
477
|
-
Structure is documented below.
|
478
|
-
"""
|
479
|
-
if aof_config is not None:
|
480
|
-
pulumi.set(__self__, "aof_config", aof_config)
|
481
|
-
if mode is not None:
|
482
|
-
pulumi.set(__self__, "mode", mode)
|
483
|
-
if rdb_config is not None:
|
484
|
-
pulumi.set(__self__, "rdb_config", rdb_config)
|
485
|
-
|
486
|
-
@property
|
487
|
-
@pulumi.getter(name="aofConfig")
|
488
|
-
def aof_config(self) -> Optional['outputs.ClusterPersistenceConfigAofConfig']:
|
489
|
-
"""
|
490
|
-
AOF configuration. This field will be ignored if mode is not AOF.
|
491
|
-
Structure is documented below.
|
492
|
-
"""
|
493
|
-
return pulumi.get(self, "aof_config")
|
494
|
-
|
495
|
-
@property
|
496
|
-
@pulumi.getter
|
497
|
-
def mode(self) -> Optional[str]:
|
498
|
-
"""
|
499
|
-
Optional. Controls whether Persistence features are enabled. If not provided, the existing value will be used.
|
500
|
-
- DISABLED: Persistence (both backup and restore) is disabled for the cluster.
|
501
|
-
- RDB: RDB based Persistence is enabled.
|
502
|
-
- AOF: AOF based Persistence is enabled.
|
503
|
-
Possible values are: `PERSISTENCE_MODE_UNSPECIFIED`, `DISABLED`, `RDB`, `AOF`.
|
504
|
-
"""
|
505
|
-
return pulumi.get(self, "mode")
|
506
|
-
|
507
|
-
@property
|
508
|
-
@pulumi.getter(name="rdbConfig")
|
509
|
-
def rdb_config(self) -> Optional['outputs.ClusterPersistenceConfigRdbConfig']:
|
510
|
-
"""
|
511
|
-
RDB configuration. This field will be ignored if mode is not RDB.
|
512
|
-
Structure is documented below.
|
513
|
-
"""
|
514
|
-
return pulumi.get(self, "rdb_config")
|
515
|
-
|
516
|
-
|
517
|
-
@pulumi.output_type
|
518
|
-
class ClusterPersistenceConfigAofConfig(dict):
|
519
|
-
@staticmethod
|
520
|
-
def __key_warning(key: str):
|
521
|
-
suggest = None
|
522
|
-
if key == "appendFsync":
|
523
|
-
suggest = "append_fsync"
|
524
|
-
|
525
|
-
if suggest:
|
526
|
-
pulumi.log.warn(f"Key '{key}' not found in ClusterPersistenceConfigAofConfig. Access the value via the '{suggest}' property getter instead.")
|
527
|
-
|
528
|
-
def __getitem__(self, key: str) -> Any:
|
529
|
-
ClusterPersistenceConfigAofConfig.__key_warning(key)
|
530
|
-
return super().__getitem__(key)
|
531
|
-
|
532
|
-
def get(self, key: str, default = None) -> Any:
|
533
|
-
ClusterPersistenceConfigAofConfig.__key_warning(key)
|
534
|
-
return super().get(key, default)
|
535
|
-
|
536
|
-
def __init__(__self__, *,
|
537
|
-
append_fsync: Optional[str] = None):
|
538
|
-
"""
|
539
|
-
:param str append_fsync: Optional. Available fsync modes.
|
540
|
-
- NO - Do not explicilty call fsync(). Rely on OS defaults.
|
541
|
-
- EVERYSEC - Call fsync() once per second in a background thread. A balance between performance and durability.
|
542
|
-
- ALWAYS - Call fsync() for earch write command.
|
543
|
-
Possible values are: `APPEND_FSYNC_UNSPECIFIED`, `NO`, `EVERYSEC`, `ALWAYS`.
|
544
|
-
"""
|
545
|
-
if append_fsync is not None:
|
546
|
-
pulumi.set(__self__, "append_fsync", append_fsync)
|
547
|
-
|
548
|
-
@property
|
549
|
-
@pulumi.getter(name="appendFsync")
|
550
|
-
def append_fsync(self) -> Optional[str]:
|
551
|
-
"""
|
552
|
-
Optional. Available fsync modes.
|
553
|
-
- NO - Do not explicilty call fsync(). Rely on OS defaults.
|
554
|
-
- EVERYSEC - Call fsync() once per second in a background thread. A balance between performance and durability.
|
555
|
-
- ALWAYS - Call fsync() for earch write command.
|
556
|
-
Possible values are: `APPEND_FSYNC_UNSPECIFIED`, `NO`, `EVERYSEC`, `ALWAYS`.
|
557
|
-
"""
|
558
|
-
return pulumi.get(self, "append_fsync")
|
559
|
-
|
560
|
-
|
561
|
-
@pulumi.output_type
|
562
|
-
class ClusterPersistenceConfigRdbConfig(dict):
|
563
|
-
@staticmethod
|
564
|
-
def __key_warning(key: str):
|
565
|
-
suggest = None
|
566
|
-
if key == "rdbSnapshotPeriod":
|
567
|
-
suggest = "rdb_snapshot_period"
|
568
|
-
elif key == "rdbSnapshotStartTime":
|
569
|
-
suggest = "rdb_snapshot_start_time"
|
570
|
-
|
571
|
-
if suggest:
|
572
|
-
pulumi.log.warn(f"Key '{key}' not found in ClusterPersistenceConfigRdbConfig. Access the value via the '{suggest}' property getter instead.")
|
573
|
-
|
574
|
-
def __getitem__(self, key: str) -> Any:
|
575
|
-
ClusterPersistenceConfigRdbConfig.__key_warning(key)
|
576
|
-
return super().__getitem__(key)
|
577
|
-
|
578
|
-
def get(self, key: str, default = None) -> Any:
|
579
|
-
ClusterPersistenceConfigRdbConfig.__key_warning(key)
|
580
|
-
return super().get(key, default)
|
581
|
-
|
582
|
-
def __init__(__self__, *,
|
583
|
-
rdb_snapshot_period: Optional[str] = None,
|
584
|
-
rdb_snapshot_start_time: Optional[str] = None):
|
585
|
-
"""
|
586
|
-
:param str rdb_snapshot_period: Optional. Available snapshot periods for scheduling.
|
587
|
-
- ONE_HOUR: Snapshot every 1 hour.
|
588
|
-
- SIX_HOURS: Snapshot every 6 hours.
|
589
|
-
- TWELVE_HOURS: Snapshot every 12 hours.
|
590
|
-
- TWENTY_FOUR_HOURS: Snapshot every 24 hours.
|
591
|
-
Possible values are: `SNAPSHOT_PERIOD_UNSPECIFIED`, `ONE_HOUR`, `SIX_HOURS`, `TWELVE_HOURS`, `TWENTY_FOUR_HOURS`.
|
592
|
-
:param str rdb_snapshot_start_time: The time that the first snapshot was/will be attempted, and to which
|
593
|
-
future snapshots will be aligned.
|
594
|
-
If not provided, the current time will be used.
|
595
|
-
"""
|
596
|
-
if rdb_snapshot_period is not None:
|
597
|
-
pulumi.set(__self__, "rdb_snapshot_period", rdb_snapshot_period)
|
598
|
-
if rdb_snapshot_start_time is not None:
|
599
|
-
pulumi.set(__self__, "rdb_snapshot_start_time", rdb_snapshot_start_time)
|
600
|
-
|
601
|
-
@property
|
602
|
-
@pulumi.getter(name="rdbSnapshotPeriod")
|
603
|
-
def rdb_snapshot_period(self) -> Optional[str]:
|
604
|
-
"""
|
605
|
-
Optional. Available snapshot periods for scheduling.
|
606
|
-
- ONE_HOUR: Snapshot every 1 hour.
|
607
|
-
- SIX_HOURS: Snapshot every 6 hours.
|
608
|
-
- TWELVE_HOURS: Snapshot every 12 hours.
|
609
|
-
- TWENTY_FOUR_HOURS: Snapshot every 24 hours.
|
610
|
-
Possible values are: `SNAPSHOT_PERIOD_UNSPECIFIED`, `ONE_HOUR`, `SIX_HOURS`, `TWELVE_HOURS`, `TWENTY_FOUR_HOURS`.
|
611
|
-
"""
|
612
|
-
return pulumi.get(self, "rdb_snapshot_period")
|
613
|
-
|
614
|
-
@property
|
615
|
-
@pulumi.getter(name="rdbSnapshotStartTime")
|
616
|
-
def rdb_snapshot_start_time(self) -> Optional[str]:
|
617
|
-
"""
|
618
|
-
The time that the first snapshot was/will be attempted, and to which
|
619
|
-
future snapshots will be aligned.
|
620
|
-
If not provided, the current time will be used.
|
621
|
-
"""
|
622
|
-
return pulumi.get(self, "rdb_snapshot_start_time")
|
623
|
-
|
624
|
-
|
625
440
|
@pulumi.output_type
|
626
441
|
class ClusterPscConfig(dict):
|
627
442
|
def __init__(__self__, *,
|
@@ -23,8 +23,6 @@ __all__ = [
|
|
23
23
|
'InstanceIamMemberConditionArgsDict',
|
24
24
|
'InstancePrivateConfigArgs',
|
25
25
|
'InstancePrivateConfigArgsDict',
|
26
|
-
'InstanceWorkforceIdentityFederationConfigArgs',
|
27
|
-
'InstanceWorkforceIdentityFederationConfigArgsDict',
|
28
26
|
'RepositoryIamBindingConditionArgs',
|
29
27
|
'RepositoryIamBindingConditionArgsDict',
|
30
28
|
'RepositoryIamMemberConditionArgs',
|
@@ -331,37 +329,6 @@ class InstancePrivateConfigArgs:
|
|
331
329
|
pulumi.set(self, "ssh_service_attachment", value)
|
332
330
|
|
333
331
|
|
334
|
-
if not MYPY:
|
335
|
-
class InstanceWorkforceIdentityFederationConfigArgsDict(TypedDict):
|
336
|
-
enabled: pulumi.Input[bool]
|
337
|
-
"""
|
338
|
-
'Whether Workforce Identity Federation is enabled.'
|
339
|
-
"""
|
340
|
-
elif False:
|
341
|
-
InstanceWorkforceIdentityFederationConfigArgsDict: TypeAlias = Mapping[str, Any]
|
342
|
-
|
343
|
-
@pulumi.input_type
|
344
|
-
class InstanceWorkforceIdentityFederationConfigArgs:
|
345
|
-
def __init__(__self__, *,
|
346
|
-
enabled: pulumi.Input[bool]):
|
347
|
-
"""
|
348
|
-
:param pulumi.Input[bool] enabled: 'Whether Workforce Identity Federation is enabled.'
|
349
|
-
"""
|
350
|
-
pulumi.set(__self__, "enabled", enabled)
|
351
|
-
|
352
|
-
@property
|
353
|
-
@pulumi.getter
|
354
|
-
def enabled(self) -> pulumi.Input[bool]:
|
355
|
-
"""
|
356
|
-
'Whether Workforce Identity Federation is enabled.'
|
357
|
-
"""
|
358
|
-
return pulumi.get(self, "enabled")
|
359
|
-
|
360
|
-
@enabled.setter
|
361
|
-
def enabled(self, value: pulumi.Input[bool]):
|
362
|
-
pulumi.set(self, "enabled", value)
|
363
|
-
|
364
|
-
|
365
332
|
if not MYPY:
|
366
333
|
class RepositoryIamBindingConditionArgsDict(TypedDict):
|
367
334
|
expression: pulumi.Input[str]
|
@@ -26,8 +26,7 @@ class InstanceArgs:
|
|
26
26
|
kms_key: Optional[pulumi.Input[str]] = None,
|
27
27
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
28
28
|
private_config: Optional[pulumi.Input['InstancePrivateConfigArgs']] = None,
|
29
|
-
project: Optional[pulumi.Input[str]] = None
|
30
|
-
workforce_identity_federation_config: Optional[pulumi.Input['InstanceWorkforceIdentityFederationConfigArgs']] = None):
|
29
|
+
project: Optional[pulumi.Input[str]] = None):
|
31
30
|
"""
|
32
31
|
The set of arguments for constructing a Instance resource.
|
33
32
|
:param pulumi.Input[str] instance_id: The name for the Instance.
|
@@ -44,9 +43,6 @@ class InstanceArgs:
|
|
44
43
|
Structure is documented below.
|
45
44
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
46
45
|
If it is not provided, the provider project is used.
|
47
|
-
:param pulumi.Input['InstanceWorkforceIdentityFederationConfigArgs'] workforce_identity_federation_config: Configuration for Workforce Identity Federation to support third party identity provider.
|
48
|
-
If unset, defaults to the Google OIDC IdP.
|
49
|
-
Structure is documented below.
|
50
46
|
"""
|
51
47
|
pulumi.set(__self__, "instance_id", instance_id)
|
52
48
|
pulumi.set(__self__, "location", location)
|
@@ -58,8 +54,6 @@ class InstanceArgs:
|
|
58
54
|
pulumi.set(__self__, "private_config", private_config)
|
59
55
|
if project is not None:
|
60
56
|
pulumi.set(__self__, "project", project)
|
61
|
-
if workforce_identity_federation_config is not None:
|
62
|
-
pulumi.set(__self__, "workforce_identity_federation_config", workforce_identity_federation_config)
|
63
57
|
|
64
58
|
@property
|
65
59
|
@pulumi.getter(name="instanceId")
|
@@ -141,20 +135,6 @@ class InstanceArgs:
|
|
141
135
|
def project(self, value: Optional[pulumi.Input[str]]):
|
142
136
|
pulumi.set(self, "project", value)
|
143
137
|
|
144
|
-
@property
|
145
|
-
@pulumi.getter(name="workforceIdentityFederationConfig")
|
146
|
-
def workforce_identity_federation_config(self) -> Optional[pulumi.Input['InstanceWorkforceIdentityFederationConfigArgs']]:
|
147
|
-
"""
|
148
|
-
Configuration for Workforce Identity Federation to support third party identity provider.
|
149
|
-
If unset, defaults to the Google OIDC IdP.
|
150
|
-
Structure is documented below.
|
151
|
-
"""
|
152
|
-
return pulumi.get(self, "workforce_identity_federation_config")
|
153
|
-
|
154
|
-
@workforce_identity_federation_config.setter
|
155
|
-
def workforce_identity_federation_config(self, value: Optional[pulumi.Input['InstanceWorkforceIdentityFederationConfigArgs']]):
|
156
|
-
pulumi.set(self, "workforce_identity_federation_config", value)
|
157
|
-
|
158
138
|
|
159
139
|
@pulumi.input_type
|
160
140
|
class _InstanceState:
|
@@ -172,8 +152,7 @@ class _InstanceState:
|
|
172
152
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
173
153
|
state: Optional[pulumi.Input[str]] = None,
|
174
154
|
state_note: Optional[pulumi.Input[str]] = None,
|
175
|
-
update_time: Optional[pulumi.Input[str]] = None
|
176
|
-
workforce_identity_federation_config: Optional[pulumi.Input['InstanceWorkforceIdentityFederationConfigArgs']] = None):
|
155
|
+
update_time: Optional[pulumi.Input[str]] = None):
|
177
156
|
"""
|
178
157
|
Input properties used for looking up and filtering Instance resources.
|
179
158
|
:param pulumi.Input[str] create_time: Time the Instance was created in UTC.
|
@@ -200,9 +179,6 @@ class _InstanceState:
|
|
200
179
|
:param pulumi.Input[str] state: The current state of the Instance.
|
201
180
|
:param pulumi.Input[str] state_note: Provides information about the current instance state.
|
202
181
|
:param pulumi.Input[str] update_time: Time the Instance was updated in UTC.
|
203
|
-
:param pulumi.Input['InstanceWorkforceIdentityFederationConfigArgs'] workforce_identity_federation_config: Configuration for Workforce Identity Federation to support third party identity provider.
|
204
|
-
If unset, defaults to the Google OIDC IdP.
|
205
|
-
Structure is documented below.
|
206
182
|
"""
|
207
183
|
if create_time is not None:
|
208
184
|
pulumi.set(__self__, "create_time", create_time)
|
@@ -232,8 +208,6 @@ class _InstanceState:
|
|
232
208
|
pulumi.set(__self__, "state_note", state_note)
|
233
209
|
if update_time is not None:
|
234
210
|
pulumi.set(__self__, "update_time", update_time)
|
235
|
-
if workforce_identity_federation_config is not None:
|
236
|
-
pulumi.set(__self__, "workforce_identity_federation_config", workforce_identity_federation_config)
|
237
211
|
|
238
212
|
@property
|
239
213
|
@pulumi.getter(name="createTime")
|
@@ -413,20 +387,6 @@ class _InstanceState:
|
|
413
387
|
def update_time(self, value: Optional[pulumi.Input[str]]):
|
414
388
|
pulumi.set(self, "update_time", value)
|
415
389
|
|
416
|
-
@property
|
417
|
-
@pulumi.getter(name="workforceIdentityFederationConfig")
|
418
|
-
def workforce_identity_federation_config(self) -> Optional[pulumi.Input['InstanceWorkforceIdentityFederationConfigArgs']]:
|
419
|
-
"""
|
420
|
-
Configuration for Workforce Identity Federation to support third party identity provider.
|
421
|
-
If unset, defaults to the Google OIDC IdP.
|
422
|
-
Structure is documented below.
|
423
|
-
"""
|
424
|
-
return pulumi.get(self, "workforce_identity_federation_config")
|
425
|
-
|
426
|
-
@workforce_identity_federation_config.setter
|
427
|
-
def workforce_identity_federation_config(self, value: Optional[pulumi.Input['InstanceWorkforceIdentityFederationConfigArgs']]):
|
428
|
-
pulumi.set(self, "workforce_identity_federation_config", value)
|
429
|
-
|
430
390
|
|
431
391
|
class Instance(pulumi.CustomResource):
|
432
392
|
@overload
|
@@ -439,7 +399,6 @@ class Instance(pulumi.CustomResource):
|
|
439
399
|
location: Optional[pulumi.Input[str]] = None,
|
440
400
|
private_config: Optional[pulumi.Input[Union['InstancePrivateConfigArgs', 'InstancePrivateConfigArgsDict']]] = None,
|
441
401
|
project: Optional[pulumi.Input[str]] = None,
|
442
|
-
workforce_identity_federation_config: Optional[pulumi.Input[Union['InstanceWorkforceIdentityFederationConfigArgs', 'InstanceWorkforceIdentityFederationConfigArgsDict']]] = None,
|
443
402
|
__props__=None):
|
444
403
|
"""
|
445
404
|
Instances are deployed to an available Google Cloud region and are accessible via their web interface.
|
@@ -817,19 +776,6 @@ class Instance(pulumi.CustomResource):
|
|
817
776
|
managed_zone=private_zone.name,
|
818
777
|
rrdatas=[fw_rule_service_attachment.ip_address])
|
819
778
|
```
|
820
|
-
### Secure Source Manager Instance Workforce Identity Federation
|
821
|
-
|
822
|
-
```python
|
823
|
-
import pulumi
|
824
|
-
import pulumi_gcp as gcp
|
825
|
-
|
826
|
-
default = gcp.securesourcemanager.Instance("default",
|
827
|
-
location="us-central1",
|
828
|
-
instance_id="my-instance",
|
829
|
-
workforce_identity_federation_config={
|
830
|
-
"enabled": True,
|
831
|
-
})
|
832
|
-
```
|
833
779
|
|
834
780
|
## Import
|
835
781
|
|
@@ -877,9 +823,6 @@ class Instance(pulumi.CustomResource):
|
|
877
823
|
Structure is documented below.
|
878
824
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
879
825
|
If it is not provided, the provider project is used.
|
880
|
-
:param pulumi.Input[Union['InstanceWorkforceIdentityFederationConfigArgs', 'InstanceWorkforceIdentityFederationConfigArgsDict']] workforce_identity_federation_config: Configuration for Workforce Identity Federation to support third party identity provider.
|
881
|
-
If unset, defaults to the Google OIDC IdP.
|
882
|
-
Structure is documented below.
|
883
826
|
"""
|
884
827
|
...
|
885
828
|
@overload
|
@@ -1263,19 +1206,6 @@ class Instance(pulumi.CustomResource):
|
|
1263
1206
|
managed_zone=private_zone.name,
|
1264
1207
|
rrdatas=[fw_rule_service_attachment.ip_address])
|
1265
1208
|
```
|
1266
|
-
### Secure Source Manager Instance Workforce Identity Federation
|
1267
|
-
|
1268
|
-
```python
|
1269
|
-
import pulumi
|
1270
|
-
import pulumi_gcp as gcp
|
1271
|
-
|
1272
|
-
default = gcp.securesourcemanager.Instance("default",
|
1273
|
-
location="us-central1",
|
1274
|
-
instance_id="my-instance",
|
1275
|
-
workforce_identity_federation_config={
|
1276
|
-
"enabled": True,
|
1277
|
-
})
|
1278
|
-
```
|
1279
1209
|
|
1280
1210
|
## Import
|
1281
1211
|
|
@@ -1328,7 +1258,6 @@ class Instance(pulumi.CustomResource):
|
|
1328
1258
|
location: Optional[pulumi.Input[str]] = None,
|
1329
1259
|
private_config: Optional[pulumi.Input[Union['InstancePrivateConfigArgs', 'InstancePrivateConfigArgsDict']]] = None,
|
1330
1260
|
project: Optional[pulumi.Input[str]] = None,
|
1331
|
-
workforce_identity_federation_config: Optional[pulumi.Input[Union['InstanceWorkforceIdentityFederationConfigArgs', 'InstanceWorkforceIdentityFederationConfigArgsDict']]] = None,
|
1332
1261
|
__props__=None):
|
1333
1262
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
1334
1263
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -1348,7 +1277,6 @@ class Instance(pulumi.CustomResource):
|
|
1348
1277
|
__props__.__dict__["location"] = location
|
1349
1278
|
__props__.__dict__["private_config"] = private_config
|
1350
1279
|
__props__.__dict__["project"] = project
|
1351
|
-
__props__.__dict__["workforce_identity_federation_config"] = workforce_identity_federation_config
|
1352
1280
|
__props__.__dict__["create_time"] = None
|
1353
1281
|
__props__.__dict__["effective_labels"] = None
|
1354
1282
|
__props__.__dict__["host_configs"] = None
|
@@ -1382,8 +1310,7 @@ class Instance(pulumi.CustomResource):
|
|
1382
1310
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1383
1311
|
state: Optional[pulumi.Input[str]] = None,
|
1384
1312
|
state_note: Optional[pulumi.Input[str]] = None,
|
1385
|
-
update_time: Optional[pulumi.Input[str]] = None
|
1386
|
-
workforce_identity_federation_config: Optional[pulumi.Input[Union['InstanceWorkforceIdentityFederationConfigArgs', 'InstanceWorkforceIdentityFederationConfigArgsDict']]] = None) -> 'Instance':
|
1313
|
+
update_time: Optional[pulumi.Input[str]] = None) -> 'Instance':
|
1387
1314
|
"""
|
1388
1315
|
Get an existing Instance resource's state with the given name, id, and optional extra
|
1389
1316
|
properties used to qualify the lookup.
|
@@ -1415,9 +1342,6 @@ class Instance(pulumi.CustomResource):
|
|
1415
1342
|
:param pulumi.Input[str] state: The current state of the Instance.
|
1416
1343
|
:param pulumi.Input[str] state_note: Provides information about the current instance state.
|
1417
1344
|
:param pulumi.Input[str] update_time: Time the Instance was updated in UTC.
|
1418
|
-
:param pulumi.Input[Union['InstanceWorkforceIdentityFederationConfigArgs', 'InstanceWorkforceIdentityFederationConfigArgsDict']] workforce_identity_federation_config: Configuration for Workforce Identity Federation to support third party identity provider.
|
1419
|
-
If unset, defaults to the Google OIDC IdP.
|
1420
|
-
Structure is documented below.
|
1421
1345
|
"""
|
1422
1346
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
1423
1347
|
|
@@ -1437,7 +1361,6 @@ class Instance(pulumi.CustomResource):
|
|
1437
1361
|
__props__.__dict__["state"] = state
|
1438
1362
|
__props__.__dict__["state_note"] = state_note
|
1439
1363
|
__props__.__dict__["update_time"] = update_time
|
1440
|
-
__props__.__dict__["workforce_identity_federation_config"] = workforce_identity_federation_config
|
1441
1364
|
return Instance(resource_name, opts=opts, __props__=__props__)
|
1442
1365
|
|
1443
1366
|
@property
|
@@ -1562,13 +1485,3 @@ class Instance(pulumi.CustomResource):
|
|
1562
1485
|
"""
|
1563
1486
|
return pulumi.get(self, "update_time")
|
1564
1487
|
|
1565
|
-
@property
|
1566
|
-
@pulumi.getter(name="workforceIdentityFederationConfig")
|
1567
|
-
def workforce_identity_federation_config(self) -> pulumi.Output[Optional['outputs.InstanceWorkforceIdentityFederationConfig']]:
|
1568
|
-
"""
|
1569
|
-
Configuration for Workforce Identity Federation to support third party identity provider.
|
1570
|
-
If unset, defaults to the Google OIDC IdP.
|
1571
|
-
Structure is documented below.
|
1572
|
-
"""
|
1573
|
-
return pulumi.get(self, "workforce_identity_federation_config")
|
1574
|
-
|
@@ -19,7 +19,6 @@ __all__ = [
|
|
19
19
|
'InstanceIamBindingCondition',
|
20
20
|
'InstanceIamMemberCondition',
|
21
21
|
'InstancePrivateConfig',
|
22
|
-
'InstanceWorkforceIdentityFederationConfig',
|
23
22
|
'RepositoryIamBindingCondition',
|
24
23
|
'RepositoryIamMemberCondition',
|
25
24
|
'RepositoryInitialConfig',
|
@@ -242,24 +241,6 @@ class InstancePrivateConfig(dict):
|
|
242
241
|
return pulumi.get(self, "ssh_service_attachment")
|
243
242
|
|
244
243
|
|
245
|
-
@pulumi.output_type
|
246
|
-
class InstanceWorkforceIdentityFederationConfig(dict):
|
247
|
-
def __init__(__self__, *,
|
248
|
-
enabled: bool):
|
249
|
-
"""
|
250
|
-
:param bool enabled: 'Whether Workforce Identity Federation is enabled.'
|
251
|
-
"""
|
252
|
-
pulumi.set(__self__, "enabled", enabled)
|
253
|
-
|
254
|
-
@property
|
255
|
-
@pulumi.getter
|
256
|
-
def enabled(self) -> bool:
|
257
|
-
"""
|
258
|
-
'Whether Workforce Identity Federation is enabled.'
|
259
|
-
"""
|
260
|
-
return pulumi.get(self, "enabled")
|
261
|
-
|
262
|
-
|
263
244
|
@pulumi.output_type
|
264
245
|
class RepositoryIamBindingCondition(dict):
|
265
246
|
def __init__(__self__, *,
|
pulumi_gcp/spanner/database.py
CHANGED
@@ -47,8 +47,8 @@ class DatabaseArgs:
|
|
47
47
|
in state, a `destroy` or `update` that would delete the instance will fail.
|
48
48
|
:param pulumi.Input['DatabaseEncryptionConfigArgs'] encryption_config: Encryption configuration for the database
|
49
49
|
Structure is documented below.
|
50
|
-
:param pulumi.Input[str] name: A unique identifier for the database, which cannot be changed after
|
51
|
-
instance is created. Values are of the form
|
50
|
+
:param pulumi.Input[str] name: A unique identifier for the database, which cannot be changed after
|
51
|
+
the instance is created. Values are of the form [a-z][-a-z0-9]*[a-z0-9].
|
52
52
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
53
53
|
If it is not provided, the provider project is used.
|
54
54
|
:param pulumi.Input[str] version_retention_period: The retention period for the database. The retention period must be between 1 hour
|
@@ -158,8 +158,8 @@ class DatabaseArgs:
|
|
158
158
|
@pulumi.getter
|
159
159
|
def name(self) -> Optional[pulumi.Input[str]]:
|
160
160
|
"""
|
161
|
-
A unique identifier for the database, which cannot be changed after
|
162
|
-
instance is created. Values are of the form
|
161
|
+
A unique identifier for the database, which cannot be changed after
|
162
|
+
the instance is created. Values are of the form [a-z][-a-z0-9]*[a-z0-9].
|
163
163
|
"""
|
164
164
|
return pulumi.get(self, "name")
|
165
165
|
|
@@ -227,8 +227,8 @@ class _DatabaseState:
|
|
227
227
|
|
228
228
|
|
229
229
|
- - -
|
230
|
-
:param pulumi.Input[str] name: A unique identifier for the database, which cannot be changed after
|
231
|
-
instance is created. Values are of the form
|
230
|
+
:param pulumi.Input[str] name: A unique identifier for the database, which cannot be changed after
|
231
|
+
the instance is created. Values are of the form [a-z][-a-z0-9]*[a-z0-9].
|
232
232
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
233
233
|
If it is not provided, the provider project is used.
|
234
234
|
:param pulumi.Input[str] state: An explanation of the status of the database.
|
@@ -342,8 +342,8 @@ class _DatabaseState:
|
|
342
342
|
@pulumi.getter
|
343
343
|
def name(self) -> Optional[pulumi.Input[str]]:
|
344
344
|
"""
|
345
|
-
A unique identifier for the database, which cannot be changed after
|
346
|
-
instance is created. Values are of the form
|
345
|
+
A unique identifier for the database, which cannot be changed after
|
346
|
+
the instance is created. Values are of the form [a-z][-a-z0-9]*[a-z0-9].
|
347
347
|
"""
|
348
348
|
return pulumi.get(self, "name")
|
349
349
|
|
@@ -493,8 +493,8 @@ class Database(pulumi.CustomResource):
|
|
493
493
|
|
494
494
|
|
495
495
|
- - -
|
496
|
-
:param pulumi.Input[str] name: A unique identifier for the database, which cannot be changed after
|
497
|
-
instance is created. Values are of the form
|
496
|
+
:param pulumi.Input[str] name: A unique identifier for the database, which cannot be changed after
|
497
|
+
the instance is created. Values are of the form [a-z][-a-z0-9]*[a-z0-9].
|
498
498
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
499
499
|
If it is not provided, the provider project is used.
|
500
500
|
:param pulumi.Input[str] version_retention_period: The retention period for the database. The retention period must be between 1 hour
|
@@ -664,8 +664,8 @@ class Database(pulumi.CustomResource):
|
|
664
664
|
|
665
665
|
|
666
666
|
- - -
|
667
|
-
:param pulumi.Input[str] name: A unique identifier for the database, which cannot be changed after
|
668
|
-
instance is created. Values are of the form
|
667
|
+
:param pulumi.Input[str] name: A unique identifier for the database, which cannot be changed after
|
668
|
+
the instance is created. Values are of the form [a-z][-a-z0-9]*[a-z0-9].
|
669
669
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
670
670
|
If it is not provided, the provider project is used.
|
671
671
|
:param pulumi.Input[str] state: An explanation of the status of the database.
|
@@ -750,8 +750,8 @@ class Database(pulumi.CustomResource):
|
|
750
750
|
@pulumi.getter
|
751
751
|
def name(self) -> pulumi.Output[str]:
|
752
752
|
"""
|
753
|
-
A unique identifier for the database, which cannot be changed after
|
754
|
-
instance is created. Values are of the form
|
753
|
+
A unique identifier for the database, which cannot be changed after
|
754
|
+
the instance is created. Values are of the form [a-z][-a-z0-9]*[a-z0-9].
|
755
755
|
"""
|
756
756
|
return pulumi.get(self, "name")
|
757
757
|
|