pulumi-gcp 8.5.0__py3-none-any.whl → 8.5.0a1727969630__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/assuredworkloads/workload.py +7 -7
- pulumi_gcp/bigtable/gc_policy.py +0 -7
- pulumi_gcp/compute/_inputs.py +15 -299
- pulumi_gcp/compute/backend_service.py +7 -111
- pulumi_gcp/compute/get_backend_service.py +1 -11
- pulumi_gcp/compute/network.py +0 -236
- pulumi_gcp/compute/outputs.py +14 -399
- pulumi_gcp/compute/region_backend_service.py +7 -115
- pulumi_gcp/compute/route.py +0 -92
- pulumi_gcp/compute/subnetwork.py +2 -2
- pulumi_gcp/container/_inputs.py +0 -94
- pulumi_gcp/container/aws_node_pool.py +0 -59
- pulumi_gcp/container/outputs.py +0 -79
- pulumi_gcp/dataproc/__init__.py +0 -1
- pulumi_gcp/dataproc/_inputs.py +0 -1394
- pulumi_gcp/dataproc/outputs.py +0 -1127
- pulumi_gcp/firestore/field.py +4 -4
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/healthcare/__init__.py +0 -1
- pulumi_gcp/healthcare/_inputs.py +0 -538
- pulumi_gcp/healthcare/outputs.py +0 -467
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/logging/log_scope.py +7 -7
- pulumi_gcp/networkconnectivity/spoke.py +10 -10
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/pubsub/_inputs.py +1 -333
- pulumi_gcp/pubsub/outputs.py +2 -410
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pubsub/topic.py +0 -44
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securesourcemanager/repository.py +2 -0
- pulumi_gcp/securityposture/posture.py +2 -0
- pulumi_gcp/securityposture/posture_deployment.py +2 -0
- pulumi_gcp/serviceusage/consumer_quota_override.py +2 -0
- pulumi_gcp/siteverification/__init__.py +0 -1
- pulumi_gcp/sourcerepo/get_repository.py +1 -11
- pulumi_gcp/sourcerepo/repository.py +0 -47
- pulumi_gcp/tags/tag_key.py +7 -7
- pulumi_gcp/tags/tag_value.py +7 -7
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- {pulumi_gcp-8.5.0.dist-info → pulumi_gcp-8.5.0a1727969630.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.5.0.dist-info → pulumi_gcp-8.5.0a1727969630.dist-info}/RECORD +49 -52
- pulumi_gcp/dataproc/batch.py +0 -1514
- pulumi_gcp/healthcare/pipeline_job.py +0 -1233
- pulumi_gcp/siteverification/owner.py +0 -398
- {pulumi_gcp-8.5.0.dist-info → pulumi_gcp-8.5.0a1727969630.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.5.0.dist-info → pulumi_gcp-8.5.0a1727969630.dist-info}/top_level.txt +0 -0
@@ -27,10 +27,7 @@ class GetRepositoryResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getRepository.
|
29
29
|
"""
|
30
|
-
def __init__(__self__,
|
31
|
-
if create_ignore_already_exists and not isinstance(create_ignore_already_exists, bool):
|
32
|
-
raise TypeError("Expected argument 'create_ignore_already_exists' to be a bool")
|
33
|
-
pulumi.set(__self__, "create_ignore_already_exists", create_ignore_already_exists)
|
30
|
+
def __init__(__self__, id=None, name=None, project=None, pubsub_configs=None, size=None, url=None):
|
34
31
|
if id and not isinstance(id, str):
|
35
32
|
raise TypeError("Expected argument 'id' to be a str")
|
36
33
|
pulumi.set(__self__, "id", id)
|
@@ -50,11 +47,6 @@ class GetRepositoryResult:
|
|
50
47
|
raise TypeError("Expected argument 'url' to be a str")
|
51
48
|
pulumi.set(__self__, "url", url)
|
52
49
|
|
53
|
-
@property
|
54
|
-
@pulumi.getter(name="createIgnoreAlreadyExists")
|
55
|
-
def create_ignore_already_exists(self) -> bool:
|
56
|
-
return pulumi.get(self, "create_ignore_already_exists")
|
57
|
-
|
58
50
|
@property
|
59
51
|
@pulumi.getter
|
60
52
|
def id(self) -> str:
|
@@ -95,7 +87,6 @@ class AwaitableGetRepositoryResult(GetRepositoryResult):
|
|
95
87
|
if False:
|
96
88
|
yield self
|
97
89
|
return GetRepositoryResult(
|
98
|
-
create_ignore_already_exists=self.create_ignore_already_exists,
|
99
90
|
id=self.id,
|
100
91
|
name=self.name,
|
101
92
|
project=self.project,
|
@@ -133,7 +124,6 @@ def get_repository(name: Optional[str] = None,
|
|
133
124
|
__ret__ = pulumi.runtime.invoke('gcp:sourcerepo/getRepository:getRepository', __args__, opts=opts, typ=GetRepositoryResult).value
|
134
125
|
|
135
126
|
return AwaitableGetRepositoryResult(
|
136
|
-
create_ignore_already_exists=pulumi.get(__ret__, 'create_ignore_already_exists'),
|
137
127
|
id=pulumi.get(__ret__, 'id'),
|
138
128
|
name=pulumi.get(__ret__, 'name'),
|
139
129
|
project=pulumi.get(__ret__, 'project'),
|
@@ -21,13 +21,11 @@ __all__ = ['RepositoryArgs', 'Repository']
|
|
21
21
|
@pulumi.input_type
|
22
22
|
class RepositoryArgs:
|
23
23
|
def __init__(__self__, *,
|
24
|
-
create_ignore_already_exists: Optional[pulumi.Input[bool]] = None,
|
25
24
|
name: Optional[pulumi.Input[str]] = None,
|
26
25
|
project: Optional[pulumi.Input[str]] = None,
|
27
26
|
pubsub_configs: Optional[pulumi.Input[Sequence[pulumi.Input['RepositoryPubsubConfigArgs']]]] = None):
|
28
27
|
"""
|
29
28
|
The set of arguments for constructing a Repository resource.
|
30
|
-
:param pulumi.Input[bool] create_ignore_already_exists: If set to true, skip repository creation if a repository with the same name already exists.
|
31
29
|
:param pulumi.Input[str] name: Resource name of the repository, of the form `{{repo}}`.
|
32
30
|
The repo name may contain slashes. eg, `name/with/slash`
|
33
31
|
|
@@ -39,8 +37,6 @@ class RepositoryArgs:
|
|
39
37
|
Keyed by the topic names.
|
40
38
|
Structure is documented below.
|
41
39
|
"""
|
42
|
-
if create_ignore_already_exists is not None:
|
43
|
-
pulumi.set(__self__, "create_ignore_already_exists", create_ignore_already_exists)
|
44
40
|
if name is not None:
|
45
41
|
pulumi.set(__self__, "name", name)
|
46
42
|
if project is not None:
|
@@ -48,18 +44,6 @@ class RepositoryArgs:
|
|
48
44
|
if pubsub_configs is not None:
|
49
45
|
pulumi.set(__self__, "pubsub_configs", pubsub_configs)
|
50
46
|
|
51
|
-
@property
|
52
|
-
@pulumi.getter(name="createIgnoreAlreadyExists")
|
53
|
-
def create_ignore_already_exists(self) -> Optional[pulumi.Input[bool]]:
|
54
|
-
"""
|
55
|
-
If set to true, skip repository creation if a repository with the same name already exists.
|
56
|
-
"""
|
57
|
-
return pulumi.get(self, "create_ignore_already_exists")
|
58
|
-
|
59
|
-
@create_ignore_already_exists.setter
|
60
|
-
def create_ignore_already_exists(self, value: Optional[pulumi.Input[bool]]):
|
61
|
-
pulumi.set(self, "create_ignore_already_exists", value)
|
62
|
-
|
63
47
|
@property
|
64
48
|
@pulumi.getter
|
65
49
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -107,7 +91,6 @@ class RepositoryArgs:
|
|
107
91
|
@pulumi.input_type
|
108
92
|
class _RepositoryState:
|
109
93
|
def __init__(__self__, *,
|
110
|
-
create_ignore_already_exists: Optional[pulumi.Input[bool]] = None,
|
111
94
|
name: Optional[pulumi.Input[str]] = None,
|
112
95
|
project: Optional[pulumi.Input[str]] = None,
|
113
96
|
pubsub_configs: Optional[pulumi.Input[Sequence[pulumi.Input['RepositoryPubsubConfigArgs']]]] = None,
|
@@ -115,7 +98,6 @@ class _RepositoryState:
|
|
115
98
|
url: Optional[pulumi.Input[str]] = None):
|
116
99
|
"""
|
117
100
|
Input properties used for looking up and filtering Repository resources.
|
118
|
-
:param pulumi.Input[bool] create_ignore_already_exists: If set to true, skip repository creation if a repository with the same name already exists.
|
119
101
|
:param pulumi.Input[str] name: Resource name of the repository, of the form `{{repo}}`.
|
120
102
|
The repo name may contain slashes. eg, `name/with/slash`
|
121
103
|
|
@@ -129,8 +111,6 @@ class _RepositoryState:
|
|
129
111
|
:param pulumi.Input[int] size: The disk usage of the repo, in bytes.
|
130
112
|
:param pulumi.Input[str] url: URL to clone the repository from Google Cloud Source Repositories.
|
131
113
|
"""
|
132
|
-
if create_ignore_already_exists is not None:
|
133
|
-
pulumi.set(__self__, "create_ignore_already_exists", create_ignore_already_exists)
|
134
114
|
if name is not None:
|
135
115
|
pulumi.set(__self__, "name", name)
|
136
116
|
if project is not None:
|
@@ -142,18 +122,6 @@ class _RepositoryState:
|
|
142
122
|
if url is not None:
|
143
123
|
pulumi.set(__self__, "url", url)
|
144
124
|
|
145
|
-
@property
|
146
|
-
@pulumi.getter(name="createIgnoreAlreadyExists")
|
147
|
-
def create_ignore_already_exists(self) -> Optional[pulumi.Input[bool]]:
|
148
|
-
"""
|
149
|
-
If set to true, skip repository creation if a repository with the same name already exists.
|
150
|
-
"""
|
151
|
-
return pulumi.get(self, "create_ignore_already_exists")
|
152
|
-
|
153
|
-
@create_ignore_already_exists.setter
|
154
|
-
def create_ignore_already_exists(self, value: Optional[pulumi.Input[bool]]):
|
155
|
-
pulumi.set(self, "create_ignore_already_exists", value)
|
156
|
-
|
157
125
|
@property
|
158
126
|
@pulumi.getter
|
159
127
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -227,7 +195,6 @@ class Repository(pulumi.CustomResource):
|
|
227
195
|
def __init__(__self__,
|
228
196
|
resource_name: str,
|
229
197
|
opts: Optional[pulumi.ResourceOptions] = None,
|
230
|
-
create_ignore_already_exists: Optional[pulumi.Input[bool]] = None,
|
231
198
|
name: Optional[pulumi.Input[str]] = None,
|
232
199
|
project: Optional[pulumi.Input[str]] = None,
|
233
200
|
pubsub_configs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RepositoryPubsubConfigArgs', 'RepositoryPubsubConfigArgsDict']]]]] = None,
|
@@ -290,7 +257,6 @@ class Repository(pulumi.CustomResource):
|
|
290
257
|
|
291
258
|
:param str resource_name: The name of the resource.
|
292
259
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
293
|
-
:param pulumi.Input[bool] create_ignore_already_exists: If set to true, skip repository creation if a repository with the same name already exists.
|
294
260
|
:param pulumi.Input[str] name: Resource name of the repository, of the form `{{repo}}`.
|
295
261
|
The repo name may contain slashes. eg, `name/with/slash`
|
296
262
|
|
@@ -379,7 +345,6 @@ class Repository(pulumi.CustomResource):
|
|
379
345
|
def _internal_init(__self__,
|
380
346
|
resource_name: str,
|
381
347
|
opts: Optional[pulumi.ResourceOptions] = None,
|
382
|
-
create_ignore_already_exists: Optional[pulumi.Input[bool]] = None,
|
383
348
|
name: Optional[pulumi.Input[str]] = None,
|
384
349
|
project: Optional[pulumi.Input[str]] = None,
|
385
350
|
pubsub_configs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RepositoryPubsubConfigArgs', 'RepositoryPubsubConfigArgsDict']]]]] = None,
|
@@ -392,7 +357,6 @@ class Repository(pulumi.CustomResource):
|
|
392
357
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
393
358
|
__props__ = RepositoryArgs.__new__(RepositoryArgs)
|
394
359
|
|
395
|
-
__props__.__dict__["create_ignore_already_exists"] = create_ignore_already_exists
|
396
360
|
__props__.__dict__["name"] = name
|
397
361
|
__props__.__dict__["project"] = project
|
398
362
|
__props__.__dict__["pubsub_configs"] = pubsub_configs
|
@@ -408,7 +372,6 @@ class Repository(pulumi.CustomResource):
|
|
408
372
|
def get(resource_name: str,
|
409
373
|
id: pulumi.Input[str],
|
410
374
|
opts: Optional[pulumi.ResourceOptions] = None,
|
411
|
-
create_ignore_already_exists: Optional[pulumi.Input[bool]] = None,
|
412
375
|
name: Optional[pulumi.Input[str]] = None,
|
413
376
|
project: Optional[pulumi.Input[str]] = None,
|
414
377
|
pubsub_configs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RepositoryPubsubConfigArgs', 'RepositoryPubsubConfigArgsDict']]]]] = None,
|
@@ -421,7 +384,6 @@ class Repository(pulumi.CustomResource):
|
|
421
384
|
:param str resource_name: The unique name of the resulting resource.
|
422
385
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
423
386
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
424
|
-
:param pulumi.Input[bool] create_ignore_already_exists: If set to true, skip repository creation if a repository with the same name already exists.
|
425
387
|
:param pulumi.Input[str] name: Resource name of the repository, of the form `{{repo}}`.
|
426
388
|
The repo name may contain slashes. eg, `name/with/slash`
|
427
389
|
|
@@ -439,7 +401,6 @@ class Repository(pulumi.CustomResource):
|
|
439
401
|
|
440
402
|
__props__ = _RepositoryState.__new__(_RepositoryState)
|
441
403
|
|
442
|
-
__props__.__dict__["create_ignore_already_exists"] = create_ignore_already_exists
|
443
404
|
__props__.__dict__["name"] = name
|
444
405
|
__props__.__dict__["project"] = project
|
445
406
|
__props__.__dict__["pubsub_configs"] = pubsub_configs
|
@@ -447,14 +408,6 @@ class Repository(pulumi.CustomResource):
|
|
447
408
|
__props__.__dict__["url"] = url
|
448
409
|
return Repository(resource_name, opts=opts, __props__=__props__)
|
449
410
|
|
450
|
-
@property
|
451
|
-
@pulumi.getter(name="createIgnoreAlreadyExists")
|
452
|
-
def create_ignore_already_exists(self) -> pulumi.Output[Optional[bool]]:
|
453
|
-
"""
|
454
|
-
If set to true, skip repository creation if a repository with the same name already exists.
|
455
|
-
"""
|
456
|
-
return pulumi.get(self, "create_ignore_already_exists")
|
457
|
-
|
458
411
|
@property
|
459
412
|
@pulumi.getter
|
460
413
|
def name(self) -> pulumi.Output[str]:
|
pulumi_gcp/tags/tag_key.py
CHANGED
@@ -28,7 +28,7 @@ class TagKeyArgs:
|
|
28
28
|
The set of arguments for constructing a TagKey resource.
|
29
29
|
:param pulumi.Input[str] parent: Input only. The resource name of the new TagKey's parent. Must be of the form organizations/{org_id} or projects/{project_id_or_number}.
|
30
30
|
:param pulumi.Input[str] short_name: Input only. The user friendly name for a TagKey. The short name should be unique for TagKeys within the same tag namespace.
|
31
|
-
The short name
|
31
|
+
The short name must be 1-63 characters, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
32
32
|
|
33
33
|
|
34
34
|
- - -
|
@@ -65,7 +65,7 @@ class TagKeyArgs:
|
|
65
65
|
def short_name(self) -> pulumi.Input[str]:
|
66
66
|
"""
|
67
67
|
Input only. The user friendly name for a TagKey. The short name should be unique for TagKeys within the same tag namespace.
|
68
|
-
The short name
|
68
|
+
The short name must be 1-63 characters, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
69
69
|
|
70
70
|
|
71
71
|
- - -
|
@@ -142,7 +142,7 @@ class _TagKeyState:
|
|
142
142
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] purpose_data: Optional. Purpose data cannot be changed once set.
|
143
143
|
Purpose data corresponds to the policy system that the tag is intended for. For example, the GCE_FIREWALL purpose expects data in the following format: `network = "<project-name>/<vpc-name>"`.
|
144
144
|
:param pulumi.Input[str] short_name: Input only. The user friendly name for a TagKey. The short name should be unique for TagKeys within the same tag namespace.
|
145
|
-
The short name
|
145
|
+
The short name must be 1-63 characters, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
146
146
|
|
147
147
|
|
148
148
|
- - -
|
@@ -261,7 +261,7 @@ class _TagKeyState:
|
|
261
261
|
def short_name(self) -> Optional[pulumi.Input[str]]:
|
262
262
|
"""
|
263
263
|
Input only. The user friendly name for a TagKey. The short name should be unique for TagKeys within the same tag namespace.
|
264
|
-
The short name
|
264
|
+
The short name must be 1-63 characters, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
265
265
|
|
266
266
|
|
267
267
|
- - -
|
@@ -348,7 +348,7 @@ class TagKey(pulumi.CustomResource):
|
|
348
348
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] purpose_data: Optional. Purpose data cannot be changed once set.
|
349
349
|
Purpose data corresponds to the policy system that the tag is intended for. For example, the GCE_FIREWALL purpose expects data in the following format: `network = "<project-name>/<vpc-name>"`.
|
350
350
|
:param pulumi.Input[str] short_name: Input only. The user friendly name for a TagKey. The short name should be unique for TagKeys within the same tag namespace.
|
351
|
-
The short name
|
351
|
+
The short name must be 1-63 characters, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
352
352
|
|
353
353
|
|
354
354
|
- - -
|
@@ -480,7 +480,7 @@ class TagKey(pulumi.CustomResource):
|
|
480
480
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] purpose_data: Optional. Purpose data cannot be changed once set.
|
481
481
|
Purpose data corresponds to the policy system that the tag is intended for. For example, the GCE_FIREWALL purpose expects data in the following format: `network = "<project-name>/<vpc-name>"`.
|
482
482
|
:param pulumi.Input[str] short_name: Input only. The user friendly name for a TagKey. The short name should be unique for TagKeys within the same tag namespace.
|
483
|
-
The short name
|
483
|
+
The short name must be 1-63 characters, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
484
484
|
|
485
485
|
|
486
486
|
- - -
|
@@ -567,7 +567,7 @@ class TagKey(pulumi.CustomResource):
|
|
567
567
|
def short_name(self) -> pulumi.Output[str]:
|
568
568
|
"""
|
569
569
|
Input only. The user friendly name for a TagKey. The short name should be unique for TagKeys within the same tag namespace.
|
570
|
-
The short name
|
570
|
+
The short name must be 1-63 characters, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
571
571
|
|
572
572
|
|
573
573
|
- - -
|
pulumi_gcp/tags/tag_value.py
CHANGED
@@ -26,7 +26,7 @@ class TagValueArgs:
|
|
26
26
|
The set of arguments for constructing a TagValue resource.
|
27
27
|
:param pulumi.Input[str] parent: Input only. The resource name of the new TagValue's parent. Must be of the form tagKeys/{tag_key_id}.
|
28
28
|
:param pulumi.Input[str] short_name: Input only. User-assigned short name for TagValue. The short name should be unique for TagValues within the same parent TagKey.
|
29
|
-
The short name
|
29
|
+
The short name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
30
30
|
|
31
31
|
|
32
32
|
- - -
|
@@ -54,7 +54,7 @@ class TagValueArgs:
|
|
54
54
|
def short_name(self) -> pulumi.Input[str]:
|
55
55
|
"""
|
56
56
|
Input only. User-assigned short name for TagValue. The short name should be unique for TagValues within the same parent TagKey.
|
57
|
-
The short name
|
57
|
+
The short name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
58
58
|
|
59
59
|
|
60
60
|
- - -
|
@@ -97,7 +97,7 @@ class _TagValueState:
|
|
97
97
|
:param pulumi.Input[str] namespaced_name: Output only. Namespaced name of the TagValue. Will be in the format {parentNamespace}/{tagKeyShortName}/{shortName}.
|
98
98
|
:param pulumi.Input[str] parent: Input only. The resource name of the new TagValue's parent. Must be of the form tagKeys/{tag_key_id}.
|
99
99
|
:param pulumi.Input[str] short_name: Input only. User-assigned short name for TagValue. The short name should be unique for TagValues within the same parent TagKey.
|
100
|
-
The short name
|
100
|
+
The short name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
101
101
|
|
102
102
|
|
103
103
|
- - -
|
@@ -185,7 +185,7 @@ class _TagValueState:
|
|
185
185
|
def short_name(self) -> Optional[pulumi.Input[str]]:
|
186
186
|
"""
|
187
187
|
Input only. User-assigned short name for TagValue. The short name should be unique for TagValues within the same parent TagKey.
|
188
|
-
The short name
|
188
|
+
The short name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
189
189
|
|
190
190
|
|
191
191
|
- - -
|
@@ -269,7 +269,7 @@ class TagValue(pulumi.CustomResource):
|
|
269
269
|
:param pulumi.Input[str] description: User-assigned description of the TagValue. Must not exceed 256 characters.
|
270
270
|
:param pulumi.Input[str] parent: Input only. The resource name of the new TagValue's parent. Must be of the form tagKeys/{tag_key_id}.
|
271
271
|
:param pulumi.Input[str] short_name: Input only. User-assigned short name for TagValue. The short name should be unique for TagValues within the same parent TagKey.
|
272
|
-
The short name
|
272
|
+
The short name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
273
273
|
|
274
274
|
|
275
275
|
- - -
|
@@ -394,7 +394,7 @@ class TagValue(pulumi.CustomResource):
|
|
394
394
|
:param pulumi.Input[str] namespaced_name: Output only. Namespaced name of the TagValue. Will be in the format {parentNamespace}/{tagKeyShortName}/{shortName}.
|
395
395
|
:param pulumi.Input[str] parent: Input only. The resource name of the new TagValue's parent. Must be of the form tagKeys/{tag_key_id}.
|
396
396
|
:param pulumi.Input[str] short_name: Input only. User-assigned short name for TagValue. The short name should be unique for TagValues within the same parent TagKey.
|
397
|
-
The short name
|
397
|
+
The short name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
398
398
|
|
399
399
|
|
400
400
|
- - -
|
@@ -460,7 +460,7 @@ class TagValue(pulumi.CustomResource):
|
|
460
460
|
def short_name(self) -> pulumi.Output[str]:
|
461
461
|
"""
|
462
462
|
Input only. User-assigned short name for TagValue. The short name should be unique for TagValues within the same parent TagKey.
|
463
|
-
The short name
|
463
|
+
The short name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between.
|
464
464
|
|
465
465
|
|
466
466
|
- - -
|
@@ -618,8 +618,8 @@ class AiFeatureOnlineStoreFeatureview(pulumi.CustomResource):
|
|
618
618
|
|
619
619
|
test_project = gcp.organizations.get_project()
|
620
620
|
project = gcp.organizations.Project("project",
|
621
|
-
project_id="tf-
|
622
|
-
name="tf-
|
621
|
+
project_id="tf-test_13293",
|
622
|
+
name="tf-test_40289",
|
623
623
|
org_id="123456789",
|
624
624
|
billing_account="000000-0000000-0000000-000000",
|
625
625
|
deletion_policy="DELETE")
|
@@ -1063,8 +1063,8 @@ class AiFeatureOnlineStoreFeatureview(pulumi.CustomResource):
|
|
1063
1063
|
|
1064
1064
|
test_project = gcp.organizations.get_project()
|
1065
1065
|
project = gcp.organizations.Project("project",
|
1066
|
-
project_id="tf-
|
1067
|
-
name="tf-
|
1066
|
+
project_id="tf-test_13293",
|
1067
|
+
name="tf-test_40289",
|
1068
1068
|
org_id="123456789",
|
1069
1069
|
billing_account="000000-0000000-0000000-000000",
|
1070
1070
|
deletion_policy="DELETE")
|