pulumi-nomad 2.5.0a1744783739__py3-none-any.whl → 2.5.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_nomad/__init__.py +21 -2
- pulumi_nomad/_inputs.py +1151 -475
- pulumi_nomad/_utilities.py +1 -1
- pulumi_nomad/acl_auth_method.py +108 -108
- pulumi_nomad/acl_binding_rule.py +88 -88
- pulumi_nomad/acl_policy.py +71 -64
- pulumi_nomad/acl_role.py +40 -40
- pulumi_nomad/acl_token.py +127 -127
- pulumi_nomad/config/__init__.py +2 -2
- pulumi_nomad/config/__init__.pyi +2 -13
- pulumi_nomad/config/outputs.py +10 -11
- pulumi_nomad/config/vars.py +15 -30
- pulumi_nomad/csi_volume.py +298 -270
- pulumi_nomad/csi_volume_registration.py +278 -278
- pulumi_nomad/dynamic_host_volume.py +1005 -0
- pulumi_nomad/dynamic_host_volume_registration.py +740 -0
- pulumi_nomad/external_volume.py +257 -257
- pulumi_nomad/get_acl_policies.py +11 -12
- pulumi_nomad/get_acl_policy.py +14 -15
- pulumi_nomad/get_acl_role.py +13 -14
- pulumi_nomad/get_acl_roles.py +11 -12
- pulumi_nomad/get_acl_token.py +27 -28
- pulumi_nomad/get_acl_tokens.py +11 -12
- pulumi_nomad/get_allocations.py +23 -24
- pulumi_nomad/get_datacenters.py +18 -19
- pulumi_nomad/get_deployments.py +6 -7
- pulumi_nomad/get_dynamic_host_volume.py +352 -0
- pulumi_nomad/get_job.py +51 -52
- pulumi_nomad/get_job_parser.py +18 -19
- pulumi_nomad/get_jwks.py +7 -8
- pulumi_nomad/get_namespace.py +18 -19
- pulumi_nomad/get_namespaces.py +22 -17
- pulumi_nomad/get_node_pool.py +15 -16
- pulumi_nomad/get_node_pools.py +17 -18
- pulumi_nomad/get_plugin.py +37 -38
- pulumi_nomad/get_plugins.py +10 -11
- pulumi_nomad/get_regions.py +16 -11
- pulumi_nomad/get_scaling_policies.py +17 -18
- pulumi_nomad/get_scaling_policy.py +20 -21
- pulumi_nomad/get_scheduler_policy.py +10 -11
- pulumi_nomad/get_variable.py +18 -19
- pulumi_nomad/get_volumes.py +30 -31
- pulumi_nomad/job.py +247 -357
- pulumi_nomad/namespace.py +77 -77
- pulumi_nomad/node_pool.py +57 -57
- pulumi_nomad/outputs.py +1212 -635
- pulumi_nomad/provider.py +141 -180
- pulumi_nomad/pulumi-plugin.json +1 -1
- pulumi_nomad/quote_specification.py +40 -40
- pulumi_nomad/scheduler_config.py +54 -54
- pulumi_nomad/sentinel_policy.py +88 -88
- pulumi_nomad/variable.py +54 -54
- pulumi_nomad/volume.py +274 -274
- {pulumi_nomad-2.5.0a1744783739.dist-info → pulumi_nomad-2.5.1.dist-info}/METADATA +3 -3
- pulumi_nomad-2.5.1.dist-info/RECORD +58 -0
- {pulumi_nomad-2.5.0a1744783739.dist-info → pulumi_nomad-2.5.1.dist-info}/WHEEL +1 -1
- pulumi_nomad-2.5.0a1744783739.dist-info/RECORD +0 -55
- {pulumi_nomad-2.5.0a1744783739.dist-info → pulumi_nomad-2.5.1.dist-info}/top_level.txt +0 -0
pulumi_nomad/acl_binding_rule.py
CHANGED
@@ -1,9 +1,8 @@
|
|
1
1
|
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by
|
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,34 +206,35 @@ 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
|
|
213
|
+
@pulumi.type_token("nomad:index/aclBindingRule:AclBindingRule")
|
214
214
|
class AclBindingRule(pulumi.CustomResource):
|
215
215
|
@overload
|
216
216
|
def __init__(__self__,
|
217
217
|
resource_name: str,
|
218
218
|
opts: Optional[pulumi.ResourceOptions] = None,
|
219
|
-
auth_method: Optional[pulumi.Input[
|
220
|
-
bind_name: Optional[pulumi.Input[
|
221
|
-
bind_type: Optional[pulumi.Input[
|
222
|
-
description: Optional[pulumi.Input[
|
223
|
-
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,
|
224
224
|
__props__=None):
|
225
225
|
"""
|
226
226
|
Create a AclBindingRule resource with the given unique name, props, and options.
|
227
227
|
:param str resource_name: The name of the resource.
|
228
228
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
229
|
-
:param pulumi.Input[
|
229
|
+
:param pulumi.Input[_builtins.str] auth_method: `(string: <required>)` - Name of the auth method for which this
|
230
230
|
rule applies to.
|
231
|
-
:param pulumi.Input[
|
231
|
+
:param pulumi.Input[_builtins.str] bind_name: `(string: <optional>)` - Target of the binding. If `bind_type` is
|
232
232
|
`role` or `policy` then `bind_name` is required. If `bind_type` is
|
233
233
|
`management` than `bind_name` must not be defined.
|
234
|
-
:param pulumi.Input[
|
234
|
+
:param pulumi.Input[_builtins.str] bind_type: `(string: <required>)` - Adjusts how this binding rule is applied
|
235
235
|
at login time. Valid values are `role`, `policy`, and `management`.
|
236
|
-
:param pulumi.Input[
|
237
|
-
: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
|
238
238
|
identity attributes returned from the auth method during login.
|
239
239
|
"""
|
240
240
|
...
|
@@ -260,11 +260,11 @@ class AclBindingRule(pulumi.CustomResource):
|
|
260
260
|
def _internal_init(__self__,
|
261
261
|
resource_name: str,
|
262
262
|
opts: Optional[pulumi.ResourceOptions] = None,
|
263
|
-
auth_method: Optional[pulumi.Input[
|
264
|
-
bind_name: Optional[pulumi.Input[
|
265
|
-
bind_type: Optional[pulumi.Input[
|
266
|
-
description: Optional[pulumi.Input[
|
267
|
-
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,
|
268
268
|
__props__=None):
|
269
269
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
270
270
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -293,11 +293,11 @@ class AclBindingRule(pulumi.CustomResource):
|
|
293
293
|
def get(resource_name: str,
|
294
294
|
id: pulumi.Input[str],
|
295
295
|
opts: Optional[pulumi.ResourceOptions] = None,
|
296
|
-
auth_method: Optional[pulumi.Input[
|
297
|
-
bind_name: Optional[pulumi.Input[
|
298
|
-
bind_type: Optional[pulumi.Input[
|
299
|
-
description: Optional[pulumi.Input[
|
300
|
-
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':
|
301
301
|
"""
|
302
302
|
Get an existing AclBindingRule resource's state with the given name, id, and optional extra
|
303
303
|
properties used to qualify the lookup.
|
@@ -305,15 +305,15 @@ class AclBindingRule(pulumi.CustomResource):
|
|
305
305
|
:param str resource_name: The unique name of the resulting resource.
|
306
306
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
307
307
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
308
|
-
:param pulumi.Input[
|
308
|
+
:param pulumi.Input[_builtins.str] auth_method: `(string: <required>)` - Name of the auth method for which this
|
309
309
|
rule applies to.
|
310
|
-
:param pulumi.Input[
|
310
|
+
:param pulumi.Input[_builtins.str] bind_name: `(string: <optional>)` - Target of the binding. If `bind_type` is
|
311
311
|
`role` or `policy` then `bind_name` is required. If `bind_type` is
|
312
312
|
`management` than `bind_name` must not be defined.
|
313
|
-
:param pulumi.Input[
|
313
|
+
:param pulumi.Input[_builtins.str] bind_type: `(string: <required>)` - Adjusts how this binding rule is applied
|
314
314
|
at login time. Valid values are `role`, `policy`, and `management`.
|
315
|
-
:param pulumi.Input[
|
316
|
-
: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
|
317
317
|
identity attributes returned from the auth method during login.
|
318
318
|
"""
|
319
319
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -327,18 +327,18 @@ class AclBindingRule(pulumi.CustomResource):
|
|
327
327
|
__props__.__dict__["selector"] = selector
|
328
328
|
return AclBindingRule(resource_name, opts=opts, __props__=__props__)
|
329
329
|
|
330
|
-
@property
|
330
|
+
@_builtins.property
|
331
331
|
@pulumi.getter(name="authMethod")
|
332
|
-
def auth_method(self) -> pulumi.Output[
|
332
|
+
def auth_method(self) -> pulumi.Output[_builtins.str]:
|
333
333
|
"""
|
334
334
|
`(string: <required>)` - Name of the auth method for which this
|
335
335
|
rule applies to.
|
336
336
|
"""
|
337
337
|
return pulumi.get(self, "auth_method")
|
338
338
|
|
339
|
-
@property
|
339
|
+
@_builtins.property
|
340
340
|
@pulumi.getter(name="bindName")
|
341
|
-
def bind_name(self) -> pulumi.Output[Optional[
|
341
|
+
def bind_name(self) -> pulumi.Output[Optional[_builtins.str]]:
|
342
342
|
"""
|
343
343
|
`(string: <optional>)` - Target of the binding. If `bind_type` is
|
344
344
|
`role` or `policy` then `bind_name` is required. If `bind_type` is
|
@@ -346,26 +346,26 @@ class AclBindingRule(pulumi.CustomResource):
|
|
346
346
|
"""
|
347
347
|
return pulumi.get(self, "bind_name")
|
348
348
|
|
349
|
-
@property
|
349
|
+
@_builtins.property
|
350
350
|
@pulumi.getter(name="bindType")
|
351
|
-
def bind_type(self) -> pulumi.Output[
|
351
|
+
def bind_type(self) -> pulumi.Output[_builtins.str]:
|
352
352
|
"""
|
353
353
|
`(string: <required>)` - Adjusts how this binding rule is applied
|
354
354
|
at login time. Valid values are `role`, `policy`, and `management`.
|
355
355
|
"""
|
356
356
|
return pulumi.get(self, "bind_type")
|
357
357
|
|
358
|
-
@property
|
358
|
+
@_builtins.property
|
359
359
|
@pulumi.getter
|
360
|
-
def description(self) -> pulumi.Output[Optional[
|
360
|
+
def description(self) -> pulumi.Output[Optional[_builtins.str]]:
|
361
361
|
"""
|
362
362
|
`(string: "")` - Description for this ACL binding rule.
|
363
363
|
"""
|
364
364
|
return pulumi.get(self, "description")
|
365
365
|
|
366
|
-
@property
|
366
|
+
@_builtins.property
|
367
367
|
@pulumi.getter
|
368
|
-
def selector(self) -> pulumi.Output[Optional[
|
368
|
+
def selector(self) -> pulumi.Output[Optional[_builtins.str]]:
|
369
369
|
"""
|
370
370
|
`(string: "")` - A boolean expression that matches against verified
|
371
371
|
identity attributes returned from the auth method during login.
|