@pulumiverse/scaleway 1.37.0-alpha.1762338413 → 1.37.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/datawarehouse/database.d.ts +117 -0
- package/datawarehouse/database.js +95 -0
- package/datawarehouse/database.js.map +1 -0
- package/datawarehouse/deployment.d.ts +256 -0
- package/datawarehouse/deployment.js +146 -0
- package/datawarehouse/deployment.js.map +1 -0
- package/datawarehouse/index.d.ts +9 -0
- package/datawarehouse/index.js +32 -0
- package/datawarehouse/index.js.map +1 -0
- package/datawarehouse/user.d.ts +157 -0
- package/datawarehouse/user.js +126 -0
- package/datawarehouse/user.js.map +1 -0
- package/domain/record.d.ts +2 -2
- package/domain/record.js +2 -2
- package/domainRecord.d.ts +2 -2
- package/domainRecord.js +2 -2
- package/getInstanceIp.d.ts +18 -2
- package/getInstanceIp.js +4 -0
- package/getInstanceIp.js.map +1 -1
- package/index.d.ts +2 -1
- package/index.js +4 -2
- package/index.js.map +1 -1
- package/instance/getIp.d.ts +18 -2
- package/instance/getIp.js +4 -0
- package/instance/getIp.js.map +1 -1
- package/iot/device.d.ts +23 -0
- package/iot/device.js +23 -0
- package/iot/device.js.map +1 -1
- package/iot/hub.d.ts +5 -5
- package/iotDevice.d.ts +23 -0
- package/iotDevice.js +23 -0
- package/iotDevice.js.map +1 -1
- package/iotHub.d.ts +5 -5
- package/ipam/ip.d.ts +3 -3
- package/ipamIp.d.ts +3 -3
- package/kubernetes/cluster.d.ts +2 -2
- package/kubernetes/cluster.js +2 -2
- package/kubernetes/pool.d.ts +3 -3
- package/kubernetesCluster.d.ts +2 -2
- package/kubernetesCluster.js +2 -2
- package/kubernetesNodePool.d.ts +3 -3
- package/mongoDbInstance.d.ts +6 -6
- package/mongodb/instance.d.ts +6 -6
- package/network/gatewayNetwork.d.ts +3 -3
- package/object/get.d.ts +116 -0
- package/object/get.js +78 -0
- package/object/get.js.map +1 -0
- package/object/index.d.ts +3 -0
- package/object/index.js +4 -1
- package/object/index.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +30 -4
- package/types/output.d.ts +30 -4
- package/vpcGatewayNetwork.d.ts +3 -3
package/kubernetes/cluster.js
CHANGED
|
@@ -117,7 +117,7 @@ const utilities = require("../utilities");
|
|
|
117
117
|
* const kubeconfig = new _null.Resource("kubeconfig", {triggers: {
|
|
118
118
|
* host: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].host),
|
|
119
119
|
* token: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].token),
|
|
120
|
-
*
|
|
120
|
+
* cluster_ca_certificate: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].clusterCaCertificate),
|
|
121
121
|
* }}, {
|
|
122
122
|
* dependsOn: [pool],
|
|
123
123
|
* });
|
|
@@ -151,7 +151,7 @@ const utilities = require("../utilities");
|
|
|
151
151
|
* const kubeconfig = new _null.Resource("kubeconfig", {triggers: {
|
|
152
152
|
* host: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].host),
|
|
153
153
|
* token: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].token),
|
|
154
|
-
*
|
|
154
|
+
* cluster_ca_certificate: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].clusterCaCertificate),
|
|
155
155
|
* }}, {
|
|
156
156
|
* dependsOn: [pool],
|
|
157
157
|
* });
|
package/kubernetes/pool.d.ts
CHANGED
|
@@ -129,7 +129,7 @@ export declare class Pool extends pulumi.CustomResource {
|
|
|
129
129
|
/**
|
|
130
130
|
* The tags associated with the pool.
|
|
131
131
|
*
|
|
132
|
-
* > Note: As
|
|
132
|
+
* > Note: As mentioned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
|
|
133
133
|
*/
|
|
134
134
|
readonly tags: pulumi.Output<string[] | undefined>;
|
|
135
135
|
/**
|
|
@@ -268,7 +268,7 @@ export interface PoolState {
|
|
|
268
268
|
/**
|
|
269
269
|
* The tags associated with the pool.
|
|
270
270
|
*
|
|
271
|
-
* > Note: As
|
|
271
|
+
* > Note: As mentioned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
|
|
272
272
|
*/
|
|
273
273
|
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
274
274
|
/**
|
|
@@ -383,7 +383,7 @@ export interface PoolArgs {
|
|
|
383
383
|
/**
|
|
384
384
|
* The tags associated with the pool.
|
|
385
385
|
*
|
|
386
|
-
* > Note: As
|
|
386
|
+
* > Note: As mentioned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
|
|
387
387
|
*/
|
|
388
388
|
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
389
389
|
/**
|
package/kubernetesCluster.d.ts
CHANGED
|
@@ -113,7 +113,7 @@ import * as outputs from "./types/output";
|
|
|
113
113
|
* const kubeconfig = new _null.Resource("kubeconfig", {triggers: {
|
|
114
114
|
* host: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].host),
|
|
115
115
|
* token: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].token),
|
|
116
|
-
*
|
|
116
|
+
* cluster_ca_certificate: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].clusterCaCertificate),
|
|
117
117
|
* }}, {
|
|
118
118
|
* dependsOn: [pool],
|
|
119
119
|
* });
|
|
@@ -147,7 +147,7 @@ import * as outputs from "./types/output";
|
|
|
147
147
|
* const kubeconfig = new _null.Resource("kubeconfig", {triggers: {
|
|
148
148
|
* host: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].host),
|
|
149
149
|
* token: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].token),
|
|
150
|
-
*
|
|
150
|
+
* cluster_ca_certificate: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].clusterCaCertificate),
|
|
151
151
|
* }}, {
|
|
152
152
|
* dependsOn: [pool],
|
|
153
153
|
* });
|
package/kubernetesCluster.js
CHANGED
|
@@ -117,7 +117,7 @@ const utilities = require("./utilities");
|
|
|
117
117
|
* const kubeconfig = new _null.Resource("kubeconfig", {triggers: {
|
|
118
118
|
* host: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].host),
|
|
119
119
|
* token: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].token),
|
|
120
|
-
*
|
|
120
|
+
* cluster_ca_certificate: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].clusterCaCertificate),
|
|
121
121
|
* }}, {
|
|
122
122
|
* dependsOn: [pool],
|
|
123
123
|
* });
|
|
@@ -151,7 +151,7 @@ const utilities = require("./utilities");
|
|
|
151
151
|
* const kubeconfig = new _null.Resource("kubeconfig", {triggers: {
|
|
152
152
|
* host: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].host),
|
|
153
153
|
* token: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].token),
|
|
154
|
-
*
|
|
154
|
+
* cluster_ca_certificate: cluster.kubeconfigs.apply(kubeconfigs => kubeconfigs[0].clusterCaCertificate),
|
|
155
155
|
* }}, {
|
|
156
156
|
* dependsOn: [pool],
|
|
157
157
|
* });
|
package/kubernetesNodePool.d.ts
CHANGED
|
@@ -131,7 +131,7 @@ export declare class KubernetesNodePool extends pulumi.CustomResource {
|
|
|
131
131
|
/**
|
|
132
132
|
* The tags associated with the pool.
|
|
133
133
|
*
|
|
134
|
-
* > Note: As
|
|
134
|
+
* > Note: As mentioned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
|
|
135
135
|
*/
|
|
136
136
|
readonly tags: pulumi.Output<string[] | undefined>;
|
|
137
137
|
/**
|
|
@@ -271,7 +271,7 @@ export interface KubernetesNodePoolState {
|
|
|
271
271
|
/**
|
|
272
272
|
* The tags associated with the pool.
|
|
273
273
|
*
|
|
274
|
-
* > Note: As
|
|
274
|
+
* > Note: As mentioned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
|
|
275
275
|
*/
|
|
276
276
|
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
277
277
|
/**
|
|
@@ -386,7 +386,7 @@ export interface KubernetesNodePoolArgs {
|
|
|
386
386
|
/**
|
|
387
387
|
* The tags associated with the pool.
|
|
388
388
|
*
|
|
389
|
-
* > Note: As
|
|
389
|
+
* > Note: As mentioned in [this document](https://github.com/scaleway/scaleway-cloud-controller-manager/blob/master/docs/tags.md#taints), taints of a pool's nodes are applied using tags. (e.g.: `"taint=taintName=taintValue:Effect"`)
|
|
390
390
|
*/
|
|
391
391
|
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
392
392
|
/**
|
package/mongoDbInstance.d.ts
CHANGED
|
@@ -152,7 +152,7 @@ export declare class MongoDbInstance extends pulumi.CustomResource {
|
|
|
152
152
|
*/
|
|
153
153
|
readonly nodeNumber: pulumi.Output<number>;
|
|
154
154
|
/**
|
|
155
|
-
* The type of MongoDB®
|
|
155
|
+
* The type of MongoDB® instance to create.
|
|
156
156
|
*/
|
|
157
157
|
readonly nodeType: pulumi.Output<string>;
|
|
158
158
|
/**
|
|
@@ -210,7 +210,7 @@ export declare class MongoDbInstance extends pulumi.CustomResource {
|
|
|
210
210
|
*/
|
|
211
211
|
readonly updatedAt: pulumi.Output<string>;
|
|
212
212
|
/**
|
|
213
|
-
* Name of the user created when the
|
|
213
|
+
* Name of the user created when the instance is created.
|
|
214
214
|
*/
|
|
215
215
|
readonly userName: pulumi.Output<string | undefined>;
|
|
216
216
|
/**
|
|
@@ -256,7 +256,7 @@ export interface MongoDbInstanceState {
|
|
|
256
256
|
*/
|
|
257
257
|
nodeNumber?: pulumi.Input<number>;
|
|
258
258
|
/**
|
|
259
|
-
* The type of MongoDB®
|
|
259
|
+
* The type of MongoDB® instance to create.
|
|
260
260
|
*/
|
|
261
261
|
nodeType?: pulumi.Input<string>;
|
|
262
262
|
/**
|
|
@@ -314,7 +314,7 @@ export interface MongoDbInstanceState {
|
|
|
314
314
|
*/
|
|
315
315
|
updatedAt?: pulumi.Input<string>;
|
|
316
316
|
/**
|
|
317
|
-
* Name of the user created when the
|
|
317
|
+
* Name of the user created when the instance is created.
|
|
318
318
|
*/
|
|
319
319
|
userName?: pulumi.Input<string>;
|
|
320
320
|
/**
|
|
@@ -347,7 +347,7 @@ export interface MongoDbInstanceArgs {
|
|
|
347
347
|
*/
|
|
348
348
|
nodeNumber: pulumi.Input<number>;
|
|
349
349
|
/**
|
|
350
|
-
* The type of MongoDB®
|
|
350
|
+
* The type of MongoDB® instance to create.
|
|
351
351
|
*/
|
|
352
352
|
nodeType: pulumi.Input<string>;
|
|
353
353
|
/**
|
|
@@ -397,7 +397,7 @@ export interface MongoDbInstanceArgs {
|
|
|
397
397
|
*/
|
|
398
398
|
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
399
399
|
/**
|
|
400
|
-
* Name of the user created when the
|
|
400
|
+
* Name of the user created when the instance is created.
|
|
401
401
|
*/
|
|
402
402
|
userName?: pulumi.Input<string>;
|
|
403
403
|
/**
|
package/mongodb/instance.d.ts
CHANGED
|
@@ -150,7 +150,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
150
150
|
*/
|
|
151
151
|
readonly nodeNumber: pulumi.Output<number>;
|
|
152
152
|
/**
|
|
153
|
-
* The type of MongoDB®
|
|
153
|
+
* The type of MongoDB® instance to create.
|
|
154
154
|
*/
|
|
155
155
|
readonly nodeType: pulumi.Output<string>;
|
|
156
156
|
/**
|
|
@@ -208,7 +208,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
208
208
|
*/
|
|
209
209
|
readonly updatedAt: pulumi.Output<string>;
|
|
210
210
|
/**
|
|
211
|
-
* Name of the user created when the
|
|
211
|
+
* Name of the user created when the instance is created.
|
|
212
212
|
*/
|
|
213
213
|
readonly userName: pulumi.Output<string | undefined>;
|
|
214
214
|
/**
|
|
@@ -253,7 +253,7 @@ export interface InstanceState {
|
|
|
253
253
|
*/
|
|
254
254
|
nodeNumber?: pulumi.Input<number>;
|
|
255
255
|
/**
|
|
256
|
-
* The type of MongoDB®
|
|
256
|
+
* The type of MongoDB® instance to create.
|
|
257
257
|
*/
|
|
258
258
|
nodeType?: pulumi.Input<string>;
|
|
259
259
|
/**
|
|
@@ -311,7 +311,7 @@ export interface InstanceState {
|
|
|
311
311
|
*/
|
|
312
312
|
updatedAt?: pulumi.Input<string>;
|
|
313
313
|
/**
|
|
314
|
-
* Name of the user created when the
|
|
314
|
+
* Name of the user created when the instance is created.
|
|
315
315
|
*/
|
|
316
316
|
userName?: pulumi.Input<string>;
|
|
317
317
|
/**
|
|
@@ -344,7 +344,7 @@ export interface InstanceArgs {
|
|
|
344
344
|
*/
|
|
345
345
|
nodeNumber: pulumi.Input<number>;
|
|
346
346
|
/**
|
|
347
|
-
* The type of MongoDB®
|
|
347
|
+
* The type of MongoDB® instance to create.
|
|
348
348
|
*/
|
|
349
349
|
nodeType: pulumi.Input<string>;
|
|
350
350
|
/**
|
|
@@ -394,7 +394,7 @@ export interface InstanceArgs {
|
|
|
394
394
|
*/
|
|
395
395
|
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
396
396
|
/**
|
|
397
|
-
* Name of the user created when the
|
|
397
|
+
* Name of the user created when the instance is created.
|
|
398
398
|
*/
|
|
399
399
|
userName?: pulumi.Input<string>;
|
|
400
400
|
/**
|
|
@@ -145,7 +145,7 @@ export declare class GatewayNetwork extends pulumi.CustomResource {
|
|
|
145
145
|
*/
|
|
146
146
|
readonly privateNetworkId: pulumi.Output<string>;
|
|
147
147
|
/**
|
|
148
|
-
* Please use `ipamConfig`. Enable DHCP
|
|
148
|
+
* Please use `ipamConfig`. Enable DHCP configuration on this GatewayNetwork. Only one of `dhcpId`, `staticAddress` and `ipamConfig` should be specified.
|
|
149
149
|
*
|
|
150
150
|
* @deprecated Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md
|
|
151
151
|
*/
|
|
@@ -226,7 +226,7 @@ export interface GatewayNetworkState {
|
|
|
226
226
|
*/
|
|
227
227
|
privateNetworkId?: pulumi.Input<string>;
|
|
228
228
|
/**
|
|
229
|
-
* Please use `ipamConfig`. Enable DHCP
|
|
229
|
+
* Please use `ipamConfig`. Enable DHCP configuration on this GatewayNetwork. Only one of `dhcpId`, `staticAddress` and `ipamConfig` should be specified.
|
|
230
230
|
*
|
|
231
231
|
* @deprecated Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md
|
|
232
232
|
*/
|
|
@@ -291,7 +291,7 @@ export interface GatewayNetworkArgs {
|
|
|
291
291
|
*/
|
|
292
292
|
privateNetworkId: pulumi.Input<string>;
|
|
293
293
|
/**
|
|
294
|
-
* Please use `ipamConfig`. Enable DHCP
|
|
294
|
+
* Please use `ipamConfig`. Enable DHCP configuration on this GatewayNetwork. Only one of `dhcpId`, `staticAddress` and `ipamConfig` should be specified.
|
|
295
295
|
*
|
|
296
296
|
* @deprecated Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md
|
|
297
297
|
*/
|
package/object/get.d.ts
ADDED
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* The `scaleway.object.Item` data source is used to retrieve information about an Object Storage object.
|
|
4
|
+
*
|
|
5
|
+
* Refer to the Object Storage [documentation](https://www.scaleway.com/en/docs/object-storage/how-to/create-a-bucket/) for more information.
|
|
6
|
+
*
|
|
7
|
+
* ## Retrieve an Object Storage object
|
|
8
|
+
*
|
|
9
|
+
* The following example demonstrates how to retrieve metadata about an object stored in a bucket:
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
14
|
+
*
|
|
15
|
+
* const main = new scaleway.object.Bucket("main", {name: "bucket.test.com"});
|
|
16
|
+
* const example = new scaleway.object.Item("example", {
|
|
17
|
+
* bucket: main.name,
|
|
18
|
+
* key: "example.txt",
|
|
19
|
+
* content: "Hello world!",
|
|
20
|
+
* });
|
|
21
|
+
* const selected = scaleway.object.getOutput({
|
|
22
|
+
* bucket: example.bucket,
|
|
23
|
+
* key: example.key,
|
|
24
|
+
* });
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
export declare function get(args: GetArgs, opts?: pulumi.InvokeOptions): Promise<GetResult>;
|
|
28
|
+
/**
|
|
29
|
+
* A collection of arguments for invoking get.
|
|
30
|
+
*/
|
|
31
|
+
export interface GetArgs {
|
|
32
|
+
bucket: string;
|
|
33
|
+
/**
|
|
34
|
+
* The key (path or filename) of the object within the bucket.
|
|
35
|
+
*/
|
|
36
|
+
key: string;
|
|
37
|
+
/**
|
|
38
|
+
* `projectId`) The ID of the project with which the bucket is associated.
|
|
39
|
+
*/
|
|
40
|
+
projectId?: string;
|
|
41
|
+
/**
|
|
42
|
+
* `region`) The region in which the bucket exists.
|
|
43
|
+
*/
|
|
44
|
+
region?: string;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* A collection of values returned by get.
|
|
48
|
+
*/
|
|
49
|
+
export interface GetResult {
|
|
50
|
+
readonly bucket: string;
|
|
51
|
+
readonly content: string;
|
|
52
|
+
readonly contentBase64: string;
|
|
53
|
+
readonly contentType: string;
|
|
54
|
+
readonly file: string;
|
|
55
|
+
readonly hash: string;
|
|
56
|
+
/**
|
|
57
|
+
* The provider-assigned unique ID for this managed resource.
|
|
58
|
+
*/
|
|
59
|
+
readonly id: string;
|
|
60
|
+
readonly key: string;
|
|
61
|
+
readonly metadata: {
|
|
62
|
+
[key: string]: string;
|
|
63
|
+
};
|
|
64
|
+
readonly projectId?: string;
|
|
65
|
+
readonly region?: string;
|
|
66
|
+
readonly sseCustomerKey: string;
|
|
67
|
+
readonly storageClass: string;
|
|
68
|
+
readonly tags: {
|
|
69
|
+
[key: string]: string;
|
|
70
|
+
};
|
|
71
|
+
readonly visibility: string;
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* The `scaleway.object.Item` data source is used to retrieve information about an Object Storage object.
|
|
75
|
+
*
|
|
76
|
+
* Refer to the Object Storage [documentation](https://www.scaleway.com/en/docs/object-storage/how-to/create-a-bucket/) for more information.
|
|
77
|
+
*
|
|
78
|
+
* ## Retrieve an Object Storage object
|
|
79
|
+
*
|
|
80
|
+
* The following example demonstrates how to retrieve metadata about an object stored in a bucket:
|
|
81
|
+
*
|
|
82
|
+
* ```typescript
|
|
83
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
84
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
85
|
+
*
|
|
86
|
+
* const main = new scaleway.object.Bucket("main", {name: "bucket.test.com"});
|
|
87
|
+
* const example = new scaleway.object.Item("example", {
|
|
88
|
+
* bucket: main.name,
|
|
89
|
+
* key: "example.txt",
|
|
90
|
+
* content: "Hello world!",
|
|
91
|
+
* });
|
|
92
|
+
* const selected = scaleway.object.getOutput({
|
|
93
|
+
* bucket: example.bucket,
|
|
94
|
+
* key: example.key,
|
|
95
|
+
* });
|
|
96
|
+
* ```
|
|
97
|
+
*/
|
|
98
|
+
export declare function getOutput(args: GetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetResult>;
|
|
99
|
+
/**
|
|
100
|
+
* A collection of arguments for invoking get.
|
|
101
|
+
*/
|
|
102
|
+
export interface GetOutputArgs {
|
|
103
|
+
bucket: pulumi.Input<string>;
|
|
104
|
+
/**
|
|
105
|
+
* The key (path or filename) of the object within the bucket.
|
|
106
|
+
*/
|
|
107
|
+
key: pulumi.Input<string>;
|
|
108
|
+
/**
|
|
109
|
+
* `projectId`) The ID of the project with which the bucket is associated.
|
|
110
|
+
*/
|
|
111
|
+
projectId?: pulumi.Input<string>;
|
|
112
|
+
/**
|
|
113
|
+
* `region`) The region in which the bucket exists.
|
|
114
|
+
*/
|
|
115
|
+
region?: pulumi.Input<string>;
|
|
116
|
+
}
|
package/object/get.js
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getOutput = exports.get = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* The `scaleway.object.Item` data source is used to retrieve information about an Object Storage object.
|
|
10
|
+
*
|
|
11
|
+
* Refer to the Object Storage [documentation](https://www.scaleway.com/en/docs/object-storage/how-to/create-a-bucket/) for more information.
|
|
12
|
+
*
|
|
13
|
+
* ## Retrieve an Object Storage object
|
|
14
|
+
*
|
|
15
|
+
* The following example demonstrates how to retrieve metadata about an object stored in a bucket:
|
|
16
|
+
*
|
|
17
|
+
* ```typescript
|
|
18
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
20
|
+
*
|
|
21
|
+
* const main = new scaleway.object.Bucket("main", {name: "bucket.test.com"});
|
|
22
|
+
* const example = new scaleway.object.Item("example", {
|
|
23
|
+
* bucket: main.name,
|
|
24
|
+
* key: "example.txt",
|
|
25
|
+
* content: "Hello world!",
|
|
26
|
+
* });
|
|
27
|
+
* const selected = scaleway.object.getOutput({
|
|
28
|
+
* bucket: example.bucket,
|
|
29
|
+
* key: example.key,
|
|
30
|
+
* });
|
|
31
|
+
* ```
|
|
32
|
+
*/
|
|
33
|
+
function get(args, opts) {
|
|
34
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
35
|
+
return pulumi.runtime.invoke("scaleway:object/get:get", {
|
|
36
|
+
"bucket": args.bucket,
|
|
37
|
+
"key": args.key,
|
|
38
|
+
"projectId": args.projectId,
|
|
39
|
+
"region": args.region,
|
|
40
|
+
}, opts);
|
|
41
|
+
}
|
|
42
|
+
exports.get = get;
|
|
43
|
+
/**
|
|
44
|
+
* The `scaleway.object.Item` data source is used to retrieve information about an Object Storage object.
|
|
45
|
+
*
|
|
46
|
+
* Refer to the Object Storage [documentation](https://www.scaleway.com/en/docs/object-storage/how-to/create-a-bucket/) for more information.
|
|
47
|
+
*
|
|
48
|
+
* ## Retrieve an Object Storage object
|
|
49
|
+
*
|
|
50
|
+
* The following example demonstrates how to retrieve metadata about an object stored in a bucket:
|
|
51
|
+
*
|
|
52
|
+
* ```typescript
|
|
53
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
54
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
55
|
+
*
|
|
56
|
+
* const main = new scaleway.object.Bucket("main", {name: "bucket.test.com"});
|
|
57
|
+
* const example = new scaleway.object.Item("example", {
|
|
58
|
+
* bucket: main.name,
|
|
59
|
+
* key: "example.txt",
|
|
60
|
+
* content: "Hello world!",
|
|
61
|
+
* });
|
|
62
|
+
* const selected = scaleway.object.getOutput({
|
|
63
|
+
* bucket: example.bucket,
|
|
64
|
+
* key: example.key,
|
|
65
|
+
* });
|
|
66
|
+
* ```
|
|
67
|
+
*/
|
|
68
|
+
function getOutput(args, opts) {
|
|
69
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
70
|
+
return pulumi.runtime.invokeOutput("scaleway:object/get:get", {
|
|
71
|
+
"bucket": args.bucket,
|
|
72
|
+
"key": args.key,
|
|
73
|
+
"projectId": args.projectId,
|
|
74
|
+
"region": args.region,
|
|
75
|
+
}, opts);
|
|
76
|
+
}
|
|
77
|
+
exports.getOutput = getOutput;
|
|
78
|
+
//# sourceMappingURL=get.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get.js","sourceRoot":"","sources":["../../object/get.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,GAAG,CAAC,IAAa,EAAE,IAA2B;IAC1D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yBAAyB,EAAE;QACpD,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,kBAQC;AA4CD;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAAiC;IAC5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,yBAAyB,EAAE;QAC1D,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,8BAQC"}
|
package/object/index.d.ts
CHANGED
|
@@ -13,6 +13,9 @@ export declare const BucketPolicy: typeof import("./bucketPolicy").BucketPolicy;
|
|
|
13
13
|
export { BucketWebsiteConfigurationArgs, BucketWebsiteConfigurationState } from "./bucketWebsiteConfiguration";
|
|
14
14
|
export type BucketWebsiteConfiguration = import("./bucketWebsiteConfiguration").BucketWebsiteConfiguration;
|
|
15
15
|
export declare const BucketWebsiteConfiguration: typeof import("./bucketWebsiteConfiguration").BucketWebsiteConfiguration;
|
|
16
|
+
export { GetArgs, GetResult, GetOutputArgs } from "./get";
|
|
17
|
+
export declare const get: typeof import("./get").get;
|
|
18
|
+
export declare const getOutput: typeof import("./get").getOutput;
|
|
16
19
|
export { GetBucketArgs, GetBucketResult, GetBucketOutputArgs } from "./getBucket";
|
|
17
20
|
export declare const getBucket: typeof import("./getBucket").getBucket;
|
|
18
21
|
export declare const getBucketOutput: typeof import("./getBucket").getBucketOutput;
|
package/object/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.Item = exports.getBucketPolicyOutput = exports.getBucketPolicy = exports.getBucketOutput = exports.getBucket = exports.BucketWebsiteConfiguration = exports.BucketPolicy = exports.BucketLockConfiguration = exports.BucketAcl = exports.Bucket = void 0;
|
|
5
|
+
exports.Item = exports.getBucketPolicyOutput = exports.getBucketPolicy = exports.getBucketOutput = exports.getBucket = exports.getOutput = exports.get = exports.BucketWebsiteConfiguration = exports.BucketPolicy = exports.BucketLockConfiguration = exports.BucketAcl = exports.Bucket = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.Bucket = null;
|
|
@@ -15,6 +15,9 @@ exports.BucketPolicy = null;
|
|
|
15
15
|
utilities.lazyLoad(exports, ["BucketPolicy"], () => require("./bucketPolicy"));
|
|
16
16
|
exports.BucketWebsiteConfiguration = null;
|
|
17
17
|
utilities.lazyLoad(exports, ["BucketWebsiteConfiguration"], () => require("./bucketWebsiteConfiguration"));
|
|
18
|
+
exports.get = null;
|
|
19
|
+
exports.getOutput = null;
|
|
20
|
+
utilities.lazyLoad(exports, ["get", "getOutput"], () => require("./get"));
|
|
18
21
|
exports.getBucket = null;
|
|
19
22
|
exports.getBucketOutput = null;
|
|
20
23
|
utilities.lazyLoad(exports, ["getBucket", "getBucketOutput"], () => require("./getBucket"));
|
package/object/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../object/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../object/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumiverse/scaleway",
|
|
3
|
-
"version": "1.37.0
|
|
3
|
+
"version": "1.37.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Scaleway cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "scaleway",
|
|
27
|
-
"version": "1.37.0
|
|
27
|
+
"version": "1.37.0",
|
|
28
28
|
"server": "github://api.github.com/pulumiverse"
|
|
29
29
|
}
|
|
30
30
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -1211,11 +1211,11 @@ export interface IotRouteS3 {
|
|
|
1211
1211
|
}
|
|
1212
1212
|
export interface IpamIpCustomResource {
|
|
1213
1213
|
/**
|
|
1214
|
-
* The MAC address of the resource
|
|
1214
|
+
* The MAC address of the custom resource.
|
|
1215
1215
|
*/
|
|
1216
1216
|
macAddress: pulumi.Input<string>;
|
|
1217
1217
|
/**
|
|
1218
|
-
*
|
|
1218
|
+
* When the resource is in a Private Network, a DNS record is available to resolve the resource name.
|
|
1219
1219
|
*/
|
|
1220
1220
|
name?: pulumi.Input<string>;
|
|
1221
1221
|
}
|
|
@@ -2666,6 +2666,32 @@ export declare namespace databases {
|
|
|
2666
2666
|
zone?: pulumi.Input<string>;
|
|
2667
2667
|
}
|
|
2668
2668
|
}
|
|
2669
|
+
export declare namespace datawarehouse {
|
|
2670
|
+
interface DeploymentPublicNetwork {
|
|
2671
|
+
/**
|
|
2672
|
+
* DNS record for the public endpoint.
|
|
2673
|
+
*/
|
|
2674
|
+
dnsRecord?: pulumi.Input<string>;
|
|
2675
|
+
/**
|
|
2676
|
+
* The ID of the public endpoint.
|
|
2677
|
+
*/
|
|
2678
|
+
id?: pulumi.Input<string>;
|
|
2679
|
+
/**
|
|
2680
|
+
* List of services exposed on the public endpoint.
|
|
2681
|
+
*/
|
|
2682
|
+
services?: pulumi.Input<pulumi.Input<inputs.datawarehouse.DeploymentPublicNetworkService>[]>;
|
|
2683
|
+
}
|
|
2684
|
+
interface DeploymentPublicNetworkService {
|
|
2685
|
+
/**
|
|
2686
|
+
* TCP port number.
|
|
2687
|
+
*/
|
|
2688
|
+
port?: pulumi.Input<number>;
|
|
2689
|
+
/**
|
|
2690
|
+
* Service protocol (e.g., "tcp", "https", "mysql").
|
|
2691
|
+
*/
|
|
2692
|
+
protocol?: pulumi.Input<string>;
|
|
2693
|
+
}
|
|
2694
|
+
}
|
|
2669
2695
|
export declare namespace domain {
|
|
2670
2696
|
interface RecordGeoIp {
|
|
2671
2697
|
/**
|
|
@@ -4018,11 +4044,11 @@ export declare namespace ipam {
|
|
|
4018
4044
|
}
|
|
4019
4045
|
interface IpCustomResource {
|
|
4020
4046
|
/**
|
|
4021
|
-
* The MAC address of the resource
|
|
4047
|
+
* The MAC address of the custom resource.
|
|
4022
4048
|
*/
|
|
4023
4049
|
macAddress: pulumi.Input<string>;
|
|
4024
4050
|
/**
|
|
4025
|
-
*
|
|
4051
|
+
* When the resource is in a Private Network, a DNS record is available to resolve the resource name.
|
|
4026
4052
|
*/
|
|
4027
4053
|
name?: pulumi.Input<string>;
|
|
4028
4054
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -3518,11 +3518,11 @@ export interface IotRouteS3 {
|
|
|
3518
3518
|
}
|
|
3519
3519
|
export interface IpamIpCustomResource {
|
|
3520
3520
|
/**
|
|
3521
|
-
* The MAC address of the resource
|
|
3521
|
+
* The MAC address of the custom resource.
|
|
3522
3522
|
*/
|
|
3523
3523
|
macAddress: string;
|
|
3524
3524
|
/**
|
|
3525
|
-
*
|
|
3525
|
+
* When the resource is in a Private Network, a DNS record is available to resolve the resource name.
|
|
3526
3526
|
*/
|
|
3527
3527
|
name?: string;
|
|
3528
3528
|
}
|
|
@@ -5272,6 +5272,32 @@ export declare namespace databases {
|
|
|
5272
5272
|
zone: string;
|
|
5273
5273
|
}
|
|
5274
5274
|
}
|
|
5275
|
+
export declare namespace datawarehouse {
|
|
5276
|
+
interface DeploymentPublicNetwork {
|
|
5277
|
+
/**
|
|
5278
|
+
* DNS record for the public endpoint.
|
|
5279
|
+
*/
|
|
5280
|
+
dnsRecord: string;
|
|
5281
|
+
/**
|
|
5282
|
+
* The ID of the public endpoint.
|
|
5283
|
+
*/
|
|
5284
|
+
id: string;
|
|
5285
|
+
/**
|
|
5286
|
+
* List of services exposed on the public endpoint.
|
|
5287
|
+
*/
|
|
5288
|
+
services: outputs.datawarehouse.DeploymentPublicNetworkService[];
|
|
5289
|
+
}
|
|
5290
|
+
interface DeploymentPublicNetworkService {
|
|
5291
|
+
/**
|
|
5292
|
+
* TCP port number.
|
|
5293
|
+
*/
|
|
5294
|
+
port: number;
|
|
5295
|
+
/**
|
|
5296
|
+
* Service protocol (e.g., "tcp", "https", "mysql").
|
|
5297
|
+
*/
|
|
5298
|
+
protocol: string;
|
|
5299
|
+
}
|
|
5300
|
+
}
|
|
5275
5301
|
export declare namespace domain {
|
|
5276
5302
|
interface GetRecordGeoIp {
|
|
5277
5303
|
/**
|
|
@@ -7520,11 +7546,11 @@ export declare namespace ipam {
|
|
|
7520
7546
|
}
|
|
7521
7547
|
interface IpCustomResource {
|
|
7522
7548
|
/**
|
|
7523
|
-
* The MAC address of the resource
|
|
7549
|
+
* The MAC address of the custom resource.
|
|
7524
7550
|
*/
|
|
7525
7551
|
macAddress: string;
|
|
7526
7552
|
/**
|
|
7527
|
-
*
|
|
7553
|
+
* When the resource is in a Private Network, a DNS record is available to resolve the resource name.
|
|
7528
7554
|
*/
|
|
7529
7555
|
name?: string;
|
|
7530
7556
|
}
|
package/vpcGatewayNetwork.d.ts
CHANGED
|
@@ -147,7 +147,7 @@ export declare class VpcGatewayNetwork extends pulumi.CustomResource {
|
|
|
147
147
|
*/
|
|
148
148
|
readonly privateNetworkId: pulumi.Output<string>;
|
|
149
149
|
/**
|
|
150
|
-
* Please use `ipamConfig`. Enable DHCP
|
|
150
|
+
* Please use `ipamConfig`. Enable DHCP configuration on this GatewayNetwork. Only one of `dhcpId`, `staticAddress` and `ipamConfig` should be specified.
|
|
151
151
|
*
|
|
152
152
|
* @deprecated Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md
|
|
153
153
|
*/
|
|
@@ -229,7 +229,7 @@ export interface VpcGatewayNetworkState {
|
|
|
229
229
|
*/
|
|
230
230
|
privateNetworkId?: pulumi.Input<string>;
|
|
231
231
|
/**
|
|
232
|
-
* Please use `ipamConfig`. Enable DHCP
|
|
232
|
+
* Please use `ipamConfig`. Enable DHCP configuration on this GatewayNetwork. Only one of `dhcpId`, `staticAddress` and `ipamConfig` should be specified.
|
|
233
233
|
*
|
|
234
234
|
* @deprecated Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md
|
|
235
235
|
*/
|
|
@@ -294,7 +294,7 @@ export interface VpcGatewayNetworkArgs {
|
|
|
294
294
|
*/
|
|
295
295
|
privateNetworkId: pulumi.Input<string>;
|
|
296
296
|
/**
|
|
297
|
-
* Please use `ipamConfig`. Enable DHCP
|
|
297
|
+
* Please use `ipamConfig`. Enable DHCP configuration on this GatewayNetwork. Only one of `dhcpId`, `staticAddress` and `ipamConfig` should be specified.
|
|
298
298
|
*
|
|
299
299
|
* @deprecated Please use ipam_config. For more information, please refer to the dedicated guide: https://github.com/scaleway/terraform-provider-scaleway/blob/master/docs/guides/migration_guide_vpcgw_v2.md
|
|
300
300
|
*/
|