@quantcdn/pulumi-quant 0.3.0 → 5.5.0

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.
package/volume.ts CHANGED
@@ -32,45 +32,34 @@ export class Volume extends pulumi.CustomResource {
32
32
  return obj['__pulumiType'] === Volume.__pulumiType;
33
33
  }
34
34
 
35
- /**
36
- * EFS access point ARN
37
- */
38
35
  declare public /*out*/ readonly accessPointArn: pulumi.Output<string>;
39
- /**
40
- * EFS access point ID
41
- */
42
36
  declare public /*out*/ readonly accessPointId: pulumi.Output<string>;
43
37
  /**
44
- * Application name
38
+ * The application ID
45
39
  */
46
40
  declare public readonly application: pulumi.Output<string>;
47
- /**
48
- * Creation timestamp
49
- */
50
41
  declare public /*out*/ readonly createdAt: pulumi.Output<string>;
51
42
  /**
52
43
  * Volume description
53
44
  */
54
45
  declare public readonly description: pulumi.Output<string>;
55
46
  /**
56
- * Environment name
47
+ * The environment ID
57
48
  */
58
49
  declare public readonly environment: pulumi.Output<string>;
59
- /**
60
- * EFS filesystem ID
61
- */
62
50
  declare public /*out*/ readonly environmentEfsId: pulumi.Output<string>;
63
51
  /**
64
- * Organization machine name (defaults to provider organization)
52
+ * The organisation ID
65
53
  */
66
- declare public readonly organization: pulumi.Output<string>;
54
+ declare public readonly organisation: pulumi.Output<string>;
67
55
  /**
68
56
  * Root directory path
69
57
  */
70
58
  declare public readonly rootDirectory: pulumi.Output<string>;
71
59
  /**
72
- * Volume ID
60
+ * The volume ID
73
61
  */
62
+ declare public readonly volume: pulumi.Output<string>;
74
63
  declare public /*out*/ readonly volumeId: pulumi.Output<string>;
75
64
  /**
76
65
  * Volume name
@@ -97,26 +86,22 @@ export class Volume extends pulumi.CustomResource {
97
86
  resourceInputs["description"] = state?.description;
98
87
  resourceInputs["environment"] = state?.environment;
99
88
  resourceInputs["environmentEfsId"] = state?.environmentEfsId;
100
- resourceInputs["organization"] = state?.organization;
89
+ resourceInputs["organisation"] = state?.organisation;
101
90
  resourceInputs["rootDirectory"] = state?.rootDirectory;
91
+ resourceInputs["volume"] = state?.volume;
102
92
  resourceInputs["volumeId"] = state?.volumeId;
103
93
  resourceInputs["volumeName"] = state?.volumeName;
104
94
  } else {
105
95
  const args = argsOrState as VolumeArgs | undefined;
106
- if (args?.application === undefined && !opts.urn) {
107
- throw new Error("Missing required property 'application'");
108
- }
109
- if (args?.environment === undefined && !opts.urn) {
110
- throw new Error("Missing required property 'environment'");
111
- }
112
96
  if (args?.volumeName === undefined && !opts.urn) {
113
97
  throw new Error("Missing required property 'volumeName'");
114
98
  }
115
99
  resourceInputs["application"] = args?.application;
116
100
  resourceInputs["description"] = args?.description;
117
101
  resourceInputs["environment"] = args?.environment;
118
- resourceInputs["organization"] = args?.organization;
102
+ resourceInputs["organisation"] = args?.organisation;
119
103
  resourceInputs["rootDirectory"] = args?.rootDirectory;
104
+ resourceInputs["volume"] = args?.volume;
120
105
  resourceInputs["volumeName"] = args?.volumeName;
121
106
  resourceInputs["accessPointArn"] = undefined /*out*/;
122
107
  resourceInputs["accessPointId"] = undefined /*out*/;
@@ -133,45 +118,34 @@ export class Volume extends pulumi.CustomResource {
133
118
  * Input properties used for looking up and filtering Volume resources.
134
119
  */
135
120
  export interface VolumeState {
136
- /**
137
- * EFS access point ARN
138
- */
139
121
  accessPointArn?: pulumi.Input<string>;
140
- /**
141
- * EFS access point ID
142
- */
143
122
  accessPointId?: pulumi.Input<string>;
144
123
  /**
145
- * Application name
124
+ * The application ID
146
125
  */
147
126
  application?: pulumi.Input<string>;
148
- /**
149
- * Creation timestamp
150
- */
151
127
  createdAt?: pulumi.Input<string>;
152
128
  /**
153
129
  * Volume description
154
130
  */
155
131
  description?: pulumi.Input<string>;
156
132
  /**
157
- * Environment name
133
+ * The environment ID
158
134
  */
159
135
  environment?: pulumi.Input<string>;
160
- /**
161
- * EFS filesystem ID
162
- */
163
136
  environmentEfsId?: pulumi.Input<string>;
164
137
  /**
165
- * Organization machine name (defaults to provider organization)
138
+ * The organisation ID
166
139
  */
167
- organization?: pulumi.Input<string>;
140
+ organisation?: pulumi.Input<string>;
168
141
  /**
169
142
  * Root directory path
170
143
  */
171
144
  rootDirectory?: pulumi.Input<string>;
172
145
  /**
173
- * Volume ID
146
+ * The volume ID
174
147
  */
148
+ volume?: pulumi.Input<string>;
175
149
  volumeId?: pulumi.Input<string>;
176
150
  /**
177
151
  * Volume name
@@ -184,25 +158,29 @@ export interface VolumeState {
184
158
  */
185
159
  export interface VolumeArgs {
186
160
  /**
187
- * Application name
161
+ * The application ID
188
162
  */
189
- application: pulumi.Input<string>;
163
+ application?: pulumi.Input<string>;
190
164
  /**
191
165
  * Volume description
192
166
  */
193
167
  description?: pulumi.Input<string>;
194
168
  /**
195
- * Environment name
169
+ * The environment ID
196
170
  */
197
- environment: pulumi.Input<string>;
171
+ environment?: pulumi.Input<string>;
198
172
  /**
199
- * Organization machine name (defaults to provider organization)
173
+ * The organisation ID
200
174
  */
201
- organization?: pulumi.Input<string>;
175
+ organisation?: pulumi.Input<string>;
202
176
  /**
203
177
  * Root directory path
204
178
  */
205
179
  rootDirectory?: pulumi.Input<string>;
180
+ /**
181
+ * The volume ID
182
+ */
183
+ volume?: pulumi.Input<string>;
206
184
  /**
207
185
  * Volume name
208
186
  */