pulumi-nomad 2.6.0a1752905825__py3-none-any.whl → 2.6.0a1753510487__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_nomad/__init__.py +1 -1
- pulumi_nomad/_inputs.py +608 -609
- pulumi_nomad/acl_auth_method.py +106 -107
- pulumi_nomad/acl_binding_rule.py +86 -87
- pulumi_nomad/acl_policy.py +55 -56
- pulumi_nomad/acl_role.py +38 -39
- pulumi_nomad/acl_token.py +125 -126
- pulumi_nomad/config/__init__.py +1 -1
- pulumi_nomad/config/__init__.pyi +1 -2
- pulumi_nomad/config/outputs.py +9 -10
- pulumi_nomad/config/vars.py +14 -15
- pulumi_nomad/csi_volume.py +277 -278
- pulumi_nomad/csi_volume_registration.py +276 -277
- pulumi_nomad/dynamic_host_volume.py +191 -192
- pulumi_nomad/dynamic_host_volume_registration.py +156 -157
- pulumi_nomad/external_volume.py +255 -256
- pulumi_nomad/get_acl_policies.py +10 -11
- pulumi_nomad/get_acl_policy.py +13 -14
- pulumi_nomad/get_acl_role.py +12 -13
- pulumi_nomad/get_acl_roles.py +10 -11
- pulumi_nomad/get_acl_token.py +26 -27
- pulumi_nomad/get_acl_tokens.py +10 -11
- pulumi_nomad/get_allocations.py +22 -23
- pulumi_nomad/get_datacenters.py +17 -18
- pulumi_nomad/get_deployments.py +5 -6
- pulumi_nomad/get_dynamic_host_volume.py +41 -42
- pulumi_nomad/get_job.py +50 -51
- pulumi_nomad/get_job_parser.py +17 -18
- pulumi_nomad/get_jwks.py +6 -7
- pulumi_nomad/get_namespace.py +17 -18
- pulumi_nomad/get_namespaces.py +5 -6
- pulumi_nomad/get_node_pool.py +14 -15
- pulumi_nomad/get_node_pools.py +16 -17
- pulumi_nomad/get_plugin.py +36 -37
- pulumi_nomad/get_plugins.py +9 -10
- pulumi_nomad/get_regions.py +5 -6
- pulumi_nomad/get_scaling_policies.py +16 -17
- pulumi_nomad/get_scaling_policy.py +19 -20
- pulumi_nomad/get_scheduler_policy.py +9 -10
- pulumi_nomad/get_variable.py +17 -18
- pulumi_nomad/get_volumes.py +29 -30
- pulumi_nomad/job.py +245 -246
- pulumi_nomad/namespace.py +75 -76
- pulumi_nomad/node_pool.py +55 -56
- pulumi_nomad/outputs.py +743 -744
- pulumi_nomad/provider.py +119 -120
- pulumi_nomad/pulumi-plugin.json +1 -1
- pulumi_nomad/quote_specification.py +38 -39
- pulumi_nomad/scheduler_config.py +52 -53
- pulumi_nomad/sentinel_policy.py +86 -87
- pulumi_nomad/variable.py +52 -53
- pulumi_nomad/volume.py +272 -273
- {pulumi_nomad-2.6.0a1752905825.dist-info → pulumi_nomad-2.6.0a1753510487.dist-info}/METADATA +1 -1
- pulumi_nomad-2.6.0a1753510487.dist-info/RECORD +58 -0
- pulumi_nomad-2.6.0a1752905825.dist-info/RECORD +0 -58
- {pulumi_nomad-2.6.0a1752905825.dist-info → pulumi_nomad-2.6.0a1753510487.dist-info}/WHEEL +0 -0
- {pulumi_nomad-2.6.0a1752905825.dist-info → pulumi_nomad-2.6.0a1753510487.dist-info}/top_level.txt +0 -0
pulumi_nomad/acl_binding_rule.py
CHANGED
@@ -2,8 +2,7 @@
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
-
import builtins
|
6
|
-
import copy
|
5
|
+
import builtins as _builtins
|
7
6
|
import warnings
|
8
7
|
import sys
|
9
8
|
import pulumi
|
@@ -20,22 +19,22 @@ __all__ = ['AclBindingRuleArgs', 'AclBindingRule']
|
|
20
19
|
@pulumi.input_type
|
21
20
|
class AclBindingRuleArgs:
|
22
21
|
def __init__(__self__, *,
|
23
|
-
auth_method: pulumi.Input[
|
24
|
-
bind_type: pulumi.Input[
|
25
|
-
bind_name: Optional[pulumi.Input[
|
26
|
-
description: Optional[pulumi.Input[
|
27
|
-
selector: Optional[pulumi.Input[
|
22
|
+
auth_method: pulumi.Input[_builtins.str],
|
23
|
+
bind_type: pulumi.Input[_builtins.str],
|
24
|
+
bind_name: Optional[pulumi.Input[_builtins.str]] = None,
|
25
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
26
|
+
selector: Optional[pulumi.Input[_builtins.str]] = None):
|
28
27
|
"""
|
29
28
|
The set of arguments for constructing a AclBindingRule resource.
|
30
|
-
:param pulumi.Input[
|
29
|
+
:param pulumi.Input[_builtins.str] auth_method: `(string: <required>)` - Name of the auth method for which this
|
31
30
|
rule applies to.
|
32
|
-
:param pulumi.Input[
|
31
|
+
:param pulumi.Input[_builtins.str] bind_type: `(string: <required>)` - Adjusts how this binding rule is applied
|
33
32
|
at login time. Valid values are `role`, `policy`, and `management`.
|
34
|
-
:param pulumi.Input[
|
33
|
+
:param pulumi.Input[_builtins.str] bind_name: `(string: <optional>)` - Target of the binding. If `bind_type` is
|
35
34
|
`role` or `policy` then `bind_name` is required. If `bind_type` is
|
36
35
|
`management` than `bind_name` must not be defined.
|
37
|
-
:param pulumi.Input[
|
38
|
-
:param pulumi.Input[
|
36
|
+
:param pulumi.Input[_builtins.str] description: `(string: "")` - Description for this ACL binding rule.
|
37
|
+
:param pulumi.Input[_builtins.str] selector: `(string: "")` - A boolean expression that matches against verified
|
39
38
|
identity attributes returned from the auth method during login.
|
40
39
|
"""
|
41
40
|
pulumi.set(__self__, "auth_method", auth_method)
|
@@ -47,9 +46,9 @@ class AclBindingRuleArgs:
|
|
47
46
|
if selector is not None:
|
48
47
|
pulumi.set(__self__, "selector", selector)
|
49
48
|
|
50
|
-
@property
|
49
|
+
@_builtins.property
|
51
50
|
@pulumi.getter(name="authMethod")
|
52
|
-
def auth_method(self) -> pulumi.Input[
|
51
|
+
def auth_method(self) -> pulumi.Input[_builtins.str]:
|
53
52
|
"""
|
54
53
|
`(string: <required>)` - Name of the auth method for which this
|
55
54
|
rule applies to.
|
@@ -57,12 +56,12 @@ class AclBindingRuleArgs:
|
|
57
56
|
return pulumi.get(self, "auth_method")
|
58
57
|
|
59
58
|
@auth_method.setter
|
60
|
-
def auth_method(self, value: pulumi.Input[
|
59
|
+
def auth_method(self, value: pulumi.Input[_builtins.str]):
|
61
60
|
pulumi.set(self, "auth_method", value)
|
62
61
|
|
63
|
-
@property
|
62
|
+
@_builtins.property
|
64
63
|
@pulumi.getter(name="bindType")
|
65
|
-
def bind_type(self) -> pulumi.Input[
|
64
|
+
def bind_type(self) -> pulumi.Input[_builtins.str]:
|
66
65
|
"""
|
67
66
|
`(string: <required>)` - Adjusts how this binding rule is applied
|
68
67
|
at login time. Valid values are `role`, `policy`, and `management`.
|
@@ -70,12 +69,12 @@ class AclBindingRuleArgs:
|
|
70
69
|
return pulumi.get(self, "bind_type")
|
71
70
|
|
72
71
|
@bind_type.setter
|
73
|
-
def bind_type(self, value: pulumi.Input[
|
72
|
+
def bind_type(self, value: pulumi.Input[_builtins.str]):
|
74
73
|
pulumi.set(self, "bind_type", value)
|
75
74
|
|
76
|
-
@property
|
75
|
+
@_builtins.property
|
77
76
|
@pulumi.getter(name="bindName")
|
78
|
-
def bind_name(self) -> Optional[pulumi.Input[
|
77
|
+
def bind_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
79
78
|
"""
|
80
79
|
`(string: <optional>)` - Target of the binding. If `bind_type` is
|
81
80
|
`role` or `policy` then `bind_name` is required. If `bind_type` is
|
@@ -84,24 +83,24 @@ class AclBindingRuleArgs:
|
|
84
83
|
return pulumi.get(self, "bind_name")
|
85
84
|
|
86
85
|
@bind_name.setter
|
87
|
-
def bind_name(self, value: Optional[pulumi.Input[
|
86
|
+
def bind_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
88
87
|
pulumi.set(self, "bind_name", value)
|
89
88
|
|
90
|
-
@property
|
89
|
+
@_builtins.property
|
91
90
|
@pulumi.getter
|
92
|
-
def description(self) -> Optional[pulumi.Input[
|
91
|
+
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
93
92
|
"""
|
94
93
|
`(string: "")` - Description for this ACL binding rule.
|
95
94
|
"""
|
96
95
|
return pulumi.get(self, "description")
|
97
96
|
|
98
97
|
@description.setter
|
99
|
-
def description(self, value: Optional[pulumi.Input[
|
98
|
+
def description(self, value: Optional[pulumi.Input[_builtins.str]]):
|
100
99
|
pulumi.set(self, "description", value)
|
101
100
|
|
102
|
-
@property
|
101
|
+
@_builtins.property
|
103
102
|
@pulumi.getter
|
104
|
-
def selector(self) -> Optional[pulumi.Input[
|
103
|
+
def selector(self) -> Optional[pulumi.Input[_builtins.str]]:
|
105
104
|
"""
|
106
105
|
`(string: "")` - A boolean expression that matches against verified
|
107
106
|
identity attributes returned from the auth method during login.
|
@@ -109,29 +108,29 @@ class AclBindingRuleArgs:
|
|
109
108
|
return pulumi.get(self, "selector")
|
110
109
|
|
111
110
|
@selector.setter
|
112
|
-
def selector(self, value: Optional[pulumi.Input[
|
111
|
+
def selector(self, value: Optional[pulumi.Input[_builtins.str]]):
|
113
112
|
pulumi.set(self, "selector", value)
|
114
113
|
|
115
114
|
|
116
115
|
@pulumi.input_type
|
117
116
|
class _AclBindingRuleState:
|
118
117
|
def __init__(__self__, *,
|
119
|
-
auth_method: Optional[pulumi.Input[
|
120
|
-
bind_name: Optional[pulumi.Input[
|
121
|
-
bind_type: Optional[pulumi.Input[
|
122
|
-
description: Optional[pulumi.Input[
|
123
|
-
selector: Optional[pulumi.Input[
|
118
|
+
auth_method: Optional[pulumi.Input[_builtins.str]] = None,
|
119
|
+
bind_name: Optional[pulumi.Input[_builtins.str]] = None,
|
120
|
+
bind_type: Optional[pulumi.Input[_builtins.str]] = None,
|
121
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
122
|
+
selector: Optional[pulumi.Input[_builtins.str]] = None):
|
124
123
|
"""
|
125
124
|
Input properties used for looking up and filtering AclBindingRule resources.
|
126
|
-
:param pulumi.Input[
|
125
|
+
:param pulumi.Input[_builtins.str] auth_method: `(string: <required>)` - Name of the auth method for which this
|
127
126
|
rule applies to.
|
128
|
-
:param pulumi.Input[
|
127
|
+
:param pulumi.Input[_builtins.str] bind_name: `(string: <optional>)` - Target of the binding. If `bind_type` is
|
129
128
|
`role` or `policy` then `bind_name` is required. If `bind_type` is
|
130
129
|
`management` than `bind_name` must not be defined.
|
131
|
-
:param pulumi.Input[
|
130
|
+
:param pulumi.Input[_builtins.str] bind_type: `(string: <required>)` - Adjusts how this binding rule is applied
|
132
131
|
at login time. Valid values are `role`, `policy`, and `management`.
|
133
|
-
:param pulumi.Input[
|
134
|
-
:param pulumi.Input[
|
132
|
+
:param pulumi.Input[_builtins.str] description: `(string: "")` - Description for this ACL binding rule.
|
133
|
+
:param pulumi.Input[_builtins.str] selector: `(string: "")` - A boolean expression that matches against verified
|
135
134
|
identity attributes returned from the auth method during login.
|
136
135
|
"""
|
137
136
|
if auth_method is not None:
|
@@ -145,9 +144,9 @@ class _AclBindingRuleState:
|
|
145
144
|
if selector is not None:
|
146
145
|
pulumi.set(__self__, "selector", selector)
|
147
146
|
|
148
|
-
@property
|
147
|
+
@_builtins.property
|
149
148
|
@pulumi.getter(name="authMethod")
|
150
|
-
def auth_method(self) -> Optional[pulumi.Input[
|
149
|
+
def auth_method(self) -> Optional[pulumi.Input[_builtins.str]]:
|
151
150
|
"""
|
152
151
|
`(string: <required>)` - Name of the auth method for which this
|
153
152
|
rule applies to.
|
@@ -155,12 +154,12 @@ class _AclBindingRuleState:
|
|
155
154
|
return pulumi.get(self, "auth_method")
|
156
155
|
|
157
156
|
@auth_method.setter
|
158
|
-
def auth_method(self, value: Optional[pulumi.Input[
|
157
|
+
def auth_method(self, value: Optional[pulumi.Input[_builtins.str]]):
|
159
158
|
pulumi.set(self, "auth_method", value)
|
160
159
|
|
161
|
-
@property
|
160
|
+
@_builtins.property
|
162
161
|
@pulumi.getter(name="bindName")
|
163
|
-
def bind_name(self) -> Optional[pulumi.Input[
|
162
|
+
def bind_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
164
163
|
"""
|
165
164
|
`(string: <optional>)` - Target of the binding. If `bind_type` is
|
166
165
|
`role` or `policy` then `bind_name` is required. If `bind_type` is
|
@@ -169,12 +168,12 @@ class _AclBindingRuleState:
|
|
169
168
|
return pulumi.get(self, "bind_name")
|
170
169
|
|
171
170
|
@bind_name.setter
|
172
|
-
def bind_name(self, value: Optional[pulumi.Input[
|
171
|
+
def bind_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
173
172
|
pulumi.set(self, "bind_name", value)
|
174
173
|
|
175
|
-
@property
|
174
|
+
@_builtins.property
|
176
175
|
@pulumi.getter(name="bindType")
|
177
|
-
def bind_type(self) -> Optional[pulumi.Input[
|
176
|
+
def bind_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
178
177
|
"""
|
179
178
|
`(string: <required>)` - Adjusts how this binding rule is applied
|
180
179
|
at login time. Valid values are `role`, `policy`, and `management`.
|
@@ -182,24 +181,24 @@ class _AclBindingRuleState:
|
|
182
181
|
return pulumi.get(self, "bind_type")
|
183
182
|
|
184
183
|
@bind_type.setter
|
185
|
-
def bind_type(self, value: Optional[pulumi.Input[
|
184
|
+
def bind_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
186
185
|
pulumi.set(self, "bind_type", value)
|
187
186
|
|
188
|
-
@property
|
187
|
+
@_builtins.property
|
189
188
|
@pulumi.getter
|
190
|
-
def description(self) -> Optional[pulumi.Input[
|
189
|
+
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
191
190
|
"""
|
192
191
|
`(string: "")` - Description for this ACL binding rule.
|
193
192
|
"""
|
194
193
|
return pulumi.get(self, "description")
|
195
194
|
|
196
195
|
@description.setter
|
197
|
-
def description(self, value: Optional[pulumi.Input[
|
196
|
+
def description(self, value: Optional[pulumi.Input[_builtins.str]]):
|
198
197
|
pulumi.set(self, "description", value)
|
199
198
|
|
200
|
-
@property
|
199
|
+
@_builtins.property
|
201
200
|
@pulumi.getter
|
202
|
-
def selector(self) -> Optional[pulumi.Input[
|
201
|
+
def selector(self) -> Optional[pulumi.Input[_builtins.str]]:
|
203
202
|
"""
|
204
203
|
`(string: "")` - A boolean expression that matches against verified
|
205
204
|
identity attributes returned from the auth method during login.
|
@@ -207,7 +206,7 @@ class _AclBindingRuleState:
|
|
207
206
|
return pulumi.get(self, "selector")
|
208
207
|
|
209
208
|
@selector.setter
|
210
|
-
def selector(self, value: Optional[pulumi.Input[
|
209
|
+
def selector(self, value: Optional[pulumi.Input[_builtins.str]]):
|
211
210
|
pulumi.set(self, "selector", value)
|
212
211
|
|
213
212
|
|
@@ -217,25 +216,25 @@ class AclBindingRule(pulumi.CustomResource):
|
|
217
216
|
def __init__(__self__,
|
218
217
|
resource_name: str,
|
219
218
|
opts: Optional[pulumi.ResourceOptions] = None,
|
220
|
-
auth_method: Optional[pulumi.Input[
|
221
|
-
bind_name: Optional[pulumi.Input[
|
222
|
-
bind_type: Optional[pulumi.Input[
|
223
|
-
description: Optional[pulumi.Input[
|
224
|
-
selector: Optional[pulumi.Input[
|
219
|
+
auth_method: Optional[pulumi.Input[_builtins.str]] = None,
|
220
|
+
bind_name: Optional[pulumi.Input[_builtins.str]] = None,
|
221
|
+
bind_type: Optional[pulumi.Input[_builtins.str]] = None,
|
222
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
223
|
+
selector: Optional[pulumi.Input[_builtins.str]] = None,
|
225
224
|
__props__=None):
|
226
225
|
"""
|
227
226
|
Create a AclBindingRule resource with the given unique name, props, and options.
|
228
227
|
:param str resource_name: The name of the resource.
|
229
228
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
230
|
-
:param pulumi.Input[
|
229
|
+
:param pulumi.Input[_builtins.str] auth_method: `(string: <required>)` - Name of the auth method for which this
|
231
230
|
rule applies to.
|
232
|
-
:param pulumi.Input[
|
231
|
+
:param pulumi.Input[_builtins.str] bind_name: `(string: <optional>)` - Target of the binding. If `bind_type` is
|
233
232
|
`role` or `policy` then `bind_name` is required. If `bind_type` is
|
234
233
|
`management` than `bind_name` must not be defined.
|
235
|
-
:param pulumi.Input[
|
234
|
+
:param pulumi.Input[_builtins.str] bind_type: `(string: <required>)` - Adjusts how this binding rule is applied
|
236
235
|
at login time. Valid values are `role`, `policy`, and `management`.
|
237
|
-
:param pulumi.Input[
|
238
|
-
:param pulumi.Input[
|
236
|
+
:param pulumi.Input[_builtins.str] description: `(string: "")` - Description for this ACL binding rule.
|
237
|
+
:param pulumi.Input[_builtins.str] selector: `(string: "")` - A boolean expression that matches against verified
|
239
238
|
identity attributes returned from the auth method during login.
|
240
239
|
"""
|
241
240
|
...
|
@@ -261,11 +260,11 @@ class AclBindingRule(pulumi.CustomResource):
|
|
261
260
|
def _internal_init(__self__,
|
262
261
|
resource_name: str,
|
263
262
|
opts: Optional[pulumi.ResourceOptions] = None,
|
264
|
-
auth_method: Optional[pulumi.Input[
|
265
|
-
bind_name: Optional[pulumi.Input[
|
266
|
-
bind_type: Optional[pulumi.Input[
|
267
|
-
description: Optional[pulumi.Input[
|
268
|
-
selector: Optional[pulumi.Input[
|
263
|
+
auth_method: Optional[pulumi.Input[_builtins.str]] = None,
|
264
|
+
bind_name: Optional[pulumi.Input[_builtins.str]] = None,
|
265
|
+
bind_type: Optional[pulumi.Input[_builtins.str]] = None,
|
266
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
267
|
+
selector: Optional[pulumi.Input[_builtins.str]] = None,
|
269
268
|
__props__=None):
|
270
269
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
271
270
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -294,11 +293,11 @@ class AclBindingRule(pulumi.CustomResource):
|
|
294
293
|
def get(resource_name: str,
|
295
294
|
id: pulumi.Input[str],
|
296
295
|
opts: Optional[pulumi.ResourceOptions] = None,
|
297
|
-
auth_method: Optional[pulumi.Input[
|
298
|
-
bind_name: Optional[pulumi.Input[
|
299
|
-
bind_type: Optional[pulumi.Input[
|
300
|
-
description: Optional[pulumi.Input[
|
301
|
-
selector: Optional[pulumi.Input[
|
296
|
+
auth_method: Optional[pulumi.Input[_builtins.str]] = None,
|
297
|
+
bind_name: Optional[pulumi.Input[_builtins.str]] = None,
|
298
|
+
bind_type: Optional[pulumi.Input[_builtins.str]] = None,
|
299
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
300
|
+
selector: Optional[pulumi.Input[_builtins.str]] = None) -> 'AclBindingRule':
|
302
301
|
"""
|
303
302
|
Get an existing AclBindingRule resource's state with the given name, id, and optional extra
|
304
303
|
properties used to qualify the lookup.
|
@@ -306,15 +305,15 @@ class AclBindingRule(pulumi.CustomResource):
|
|
306
305
|
:param str resource_name: The unique name of the resulting resource.
|
307
306
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
308
307
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
309
|
-
:param pulumi.Input[
|
308
|
+
:param pulumi.Input[_builtins.str] auth_method: `(string: <required>)` - Name of the auth method for which this
|
310
309
|
rule applies to.
|
311
|
-
:param pulumi.Input[
|
310
|
+
:param pulumi.Input[_builtins.str] bind_name: `(string: <optional>)` - Target of the binding. If `bind_type` is
|
312
311
|
`role` or `policy` then `bind_name` is required. If `bind_type` is
|
313
312
|
`management` than `bind_name` must not be defined.
|
314
|
-
:param pulumi.Input[
|
313
|
+
:param pulumi.Input[_builtins.str] bind_type: `(string: <required>)` - Adjusts how this binding rule is applied
|
315
314
|
at login time. Valid values are `role`, `policy`, and `management`.
|
316
|
-
:param pulumi.Input[
|
317
|
-
:param pulumi.Input[
|
315
|
+
:param pulumi.Input[_builtins.str] description: `(string: "")` - Description for this ACL binding rule.
|
316
|
+
:param pulumi.Input[_builtins.str] selector: `(string: "")` - A boolean expression that matches against verified
|
318
317
|
identity attributes returned from the auth method during login.
|
319
318
|
"""
|
320
319
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -328,18 +327,18 @@ class AclBindingRule(pulumi.CustomResource):
|
|
328
327
|
__props__.__dict__["selector"] = selector
|
329
328
|
return AclBindingRule(resource_name, opts=opts, __props__=__props__)
|
330
329
|
|
331
|
-
@property
|
330
|
+
@_builtins.property
|
332
331
|
@pulumi.getter(name="authMethod")
|
333
|
-
def auth_method(self) -> pulumi.Output[
|
332
|
+
def auth_method(self) -> pulumi.Output[_builtins.str]:
|
334
333
|
"""
|
335
334
|
`(string: <required>)` - Name of the auth method for which this
|
336
335
|
rule applies to.
|
337
336
|
"""
|
338
337
|
return pulumi.get(self, "auth_method")
|
339
338
|
|
340
|
-
@property
|
339
|
+
@_builtins.property
|
341
340
|
@pulumi.getter(name="bindName")
|
342
|
-
def bind_name(self) -> pulumi.Output[Optional[
|
341
|
+
def bind_name(self) -> pulumi.Output[Optional[_builtins.str]]:
|
343
342
|
"""
|
344
343
|
`(string: <optional>)` - Target of the binding. If `bind_type` is
|
345
344
|
`role` or `policy` then `bind_name` is required. If `bind_type` is
|
@@ -347,26 +346,26 @@ class AclBindingRule(pulumi.CustomResource):
|
|
347
346
|
"""
|
348
347
|
return pulumi.get(self, "bind_name")
|
349
348
|
|
350
|
-
@property
|
349
|
+
@_builtins.property
|
351
350
|
@pulumi.getter(name="bindType")
|
352
|
-
def bind_type(self) -> pulumi.Output[
|
351
|
+
def bind_type(self) -> pulumi.Output[_builtins.str]:
|
353
352
|
"""
|
354
353
|
`(string: <required>)` - Adjusts how this binding rule is applied
|
355
354
|
at login time. Valid values are `role`, `policy`, and `management`.
|
356
355
|
"""
|
357
356
|
return pulumi.get(self, "bind_type")
|
358
357
|
|
359
|
-
@property
|
358
|
+
@_builtins.property
|
360
359
|
@pulumi.getter
|
361
|
-
def description(self) -> pulumi.Output[Optional[
|
360
|
+
def description(self) -> pulumi.Output[Optional[_builtins.str]]:
|
362
361
|
"""
|
363
362
|
`(string: "")` - Description for this ACL binding rule.
|
364
363
|
"""
|
365
364
|
return pulumi.get(self, "description")
|
366
365
|
|
367
|
-
@property
|
366
|
+
@_builtins.property
|
368
367
|
@pulumi.getter
|
369
|
-
def selector(self) -> pulumi.Output[Optional[
|
368
|
+
def selector(self) -> pulumi.Output[Optional[_builtins.str]]:
|
370
369
|
"""
|
371
370
|
`(string: "")` - A boolean expression that matches against verified
|
372
371
|
identity attributes returned from the auth method during login.
|