@pulumi/openstack 4.1.1 → 4.1.2

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.
Files changed (69) hide show
  1. package/blockstorage/getQuotasetV3.d.ts +1 -1
  2. package/blockstorage/getSnapshotV2.d.ts +1 -1
  3. package/blockstorage/getSnapshotV3.d.ts +1 -1
  4. package/blockstorage/getVolumeV2.d.ts +3 -3
  5. package/blockstorage/getVolumeV3.d.ts +3 -3
  6. package/blockstorage/qosV3.d.ts +3 -3
  7. package/blockstorage/quoteSetV2.d.ts +3 -3
  8. package/blockstorage/quoteSetV3.d.ts +3 -3
  9. package/blockstorage/volume.d.ts +3 -3
  10. package/blockstorage/volumeAttach.d.ts +2 -2
  11. package/blockstorage/volumeAttachV2.d.ts +2 -2
  12. package/blockstorage/volumeTypeV3.d.ts +3 -3
  13. package/blockstorage/volumeV1.d.ts +3 -3
  14. package/blockstorage/volumeV2.d.ts +3 -3
  15. package/compute/flavor.d.ts +3 -3
  16. package/compute/getFlavor.d.ts +1 -1
  17. package/compute/getInstanceV2.d.ts +1 -1
  18. package/compute/instance.d.ts +5 -5
  19. package/compute/keypair.d.ts +3 -3
  20. package/compute/serverGroup.d.ts +3 -3
  21. package/config/vars.d.ts +1 -1
  22. package/config/vars.js.map +1 -1
  23. package/containerinfra/cluster.d.ts +3 -3
  24. package/containerinfra/clusterTemplate.d.ts +3 -3
  25. package/containerinfra/getCluster.d.ts +1 -1
  26. package/containerinfra/getClusterTemplate.d.ts +1 -1
  27. package/containerinfra/getNodeGroup.d.ts +1 -1
  28. package/containerinfra/nodeGroup.d.ts +3 -3
  29. package/dns/getDnsZone.d.ts +3 -3
  30. package/dns/recordSet.d.ts +3 -3
  31. package/dns/transferAccept.d.ts +3 -3
  32. package/dns/transferRequest.d.ts +3 -3
  33. package/dns/zone.d.ts +6 -6
  34. package/firewall/firewall.d.ts +3 -3
  35. package/firewall/policy.d.ts +3 -3
  36. package/firewall/rule.d.ts +3 -3
  37. package/identity/user.d.ts +3 -3
  38. package/images/getImage.d.ts +4 -4
  39. package/images/getImageIds.d.ts +3 -3
  40. package/images/image.d.ts +5 -5
  41. package/keymanager/getSecret.d.ts +2 -2
  42. package/keymanager/secretV1.d.ts +7 -7
  43. package/loadbalancer/listener.d.ts +3 -3
  44. package/loadbalancer/vip.d.ts +3 -3
  45. package/networking/floatingIp.d.ts +3 -3
  46. package/networking/getPort.d.ts +1 -1
  47. package/networking/network.d.ts +3 -3
  48. package/networking/port.d.ts +5 -5
  49. package/networking/qosPolicy.d.ts +3 -3
  50. package/networking/router.d.ts +3 -3
  51. package/networking/subnet.d.ts +3 -3
  52. package/networking/subnetPool.d.ts +3 -3
  53. package/objectstorage/container.d.ts +3 -3
  54. package/objectstorage/containerObject.d.ts +3 -58
  55. package/objectstorage/containerObject.js +0 -55
  56. package/objectstorage/containerObject.js.map +1 -1
  57. package/orchestration/stackV1.d.ts +10 -10
  58. package/orchestration/stackV1.js +1 -1
  59. package/package.json +2 -2
  60. package/provider.d.ts +1 -1
  61. package/sharedfilesystem/getShare.d.ts +3 -3
  62. package/sharedfilesystem/share.d.ts +5 -5
  63. package/types/input.d.ts +4 -4
  64. package/types/output.d.ts +5 -5
  65. package/vpnaas/endpointGroup.d.ts +3 -3
  66. package/vpnaas/ikePolicy.d.ts +3 -3
  67. package/vpnaas/ipSecPolicy.d.ts +3 -3
  68. package/vpnaas/service.d.ts +3 -3
  69. package/vpnaas/siteConnection.d.ts +3 -3
@@ -72,7 +72,7 @@ export interface GetQuotasetV3Result {
72
72
  * Map with gigabytes_{volume_type}, snapshots_{volume_type}, volumes_{volume_type} for each volume type.
73
73
  */
74
74
  readonly volumeTypeQuota: {
75
- [key: string]: any;
75
+ [key: string]: string;
76
76
  };
77
77
  /**
78
78
  * The number of volumes that are allowed.
@@ -58,7 +58,7 @@ export interface GetSnapshotV2Result {
58
58
  * The snapshot's metadata.
59
59
  */
60
60
  readonly metadata: {
61
- [key: string]: any;
61
+ [key: string]: string;
62
62
  };
63
63
  readonly mostRecent?: boolean;
64
64
  /**
@@ -58,7 +58,7 @@ export interface GetSnapshotV3Result {
58
58
  * The snapshot's metadata.
59
59
  */
60
60
  readonly metadata: {
61
- [key: string]: any;
61
+ [key: string]: string;
62
62
  };
63
63
  readonly mostRecent?: boolean;
64
64
  /**
@@ -26,7 +26,7 @@ export interface GetVolumeV2Args {
26
26
  * Metadata key/value pairs associated with the volume.
27
27
  */
28
28
  metadata?: {
29
- [key: string]: any;
29
+ [key: string]: string;
30
30
  };
31
31
  /**
32
32
  * The name of the volume.
@@ -62,7 +62,7 @@ export interface GetVolumeV2Result {
62
62
  * See Argument Reference above.
63
63
  */
64
64
  readonly metadata: {
65
- [key: string]: any;
65
+ [key: string]: string;
66
66
  };
67
67
  /**
68
68
  * See Argument Reference above.
@@ -116,7 +116,7 @@ export interface GetVolumeV2OutputArgs {
116
116
  * Metadata key/value pairs associated with the volume.
117
117
  */
118
118
  metadata?: pulumi.Input<{
119
- [key: string]: any;
119
+ [key: string]: pulumi.Input<string>;
120
120
  }>;
121
121
  /**
122
122
  * The name of the volume.
@@ -31,7 +31,7 @@ export interface GetVolumeV3Args {
31
31
  * Metadata key/value pairs associated with the volume.
32
32
  */
33
33
  metadata?: {
34
- [key: string]: any;
34
+ [key: string]: string;
35
35
  };
36
36
  /**
37
37
  * The name of the volume.
@@ -77,7 +77,7 @@ export interface GetVolumeV3Result {
77
77
  * See Argument Reference above.
78
78
  */
79
79
  readonly metadata: {
80
- [key: string]: any;
80
+ [key: string]: string;
81
81
  };
82
82
  /**
83
83
  * See Argument Reference above.
@@ -135,7 +135,7 @@ export interface GetVolumeV3OutputArgs {
135
135
  * Metadata key/value pairs associated with the volume.
136
136
  */
137
137
  metadata?: pulumi.Input<{
138
- [key: string]: any;
138
+ [key: string]: pulumi.Input<string>;
139
139
  }>;
140
140
  /**
141
141
  * The name of the volume.
@@ -64,7 +64,7 @@ export declare class QosV3 extends pulumi.CustomResource {
64
64
  * Key/Value pairs of specs for the qos.
65
65
  */
66
66
  readonly specs: pulumi.Output<{
67
- [key: string]: any;
67
+ [key: string]: string;
68
68
  } | undefined>;
69
69
  /**
70
70
  * Create a QosV3 resource with the given unique name, arguments, and options.
@@ -99,7 +99,7 @@ export interface QosV3State {
99
99
  * Key/Value pairs of specs for the qos.
100
100
  */
101
101
  specs?: pulumi.Input<{
102
- [key: string]: any;
102
+ [key: string]: pulumi.Input<string>;
103
103
  }>;
104
104
  }
105
105
  /**
@@ -126,6 +126,6 @@ export interface QosV3Args {
126
126
  * Key/Value pairs of specs for the qos.
127
127
  */
128
128
  specs?: pulumi.Input<{
129
- [key: string]: any;
129
+ [key: string]: pulumi.Input<string>;
130
130
  }>;
131
131
  }
@@ -81,7 +81,7 @@ export declare class QuoteSetV2 extends pulumi.CustomResource {
81
81
  * `volumes_<volume_type_name>` and `gigabytes_<volume_type_name>`.
82
82
  */
83
83
  readonly volumeTypeQuota: pulumi.Output<{
84
- [key: string]: any;
84
+ [key: string]: string;
85
85
  } | undefined>;
86
86
  /**
87
87
  * Quota value for volumes. Changing this updates the
@@ -148,7 +148,7 @@ export interface QuoteSetV2State {
148
148
  * `volumes_<volume_type_name>` and `gigabytes_<volume_type_name>`.
149
149
  */
150
150
  volumeTypeQuota?: pulumi.Input<{
151
- [key: string]: any;
151
+ [key: string]: pulumi.Input<string>;
152
152
  }>;
153
153
  /**
154
154
  * Quota value for volumes. Changing this updates the
@@ -207,7 +207,7 @@ export interface QuoteSetV2Args {
207
207
  * `volumes_<volume_type_name>` and `gigabytes_<volume_type_name>`.
208
208
  */
209
209
  volumeTypeQuota?: pulumi.Input<{
210
- [key: string]: any;
210
+ [key: string]: pulumi.Input<string>;
211
211
  }>;
212
212
  /**
213
213
  * Quota value for volumes. Changing this updates the
@@ -81,7 +81,7 @@ export declare class QuoteSetV3 extends pulumi.CustomResource {
81
81
  * `volumes_<volume_type_name>` and `gigabytes_<volume_type_name>`.
82
82
  */
83
83
  readonly volumeTypeQuota: pulumi.Output<{
84
- [key: string]: any;
84
+ [key: string]: string;
85
85
  } | undefined>;
86
86
  /**
87
87
  * Quota value for volumes. Changing this updates the
@@ -148,7 +148,7 @@ export interface QuoteSetV3State {
148
148
  * `volumes_<volume_type_name>` and `gigabytes_<volume_type_name>`.
149
149
  */
150
150
  volumeTypeQuota?: pulumi.Input<{
151
- [key: string]: any;
151
+ [key: string]: pulumi.Input<string>;
152
152
  }>;
153
153
  /**
154
154
  * Quota value for volumes. Changing this updates the
@@ -207,7 +207,7 @@ export interface QuoteSetV3Args {
207
207
  * `volumes_<volume_type_name>` and `gigabytes_<volume_type_name>`.
208
208
  */
209
209
  volumeTypeQuota?: pulumi.Input<{
210
- [key: string]: any;
210
+ [key: string]: pulumi.Input<string>;
211
211
  }>;
212
212
  /**
213
213
  * Quota value for volumes. Changing this updates the
@@ -86,7 +86,7 @@ export declare class Volume extends pulumi.CustomResource {
86
86
  * Changing this updates the existing volume metadata.
87
87
  */
88
88
  readonly metadata: pulumi.Output<{
89
- [key: string]: any;
89
+ [key: string]: string;
90
90
  }>;
91
91
  /**
92
92
  * A unique name for the volume. Changing this updates the
@@ -186,7 +186,7 @@ export interface VolumeState {
186
186
  * Changing this updates the existing volume metadata.
187
187
  */
188
188
  metadata?: pulumi.Input<{
189
- [key: string]: any;
189
+ [key: string]: pulumi.Input<string>;
190
190
  }>;
191
191
  /**
192
192
  * A unique name for the volume. Changing this updates the
@@ -272,7 +272,7 @@ export interface VolumeArgs {
272
272
  * Changing this updates the existing volume metadata.
273
273
  */
274
274
  metadata?: pulumi.Input<{
275
- [key: string]: any;
275
+ [key: string]: pulumi.Input<string>;
276
276
  }>;
277
277
  /**
278
278
  * A unique name for the volume. Changing this updates the
@@ -87,7 +87,7 @@ export declare class VolumeAttach extends pulumi.CustomResource {
87
87
  * script to finalize the connection. See below for more information.
88
88
  */
89
89
  readonly data: pulumi.Output<{
90
- [key: string]: any;
90
+ [key: string]: string;
91
91
  }>;
92
92
  /**
93
93
  * The device to tell the Block Storage service this
@@ -172,7 +172,7 @@ export interface VolumeAttachState {
172
172
  * script to finalize the connection. See below for more information.
173
173
  */
174
174
  data?: pulumi.Input<{
175
- [key: string]: any;
175
+ [key: string]: pulumi.Input<string>;
176
176
  }>;
177
177
  /**
178
178
  * The device to tell the Block Storage service this
@@ -87,7 +87,7 @@ export declare class VolumeAttachV2 extends pulumi.CustomResource {
87
87
  * script to finalize the connection. See below for more information.
88
88
  */
89
89
  readonly data: pulumi.Output<{
90
- [key: string]: any;
90
+ [key: string]: string;
91
91
  }>;
92
92
  /**
93
93
  * The device to tell the Block Storage service this
@@ -172,7 +172,7 @@ export interface VolumeAttachV2State {
172
172
  * script to finalize the connection. See below for more information.
173
173
  */
174
174
  data?: pulumi.Input<{
175
- [key: string]: any;
175
+ [key: string]: pulumi.Input<string>;
176
176
  }>;
177
177
  /**
178
178
  * The device to tell the Block Storage service this
@@ -70,7 +70,7 @@ export declare class VolumeTypeV3 extends pulumi.CustomResource {
70
70
  * Key/Value pairs of metadata for the volume type.
71
71
  */
72
72
  readonly extraSpecs: pulumi.Output<{
73
- [key: string]: any;
73
+ [key: string]: string;
74
74
  }>;
75
75
  /**
76
76
  * Whether the volume type is public. Changing
@@ -110,7 +110,7 @@ export interface VolumeTypeV3State {
110
110
  * Key/Value pairs of metadata for the volume type.
111
111
  */
112
112
  extraSpecs?: pulumi.Input<{
113
- [key: string]: any;
113
+ [key: string]: pulumi.Input<string>;
114
114
  }>;
115
115
  /**
116
116
  * Whether the volume type is public. Changing
@@ -142,7 +142,7 @@ export interface VolumeTypeV3Args {
142
142
  * Key/Value pairs of metadata for the volume type.
143
143
  */
144
144
  extraSpecs?: pulumi.Input<{
145
- [key: string]: any;
145
+ [key: string]: pulumi.Input<string>;
146
146
  }>;
147
147
  /**
148
148
  * Whether the volume type is public. Changing
@@ -68,7 +68,7 @@ export declare class VolumeV1 extends pulumi.CustomResource {
68
68
  * Changing this updates the existing volume metadata.
69
69
  */
70
70
  readonly metadata: pulumi.Output<{
71
- [key: string]: any;
71
+ [key: string]: string;
72
72
  }>;
73
73
  /**
74
74
  * A unique name for the volume. Changing this updates the
@@ -140,7 +140,7 @@ export interface VolumeV1State {
140
140
  * Changing this updates the existing volume metadata.
141
141
  */
142
142
  metadata?: pulumi.Input<{
143
- [key: string]: any;
143
+ [key: string]: pulumi.Input<string>;
144
144
  }>;
145
145
  /**
146
146
  * A unique name for the volume. Changing this updates the
@@ -198,7 +198,7 @@ export interface VolumeV1Args {
198
198
  * Changing this updates the existing volume metadata.
199
199
  */
200
200
  metadata?: pulumi.Input<{
201
- [key: string]: any;
201
+ [key: string]: pulumi.Input<string>;
202
202
  }>;
203
203
  /**
204
204
  * A unique name for the volume. Changing this updates the
@@ -73,7 +73,7 @@ export declare class VolumeV2 extends pulumi.CustomResource {
73
73
  * Changing this updates the existing volume metadata.
74
74
  */
75
75
  readonly metadata: pulumi.Output<{
76
- [key: string]: any;
76
+ [key: string]: string;
77
77
  }>;
78
78
  /**
79
79
  * A unique name for the volume. Changing this updates the
@@ -159,7 +159,7 @@ export interface VolumeV2State {
159
159
  * Changing this updates the existing volume metadata.
160
160
  */
161
161
  metadata?: pulumi.Input<{
162
- [key: string]: any;
162
+ [key: string]: pulumi.Input<string>;
163
163
  }>;
164
164
  /**
165
165
  * A unique name for the volume. Changing this updates the
@@ -231,7 +231,7 @@ export interface VolumeV2Args {
231
231
  * Changing this updates the existing volume metadata.
232
232
  */
233
233
  metadata?: pulumi.Input<{
234
- [key: string]: any;
234
+ [key: string]: pulumi.Input<string>;
235
235
  }>;
236
236
  /**
237
237
  * A unique name for the volume. Changing this updates the
@@ -63,7 +63,7 @@ export declare class Flavor extends pulumi.CustomResource {
63
63
  * Key/Value pairs of metadata for the flavor.
64
64
  */
65
65
  readonly extraSpecs: pulumi.Output<{
66
- [key: string]: any;
66
+ [key: string]: string;
67
67
  }>;
68
68
  /**
69
69
  * Unique ID (integer or UUID) of flavor to create. Changing
@@ -139,7 +139,7 @@ export interface FlavorState {
139
139
  * Key/Value pairs of metadata for the flavor.
140
140
  */
141
141
  extraSpecs?: pulumi.Input<{
142
- [key: string]: any;
142
+ [key: string]: pulumi.Input<string>;
143
143
  }>;
144
144
  /**
145
145
  * Unique ID (integer or UUID) of flavor to create. Changing
@@ -207,7 +207,7 @@ export interface FlavorArgs {
207
207
  * Key/Value pairs of metadata for the flavor.
208
208
  */
209
209
  extraSpecs?: pulumi.Input<{
210
- [key: string]: any;
210
+ [key: string]: pulumi.Input<string>;
211
211
  }>;
212
212
  /**
213
213
  * Unique ID (integer or UUID) of flavor to create. Changing
@@ -82,7 +82,7 @@ export interface GetFlavorResult {
82
82
  * Key/Value pairs of metadata for the flavor.
83
83
  */
84
84
  readonly extraSpecs: {
85
- [key: string]: any;
85
+ [key: string]: string;
86
86
  };
87
87
  readonly flavorId?: string;
88
88
  /**
@@ -79,7 +79,7 @@ export interface GetInstanceV2Result {
79
79
  * A set of key/value pairs made available to the server.
80
80
  */
81
81
  readonly metadata: {
82
- [key: string]: any;
82
+ [key: string]: string;
83
83
  };
84
84
  /**
85
85
  * The name of the network
@@ -31,7 +31,7 @@ export declare class Instance extends pulumi.CustomResource {
31
31
  */
32
32
  readonly adminPass: pulumi.Output<string | undefined>;
33
33
  readonly allMetadata: pulumi.Output<{
34
- [key: string]: any;
34
+ [key: string]: string;
35
35
  }>;
36
36
  /**
37
37
  * The collection of tags assigned on the instance, which have
@@ -111,7 +111,7 @@ export declare class Instance extends pulumi.CustomResource {
111
111
  * within the instance. Changing this updates the existing server metadata.
112
112
  */
113
113
  readonly metadata: pulumi.Output<{
114
- [key: string]: any;
114
+ [key: string]: string;
115
115
  } | undefined>;
116
116
  /**
117
117
  * A unique name for the resource.
@@ -215,7 +215,7 @@ export interface InstanceState {
215
215
  */
216
216
  adminPass?: pulumi.Input<string>;
217
217
  allMetadata?: pulumi.Input<{
218
- [key: string]: any;
218
+ [key: string]: pulumi.Input<string>;
219
219
  }>;
220
220
  /**
221
221
  * The collection of tags assigned on the instance, which have
@@ -295,7 +295,7 @@ export interface InstanceState {
295
295
  * within the instance. Changing this updates the existing server metadata.
296
296
  */
297
297
  metadata?: pulumi.Input<{
298
- [key: string]: any;
298
+ [key: string]: pulumi.Input<string>;
299
299
  }>;
300
300
  /**
301
301
  * A unique name for the resource.
@@ -459,7 +459,7 @@ export interface InstanceArgs {
459
459
  * within the instance. Changing this updates the existing server metadata.
460
460
  */
461
461
  metadata?: pulumi.Input<{
462
- [key: string]: any;
462
+ [key: string]: pulumi.Input<string>;
463
463
  }>;
464
464
  /**
465
465
  * A unique name for the resource.
@@ -85,7 +85,7 @@ export declare class Keypair extends pulumi.CustomResource {
85
85
  * Map of additional options.
86
86
  */
87
87
  readonly valueSpecs: pulumi.Output<{
88
- [key: string]: any;
88
+ [key: string]: string;
89
89
  } | undefined>;
90
90
  /**
91
91
  * Create a Keypair resource with the given unique name, arguments, and options.
@@ -138,7 +138,7 @@ export interface KeypairState {
138
138
  * Map of additional options.
139
139
  */
140
140
  valueSpecs?: pulumi.Input<{
141
- [key: string]: any;
141
+ [key: string]: pulumi.Input<string>;
142
142
  }>;
143
143
  }
144
144
  /**
@@ -175,6 +175,6 @@ export interface KeypairArgs {
175
175
  * Map of additional options.
176
176
  */
177
177
  valueSpecs?: pulumi.Input<{
178
- [key: string]: any;
178
+ [key: string]: pulumi.Input<string>;
179
179
  }>;
180
180
  }
@@ -127,7 +127,7 @@ export declare class ServerGroup extends pulumi.CustomResource {
127
127
  * Map of additional options.
128
128
  */
129
129
  readonly valueSpecs: pulumi.Output<{
130
- [key: string]: any;
130
+ [key: string]: string;
131
131
  } | undefined>;
132
132
  /**
133
133
  * Create a ServerGroup resource with the given unique name, arguments, and options.
@@ -172,7 +172,7 @@ export interface ServerGroupState {
172
172
  * Map of additional options.
173
173
  */
174
174
  valueSpecs?: pulumi.Input<{
175
- [key: string]: any;
175
+ [key: string]: pulumi.Input<string>;
176
176
  }>;
177
177
  }
178
178
  /**
@@ -205,6 +205,6 @@ export interface ServerGroupArgs {
205
205
  * Map of additional options.
206
206
  */
207
207
  valueSpecs?: pulumi.Input<{
208
- [key: string]: any;
208
+ [key: string]: pulumi.Input<string>;
209
209
  }>;
210
210
  }
package/config/vars.d.ts CHANGED
@@ -60,7 +60,7 @@ export declare const enableLogging: boolean | undefined;
60
60
  * A map of services with an endpoint to override what was from the Keystone catalog
61
61
  */
62
62
  export declare const endpointOverrides: {
63
- [key: string]: any;
63
+ [key: string]: string;
64
64
  } | undefined;
65
65
  export declare const endpointType: string | undefined;
66
66
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":"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"}
@@ -141,7 +141,7 @@ export declare class Cluster extends pulumi.CustomResource {
141
141
  * properties of the cluster. Changing this creates a new cluster.
142
142
  */
143
143
  readonly labels: pulumi.Output<{
144
- [key: string]: any;
144
+ [key: string]: string;
145
145
  }>;
146
146
  readonly masterAddresses: pulumi.Output<string[]>;
147
147
  /**
@@ -262,7 +262,7 @@ export interface ClusterState {
262
262
  * properties of the cluster. Changing this creates a new cluster.
263
263
  */
264
264
  labels?: pulumi.Input<{
265
- [key: string]: any;
265
+ [key: string]: pulumi.Input<string>;
266
266
  }>;
267
267
  masterAddresses?: pulumi.Input<pulumi.Input<string>[]>;
268
268
  /**
@@ -368,7 +368,7 @@ export interface ClusterArgs {
368
368
  * properties of the cluster. Changing this creates a new cluster.
369
369
  */
370
370
  labels?: pulumi.Input<{
371
- [key: string]: any;
371
+ [key: string]: pulumi.Input<string>;
372
372
  }>;
373
373
  /**
374
374
  * The number of master nodes for the cluster.
@@ -202,7 +202,7 @@ export declare class ClusterTemplate extends pulumi.CustomResource {
202
202
  * existing cluster template.
203
203
  */
204
204
  readonly labels: pulumi.Output<{
205
- [key: string]: any;
205
+ [key: string]: string;
206
206
  } | undefined>;
207
207
  /**
208
208
  * The flavor for the master nodes. Can be set via
@@ -401,7 +401,7 @@ export interface ClusterTemplateState {
401
401
  * existing cluster template.
402
402
  */
403
403
  labels?: pulumi.Input<{
404
- [key: string]: any;
404
+ [key: string]: pulumi.Input<string>;
405
405
  }>;
406
406
  /**
407
407
  * The flavor for the master nodes. Can be set via
@@ -591,7 +591,7 @@ export interface ClusterTemplateArgs {
591
591
  * existing cluster template.
592
592
  */
593
593
  labels?: pulumi.Input<{
594
- [key: string]: any;
594
+ [key: string]: pulumi.Input<string>;
595
595
  }>;
596
596
  /**
597
597
  * The flavor for the master nodes. Can be set via
@@ -94,7 +94,7 @@ export interface GetClusterResult {
94
94
  * the cluster.
95
95
  */
96
96
  readonly labels: {
97
- [key: string]: any;
97
+ [key: string]: string;
98
98
  };
99
99
  /**
100
100
  * IP addresses of the master node of the cluster.
@@ -122,7 +122,7 @@ export interface GetClusterTemplateResult {
122
122
  * of the cluster template.
123
123
  */
124
124
  readonly labels: {
125
- [key: string]: any;
125
+ [key: string]: string;
126
126
  };
127
127
  /**
128
128
  * The flavor for the master nodes.
@@ -64,7 +64,7 @@ export interface GetNodeGroupResult {
64
64
  * the node group.
65
65
  */
66
66
  readonly labels: {
67
- [key: string]: any;
67
+ [key: string]: string;
68
68
  };
69
69
  /**
70
70
  * The maximum number of nodes for the node group.
@@ -88,7 +88,7 @@ export declare class NodeGroup extends pulumi.CustomResource {
88
88
  * properties of the node group. Changing this creates a new node group.
89
89
  */
90
90
  readonly labels: pulumi.Output<{
91
- [key: string]: any;
91
+ [key: string]: string;
92
92
  }>;
93
93
  /**
94
94
  * The maximum number of nodes for the node group.
@@ -175,7 +175,7 @@ export interface NodeGroupState {
175
175
  * properties of the node group. Changing this creates a new node group.
176
176
  */
177
177
  labels?: pulumi.Input<{
178
- [key: string]: any;
178
+ [key: string]: pulumi.Input<string>;
179
179
  }>;
180
180
  /**
181
181
  * The maximum number of nodes for the node group.
@@ -253,7 +253,7 @@ export interface NodeGroupArgs {
253
253
  * properties of the node group. Changing this creates a new node group.
254
254
  */
255
255
  labels?: pulumi.Input<{
256
- [key: string]: any;
256
+ [key: string]: pulumi.Input<string>;
257
257
  }>;
258
258
  /**
259
259
  * The maximum number of nodes for the node group.
@@ -27,7 +27,7 @@ export interface GetDnsZoneArgs {
27
27
  * Attributes of the DNS Service scheduler.
28
28
  */
29
29
  attributes?: {
30
- [key: string]: any;
30
+ [key: string]: string;
31
31
  };
32
32
  /**
33
33
  * The time the zone was created.
@@ -102,7 +102,7 @@ export interface GetDnsZoneResult {
102
102
  * Attributes of the DNS Service scheduler.
103
103
  */
104
104
  readonly attributes: {
105
- [key: string]: any;
105
+ [key: string]: string;
106
106
  };
107
107
  /**
108
108
  * The time the zone was created.
@@ -197,7 +197,7 @@ export interface GetDnsZoneOutputArgs {
197
197
  * Attributes of the DNS Service scheduler.
198
198
  */
199
199
  attributes?: pulumi.Input<{
200
- [key: string]: any;
200
+ [key: string]: pulumi.Input<string>;
201
201
  }>;
202
202
  /**
203
203
  * The time the zone was created.
@@ -97,7 +97,7 @@ export declare class RecordSet extends pulumi.CustomResource {
97
97
  * new record set.
98
98
  */
99
99
  readonly valueSpecs: pulumi.Output<{
100
- [key: string]: any;
100
+ [key: string]: string;
101
101
  } | undefined>;
102
102
  /**
103
103
  * The ID of the zone in which to create the record set.
@@ -162,7 +162,7 @@ export interface RecordSetState {
162
162
  * new record set.
163
163
  */
164
164
  valueSpecs?: pulumi.Input<{
165
- [key: string]: any;
165
+ [key: string]: pulumi.Input<string>;
166
166
  }>;
167
167
  /**
168
168
  * The ID of the zone in which to create the record set.
@@ -219,7 +219,7 @@ export interface RecordSetArgs {
219
219
  * new record set.
220
220
  */
221
221
  valueSpecs?: pulumi.Input<{
222
- [key: string]: any;
222
+ [key: string]: pulumi.Input<string>;
223
223
  }>;
224
224
  /**
225
225
  * The ID of the zone in which to create the record set.