pulumi-gcp 8.13.0a1736231082__py3-none-any.whl → 8.13.1__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 +43 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +3 -3
- pulumi_gcp/accesscontextmanager/outputs.py +2 -2
- pulumi_gcp/artifactregistry/_inputs.py +83 -0
- pulumi_gcp/artifactregistry/get_repository.py +15 -4
- pulumi_gcp/artifactregistry/outputs.py +112 -0
- pulumi_gcp/artifactregistry/repository.py +93 -7
- pulumi_gcp/backupdisasterrecovery/get_backup.py +38 -2
- pulumi_gcp/backupdisasterrecovery/get_data_source.py +38 -2
- pulumi_gcp/backupdisasterrecovery/outputs.py +8 -8
- pulumi_gcp/bigquery/_inputs.py +369 -0
- pulumi_gcp/bigquery/dataset_access.py +61 -0
- pulumi_gcp/bigquery/job.py +6 -18
- pulumi_gcp/bigquery/outputs.py +350 -0
- pulumi_gcp/bigquery/table.py +47 -0
- pulumi_gcp/chronicle/__init__.py +10 -0
- pulumi_gcp/chronicle/_inputs.py +169 -0
- pulumi_gcp/chronicle/outputs.py +107 -0
- pulumi_gcp/chronicle/watchlist.py +776 -0
- pulumi_gcp/cloudrunv2/_inputs.py +6 -3
- pulumi_gcp/cloudrunv2/outputs.py +10 -6
- pulumi_gcp/composer/_inputs.py +80 -5
- pulumi_gcp/composer/outputs.py +111 -4
- pulumi_gcp/compute/_inputs.py +181 -87
- pulumi_gcp/compute/firewall_policy_association.py +50 -39
- pulumi_gcp/compute/get_network.py +17 -2
- pulumi_gcp/compute/get_subnetwork.py +18 -4
- pulumi_gcp/compute/network.py +39 -2
- pulumi_gcp/compute/outputs.py +157 -58
- pulumi_gcp/compute/region_network_endpoint_group.py +1 -1
- pulumi_gcp/compute/resize_request.py +26 -40
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/dataproc/batch.py +4 -18
- pulumi_gcp/datastream/_inputs.py +68 -0
- pulumi_gcp/datastream/outputs.py +41 -1
- pulumi_gcp/developerconnect/connection.py +58 -12
- pulumi_gcp/diagflow/_inputs.py +3 -3
- pulumi_gcp/diagflow/outputs.py +2 -2
- pulumi_gcp/filestore/backup.py +71 -3
- pulumi_gcp/firebase/hosting_custom_domain.py +4 -4
- pulumi_gcp/firestore/_inputs.py +3 -3
- pulumi_gcp/firestore/outputs.py +2 -2
- pulumi_gcp/gkehub/__init__.py +1 -0
- pulumi_gcp/gkehub/get_feature.py +226 -0
- pulumi_gcp/gkehub/outputs.py +1153 -0
- pulumi_gcp/gkeonprem/__init__.py +1 -0
- pulumi_gcp/gkeonprem/_inputs.py +2364 -0
- pulumi_gcp/gkeonprem/outputs.py +1780 -0
- pulumi_gcp/gkeonprem/vmware_admin_cluster.py +1715 -0
- pulumi_gcp/integrationconnectors/_inputs.py +6 -6
- pulumi_gcp/integrationconnectors/connection.py +7 -7
- pulumi_gcp/integrationconnectors/outputs.py +4 -4
- pulumi_gcp/kms/__init__.py +2 -0
- pulumi_gcp/kms/get_autokey_config.py +121 -0
- pulumi_gcp/kms/get_key_handle.py +185 -0
- pulumi_gcp/netapp/kmsconfig.py +2 -14
- pulumi_gcp/networkconnectivity/hub.py +108 -0
- pulumi_gcp/networkconnectivity/spoke.py +195 -0
- pulumi_gcp/networkmanagement/vpc_flow_logs_config.py +4 -0
- pulumi_gcp/networksecurity/__init__.py +2 -0
- pulumi_gcp/networksecurity/_inputs.py +78 -0
- pulumi_gcp/networksecurity/intercept_endpoint_group.py +723 -0
- pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +815 -0
- pulumi_gcp/networksecurity/outputs.py +48 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parallelstore/instance.py +149 -0
- pulumi_gcp/projects/usage_export_bucket.py +42 -110
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securesourcemanager/instance.py +4 -16
- pulumi_gcp/spanner/instance_iam_binding.py +14 -0
- pulumi_gcp/spanner/instance_iam_member.py +14 -0
- pulumi_gcp/sql/database_instance.py +7 -7
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/_inputs.py +431 -0
- pulumi_gcp/storage/folder.py +483 -0
- pulumi_gcp/storage/outputs.py +363 -0
- pulumi_gcp/storage/transfer_job.py +84 -38
- pulumi_gcp/vertex/_inputs.py +26 -25
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/outputs.py +15 -14
- pulumi_gcp/workstations/workstation.py +55 -1
- {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.1.dist-info}/METADATA +2 -2
- {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.1.dist-info}/RECORD +90 -79
- {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.1.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.1.dist-info}/top_level.txt +0 -0
@@ -535,23 +535,45 @@ class Connection(pulumi.CustomResource):
|
|
535
535
|
"""
|
536
536
|
## Example Usage
|
537
537
|
|
538
|
-
### Developer Connect Connection
|
538
|
+
### Developer Connect Connection New
|
539
539
|
|
540
540
|
```python
|
541
541
|
import pulumi
|
542
542
|
import pulumi_gcp as gcp
|
543
543
|
|
544
|
+
# Setup permissions. Only needed once per project
|
545
|
+
devconnect_p4sa = gcp.projects.ServiceIdentity("devconnect-p4sa", service="developerconnect.googleapis.com")
|
546
|
+
devconnect_secret = gcp.projects.IAMMember("devconnect-secret",
|
547
|
+
project="my-project-name",
|
548
|
+
role="roles/secretmanager.admin",
|
549
|
+
member=devconnect_p4sa.member)
|
544
550
|
my_connection = gcp.developerconnect.Connection("my-connection",
|
545
551
|
location="us-central1",
|
546
|
-
connection_id="tf-test-connection",
|
552
|
+
connection_id="tf-test-connection-new",
|
553
|
+
github_config={
|
554
|
+
"github_app": "FIREBASE",
|
555
|
+
},
|
556
|
+
opts = pulumi.ResourceOptions(depends_on=[devconnect_secret]))
|
557
|
+
pulumi.export("nextSteps", my_connection.installation_states)
|
558
|
+
```
|
559
|
+
### Developer Connect Connection Existing Credentials
|
560
|
+
|
561
|
+
```python
|
562
|
+
import pulumi
|
563
|
+
import pulumi_gcp as gcp
|
564
|
+
|
565
|
+
my_connection = gcp.developerconnect.Connection("my-connection",
|
566
|
+
location="us-central1",
|
567
|
+
connection_id="tf-test-connection-cred",
|
547
568
|
github_config={
|
548
569
|
"github_app": "DEVELOPER_CONNECT",
|
549
570
|
"authorizer_credential": {
|
550
|
-
"oauth_token_secret_version": "projects/
|
571
|
+
"oauth_token_secret_version": "projects/your-project/secrets/your-secret-id/versions/latest",
|
551
572
|
},
|
552
573
|
})
|
574
|
+
pulumi.export("nextSteps", my_connection.installation_states)
|
553
575
|
```
|
554
|
-
### Developer Connect Connection
|
576
|
+
### Developer Connect Connection Existing Installation
|
555
577
|
|
556
578
|
```python
|
557
579
|
import pulumi
|
@@ -566,9 +588,10 @@ class Connection(pulumi.CustomResource):
|
|
566
588
|
github_token_secret_version = gcp.secretmanager.SecretVersion("github-token-secret-version",
|
567
589
|
secret=github_token_secret.id,
|
568
590
|
secret_data=std.file(input="my-github-token.txt").result)
|
569
|
-
|
591
|
+
devconnect_p4sa = gcp.projects.ServiceIdentity("devconnect-p4sa", service="developerconnect.googleapis.com")
|
592
|
+
p4sa_secret_accessor = gcp.organizations.get_iam_policy_output(bindings=[{
|
570
593
|
"role": "roles/secretmanager.secretAccessor",
|
571
|
-
"members": [
|
594
|
+
"members": [devconnect_p4sa.member],
|
572
595
|
}])
|
573
596
|
policy = gcp.secretmanager.SecretIamPolicy("policy",
|
574
597
|
secret_id=github_token_secret.secret_id,
|
@@ -645,7 +668,28 @@ class Connection(pulumi.CustomResource):
|
|
645
668
|
"""
|
646
669
|
## Example Usage
|
647
670
|
|
648
|
-
### Developer Connect Connection
|
671
|
+
### Developer Connect Connection New
|
672
|
+
|
673
|
+
```python
|
674
|
+
import pulumi
|
675
|
+
import pulumi_gcp as gcp
|
676
|
+
|
677
|
+
# Setup permissions. Only needed once per project
|
678
|
+
devconnect_p4sa = gcp.projects.ServiceIdentity("devconnect-p4sa", service="developerconnect.googleapis.com")
|
679
|
+
devconnect_secret = gcp.projects.IAMMember("devconnect-secret",
|
680
|
+
project="my-project-name",
|
681
|
+
role="roles/secretmanager.admin",
|
682
|
+
member=devconnect_p4sa.member)
|
683
|
+
my_connection = gcp.developerconnect.Connection("my-connection",
|
684
|
+
location="us-central1",
|
685
|
+
connection_id="tf-test-connection-new",
|
686
|
+
github_config={
|
687
|
+
"github_app": "FIREBASE",
|
688
|
+
},
|
689
|
+
opts = pulumi.ResourceOptions(depends_on=[devconnect_secret]))
|
690
|
+
pulumi.export("nextSteps", my_connection.installation_states)
|
691
|
+
```
|
692
|
+
### Developer Connect Connection Existing Credentials
|
649
693
|
|
650
694
|
```python
|
651
695
|
import pulumi
|
@@ -653,15 +697,16 @@ class Connection(pulumi.CustomResource):
|
|
653
697
|
|
654
698
|
my_connection = gcp.developerconnect.Connection("my-connection",
|
655
699
|
location="us-central1",
|
656
|
-
connection_id="tf-test-connection",
|
700
|
+
connection_id="tf-test-connection-cred",
|
657
701
|
github_config={
|
658
702
|
"github_app": "DEVELOPER_CONNECT",
|
659
703
|
"authorizer_credential": {
|
660
|
-
"oauth_token_secret_version": "projects/
|
704
|
+
"oauth_token_secret_version": "projects/your-project/secrets/your-secret-id/versions/latest",
|
661
705
|
},
|
662
706
|
})
|
707
|
+
pulumi.export("nextSteps", my_connection.installation_states)
|
663
708
|
```
|
664
|
-
### Developer Connect Connection
|
709
|
+
### Developer Connect Connection Existing Installation
|
665
710
|
|
666
711
|
```python
|
667
712
|
import pulumi
|
@@ -676,9 +721,10 @@ class Connection(pulumi.CustomResource):
|
|
676
721
|
github_token_secret_version = gcp.secretmanager.SecretVersion("github-token-secret-version",
|
677
722
|
secret=github_token_secret.id,
|
678
723
|
secret_data=std.file(input="my-github-token.txt").result)
|
679
|
-
|
724
|
+
devconnect_p4sa = gcp.projects.ServiceIdentity("devconnect-p4sa", service="developerconnect.googleapis.com")
|
725
|
+
p4sa_secret_accessor = gcp.organizations.get_iam_policy_output(bindings=[{
|
680
726
|
"role": "roles/secretmanager.secretAccessor",
|
681
|
-
"members": [
|
727
|
+
"members": [devconnect_p4sa.member],
|
682
728
|
}])
|
683
729
|
policy = gcp.secretmanager.SecretIamPolicy("policy",
|
684
730
|
secret_id=github_token_secret.secret_id,
|
pulumi_gcp/diagflow/_inputs.py
CHANGED
@@ -627,7 +627,7 @@ if not MYPY:
|
|
627
627
|
"""
|
628
628
|
use_timeout_based_endpointing: NotRequired[pulumi.Input[bool]]
|
629
629
|
"""
|
630
|
-
Use timeout based endpointing, interpreting endpointer
|
630
|
+
Use timeout based endpointing, interpreting endpointer sensitivity as seconds of timeout value.
|
631
631
|
"""
|
632
632
|
elif False:
|
633
633
|
CxAgentAdvancedSettingsSpeechSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -645,7 +645,7 @@ class CxAgentAdvancedSettingsSpeechSettingsArgs:
|
|
645
645
|
An object containing a list of **"key": value** pairs. Example: **{ "name": "wrench", "mass": "1.3kg", "count": "3" }**.
|
646
646
|
:param pulumi.Input[str] no_speech_timeout: Timeout before detecting no speech.
|
647
647
|
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
648
|
-
:param pulumi.Input[bool] use_timeout_based_endpointing: Use timeout based endpointing, interpreting endpointer
|
648
|
+
:param pulumi.Input[bool] use_timeout_based_endpointing: Use timeout based endpointing, interpreting endpointer sensitivity as seconds of timeout value.
|
649
649
|
"""
|
650
650
|
if endpointer_sensitivity is not None:
|
651
651
|
pulumi.set(__self__, "endpointer_sensitivity", endpointer_sensitivity)
|
@@ -698,7 +698,7 @@ class CxAgentAdvancedSettingsSpeechSettingsArgs:
|
|
698
698
|
@pulumi.getter(name="useTimeoutBasedEndpointing")
|
699
699
|
def use_timeout_based_endpointing(self) -> Optional[pulumi.Input[bool]]:
|
700
700
|
"""
|
701
|
-
Use timeout based endpointing, interpreting endpointer
|
701
|
+
Use timeout based endpointing, interpreting endpointer sensitivity as seconds of timeout value.
|
702
702
|
"""
|
703
703
|
return pulumi.get(self, "use_timeout_based_endpointing")
|
704
704
|
|
pulumi_gcp/diagflow/outputs.py
CHANGED
@@ -444,7 +444,7 @@ class CxAgentAdvancedSettingsSpeechSettings(dict):
|
|
444
444
|
An object containing a list of **"key": value** pairs. Example: **{ "name": "wrench", "mass": "1.3kg", "count": "3" }**.
|
445
445
|
:param str no_speech_timeout: Timeout before detecting no speech.
|
446
446
|
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
447
|
-
:param bool use_timeout_based_endpointing: Use timeout based endpointing, interpreting endpointer
|
447
|
+
:param bool use_timeout_based_endpointing: Use timeout based endpointing, interpreting endpointer sensitivity as seconds of timeout value.
|
448
448
|
"""
|
449
449
|
if endpointer_sensitivity is not None:
|
450
450
|
pulumi.set(__self__, "endpointer_sensitivity", endpointer_sensitivity)
|
@@ -485,7 +485,7 @@ class CxAgentAdvancedSettingsSpeechSettings(dict):
|
|
485
485
|
@pulumi.getter(name="useTimeoutBasedEndpointing")
|
486
486
|
def use_timeout_based_endpointing(self) -> Optional[bool]:
|
487
487
|
"""
|
488
|
-
Use timeout based endpointing, interpreting endpointer
|
488
|
+
Use timeout based endpointing, interpreting endpointer sensitivity as seconds of timeout value.
|
489
489
|
"""
|
490
490
|
return pulumi.get(self, "use_timeout_based_endpointing")
|
491
491
|
|
pulumi_gcp/filestore/backup.py
CHANGED
@@ -25,7 +25,8 @@ class BackupArgs:
|
|
25
25
|
description: Optional[pulumi.Input[str]] = None,
|
26
26
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
27
27
|
name: Optional[pulumi.Input[str]] = None,
|
28
|
-
project: Optional[pulumi.Input[str]] = None
|
28
|
+
project: Optional[pulumi.Input[str]] = None,
|
29
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
29
30
|
"""
|
30
31
|
The set of arguments for constructing a Backup resource.
|
31
32
|
:param pulumi.Input[str] location: The name of the location of the instance. This can be a region for ENTERPRISE tier instances.
|
@@ -48,6 +49,10 @@ class BackupArgs:
|
|
48
49
|
character, which cannot be a dash.
|
49
50
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
50
51
|
If it is not provided, the provider project is used.
|
52
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags.
|
53
|
+
Resource manager tag keys and values have the same definition as resource manager tags.
|
54
|
+
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
55
|
+
The field is ignored (both PUT & PATCH) when empty.
|
51
56
|
"""
|
52
57
|
pulumi.set(__self__, "location", location)
|
53
58
|
pulumi.set(__self__, "source_file_share", source_file_share)
|
@@ -60,6 +65,8 @@ class BackupArgs:
|
|
60
65
|
pulumi.set(__self__, "name", name)
|
61
66
|
if project is not None:
|
62
67
|
pulumi.set(__self__, "project", project)
|
68
|
+
if tags is not None:
|
69
|
+
pulumi.set(__self__, "tags", tags)
|
63
70
|
|
64
71
|
@property
|
65
72
|
@pulumi.getter
|
@@ -158,6 +165,21 @@ class BackupArgs:
|
|
158
165
|
def project(self, value: Optional[pulumi.Input[str]]):
|
159
166
|
pulumi.set(self, "project", value)
|
160
167
|
|
168
|
+
@property
|
169
|
+
@pulumi.getter
|
170
|
+
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
171
|
+
"""
|
172
|
+
A map of resource manager tags.
|
173
|
+
Resource manager tag keys and values have the same definition as resource manager tags.
|
174
|
+
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
175
|
+
The field is ignored (both PUT & PATCH) when empty.
|
176
|
+
"""
|
177
|
+
return pulumi.get(self, "tags")
|
178
|
+
|
179
|
+
@tags.setter
|
180
|
+
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
181
|
+
pulumi.set(self, "tags", value)
|
182
|
+
|
161
183
|
|
162
184
|
@pulumi.input_type
|
163
185
|
class _BackupState:
|
@@ -177,7 +199,8 @@ class _BackupState:
|
|
177
199
|
source_instance: Optional[pulumi.Input[str]] = None,
|
178
200
|
source_instance_tier: Optional[pulumi.Input[str]] = None,
|
179
201
|
state: Optional[pulumi.Input[str]] = None,
|
180
|
-
storage_bytes: Optional[pulumi.Input[str]] = None
|
202
|
+
storage_bytes: Optional[pulumi.Input[str]] = None,
|
203
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
181
204
|
"""
|
182
205
|
Input properties used for looking up and filtering Backup resources.
|
183
206
|
:param pulumi.Input[str] capacity_gb: The amount of bytes needed to allocate a full copy of the snapshot content.
|
@@ -210,6 +233,10 @@ class _BackupState:
|
|
210
233
|
:param pulumi.Input[str] source_instance_tier: The service tier of the source Cloud Filestore instance that this backup is created from.
|
211
234
|
:param pulumi.Input[str] state: The backup state.
|
212
235
|
:param pulumi.Input[str] storage_bytes: The size of the storage used by the backup. As backups share storage, this number is expected to change with backup creation/deletion.
|
236
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags.
|
237
|
+
Resource manager tag keys and values have the same definition as resource manager tags.
|
238
|
+
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
239
|
+
The field is ignored (both PUT & PATCH) when empty.
|
213
240
|
"""
|
214
241
|
if capacity_gb is not None:
|
215
242
|
pulumi.set(__self__, "capacity_gb", capacity_gb)
|
@@ -243,6 +270,8 @@ class _BackupState:
|
|
243
270
|
pulumi.set(__self__, "state", state)
|
244
271
|
if storage_bytes is not None:
|
245
272
|
pulumi.set(__self__, "storage_bytes", storage_bytes)
|
273
|
+
if tags is not None:
|
274
|
+
pulumi.set(__self__, "tags", tags)
|
246
275
|
|
247
276
|
@property
|
248
277
|
@pulumi.getter(name="capacityGb")
|
@@ -450,6 +479,21 @@ class _BackupState:
|
|
450
479
|
def storage_bytes(self, value: Optional[pulumi.Input[str]]):
|
451
480
|
pulumi.set(self, "storage_bytes", value)
|
452
481
|
|
482
|
+
@property
|
483
|
+
@pulumi.getter
|
484
|
+
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
485
|
+
"""
|
486
|
+
A map of resource manager tags.
|
487
|
+
Resource manager tag keys and values have the same definition as resource manager tags.
|
488
|
+
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
489
|
+
The field is ignored (both PUT & PATCH) when empty.
|
490
|
+
"""
|
491
|
+
return pulumi.get(self, "tags")
|
492
|
+
|
493
|
+
@tags.setter
|
494
|
+
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
495
|
+
pulumi.set(self, "tags", value)
|
496
|
+
|
453
497
|
|
454
498
|
class Backup(pulumi.CustomResource):
|
455
499
|
@overload
|
@@ -463,6 +507,7 @@ class Backup(pulumi.CustomResource):
|
|
463
507
|
project: Optional[pulumi.Input[str]] = None,
|
464
508
|
source_file_share: Optional[pulumi.Input[str]] = None,
|
465
509
|
source_instance: Optional[pulumi.Input[str]] = None,
|
510
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
466
511
|
__props__=None):
|
467
512
|
"""
|
468
513
|
A Google Cloud Filestore backup.
|
@@ -553,6 +598,10 @@ class Backup(pulumi.CustomResource):
|
|
553
598
|
If it is not provided, the provider project is used.
|
554
599
|
:param pulumi.Input[str] source_file_share: Name of the file share in the source Cloud Filestore instance that the backup is created from.
|
555
600
|
:param pulumi.Input[str] source_instance: The resource name of the source Cloud Filestore instance, in the format projects/{projectId}/locations/{locationId}/instances/{instanceId}, used to create this backup.
|
601
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags.
|
602
|
+
Resource manager tag keys and values have the same definition as resource manager tags.
|
603
|
+
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
604
|
+
The field is ignored (both PUT & PATCH) when empty.
|
556
605
|
"""
|
557
606
|
...
|
558
607
|
@overload
|
@@ -649,6 +698,7 @@ class Backup(pulumi.CustomResource):
|
|
649
698
|
project: Optional[pulumi.Input[str]] = None,
|
650
699
|
source_file_share: Optional[pulumi.Input[str]] = None,
|
651
700
|
source_instance: Optional[pulumi.Input[str]] = None,
|
701
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
652
702
|
__props__=None):
|
653
703
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
654
704
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -671,6 +721,7 @@ class Backup(pulumi.CustomResource):
|
|
671
721
|
if source_instance is None and not opts.urn:
|
672
722
|
raise TypeError("Missing required property 'source_instance'")
|
673
723
|
__props__.__dict__["source_instance"] = source_instance
|
724
|
+
__props__.__dict__["tags"] = tags
|
674
725
|
__props__.__dict__["capacity_gb"] = None
|
675
726
|
__props__.__dict__["create_time"] = None
|
676
727
|
__props__.__dict__["download_bytes"] = None
|
@@ -707,7 +758,8 @@ class Backup(pulumi.CustomResource):
|
|
707
758
|
source_instance: Optional[pulumi.Input[str]] = None,
|
708
759
|
source_instance_tier: Optional[pulumi.Input[str]] = None,
|
709
760
|
state: Optional[pulumi.Input[str]] = None,
|
710
|
-
storage_bytes: Optional[pulumi.Input[str]] = None
|
761
|
+
storage_bytes: Optional[pulumi.Input[str]] = None,
|
762
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None) -> 'Backup':
|
711
763
|
"""
|
712
764
|
Get an existing Backup resource's state with the given name, id, and optional extra
|
713
765
|
properties used to qualify the lookup.
|
@@ -745,6 +797,10 @@ class Backup(pulumi.CustomResource):
|
|
745
797
|
:param pulumi.Input[str] source_instance_tier: The service tier of the source Cloud Filestore instance that this backup is created from.
|
746
798
|
:param pulumi.Input[str] state: The backup state.
|
747
799
|
:param pulumi.Input[str] storage_bytes: The size of the storage used by the backup. As backups share storage, this number is expected to change with backup creation/deletion.
|
800
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: A map of resource manager tags.
|
801
|
+
Resource manager tag keys and values have the same definition as resource manager tags.
|
802
|
+
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
803
|
+
The field is ignored (both PUT & PATCH) when empty.
|
748
804
|
"""
|
749
805
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
750
806
|
|
@@ -766,6 +822,7 @@ class Backup(pulumi.CustomResource):
|
|
766
822
|
__props__.__dict__["source_instance_tier"] = source_instance_tier
|
767
823
|
__props__.__dict__["state"] = state
|
768
824
|
__props__.__dict__["storage_bytes"] = storage_bytes
|
825
|
+
__props__.__dict__["tags"] = tags
|
769
826
|
return Backup(resource_name, opts=opts, __props__=__props__)
|
770
827
|
|
771
828
|
@property
|
@@ -910,3 +967,14 @@ class Backup(pulumi.CustomResource):
|
|
910
967
|
"""
|
911
968
|
return pulumi.get(self, "storage_bytes")
|
912
969
|
|
970
|
+
@property
|
971
|
+
@pulumi.getter
|
972
|
+
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
973
|
+
"""
|
974
|
+
A map of resource manager tags.
|
975
|
+
Resource manager tag keys and values have the same definition as resource manager tags.
|
976
|
+
Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/{tag_value_id}.
|
977
|
+
The field is ignored (both PUT & PATCH) when empty.
|
978
|
+
"""
|
979
|
+
return pulumi.get(self, "tags")
|
980
|
+
|
@@ -239,7 +239,7 @@ class _HostingCustomDomainState:
|
|
239
239
|
permission to act on its behalf.
|
240
240
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
241
241
|
If it is not provided, the provider project is used.
|
242
|
-
:param pulumi.Input[bool] reconciling: if true, indicates that Hosting's systems are
|
242
|
+
:param pulumi.Input[bool] reconciling: if true, indicates that Hosting's systems are attempting to
|
243
243
|
make the `CustomDomain`'s state match your preferred state. This is most
|
244
244
|
frequently `true` when initially provisioning a `CustomDomain` or when creating
|
245
245
|
a new SSL certificate to match an updated `cert_preference`
|
@@ -506,7 +506,7 @@ class _HostingCustomDomainState:
|
|
506
506
|
@pulumi.getter
|
507
507
|
def reconciling(self) -> Optional[pulumi.Input[bool]]:
|
508
508
|
"""
|
509
|
-
if true, indicates that Hosting's systems are
|
509
|
+
if true, indicates that Hosting's systems are attempting to
|
510
510
|
make the `CustomDomain`'s state match your preferred state. This is most
|
511
511
|
frequently `true` when initially provisioning a `CustomDomain` or when creating
|
512
512
|
a new SSL certificate to match an updated `cert_preference`
|
@@ -989,7 +989,7 @@ class HostingCustomDomain(pulumi.CustomResource):
|
|
989
989
|
permission to act on its behalf.
|
990
990
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
991
991
|
If it is not provided, the provider project is used.
|
992
|
-
:param pulumi.Input[bool] reconciling: if true, indicates that Hosting's systems are
|
992
|
+
:param pulumi.Input[bool] reconciling: if true, indicates that Hosting's systems are attempting to
|
993
993
|
make the `CustomDomain`'s state match your preferred state. This is most
|
994
994
|
frequently `true` when initially provisioning a `CustomDomain` or when creating
|
995
995
|
a new SSL certificate to match an updated `cert_preference`
|
@@ -1195,7 +1195,7 @@ class HostingCustomDomain(pulumi.CustomResource):
|
|
1195
1195
|
@pulumi.getter
|
1196
1196
|
def reconciling(self) -> pulumi.Output[bool]:
|
1197
1197
|
"""
|
1198
|
-
if true, indicates that Hosting's systems are
|
1198
|
+
if true, indicates that Hosting's systems are attempting to
|
1199
1199
|
make the `CustomDomain`'s state match your preferred state. This is most
|
1200
1200
|
frequently `true` when initially provisioning a `CustomDomain` or when creating
|
1201
1201
|
a new SSL certificate to match an updated `cert_preference`
|
pulumi_gcp/firestore/_inputs.py
CHANGED
@@ -97,7 +97,7 @@ if not MYPY:
|
|
97
97
|
Cloud KMS multi-region europe. See https://cloud.google.com/kms/docs/locations.
|
98
98
|
This value should be the KMS key resource ID in the format of
|
99
99
|
`projects/{project_id}/locations/{kms_location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
|
100
|
-
How to
|
100
|
+
How to retrieve this resource ID is listed at
|
101
101
|
https://cloud.google.com/kms/docs/getting-resource-ids#getting_the_id_for_a_key_and_version.
|
102
102
|
"""
|
103
103
|
active_key_versions: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
@@ -127,7 +127,7 @@ class DatabaseCmekConfigArgs:
|
|
127
127
|
Cloud KMS multi-region europe. See https://cloud.google.com/kms/docs/locations.
|
128
128
|
This value should be the KMS key resource ID in the format of
|
129
129
|
`projects/{project_id}/locations/{kms_location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
|
130
|
-
How to
|
130
|
+
How to retrieve this resource ID is listed at
|
131
131
|
https://cloud.google.com/kms/docs/getting-resource-ids#getting_the_id_for_a_key_and_version.
|
132
132
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] active_key_versions: (Output)
|
133
133
|
Currently in-use KMS key versions (https://cloud.google.com/kms/docs/resource-hierarchy#key_versions).
|
@@ -153,7 +153,7 @@ class DatabaseCmekConfigArgs:
|
|
153
153
|
Cloud KMS multi-region europe. See https://cloud.google.com/kms/docs/locations.
|
154
154
|
This value should be the KMS key resource ID in the format of
|
155
155
|
`projects/{project_id}/locations/{kms_location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
|
156
|
-
How to
|
156
|
+
How to retrieve this resource ID is listed at
|
157
157
|
https://cloud.google.com/kms/docs/getting-resource-ids#getting_the_id_for_a_key_and_version.
|
158
158
|
"""
|
159
159
|
return pulumi.get(self, "kms_key_name")
|
pulumi_gcp/firestore/outputs.py
CHANGED
@@ -88,7 +88,7 @@ class DatabaseCmekConfig(dict):
|
|
88
88
|
Cloud KMS multi-region europe. See https://cloud.google.com/kms/docs/locations.
|
89
89
|
This value should be the KMS key resource ID in the format of
|
90
90
|
`projects/{project_id}/locations/{kms_location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
|
91
|
-
How to
|
91
|
+
How to retrieve this resource ID is listed at
|
92
92
|
https://cloud.google.com/kms/docs/getting-resource-ids#getting_the_id_for_a_key_and_version.
|
93
93
|
:param Sequence[str] active_key_versions: (Output)
|
94
94
|
Currently in-use KMS key versions (https://cloud.google.com/kms/docs/resource-hierarchy#key_versions).
|
@@ -114,7 +114,7 @@ class DatabaseCmekConfig(dict):
|
|
114
114
|
Cloud KMS multi-region europe. See https://cloud.google.com/kms/docs/locations.
|
115
115
|
This value should be the KMS key resource ID in the format of
|
116
116
|
`projects/{project_id}/locations/{kms_location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
|
117
|
-
How to
|
117
|
+
How to retrieve this resource ID is listed at
|
118
118
|
https://cloud.google.com/kms/docs/getting-resource-ids#getting_the_id_for_a_key_and_version.
|
119
119
|
"""
|
120
120
|
return pulumi.get(self, "kms_key_name")
|
pulumi_gcp/gkehub/__init__.py
CHANGED
@@ -11,6 +11,7 @@ from .feature_iam_member import *
|
|
11
11
|
from .feature_iam_policy import *
|
12
12
|
from .feature_membership import *
|
13
13
|
from .fleet import *
|
14
|
+
from .get_feature import *
|
14
15
|
from .get_feature_iam_policy import *
|
15
16
|
from .get_membership_binding import *
|
16
17
|
from .get_membership_iam_policy import *
|