pulumi-gcp 8.6.0a1728595713__py3-none-any.whl → 8.6.0a1729037011__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 +8 -0
- pulumi_gcp/bigtable/_inputs.py +58 -0
- pulumi_gcp/bigtable/instance_iam_binding.py +13 -34
- pulumi_gcp/bigtable/instance_iam_member.py +13 -34
- pulumi_gcp/bigtable/instance_iam_policy.py +0 -47
- pulumi_gcp/bigtable/outputs.py +36 -0
- pulumi_gcp/compute/_inputs.py +3 -3
- pulumi_gcp/compute/outputs.py +2 -2
- pulumi_gcp/container/_inputs.py +12 -0
- pulumi_gcp/container/outputs.py +8 -0
- pulumi_gcp/discoveryengine/_inputs.py +32 -5
- pulumi_gcp/discoveryengine/chat_engine.py +64 -0
- pulumi_gcp/discoveryengine/outputs.py +22 -3
- pulumi_gcp/kms/key_handle.py +8 -8
- pulumi_gcp/netapp/backup_vault.py +2 -2
- pulumi_gcp/networkconnectivity/_inputs.py +70 -0
- pulumi_gcp/networkconnectivity/internal_range.py +117 -7
- pulumi_gcp/networkconnectivity/outputs.py +42 -0
- pulumi_gcp/networkservices/gateway.py +54 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/secretmanager/outputs.py +2 -10
- pulumi_gcp/securesourcemanager/__init__.py +1 -0
- pulumi_gcp/securesourcemanager/branch_rule.py +975 -0
- pulumi_gcp/spanner/backup_schedule.py +4 -2
- {pulumi_gcp-8.6.0a1728595713.dist-info → pulumi_gcp-8.6.0a1729037011.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.6.0a1728595713.dist-info → pulumi_gcp-8.6.0a1729037011.dist-info}/RECORD +28 -27
- {pulumi_gcp-8.6.0a1728595713.dist-info → pulumi_gcp-8.6.0a1729037011.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.6.0a1728595713.dist-info → pulumi_gcp-8.6.0a1729037011.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py
CHANGED
@@ -7085,6 +7085,14 @@ _utilities.register(
|
|
7085
7085
|
"gcp:secretmanager/secretVersion:SecretVersion": "SecretVersion"
|
7086
7086
|
}
|
7087
7087
|
},
|
7088
|
+
{
|
7089
|
+
"pkg": "gcp",
|
7090
|
+
"mod": "securesourcemanager/branchRule",
|
7091
|
+
"fqn": "pulumi_gcp.securesourcemanager",
|
7092
|
+
"classes": {
|
7093
|
+
"gcp:securesourcemanager/branchRule:BranchRule": "BranchRule"
|
7094
|
+
}
|
7095
|
+
},
|
7088
7096
|
{
|
7089
7097
|
"pkg": "gcp",
|
7090
7098
|
"mod": "securesourcemanager/instance",
|
pulumi_gcp/bigtable/_inputs.py
CHANGED
@@ -565,8 +565,19 @@ class InstanceClusterAutoscalingConfigArgs:
|
|
565
565
|
if not MYPY:
|
566
566
|
class InstanceIamBindingConditionArgsDict(TypedDict):
|
567
567
|
expression: pulumi.Input[str]
|
568
|
+
"""
|
569
|
+
Textual representation of an expression in Common Expression Language syntax.
|
570
|
+
"""
|
568
571
|
title: pulumi.Input[str]
|
572
|
+
"""
|
573
|
+
A title for the expression, i.e. a short string describing its purpose.
|
574
|
+
"""
|
569
575
|
description: NotRequired[pulumi.Input[str]]
|
576
|
+
"""
|
577
|
+
An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
578
|
+
|
579
|
+
For `bigtable.InstanceIamPolicy` only:
|
580
|
+
"""
|
570
581
|
elif False:
|
571
582
|
InstanceIamBindingConditionArgsDict: TypeAlias = Mapping[str, Any]
|
572
583
|
|
@@ -576,6 +587,13 @@ class InstanceIamBindingConditionArgs:
|
|
576
587
|
expression: pulumi.Input[str],
|
577
588
|
title: pulumi.Input[str],
|
578
589
|
description: Optional[pulumi.Input[str]] = None):
|
590
|
+
"""
|
591
|
+
:param pulumi.Input[str] expression: Textual representation of an expression in Common Expression Language syntax.
|
592
|
+
:param pulumi.Input[str] title: A title for the expression, i.e. a short string describing its purpose.
|
593
|
+
:param pulumi.Input[str] description: An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
594
|
+
|
595
|
+
For `bigtable.InstanceIamPolicy` only:
|
596
|
+
"""
|
579
597
|
pulumi.set(__self__, "expression", expression)
|
580
598
|
pulumi.set(__self__, "title", title)
|
581
599
|
if description is not None:
|
@@ -584,6 +602,9 @@ class InstanceIamBindingConditionArgs:
|
|
584
602
|
@property
|
585
603
|
@pulumi.getter
|
586
604
|
def expression(self) -> pulumi.Input[str]:
|
605
|
+
"""
|
606
|
+
Textual representation of an expression in Common Expression Language syntax.
|
607
|
+
"""
|
587
608
|
return pulumi.get(self, "expression")
|
588
609
|
|
589
610
|
@expression.setter
|
@@ -593,6 +614,9 @@ class InstanceIamBindingConditionArgs:
|
|
593
614
|
@property
|
594
615
|
@pulumi.getter
|
595
616
|
def title(self) -> pulumi.Input[str]:
|
617
|
+
"""
|
618
|
+
A title for the expression, i.e. a short string describing its purpose.
|
619
|
+
"""
|
596
620
|
return pulumi.get(self, "title")
|
597
621
|
|
598
622
|
@title.setter
|
@@ -602,6 +626,11 @@ class InstanceIamBindingConditionArgs:
|
|
602
626
|
@property
|
603
627
|
@pulumi.getter
|
604
628
|
def description(self) -> Optional[pulumi.Input[str]]:
|
629
|
+
"""
|
630
|
+
An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
631
|
+
|
632
|
+
For `bigtable.InstanceIamPolicy` only:
|
633
|
+
"""
|
605
634
|
return pulumi.get(self, "description")
|
606
635
|
|
607
636
|
@description.setter
|
@@ -612,8 +641,19 @@ class InstanceIamBindingConditionArgs:
|
|
612
641
|
if not MYPY:
|
613
642
|
class InstanceIamMemberConditionArgsDict(TypedDict):
|
614
643
|
expression: pulumi.Input[str]
|
644
|
+
"""
|
645
|
+
Textual representation of an expression in Common Expression Language syntax.
|
646
|
+
"""
|
615
647
|
title: pulumi.Input[str]
|
648
|
+
"""
|
649
|
+
A title for the expression, i.e. a short string describing its purpose.
|
650
|
+
"""
|
616
651
|
description: NotRequired[pulumi.Input[str]]
|
652
|
+
"""
|
653
|
+
An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
654
|
+
|
655
|
+
For `bigtable.InstanceIamPolicy` only:
|
656
|
+
"""
|
617
657
|
elif False:
|
618
658
|
InstanceIamMemberConditionArgsDict: TypeAlias = Mapping[str, Any]
|
619
659
|
|
@@ -623,6 +663,13 @@ class InstanceIamMemberConditionArgs:
|
|
623
663
|
expression: pulumi.Input[str],
|
624
664
|
title: pulumi.Input[str],
|
625
665
|
description: Optional[pulumi.Input[str]] = None):
|
666
|
+
"""
|
667
|
+
:param pulumi.Input[str] expression: Textual representation of an expression in Common Expression Language syntax.
|
668
|
+
:param pulumi.Input[str] title: A title for the expression, i.e. a short string describing its purpose.
|
669
|
+
:param pulumi.Input[str] description: An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
670
|
+
|
671
|
+
For `bigtable.InstanceIamPolicy` only:
|
672
|
+
"""
|
626
673
|
pulumi.set(__self__, "expression", expression)
|
627
674
|
pulumi.set(__self__, "title", title)
|
628
675
|
if description is not None:
|
@@ -631,6 +678,9 @@ class InstanceIamMemberConditionArgs:
|
|
631
678
|
@property
|
632
679
|
@pulumi.getter
|
633
680
|
def expression(self) -> pulumi.Input[str]:
|
681
|
+
"""
|
682
|
+
Textual representation of an expression in Common Expression Language syntax.
|
683
|
+
"""
|
634
684
|
return pulumi.get(self, "expression")
|
635
685
|
|
636
686
|
@expression.setter
|
@@ -640,6 +690,9 @@ class InstanceIamMemberConditionArgs:
|
|
640
690
|
@property
|
641
691
|
@pulumi.getter
|
642
692
|
def title(self) -> pulumi.Input[str]:
|
693
|
+
"""
|
694
|
+
A title for the expression, i.e. a short string describing its purpose.
|
695
|
+
"""
|
643
696
|
return pulumi.get(self, "title")
|
644
697
|
|
645
698
|
@title.setter
|
@@ -649,6 +702,11 @@ class InstanceIamMemberConditionArgs:
|
|
649
702
|
@property
|
650
703
|
@pulumi.getter
|
651
704
|
def description(self) -> Optional[pulumi.Input[str]]:
|
705
|
+
"""
|
706
|
+
An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
707
|
+
|
708
|
+
For `bigtable.InstanceIamPolicy` only:
|
709
|
+
"""
|
652
710
|
return pulumi.get(self, "description")
|
653
711
|
|
654
712
|
@description.setter
|
@@ -42,10 +42,7 @@ class InstanceIamBindingArgs:
|
|
42
42
|
:param pulumi.Input[str] role: The role that should be applied. Only one
|
43
43
|
`bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
|
44
44
|
`[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
|
45
|
-
|
46
|
-
`bigtable.InstanceIamPolicy` only:
|
47
|
-
:param pulumi.Input[str] project: The project in which the instance belongs. If it
|
48
|
-
is not provided, a default will be supplied.
|
45
|
+
:param pulumi.Input['InstanceIamBindingConditionArgs'] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
|
49
46
|
"""
|
50
47
|
pulumi.set(__self__, "instance", instance)
|
51
48
|
pulumi.set(__self__, "members", members)
|
@@ -95,8 +92,6 @@ class InstanceIamBindingArgs:
|
|
95
92
|
The role that should be applied. Only one
|
96
93
|
`bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
|
97
94
|
`[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
|
98
|
-
|
99
|
-
`bigtable.InstanceIamPolicy` only:
|
100
95
|
"""
|
101
96
|
return pulumi.get(self, "role")
|
102
97
|
|
@@ -107,6 +102,9 @@ class InstanceIamBindingArgs:
|
|
107
102
|
@property
|
108
103
|
@pulumi.getter
|
109
104
|
def condition(self) -> Optional[pulumi.Input['InstanceIamBindingConditionArgs']]:
|
105
|
+
"""
|
106
|
+
An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
|
107
|
+
"""
|
110
108
|
return pulumi.get(self, "condition")
|
111
109
|
|
112
110
|
@condition.setter
|
@@ -116,10 +114,6 @@ class InstanceIamBindingArgs:
|
|
116
114
|
@property
|
117
115
|
@pulumi.getter
|
118
116
|
def project(self) -> Optional[pulumi.Input[str]]:
|
119
|
-
"""
|
120
|
-
The project in which the instance belongs. If it
|
121
|
-
is not provided, a default will be supplied.
|
122
|
-
"""
|
123
117
|
return pulumi.get(self, "project")
|
124
118
|
|
125
119
|
@project.setter
|
@@ -138,6 +132,7 @@ class _InstanceIamBindingState:
|
|
138
132
|
role: Optional[pulumi.Input[str]] = None):
|
139
133
|
"""
|
140
134
|
Input properties used for looking up and filtering InstanceIamBinding resources.
|
135
|
+
:param pulumi.Input['InstanceIamBindingConditionArgs'] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
|
141
136
|
:param pulumi.Input[str] etag: (Computed) The etag of the instances's IAM policy.
|
142
137
|
:param pulumi.Input[str] instance: The name or relative resource id of the instance to manage IAM policies for.
|
143
138
|
|
@@ -150,13 +145,9 @@ class _InstanceIamBindingState:
|
|
150
145
|
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
151
146
|
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
152
147
|
* **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
|
153
|
-
:param pulumi.Input[str] project: The project in which the instance belongs. If it
|
154
|
-
is not provided, a default will be supplied.
|
155
148
|
:param pulumi.Input[str] role: The role that should be applied. Only one
|
156
149
|
`bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
|
157
150
|
`[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
|
158
|
-
|
159
|
-
`bigtable.InstanceIamPolicy` only:
|
160
151
|
"""
|
161
152
|
if condition is not None:
|
162
153
|
pulumi.set(__self__, "condition", condition)
|
@@ -174,6 +165,9 @@ class _InstanceIamBindingState:
|
|
174
165
|
@property
|
175
166
|
@pulumi.getter
|
176
167
|
def condition(self) -> Optional[pulumi.Input['InstanceIamBindingConditionArgs']]:
|
168
|
+
"""
|
169
|
+
An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
|
170
|
+
"""
|
177
171
|
return pulumi.get(self, "condition")
|
178
172
|
|
179
173
|
@condition.setter
|
@@ -228,10 +222,6 @@ class _InstanceIamBindingState:
|
|
228
222
|
@property
|
229
223
|
@pulumi.getter
|
230
224
|
def project(self) -> Optional[pulumi.Input[str]]:
|
231
|
-
"""
|
232
|
-
The project in which the instance belongs. If it
|
233
|
-
is not provided, a default will be supplied.
|
234
|
-
"""
|
235
225
|
return pulumi.get(self, "project")
|
236
226
|
|
237
227
|
@project.setter
|
@@ -245,8 +235,6 @@ class _InstanceIamBindingState:
|
|
245
235
|
The role that should be applied. Only one
|
246
236
|
`bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
|
247
237
|
`[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
|
248
|
-
|
249
|
-
`bigtable.InstanceIamPolicy` only:
|
250
238
|
"""
|
251
239
|
return pulumi.get(self, "role")
|
252
240
|
|
@@ -385,6 +373,7 @@ class InstanceIamBinding(pulumi.CustomResource):
|
|
385
373
|
|
386
374
|
:param str resource_name: The name of the resource.
|
387
375
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
376
|
+
:param pulumi.Input[Union['InstanceIamBindingConditionArgs', 'InstanceIamBindingConditionArgsDict']] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
|
388
377
|
:param pulumi.Input[str] instance: The name or relative resource id of the instance to manage IAM policies for.
|
389
378
|
|
390
379
|
For `bigtable.InstanceIamMember` or `bigtable.InstanceIamBinding`:
|
@@ -396,13 +385,9 @@ class InstanceIamBinding(pulumi.CustomResource):
|
|
396
385
|
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
397
386
|
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
398
387
|
* **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
|
399
|
-
:param pulumi.Input[str] project: The project in which the instance belongs. If it
|
400
|
-
is not provided, a default will be supplied.
|
401
388
|
:param pulumi.Input[str] role: The role that should be applied. Only one
|
402
389
|
`bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
|
403
390
|
`[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
|
404
|
-
|
405
|
-
`bigtable.InstanceIamPolicy` only:
|
406
391
|
"""
|
407
392
|
...
|
408
393
|
@overload
|
@@ -591,6 +576,7 @@ class InstanceIamBinding(pulumi.CustomResource):
|
|
591
576
|
:param str resource_name: The unique name of the resulting resource.
|
592
577
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
593
578
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
579
|
+
:param pulumi.Input[Union['InstanceIamBindingConditionArgs', 'InstanceIamBindingConditionArgsDict']] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
|
594
580
|
:param pulumi.Input[str] etag: (Computed) The etag of the instances's IAM policy.
|
595
581
|
:param pulumi.Input[str] instance: The name or relative resource id of the instance to manage IAM policies for.
|
596
582
|
|
@@ -603,13 +589,9 @@ class InstanceIamBinding(pulumi.CustomResource):
|
|
603
589
|
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
604
590
|
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
605
591
|
* **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
|
606
|
-
:param pulumi.Input[str] project: The project in which the instance belongs. If it
|
607
|
-
is not provided, a default will be supplied.
|
608
592
|
:param pulumi.Input[str] role: The role that should be applied. Only one
|
609
593
|
`bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
|
610
594
|
`[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
|
611
|
-
|
612
|
-
`bigtable.InstanceIamPolicy` only:
|
613
595
|
"""
|
614
596
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
615
597
|
|
@@ -626,6 +608,9 @@ class InstanceIamBinding(pulumi.CustomResource):
|
|
626
608
|
@property
|
627
609
|
@pulumi.getter
|
628
610
|
def condition(self) -> pulumi.Output[Optional['outputs.InstanceIamBindingCondition']]:
|
611
|
+
"""
|
612
|
+
An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
|
613
|
+
"""
|
629
614
|
return pulumi.get(self, "condition")
|
630
615
|
|
631
616
|
@property
|
@@ -664,10 +649,6 @@ class InstanceIamBinding(pulumi.CustomResource):
|
|
664
649
|
@property
|
665
650
|
@pulumi.getter
|
666
651
|
def project(self) -> pulumi.Output[str]:
|
667
|
-
"""
|
668
|
-
The project in which the instance belongs. If it
|
669
|
-
is not provided, a default will be supplied.
|
670
|
-
"""
|
671
652
|
return pulumi.get(self, "project")
|
672
653
|
|
673
654
|
@property
|
@@ -677,8 +658,6 @@ class InstanceIamBinding(pulumi.CustomResource):
|
|
677
658
|
The role that should be applied. Only one
|
678
659
|
`bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
|
679
660
|
`[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
|
680
|
-
|
681
|
-
`bigtable.InstanceIamPolicy` only:
|
682
661
|
"""
|
683
662
|
return pulumi.get(self, "role")
|
684
663
|
|
@@ -42,10 +42,7 @@ class InstanceIamMemberArgs:
|
|
42
42
|
:param pulumi.Input[str] role: The role that should be applied. Only one
|
43
43
|
`bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
|
44
44
|
`[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
|
45
|
-
|
46
|
-
`bigtable.InstanceIamPolicy` only:
|
47
|
-
:param pulumi.Input[str] project: The project in which the instance belongs. If it
|
48
|
-
is not provided, a default will be supplied.
|
45
|
+
:param pulumi.Input['InstanceIamMemberConditionArgs'] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
|
49
46
|
"""
|
50
47
|
pulumi.set(__self__, "instance", instance)
|
51
48
|
pulumi.set(__self__, "member", member)
|
@@ -95,8 +92,6 @@ class InstanceIamMemberArgs:
|
|
95
92
|
The role that should be applied. Only one
|
96
93
|
`bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
|
97
94
|
`[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
|
98
|
-
|
99
|
-
`bigtable.InstanceIamPolicy` only:
|
100
95
|
"""
|
101
96
|
return pulumi.get(self, "role")
|
102
97
|
|
@@ -107,6 +102,9 @@ class InstanceIamMemberArgs:
|
|
107
102
|
@property
|
108
103
|
@pulumi.getter
|
109
104
|
def condition(self) -> Optional[pulumi.Input['InstanceIamMemberConditionArgs']]:
|
105
|
+
"""
|
106
|
+
An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
|
107
|
+
"""
|
110
108
|
return pulumi.get(self, "condition")
|
111
109
|
|
112
110
|
@condition.setter
|
@@ -116,10 +114,6 @@ class InstanceIamMemberArgs:
|
|
116
114
|
@property
|
117
115
|
@pulumi.getter
|
118
116
|
def project(self) -> Optional[pulumi.Input[str]]:
|
119
|
-
"""
|
120
|
-
The project in which the instance belongs. If it
|
121
|
-
is not provided, a default will be supplied.
|
122
|
-
"""
|
123
117
|
return pulumi.get(self, "project")
|
124
118
|
|
125
119
|
@project.setter
|
@@ -138,6 +132,7 @@ class _InstanceIamMemberState:
|
|
138
132
|
role: Optional[pulumi.Input[str]] = None):
|
139
133
|
"""
|
140
134
|
Input properties used for looking up and filtering InstanceIamMember resources.
|
135
|
+
:param pulumi.Input['InstanceIamMemberConditionArgs'] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
|
141
136
|
:param pulumi.Input[str] etag: (Computed) The etag of the instances's IAM policy.
|
142
137
|
:param pulumi.Input[str] instance: The name or relative resource id of the instance to manage IAM policies for.
|
143
138
|
|
@@ -150,13 +145,9 @@ class _InstanceIamMemberState:
|
|
150
145
|
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
151
146
|
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
152
147
|
* **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
|
153
|
-
:param pulumi.Input[str] project: The project in which the instance belongs. If it
|
154
|
-
is not provided, a default will be supplied.
|
155
148
|
:param pulumi.Input[str] role: The role that should be applied. Only one
|
156
149
|
`bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
|
157
150
|
`[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
|
158
|
-
|
159
|
-
`bigtable.InstanceIamPolicy` only:
|
160
151
|
"""
|
161
152
|
if condition is not None:
|
162
153
|
pulumi.set(__self__, "condition", condition)
|
@@ -174,6 +165,9 @@ class _InstanceIamMemberState:
|
|
174
165
|
@property
|
175
166
|
@pulumi.getter
|
176
167
|
def condition(self) -> Optional[pulumi.Input['InstanceIamMemberConditionArgs']]:
|
168
|
+
"""
|
169
|
+
An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
|
170
|
+
"""
|
177
171
|
return pulumi.get(self, "condition")
|
178
172
|
|
179
173
|
@condition.setter
|
@@ -228,10 +222,6 @@ class _InstanceIamMemberState:
|
|
228
222
|
@property
|
229
223
|
@pulumi.getter
|
230
224
|
def project(self) -> Optional[pulumi.Input[str]]:
|
231
|
-
"""
|
232
|
-
The project in which the instance belongs. If it
|
233
|
-
is not provided, a default will be supplied.
|
234
|
-
"""
|
235
225
|
return pulumi.get(self, "project")
|
236
226
|
|
237
227
|
@project.setter
|
@@ -245,8 +235,6 @@ class _InstanceIamMemberState:
|
|
245
235
|
The role that should be applied. Only one
|
246
236
|
`bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
|
247
237
|
`[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
|
248
|
-
|
249
|
-
`bigtable.InstanceIamPolicy` only:
|
250
238
|
"""
|
251
239
|
return pulumi.get(self, "role")
|
252
240
|
|
@@ -385,6 +373,7 @@ class InstanceIamMember(pulumi.CustomResource):
|
|
385
373
|
|
386
374
|
:param str resource_name: The name of the resource.
|
387
375
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
376
|
+
:param pulumi.Input[Union['InstanceIamMemberConditionArgs', 'InstanceIamMemberConditionArgsDict']] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
|
388
377
|
:param pulumi.Input[str] instance: The name or relative resource id of the instance to manage IAM policies for.
|
389
378
|
|
390
379
|
For `bigtable.InstanceIamMember` or `bigtable.InstanceIamBinding`:
|
@@ -396,13 +385,9 @@ class InstanceIamMember(pulumi.CustomResource):
|
|
396
385
|
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
397
386
|
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
398
387
|
* **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
|
399
|
-
:param pulumi.Input[str] project: The project in which the instance belongs. If it
|
400
|
-
is not provided, a default will be supplied.
|
401
388
|
:param pulumi.Input[str] role: The role that should be applied. Only one
|
402
389
|
`bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
|
403
390
|
`[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
|
404
|
-
|
405
|
-
`bigtable.InstanceIamPolicy` only:
|
406
391
|
"""
|
407
392
|
...
|
408
393
|
@overload
|
@@ -591,6 +576,7 @@ class InstanceIamMember(pulumi.CustomResource):
|
|
591
576
|
:param str resource_name: The unique name of the resulting resource.
|
592
577
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
593
578
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
579
|
+
:param pulumi.Input[Union['InstanceIamMemberConditionArgs', 'InstanceIamMemberConditionArgsDict']] condition: An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
|
594
580
|
:param pulumi.Input[str] etag: (Computed) The etag of the instances's IAM policy.
|
595
581
|
:param pulumi.Input[str] instance: The name or relative resource id of the instance to manage IAM policies for.
|
596
582
|
|
@@ -603,13 +589,9 @@ class InstanceIamMember(pulumi.CustomResource):
|
|
603
589
|
* **serviceAccount:{emailid}**: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
|
604
590
|
* **group:{emailid}**: An email address that represents a Google group. For example, admins@example.com.
|
605
591
|
* **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
|
606
|
-
:param pulumi.Input[str] project: The project in which the instance belongs. If it
|
607
|
-
is not provided, a default will be supplied.
|
608
592
|
:param pulumi.Input[str] role: The role that should be applied. Only one
|
609
593
|
`bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
|
610
594
|
`[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
|
611
|
-
|
612
|
-
`bigtable.InstanceIamPolicy` only:
|
613
595
|
"""
|
614
596
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
615
597
|
|
@@ -626,6 +608,9 @@ class InstanceIamMember(pulumi.CustomResource):
|
|
626
608
|
@property
|
627
609
|
@pulumi.getter
|
628
610
|
def condition(self) -> pulumi.Output[Optional['outputs.InstanceIamMemberCondition']]:
|
611
|
+
"""
|
612
|
+
An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding. Structure is documented below.
|
613
|
+
"""
|
629
614
|
return pulumi.get(self, "condition")
|
630
615
|
|
631
616
|
@property
|
@@ -664,10 +649,6 @@ class InstanceIamMember(pulumi.CustomResource):
|
|
664
649
|
@property
|
665
650
|
@pulumi.getter
|
666
651
|
def project(self) -> pulumi.Output[str]:
|
667
|
-
"""
|
668
|
-
The project in which the instance belongs. If it
|
669
|
-
is not provided, a default will be supplied.
|
670
|
-
"""
|
671
652
|
return pulumi.get(self, "project")
|
672
653
|
|
673
654
|
@property
|
@@ -677,8 +658,6 @@ class InstanceIamMember(pulumi.CustomResource):
|
|
677
658
|
The role that should be applied. Only one
|
678
659
|
`bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
|
679
660
|
`[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
|
680
|
-
|
681
|
-
`bigtable.InstanceIamPolicy` only:
|
682
661
|
"""
|
683
662
|
return pulumi.get(self, "role")
|
684
663
|
|
@@ -27,11 +27,6 @@ class InstanceIamPolicyArgs:
|
|
27
27
|
:param pulumi.Input[str] instance: The name or relative resource id of the instance to manage IAM policies for.
|
28
28
|
|
29
29
|
For `bigtable.InstanceIamMember` or `bigtable.InstanceIamBinding`:
|
30
|
-
:param pulumi.Input[str] policy_data: The policy data generated by a `organizations_get_iam_policy` data source.
|
31
|
-
|
32
|
-
- - -
|
33
|
-
:param pulumi.Input[str] project: The project in which the instance belongs. If it
|
34
|
-
is not provided, a default will be supplied.
|
35
30
|
"""
|
36
31
|
pulumi.set(__self__, "instance", instance)
|
37
32
|
pulumi.set(__self__, "policy_data", policy_data)
|
@@ -55,11 +50,6 @@ class InstanceIamPolicyArgs:
|
|
55
50
|
@property
|
56
51
|
@pulumi.getter(name="policyData")
|
57
52
|
def policy_data(self) -> pulumi.Input[str]:
|
58
|
-
"""
|
59
|
-
The policy data generated by a `organizations_get_iam_policy` data source.
|
60
|
-
|
61
|
-
- - -
|
62
|
-
"""
|
63
53
|
return pulumi.get(self, "policy_data")
|
64
54
|
|
65
55
|
@policy_data.setter
|
@@ -69,10 +59,6 @@ class InstanceIamPolicyArgs:
|
|
69
59
|
@property
|
70
60
|
@pulumi.getter
|
71
61
|
def project(self) -> Optional[pulumi.Input[str]]:
|
72
|
-
"""
|
73
|
-
The project in which the instance belongs. If it
|
74
|
-
is not provided, a default will be supplied.
|
75
|
-
"""
|
76
62
|
return pulumi.get(self, "project")
|
77
63
|
|
78
64
|
@project.setter
|
@@ -93,11 +79,6 @@ class _InstanceIamPolicyState:
|
|
93
79
|
:param pulumi.Input[str] instance: The name or relative resource id of the instance to manage IAM policies for.
|
94
80
|
|
95
81
|
For `bigtable.InstanceIamMember` or `bigtable.InstanceIamBinding`:
|
96
|
-
:param pulumi.Input[str] policy_data: The policy data generated by a `organizations_get_iam_policy` data source.
|
97
|
-
|
98
|
-
- - -
|
99
|
-
:param pulumi.Input[str] project: The project in which the instance belongs. If it
|
100
|
-
is not provided, a default will be supplied.
|
101
82
|
"""
|
102
83
|
if etag is not None:
|
103
84
|
pulumi.set(__self__, "etag", etag)
|
@@ -137,11 +118,6 @@ class _InstanceIamPolicyState:
|
|
137
118
|
@property
|
138
119
|
@pulumi.getter(name="policyData")
|
139
120
|
def policy_data(self) -> Optional[pulumi.Input[str]]:
|
140
|
-
"""
|
141
|
-
The policy data generated by a `organizations_get_iam_policy` data source.
|
142
|
-
|
143
|
-
- - -
|
144
|
-
"""
|
145
121
|
return pulumi.get(self, "policy_data")
|
146
122
|
|
147
123
|
@policy_data.setter
|
@@ -151,10 +127,6 @@ class _InstanceIamPolicyState:
|
|
151
127
|
@property
|
152
128
|
@pulumi.getter
|
153
129
|
def project(self) -> Optional[pulumi.Input[str]]:
|
154
|
-
"""
|
155
|
-
The project in which the instance belongs. If it
|
156
|
-
is not provided, a default will be supplied.
|
157
|
-
"""
|
158
130
|
return pulumi.get(self, "project")
|
159
131
|
|
160
132
|
@project.setter
|
@@ -293,11 +265,6 @@ class InstanceIamPolicy(pulumi.CustomResource):
|
|
293
265
|
:param pulumi.Input[str] instance: The name or relative resource id of the instance to manage IAM policies for.
|
294
266
|
|
295
267
|
For `bigtable.InstanceIamMember` or `bigtable.InstanceIamBinding`:
|
296
|
-
:param pulumi.Input[str] policy_data: The policy data generated by a `organizations_get_iam_policy` data source.
|
297
|
-
|
298
|
-
- - -
|
299
|
-
:param pulumi.Input[str] project: The project in which the instance belongs. If it
|
300
|
-
is not provided, a default will be supplied.
|
301
268
|
"""
|
302
269
|
...
|
303
270
|
@overload
|
@@ -482,11 +449,6 @@ class InstanceIamPolicy(pulumi.CustomResource):
|
|
482
449
|
:param pulumi.Input[str] instance: The name or relative resource id of the instance to manage IAM policies for.
|
483
450
|
|
484
451
|
For `bigtable.InstanceIamMember` or `bigtable.InstanceIamBinding`:
|
485
|
-
:param pulumi.Input[str] policy_data: The policy data generated by a `organizations_get_iam_policy` data source.
|
486
|
-
|
487
|
-
- - -
|
488
|
-
:param pulumi.Input[str] project: The project in which the instance belongs. If it
|
489
|
-
is not provided, a default will be supplied.
|
490
452
|
"""
|
491
453
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
492
454
|
|
@@ -519,19 +481,10 @@ class InstanceIamPolicy(pulumi.CustomResource):
|
|
519
481
|
@property
|
520
482
|
@pulumi.getter(name="policyData")
|
521
483
|
def policy_data(self) -> pulumi.Output[str]:
|
522
|
-
"""
|
523
|
-
The policy data generated by a `organizations_get_iam_policy` data source.
|
524
|
-
|
525
|
-
- - -
|
526
|
-
"""
|
527
484
|
return pulumi.get(self, "policy_data")
|
528
485
|
|
529
486
|
@property
|
530
487
|
@pulumi.getter
|
531
488
|
def project(self) -> pulumi.Output[str]:
|
532
|
-
"""
|
533
|
-
The project in which the instance belongs. If it
|
534
|
-
is not provided, a default will be supplied.
|
535
|
-
"""
|
536
489
|
return pulumi.get(self, "project")
|
537
490
|
|
pulumi_gcp/bigtable/outputs.py
CHANGED
@@ -433,6 +433,13 @@ class InstanceIamBindingCondition(dict):
|
|
433
433
|
expression: str,
|
434
434
|
title: str,
|
435
435
|
description: Optional[str] = None):
|
436
|
+
"""
|
437
|
+
:param str expression: Textual representation of an expression in Common Expression Language syntax.
|
438
|
+
:param str title: A title for the expression, i.e. a short string describing its purpose.
|
439
|
+
:param str description: An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
440
|
+
|
441
|
+
For `bigtable.InstanceIamPolicy` only:
|
442
|
+
"""
|
436
443
|
pulumi.set(__self__, "expression", expression)
|
437
444
|
pulumi.set(__self__, "title", title)
|
438
445
|
if description is not None:
|
@@ -441,16 +448,27 @@ class InstanceIamBindingCondition(dict):
|
|
441
448
|
@property
|
442
449
|
@pulumi.getter
|
443
450
|
def expression(self) -> str:
|
451
|
+
"""
|
452
|
+
Textual representation of an expression in Common Expression Language syntax.
|
453
|
+
"""
|
444
454
|
return pulumi.get(self, "expression")
|
445
455
|
|
446
456
|
@property
|
447
457
|
@pulumi.getter
|
448
458
|
def title(self) -> str:
|
459
|
+
"""
|
460
|
+
A title for the expression, i.e. a short string describing its purpose.
|
461
|
+
"""
|
449
462
|
return pulumi.get(self, "title")
|
450
463
|
|
451
464
|
@property
|
452
465
|
@pulumi.getter
|
453
466
|
def description(self) -> Optional[str]:
|
467
|
+
"""
|
468
|
+
An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
469
|
+
|
470
|
+
For `bigtable.InstanceIamPolicy` only:
|
471
|
+
"""
|
454
472
|
return pulumi.get(self, "description")
|
455
473
|
|
456
474
|
|
@@ -460,6 +478,13 @@ class InstanceIamMemberCondition(dict):
|
|
460
478
|
expression: str,
|
461
479
|
title: str,
|
462
480
|
description: Optional[str] = None):
|
481
|
+
"""
|
482
|
+
:param str expression: Textual representation of an expression in Common Expression Language syntax.
|
483
|
+
:param str title: A title for the expression, i.e. a short string describing its purpose.
|
484
|
+
:param str description: An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
485
|
+
|
486
|
+
For `bigtable.InstanceIamPolicy` only:
|
487
|
+
"""
|
463
488
|
pulumi.set(__self__, "expression", expression)
|
464
489
|
pulumi.set(__self__, "title", title)
|
465
490
|
if description is not None:
|
@@ -468,16 +493,27 @@ class InstanceIamMemberCondition(dict):
|
|
468
493
|
@property
|
469
494
|
@pulumi.getter
|
470
495
|
def expression(self) -> str:
|
496
|
+
"""
|
497
|
+
Textual representation of an expression in Common Expression Language syntax.
|
498
|
+
"""
|
471
499
|
return pulumi.get(self, "expression")
|
472
500
|
|
473
501
|
@property
|
474
502
|
@pulumi.getter
|
475
503
|
def title(self) -> str:
|
504
|
+
"""
|
505
|
+
A title for the expression, i.e. a short string describing its purpose.
|
506
|
+
"""
|
476
507
|
return pulumi.get(self, "title")
|
477
508
|
|
478
509
|
@property
|
479
510
|
@pulumi.getter
|
480
511
|
def description(self) -> Optional[str]:
|
512
|
+
"""
|
513
|
+
An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
|
514
|
+
|
515
|
+
For `bigtable.InstanceIamPolicy` only:
|
516
|
+
"""
|
481
517
|
return pulumi.get(self, "description")
|
482
518
|
|
483
519
|
|