pulumi-nomad 2.3.0a1710649436__py3-none-any.whl → 2.5.0a1736834448__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 -0
- pulumi_nomad/_inputs.py +896 -175
- pulumi_nomad/_utilities.py +41 -5
- pulumi_nomad/acl_auth_method.py +44 -41
- pulumi_nomad/acl_binding_rule.py +5 -0
- pulumi_nomad/acl_policy.py +10 -69
- pulumi_nomad/acl_role.py +10 -5
- pulumi_nomad/acl_token.py +28 -31
- pulumi_nomad/config/__init__.pyi +5 -0
- pulumi_nomad/config/outputs.py +5 -0
- pulumi_nomad/config/vars.py +5 -0
- pulumi_nomad/csi_volume.py +21 -88
- pulumi_nomad/csi_volume_registration.py +21 -88
- pulumi_nomad/external_volume.py +65 -132
- pulumi_nomad/get_acl_policies.py +14 -9
- pulumi_nomad/get_acl_policy.py +15 -9
- pulumi_nomad/get_acl_role.py +15 -9
- pulumi_nomad/get_acl_roles.py +14 -9
- pulumi_nomad/get_acl_token.py +22 -9
- pulumi_nomad/get_acl_tokens.py +14 -9
- pulumi_nomad/get_allocations.py +18 -9
- pulumi_nomad/get_datacenters.py +20 -13
- pulumi_nomad/get_deployments.py +18 -10
- pulumi_nomad/get_job.py +34 -9
- pulumi_nomad/get_job_parser.py +16 -29
- pulumi_nomad/get_jwks.py +124 -0
- pulumi_nomad/get_namespace.py +18 -9
- pulumi_nomad/get_namespaces.py +14 -9
- pulumi_nomad/get_node_pool.py +16 -9
- pulumi_nomad/get_node_pools.py +16 -9
- pulumi_nomad/get_plugin.py +25 -9
- pulumi_nomad/get_plugins.py +15 -10
- pulumi_nomad/get_regions.py +46 -5
- pulumi_nomad/get_scaling_policies.py +16 -9
- pulumi_nomad/get_scaling_policy.py +19 -10
- pulumi_nomad/get_scheduler_policy.py +14 -9
- pulumi_nomad/get_variable.py +17 -10
- pulumi_nomad/get_volumes.py +21 -10
- pulumi_nomad/job.py +22 -88
- pulumi_nomad/namespace.py +43 -40
- pulumi_nomad/node_pool.py +12 -9
- pulumi_nomad/outputs.py +293 -165
- pulumi_nomad/provider.py +8 -3
- pulumi_nomad/pulumi-plugin.json +2 -1
- pulumi_nomad/quote_specification.py +28 -25
- pulumi_nomad/scheduler_config.py +11 -10
- pulumi_nomad/sentinel_policy.py +11 -10
- pulumi_nomad/variable.py +33 -32
- pulumi_nomad/volume.py +73 -152
- {pulumi_nomad-2.3.0a1710649436.dist-info → pulumi_nomad-2.5.0a1736834448.dist-info}/METADATA +7 -6
- pulumi_nomad-2.5.0a1736834448.dist-info/RECORD +55 -0
- {pulumi_nomad-2.3.0a1710649436.dist-info → pulumi_nomad-2.5.0a1736834448.dist-info}/WHEEL +1 -1
- pulumi_nomad-2.3.0a1710649436.dist-info/RECORD +0 -54
- {pulumi_nomad-2.3.0a1710649436.dist-info → pulumi_nomad-2.5.0a1736834448.dist-info}/top_level.txt +0 -0
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
from . import outputs
|
12
17
|
|
@@ -86,7 +91,6 @@ def get_scaling_policies(job_id: Optional[str] = None,
|
|
86
91
|
|
87
92
|
## Example Usage
|
88
93
|
|
89
|
-
<!--Start PulumiCodeChooser -->
|
90
94
|
```python
|
91
95
|
import pulumi
|
92
96
|
import pulumi_nomad as nomad
|
@@ -94,7 +98,6 @@ def get_scaling_policies(job_id: Optional[str] = None,
|
|
94
98
|
example = nomad.get_scaling_policies(job_id="webapp",
|
95
99
|
type="horizontal")
|
96
100
|
```
|
97
|
-
<!--End PulumiCodeChooser -->
|
98
101
|
|
99
102
|
|
100
103
|
:param str job_id: `(string)` - An optional string to filter scaling policies based on the target job. If not provided, policies for all jobs are returned.
|
@@ -111,18 +114,14 @@ def get_scaling_policies(job_id: Optional[str] = None,
|
|
111
114
|
job_id=pulumi.get(__ret__, 'job_id'),
|
112
115
|
policies=pulumi.get(__ret__, 'policies'),
|
113
116
|
type=pulumi.get(__ret__, 'type'))
|
114
|
-
|
115
|
-
|
116
|
-
@_utilities.lift_output_func(get_scaling_policies)
|
117
117
|
def get_scaling_policies_output(job_id: Optional[pulumi.Input[Optional[str]]] = None,
|
118
118
|
type: Optional[pulumi.Input[Optional[str]]] = None,
|
119
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetScalingPoliciesResult]:
|
119
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetScalingPoliciesResult]:
|
120
120
|
"""
|
121
121
|
Retrieve a list of Scaling Policies.
|
122
122
|
|
123
123
|
## Example Usage
|
124
124
|
|
125
|
-
<!--Start PulumiCodeChooser -->
|
126
125
|
```python
|
127
126
|
import pulumi
|
128
127
|
import pulumi_nomad as nomad
|
@@ -130,10 +129,18 @@ def get_scaling_policies_output(job_id: Optional[pulumi.Input[Optional[str]]] =
|
|
130
129
|
example = nomad.get_scaling_policies(job_id="webapp",
|
131
130
|
type="horizontal")
|
132
131
|
```
|
133
|
-
<!--End PulumiCodeChooser -->
|
134
132
|
|
135
133
|
|
136
134
|
:param str job_id: `(string)` - An optional string to filter scaling policies based on the target job. If not provided, policies for all jobs are returned.
|
137
135
|
:param str type: `(string)` - An optional string to filter scaling policies based on policy type. If not provided, policies of all types are returned.
|
138
136
|
"""
|
139
|
-
|
137
|
+
__args__ = dict()
|
138
|
+
__args__['jobId'] = job_id
|
139
|
+
__args__['type'] = type
|
140
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
141
|
+
__ret__ = pulumi.runtime.invoke_output('nomad:index/getScalingPolicies:getScalingPolicies', __args__, opts=opts, typ=GetScalingPoliciesResult)
|
142
|
+
return __ret__.apply(lambda __response__: GetScalingPoliciesResult(
|
143
|
+
id=pulumi.get(__response__, 'id'),
|
144
|
+
job_id=pulumi.get(__response__, 'job_id'),
|
145
|
+
policies=pulumi.get(__response__, 'policies'),
|
146
|
+
type=pulumi.get(__response__, 'type')))
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = [
|
@@ -83,7 +88,7 @@ class GetScalingPolicyResult:
|
|
83
88
|
|
84
89
|
@property
|
85
90
|
@pulumi.getter
|
86
|
-
def target(self) -> Mapping[str,
|
91
|
+
def target(self) -> Mapping[str, str]:
|
87
92
|
"""
|
88
93
|
`(map[string]string)` - The scaling policy target.
|
89
94
|
"""
|
@@ -120,14 +125,12 @@ def get_scaling_policy(id: Optional[str] = None,
|
|
120
125
|
|
121
126
|
## Example Usage
|
122
127
|
|
123
|
-
<!--Start PulumiCodeChooser -->
|
124
128
|
```python
|
125
129
|
import pulumi
|
126
130
|
import pulumi_nomad as nomad
|
127
131
|
|
128
132
|
example = nomad.get_scaling_policy(id="ad19848d-1921-179c-affa-244a3543be88")
|
129
133
|
```
|
130
|
-
<!--End PulumiCodeChooser -->
|
131
134
|
|
132
135
|
|
133
136
|
:param str id: `(string: <required>)` - The ID of the scaling policy.
|
@@ -145,26 +148,32 @@ def get_scaling_policy(id: Optional[str] = None,
|
|
145
148
|
policy=pulumi.get(__ret__, 'policy'),
|
146
149
|
target=pulumi.get(__ret__, 'target'),
|
147
150
|
type=pulumi.get(__ret__, 'type'))
|
148
|
-
|
149
|
-
|
150
|
-
@_utilities.lift_output_func(get_scaling_policy)
|
151
151
|
def get_scaling_policy_output(id: Optional[pulumi.Input[str]] = None,
|
152
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetScalingPolicyResult]:
|
152
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetScalingPolicyResult]:
|
153
153
|
"""
|
154
154
|
Retrieve a Scaling Policy.
|
155
155
|
|
156
156
|
## Example Usage
|
157
157
|
|
158
|
-
<!--Start PulumiCodeChooser -->
|
159
158
|
```python
|
160
159
|
import pulumi
|
161
160
|
import pulumi_nomad as nomad
|
162
161
|
|
163
162
|
example = nomad.get_scaling_policy(id="ad19848d-1921-179c-affa-244a3543be88")
|
164
163
|
```
|
165
|
-
<!--End PulumiCodeChooser -->
|
166
164
|
|
167
165
|
|
168
166
|
:param str id: `(string: <required>)` - The ID of the scaling policy.
|
169
167
|
"""
|
170
|
-
|
168
|
+
__args__ = dict()
|
169
|
+
__args__['id'] = id
|
170
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
171
|
+
__ret__ = pulumi.runtime.invoke_output('nomad:index/getScalingPolicy:getScalingPolicy', __args__, opts=opts, typ=GetScalingPolicyResult)
|
172
|
+
return __ret__.apply(lambda __response__: GetScalingPolicyResult(
|
173
|
+
enabled=pulumi.get(__response__, 'enabled'),
|
174
|
+
id=pulumi.get(__response__, 'id'),
|
175
|
+
max=pulumi.get(__response__, 'max'),
|
176
|
+
min=pulumi.get(__response__, 'min'),
|
177
|
+
policy=pulumi.get(__response__, 'policy'),
|
178
|
+
target=pulumi.get(__response__, 'target'),
|
179
|
+
type=pulumi.get(__response__, 'type')))
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = [
|
@@ -86,14 +91,12 @@ def get_scheduler_policy(opts: Optional[pulumi.InvokeOptions] = None) -> Awaitab
|
|
86
91
|
|
87
92
|
## Example Usage
|
88
93
|
|
89
|
-
<!--Start PulumiCodeChooser -->
|
90
94
|
```python
|
91
95
|
import pulumi
|
92
96
|
import pulumi_nomad as nomad
|
93
97
|
|
94
98
|
global_ = nomad.get_scheduler_policy()
|
95
99
|
```
|
96
|
-
<!--End PulumiCodeChooser -->
|
97
100
|
"""
|
98
101
|
__args__ = dict()
|
99
102
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
@@ -104,22 +107,24 @@ def get_scheduler_policy(opts: Optional[pulumi.InvokeOptions] = None) -> Awaitab
|
|
104
107
|
memory_oversubscription_enabled=pulumi.get(__ret__, 'memory_oversubscription_enabled'),
|
105
108
|
preemption_config=pulumi.get(__ret__, 'preemption_config'),
|
106
109
|
scheduler_algorithm=pulumi.get(__ret__, 'scheduler_algorithm'))
|
107
|
-
|
108
|
-
|
109
|
-
@_utilities.lift_output_func(get_scheduler_policy)
|
110
|
-
def get_scheduler_policy_output(opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSchedulerPolicyResult]:
|
110
|
+
def get_scheduler_policy_output(opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSchedulerPolicyResult]:
|
111
111
|
"""
|
112
112
|
Retrieve the cluster's [scheduler configuration](https://www.nomadproject.io/api-docs/operator#sample-response-3).
|
113
113
|
|
114
114
|
## Example Usage
|
115
115
|
|
116
|
-
<!--Start PulumiCodeChooser -->
|
117
116
|
```python
|
118
117
|
import pulumi
|
119
118
|
import pulumi_nomad as nomad
|
120
119
|
|
121
120
|
global_ = nomad.get_scheduler_policy()
|
122
121
|
```
|
123
|
-
<!--End PulumiCodeChooser -->
|
124
122
|
"""
|
125
|
-
|
123
|
+
__args__ = dict()
|
124
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
125
|
+
__ret__ = pulumi.runtime.invoke_output('nomad:index/getSchedulerPolicy:getSchedulerPolicy', __args__, opts=opts, typ=GetSchedulerPolicyResult)
|
126
|
+
return __ret__.apply(lambda __response__: GetSchedulerPolicyResult(
|
127
|
+
id=pulumi.get(__response__, 'id'),
|
128
|
+
memory_oversubscription_enabled=pulumi.get(__response__, 'memory_oversubscription_enabled'),
|
129
|
+
preemption_config=pulumi.get(__response__, 'preemption_config'),
|
130
|
+
scheduler_algorithm=pulumi.get(__response__, 'scheduler_algorithm')))
|
pulumi_nomad/get_variable.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = [
|
@@ -45,7 +50,7 @@ class GetVariableResult:
|
|
45
50
|
|
46
51
|
@property
|
47
52
|
@pulumi.getter
|
48
|
-
def items(self) -> Mapping[str,
|
53
|
+
def items(self) -> Mapping[str, str]:
|
49
54
|
"""
|
50
55
|
`(map[string]string)` - Map of items in the variable.
|
51
56
|
"""
|
@@ -86,14 +91,12 @@ def get_variable(namespace: Optional[str] = None,
|
|
86
91
|
"""
|
87
92
|
## Example Usage
|
88
93
|
|
89
|
-
<!--Start PulumiCodeChooser -->
|
90
94
|
```python
|
91
95
|
import pulumi
|
92
96
|
import pulumi_nomad as nomad
|
93
97
|
|
94
98
|
example = nomad.Variable("example", path="path/of/existing/variable")
|
95
99
|
```
|
96
|
-
<!--End PulumiCodeChooser -->
|
97
100
|
|
98
101
|
|
99
102
|
:param str namespace: `(string: "default")` - The namepsace in which the variable exists.
|
@@ -110,26 +113,30 @@ def get_variable(namespace: Optional[str] = None,
|
|
110
113
|
items=pulumi.get(__ret__, 'items'),
|
111
114
|
namespace=pulumi.get(__ret__, 'namespace'),
|
112
115
|
path=pulumi.get(__ret__, 'path'))
|
113
|
-
|
114
|
-
|
115
|
-
@_utilities.lift_output_func(get_variable)
|
116
116
|
def get_variable_output(namespace: Optional[pulumi.Input[Optional[str]]] = None,
|
117
117
|
path: Optional[pulumi.Input[str]] = None,
|
118
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetVariableResult]:
|
118
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVariableResult]:
|
119
119
|
"""
|
120
120
|
## Example Usage
|
121
121
|
|
122
|
-
<!--Start PulumiCodeChooser -->
|
123
122
|
```python
|
124
123
|
import pulumi
|
125
124
|
import pulumi_nomad as nomad
|
126
125
|
|
127
126
|
example = nomad.Variable("example", path="path/of/existing/variable")
|
128
127
|
```
|
129
|
-
<!--End PulumiCodeChooser -->
|
130
128
|
|
131
129
|
|
132
130
|
:param str namespace: `(string: "default")` - The namepsace in which the variable exists.
|
133
131
|
:param str path: `(string)` - Path to the existing variable.
|
134
132
|
"""
|
135
|
-
|
133
|
+
__args__ = dict()
|
134
|
+
__args__['namespace'] = namespace
|
135
|
+
__args__['path'] = path
|
136
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
137
|
+
__ret__ = pulumi.runtime.invoke_output('nomad:index/getVariable:getVariable', __args__, opts=opts, typ=GetVariableResult)
|
138
|
+
return __ret__.apply(lambda __response__: GetVariableResult(
|
139
|
+
id=pulumi.get(__response__, 'id'),
|
140
|
+
items=pulumi.get(__response__, 'items'),
|
141
|
+
namespace=pulumi.get(__response__, 'namespace'),
|
142
|
+
path=pulumi.get(__response__, 'path')))
|
pulumi_nomad/get_volumes.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = [
|
@@ -74,7 +79,7 @@ class GetVolumesResult:
|
|
74
79
|
|
75
80
|
@property
|
76
81
|
@pulumi.getter
|
77
|
-
def volumes(self) -> Sequence[Mapping[str,
|
82
|
+
def volumes(self) -> Sequence[Mapping[str, str]]:
|
78
83
|
"""
|
79
84
|
`list of maps` a list of volumes in the cluster.
|
80
85
|
"""
|
@@ -105,14 +110,12 @@ def get_volumes(namespace: Optional[str] = None,
|
|
105
110
|
|
106
111
|
## Example Usage
|
107
112
|
|
108
|
-
<!--Start PulumiCodeChooser -->
|
109
113
|
```python
|
110
114
|
import pulumi
|
111
115
|
import pulumi_nomad as nomad
|
112
116
|
|
113
117
|
example = nomad.get_volumes()
|
114
118
|
```
|
115
|
-
<!--End PulumiCodeChooser -->
|
116
119
|
|
117
120
|
|
118
121
|
:param str namespace: `(string: "default")` Nomad namespace.
|
@@ -135,27 +138,22 @@ def get_volumes(namespace: Optional[str] = None,
|
|
135
138
|
plugin_id=pulumi.get(__ret__, 'plugin_id'),
|
136
139
|
type=pulumi.get(__ret__, 'type'),
|
137
140
|
volumes=pulumi.get(__ret__, 'volumes'))
|
138
|
-
|
139
|
-
|
140
|
-
@_utilities.lift_output_func(get_volumes)
|
141
141
|
def get_volumes_output(namespace: Optional[pulumi.Input[Optional[str]]] = None,
|
142
142
|
node_id: Optional[pulumi.Input[Optional[str]]] = None,
|
143
143
|
plugin_id: Optional[pulumi.Input[Optional[str]]] = None,
|
144
144
|
type: Optional[pulumi.Input[Optional[str]]] = None,
|
145
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetVolumesResult]:
|
145
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVolumesResult]:
|
146
146
|
"""
|
147
147
|
Retrieve a list of volumes in Nomad.
|
148
148
|
|
149
149
|
## Example Usage
|
150
150
|
|
151
|
-
<!--Start PulumiCodeChooser -->
|
152
151
|
```python
|
153
152
|
import pulumi
|
154
153
|
import pulumi_nomad as nomad
|
155
154
|
|
156
155
|
example = nomad.get_volumes()
|
157
156
|
```
|
158
|
-
<!--End PulumiCodeChooser -->
|
159
157
|
|
160
158
|
|
161
159
|
:param str namespace: `(string: "default")` Nomad namespace.
|
@@ -163,4 +161,17 @@ def get_volumes_output(namespace: Optional[pulumi.Input[Optional[str]]] = None,
|
|
163
161
|
:param str plugin_id: `(string: optional)` Plugin ID filter.
|
164
162
|
:param str type: `(string: "csi")` Volume type (currently only supports `csi`)
|
165
163
|
"""
|
166
|
-
|
164
|
+
__args__ = dict()
|
165
|
+
__args__['namespace'] = namespace
|
166
|
+
__args__['nodeId'] = node_id
|
167
|
+
__args__['pluginId'] = plugin_id
|
168
|
+
__args__['type'] = type
|
169
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
170
|
+
__ret__ = pulumi.runtime.invoke_output('nomad:index/getVolumes:getVolumes', __args__, opts=opts, typ=GetVolumesResult)
|
171
|
+
return __ret__.apply(lambda __response__: GetVolumesResult(
|
172
|
+
id=pulumi.get(__response__, 'id'),
|
173
|
+
namespace=pulumi.get(__response__, 'namespace'),
|
174
|
+
node_id=pulumi.get(__response__, 'node_id'),
|
175
|
+
plugin_id=pulumi.get(__response__, 'plugin_id'),
|
176
|
+
type=pulumi.get(__response__, 'type'),
|
177
|
+
volumes=pulumi.get(__response__, 'volumes')))
|