@pulumiverse/scaleway 1.47.0 → 1.48.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/interlink/getDedicatedConnection.d.ts +148 -0
- package/interlink/getDedicatedConnection.js +82 -0
- package/interlink/getDedicatedConnection.js.map +1 -0
- package/interlink/index.d.ts +3 -0
- package/interlink/index.js +4 -1
- package/interlink/index.js.map +1 -1
- package/interlink/link.d.ts +38 -6
- package/interlink/link.js +26 -2
- package/interlink/link.js.map +1 -1
- package/package.json +2 -2
- package/types/output.d.ts +10 -0
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Gets information about an Interlink Dedicated Connection.
|
|
5
|
+
*
|
|
6
|
+
* A dedicated connection is a physical connection owned by the user at a PoP, used to create self-hosted links between your infrastructure and Scaleway.
|
|
7
|
+
*
|
|
8
|
+
* ## Example Usage
|
|
9
|
+
*
|
|
10
|
+
* ```typescript
|
|
11
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
13
|
+
*
|
|
14
|
+
* // Retrieve a dedicated connection by its ID
|
|
15
|
+
* const byId = scaleway.interlink.getDedicatedConnection({
|
|
16
|
+
* connectionId: "11111111-1111-1111-1111-111111111111",
|
|
17
|
+
* });
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* ```typescript
|
|
21
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
22
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
23
|
+
*
|
|
24
|
+
* // Retrieve a dedicated connection by name
|
|
25
|
+
* const byName = scaleway.interlink.getDedicatedConnection({
|
|
26
|
+
* name: "my-dedicated-connection",
|
|
27
|
+
* });
|
|
28
|
+
* ```
|
|
29
|
+
*/
|
|
30
|
+
export declare function getDedicatedConnection(args?: GetDedicatedConnectionArgs, opts?: pulumi.InvokeOptions): Promise<GetDedicatedConnectionResult>;
|
|
31
|
+
/**
|
|
32
|
+
* A collection of arguments for invoking getDedicatedConnection.
|
|
33
|
+
*/
|
|
34
|
+
export interface GetDedicatedConnectionArgs {
|
|
35
|
+
/**
|
|
36
|
+
* The ID of the dedicated connection. Can be a plain UUID or a regional ID. Conflicts with `name`.
|
|
37
|
+
*/
|
|
38
|
+
connectionId?: string;
|
|
39
|
+
/**
|
|
40
|
+
* The name of the dedicated connection to filter for. Conflicts with `connectionId`.
|
|
41
|
+
*/
|
|
42
|
+
name?: string;
|
|
43
|
+
/**
|
|
44
|
+
* `region`) The region in which the dedicated connection exists.
|
|
45
|
+
*/
|
|
46
|
+
region?: string;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* A collection of values returned by getDedicatedConnection.
|
|
50
|
+
*/
|
|
51
|
+
export interface GetDedicatedConnectionResult {
|
|
52
|
+
/**
|
|
53
|
+
* Sizes of the links supported on this dedicated connection.
|
|
54
|
+
*/
|
|
55
|
+
readonly availableLinkBandwidths: number[];
|
|
56
|
+
/**
|
|
57
|
+
* Bandwidth size of the dedicated connection in Mbps.
|
|
58
|
+
*/
|
|
59
|
+
readonly bandwidthMbps: number;
|
|
60
|
+
readonly connectionId?: string;
|
|
61
|
+
/**
|
|
62
|
+
* Creation date of the dedicated connection (RFC 3339 format).
|
|
63
|
+
*/
|
|
64
|
+
readonly createdAt: string;
|
|
65
|
+
/**
|
|
66
|
+
* Demarcation details required by the data center to set up the Cross Connect.
|
|
67
|
+
*/
|
|
68
|
+
readonly demarcationInfo: string;
|
|
69
|
+
/**
|
|
70
|
+
* The provider-assigned unique ID for this managed resource.
|
|
71
|
+
*/
|
|
72
|
+
readonly id: string;
|
|
73
|
+
readonly name: string;
|
|
74
|
+
/**
|
|
75
|
+
* The ID of the organization the dedicated connection belongs to.
|
|
76
|
+
*/
|
|
77
|
+
readonly organizationId: string;
|
|
78
|
+
/**
|
|
79
|
+
* ID of the PoP where the dedicated connection is located.
|
|
80
|
+
*/
|
|
81
|
+
readonly popId: string;
|
|
82
|
+
/**
|
|
83
|
+
* The ID of the project the dedicated connection belongs to.
|
|
84
|
+
*/
|
|
85
|
+
readonly projectId: string;
|
|
86
|
+
readonly region?: string;
|
|
87
|
+
/**
|
|
88
|
+
* Status of the dedicated connection.
|
|
89
|
+
*/
|
|
90
|
+
readonly status: string;
|
|
91
|
+
/**
|
|
92
|
+
* List of tags associated with the dedicated connection.
|
|
93
|
+
*/
|
|
94
|
+
readonly tags: string[];
|
|
95
|
+
/**
|
|
96
|
+
* Last modification date of the dedicated connection (RFC 3339 format).
|
|
97
|
+
*/
|
|
98
|
+
readonly updatedAt: string;
|
|
99
|
+
/**
|
|
100
|
+
* VLAN range for self-hosted links. Contains `start` and `end`.
|
|
101
|
+
*/
|
|
102
|
+
readonly vlanRanges: outputs.interlink.GetDedicatedConnectionVlanRange[];
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* Gets information about an Interlink Dedicated Connection.
|
|
106
|
+
*
|
|
107
|
+
* A dedicated connection is a physical connection owned by the user at a PoP, used to create self-hosted links between your infrastructure and Scaleway.
|
|
108
|
+
*
|
|
109
|
+
* ## Example Usage
|
|
110
|
+
*
|
|
111
|
+
* ```typescript
|
|
112
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
113
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
114
|
+
*
|
|
115
|
+
* // Retrieve a dedicated connection by its ID
|
|
116
|
+
* const byId = scaleway.interlink.getDedicatedConnection({
|
|
117
|
+
* connectionId: "11111111-1111-1111-1111-111111111111",
|
|
118
|
+
* });
|
|
119
|
+
* ```
|
|
120
|
+
*
|
|
121
|
+
* ```typescript
|
|
122
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
123
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
124
|
+
*
|
|
125
|
+
* // Retrieve a dedicated connection by name
|
|
126
|
+
* const byName = scaleway.interlink.getDedicatedConnection({
|
|
127
|
+
* name: "my-dedicated-connection",
|
|
128
|
+
* });
|
|
129
|
+
* ```
|
|
130
|
+
*/
|
|
131
|
+
export declare function getDedicatedConnectionOutput(args?: GetDedicatedConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDedicatedConnectionResult>;
|
|
132
|
+
/**
|
|
133
|
+
* A collection of arguments for invoking getDedicatedConnection.
|
|
134
|
+
*/
|
|
135
|
+
export interface GetDedicatedConnectionOutputArgs {
|
|
136
|
+
/**
|
|
137
|
+
* The ID of the dedicated connection. Can be a plain UUID or a regional ID. Conflicts with `name`.
|
|
138
|
+
*/
|
|
139
|
+
connectionId?: pulumi.Input<string>;
|
|
140
|
+
/**
|
|
141
|
+
* The name of the dedicated connection to filter for. Conflicts with `connectionId`.
|
|
142
|
+
*/
|
|
143
|
+
name?: pulumi.Input<string>;
|
|
144
|
+
/**
|
|
145
|
+
* `region`) The region in which the dedicated connection exists.
|
|
146
|
+
*/
|
|
147
|
+
region?: pulumi.Input<string>;
|
|
148
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
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.getDedicatedConnectionOutput = exports.getDedicatedConnection = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Gets information about an Interlink Dedicated Connection.
|
|
10
|
+
*
|
|
11
|
+
* A dedicated connection is a physical connection owned by the user at a PoP, used to create self-hosted links between your infrastructure and Scaleway.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
18
|
+
*
|
|
19
|
+
* // Retrieve a dedicated connection by its ID
|
|
20
|
+
* const byId = scaleway.interlink.getDedicatedConnection({
|
|
21
|
+
* connectionId: "11111111-1111-1111-1111-111111111111",
|
|
22
|
+
* });
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* ```typescript
|
|
26
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
27
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
28
|
+
*
|
|
29
|
+
* // Retrieve a dedicated connection by name
|
|
30
|
+
* const byName = scaleway.interlink.getDedicatedConnection({
|
|
31
|
+
* name: "my-dedicated-connection",
|
|
32
|
+
* });
|
|
33
|
+
* ```
|
|
34
|
+
*/
|
|
35
|
+
function getDedicatedConnection(args, opts) {
|
|
36
|
+
args = args || {};
|
|
37
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
38
|
+
return pulumi.runtime.invoke("scaleway:interlink/getDedicatedConnection:getDedicatedConnection", {
|
|
39
|
+
"connectionId": args.connectionId,
|
|
40
|
+
"name": args.name,
|
|
41
|
+
"region": args.region,
|
|
42
|
+
}, opts);
|
|
43
|
+
}
|
|
44
|
+
exports.getDedicatedConnection = getDedicatedConnection;
|
|
45
|
+
/**
|
|
46
|
+
* Gets information about an Interlink Dedicated Connection.
|
|
47
|
+
*
|
|
48
|
+
* A dedicated connection is a physical connection owned by the user at a PoP, used to create self-hosted links between your infrastructure and Scaleway.
|
|
49
|
+
*
|
|
50
|
+
* ## Example Usage
|
|
51
|
+
*
|
|
52
|
+
* ```typescript
|
|
53
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
54
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
55
|
+
*
|
|
56
|
+
* // Retrieve a dedicated connection by its ID
|
|
57
|
+
* const byId = scaleway.interlink.getDedicatedConnection({
|
|
58
|
+
* connectionId: "11111111-1111-1111-1111-111111111111",
|
|
59
|
+
* });
|
|
60
|
+
* ```
|
|
61
|
+
*
|
|
62
|
+
* ```typescript
|
|
63
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
64
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
65
|
+
*
|
|
66
|
+
* // Retrieve a dedicated connection by name
|
|
67
|
+
* const byName = scaleway.interlink.getDedicatedConnection({
|
|
68
|
+
* name: "my-dedicated-connection",
|
|
69
|
+
* });
|
|
70
|
+
* ```
|
|
71
|
+
*/
|
|
72
|
+
function getDedicatedConnectionOutput(args, opts) {
|
|
73
|
+
args = args || {};
|
|
74
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
75
|
+
return pulumi.runtime.invokeOutput("scaleway:interlink/getDedicatedConnection:getDedicatedConnection", {
|
|
76
|
+
"connectionId": args.connectionId,
|
|
77
|
+
"name": args.name,
|
|
78
|
+
"region": args.region,
|
|
79
|
+
}, opts);
|
|
80
|
+
}
|
|
81
|
+
exports.getDedicatedConnectionOutput = getDedicatedConnectionOutput;
|
|
82
|
+
//# sourceMappingURL=getDedicatedConnection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getDedicatedConnection.js","sourceRoot":"","sources":["../../interlink/getDedicatedConnection.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,sBAAsB,CAAC,IAAiC,EAAE,IAA2B;IACjG,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kEAAkE,EAAE;QAC7F,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,wDAQC;AA4ED;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,4BAA4B,CAAC,IAAuC,EAAE,IAAiC;IACnH,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kEAAkE,EAAE;QACnG,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,oEAQC"}
|
package/interlink/index.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export { GetDedicatedConnectionArgs, GetDedicatedConnectionResult, GetDedicatedConnectionOutputArgs } from "./getDedicatedConnection";
|
|
2
|
+
export declare const getDedicatedConnection: typeof import("./getDedicatedConnection").getDedicatedConnection;
|
|
3
|
+
export declare const getDedicatedConnectionOutput: typeof import("./getDedicatedConnection").getDedicatedConnectionOutput;
|
|
1
4
|
export { GetLinkArgs, GetLinkResult, GetLinkOutputArgs } from "./getLink";
|
|
2
5
|
export declare const getLink: typeof import("./getLink").getLink;
|
|
3
6
|
export declare const getLinkOutput: typeof import("./getLink").getLinkOutput;
|
package/interlink/index.js
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
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.RoutingPolicy = exports.Link = exports.getRoutingPolicyOutput = exports.getRoutingPolicy = exports.getPopsOutput = exports.getPops = exports.getPopOutput = exports.getPop = exports.getPartnersOutput = exports.getPartners = exports.getPartnerOutput = exports.getPartner = exports.getLinkOutput = exports.getLink = void 0;
|
|
5
|
+
exports.RoutingPolicy = exports.Link = exports.getRoutingPolicyOutput = exports.getRoutingPolicy = exports.getPopsOutput = exports.getPops = exports.getPopOutput = exports.getPop = exports.getPartnersOutput = exports.getPartners = exports.getPartnerOutput = exports.getPartner = exports.getLinkOutput = exports.getLink = exports.getDedicatedConnectionOutput = exports.getDedicatedConnection = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
|
+
exports.getDedicatedConnection = null;
|
|
9
|
+
exports.getDedicatedConnectionOutput = null;
|
|
10
|
+
utilities.lazyLoad(exports, ["getDedicatedConnection", "getDedicatedConnectionOutput"], () => require("./getDedicatedConnection"));
|
|
8
11
|
exports.getLink = null;
|
|
9
12
|
exports.getLinkOutput = null;
|
|
10
13
|
utilities.lazyLoad(exports, ["getLink", "getLinkOutput"], () => require("./getLink"));
|
package/interlink/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../interlink/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAI7B,QAAA,OAAO,GAAuC,IAAW,CAAC;AAC1D,QAAA,aAAa,GAA6C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,EAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAGxE,QAAA,UAAU,GAA6C,IAAW,CAAC;AACnE,QAAA,gBAAgB,GAAmD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,EAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAGjF,QAAA,WAAW,GAA+C,IAAW,CAAC;AACtE,QAAA,iBAAiB,GAAqD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,EAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAGpF,QAAA,MAAM,GAAqC,IAAW,CAAC;AACvD,QAAA,YAAY,GAA2C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC;AAGrE,QAAA,OAAO,GAAuC,IAAW,CAAC;AAC1D,QAAA,aAAa,GAA6C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,EAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAGxE,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AACrF,QAAA,sBAAsB,GAA+D,IAAW,CAAC;AAC9G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,EAAC,wBAAwB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAInG,QAAA,IAAI,GAAiC,IAAW,CAAC;AAC9D,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC;AAIlD,QAAA,aAAa,GAAmD,IAAW,CAAC;AACzF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAGjF,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,8BAA8B;gBAC/B,OAAO,IAAI,YAAI,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClD,KAAK,gDAAgD;gBACjD,OAAO,IAAI,qBAAa,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3D;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../interlink/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAI7B,QAAA,sBAAsB,GAAqE,IAAW,CAAC;AACvG,QAAA,4BAA4B,GAA2E,IAAW,CAAC;AAChI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,wBAAwB,EAAC,8BAA8B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,0BAA0B,CAAC,CAAC,CAAC;AAGrH,QAAA,OAAO,GAAuC,IAAW,CAAC;AAC1D,QAAA,aAAa,GAA6C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,EAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAGxE,QAAA,UAAU,GAA6C,IAAW,CAAC;AACnE,QAAA,gBAAgB,GAAmD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,EAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAGjF,QAAA,WAAW,GAA+C,IAAW,CAAC;AACtE,QAAA,iBAAiB,GAAqD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,EAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAGpF,QAAA,MAAM,GAAqC,IAAW,CAAC;AACvD,QAAA,YAAY,GAA2C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC;AAGrE,QAAA,OAAO,GAAuC,IAAW,CAAC;AAC1D,QAAA,aAAa,GAA6C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,EAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAGxE,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AACrF,QAAA,sBAAsB,GAA+D,IAAW,CAAC;AAC9G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,EAAC,wBAAwB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAInG,QAAA,IAAI,GAAiC,IAAW,CAAC;AAC9D,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC;AAIlD,QAAA,aAAa,GAAmD,IAAW,CAAC;AACzF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAGjF,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,8BAA8B;gBAC/B,OAAO,IAAI,YAAI,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClD,KAAK,gDAAgD;gBACjD,OAAO,IAAI,qBAAa,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3D;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA"}
|
package/interlink/link.d.ts
CHANGED
|
@@ -10,6 +10,28 @@ import * as outputs from "../types/output";
|
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
13
|
+
* ### Basic
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
18
|
+
*
|
|
19
|
+
* const pop = scaleway.interlink.getPop({
|
|
20
|
+
* name: "Telehouse TH2",
|
|
21
|
+
* });
|
|
22
|
+
* const partner = scaleway.interlink.getPartner({
|
|
23
|
+
* name: "FranceIX",
|
|
24
|
+
* });
|
|
25
|
+
* const main = new scaleway.interlink.Link("main", {
|
|
26
|
+
* name: "my-hosted-link",
|
|
27
|
+
* popId: pop.then(pop => pop.id),
|
|
28
|
+
* partnerId: partner.then(partner => partner.id),
|
|
29
|
+
* bandwidthMbps: 50,
|
|
30
|
+
* });
|
|
31
|
+
* ```
|
|
32
|
+
*
|
|
33
|
+
* ### With VPC
|
|
34
|
+
*
|
|
13
35
|
* ```typescript
|
|
14
36
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
37
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
@@ -20,11 +42,13 @@ import * as outputs from "../types/output";
|
|
|
20
42
|
* const partner = scaleway.interlink.getPartner({
|
|
21
43
|
* name: "FranceIX",
|
|
22
44
|
* });
|
|
45
|
+
* const vpc = new scaleway.network.Vpc("vpc", {name: "my-vpc"});
|
|
23
46
|
* const main = new scaleway.interlink.Link("main", {
|
|
24
47
|
* name: "my-hosted-link",
|
|
25
48
|
* popId: pop.then(pop => pop.id),
|
|
26
49
|
* partnerId: partner.then(partner => partner.id),
|
|
27
50
|
* bandwidthMbps: 50,
|
|
51
|
+
* vpcId: vpc.id,
|
|
28
52
|
* });
|
|
29
53
|
* ```
|
|
30
54
|
*
|
|
@@ -73,9 +97,9 @@ export declare class Link extends pulumi.CustomResource {
|
|
|
73
97
|
*/
|
|
74
98
|
readonly createdAt: pulumi.Output<string>;
|
|
75
99
|
/**
|
|
76
|
-
* Defines whether route propagation is enabled or not.
|
|
100
|
+
* Defines whether route propagation is enabled or not. Defaults to `false`.
|
|
77
101
|
*/
|
|
78
|
-
readonly enableRoutePropagation: pulumi.Output<boolean>;
|
|
102
|
+
readonly enableRoutePropagation: pulumi.Output<boolean | undefined>;
|
|
79
103
|
/**
|
|
80
104
|
* Name of the link. If not provided, a name will be randomly generated.
|
|
81
105
|
*/
|
|
@@ -141,9 +165,9 @@ export declare class Link extends pulumi.CustomResource {
|
|
|
141
165
|
*/
|
|
142
166
|
readonly vlan: pulumi.Output<number>;
|
|
143
167
|
/**
|
|
144
|
-
* ID of the Scaleway VPC
|
|
168
|
+
* ID of the Scaleway VPC to attach to the link.
|
|
145
169
|
*/
|
|
146
|
-
readonly vpcId: pulumi.Output<string>;
|
|
170
|
+
readonly vpcId: pulumi.Output<string | undefined>;
|
|
147
171
|
/**
|
|
148
172
|
* Create a Link resource with the given unique name, arguments, and options.
|
|
149
173
|
*
|
|
@@ -178,7 +202,7 @@ export interface LinkState {
|
|
|
178
202
|
*/
|
|
179
203
|
createdAt?: pulumi.Input<string>;
|
|
180
204
|
/**
|
|
181
|
-
* Defines whether route propagation is enabled or not.
|
|
205
|
+
* Defines whether route propagation is enabled or not. Defaults to `false`.
|
|
182
206
|
*/
|
|
183
207
|
enableRoutePropagation?: pulumi.Input<boolean>;
|
|
184
208
|
/**
|
|
@@ -246,7 +270,7 @@ export interface LinkState {
|
|
|
246
270
|
*/
|
|
247
271
|
vlan?: pulumi.Input<number>;
|
|
248
272
|
/**
|
|
249
|
-
* ID of the Scaleway VPC
|
|
273
|
+
* ID of the Scaleway VPC to attach to the link.
|
|
250
274
|
*/
|
|
251
275
|
vpcId?: pulumi.Input<string>;
|
|
252
276
|
}
|
|
@@ -262,6 +286,10 @@ export interface LinkArgs {
|
|
|
262
286
|
* If set, creates a self-hosted link using this dedicated physical connection. Conflicts with `partnerId`.
|
|
263
287
|
*/
|
|
264
288
|
connectionId?: pulumi.Input<string>;
|
|
289
|
+
/**
|
|
290
|
+
* Defines whether route propagation is enabled or not. Defaults to `false`.
|
|
291
|
+
*/
|
|
292
|
+
enableRoutePropagation?: pulumi.Input<boolean>;
|
|
265
293
|
/**
|
|
266
294
|
* Name of the link. If not provided, a name will be randomly generated.
|
|
267
295
|
*/
|
|
@@ -302,4 +330,8 @@ export interface LinkArgs {
|
|
|
302
330
|
* For self-hosted links only, the VLAN ID. If the VLAN is not available (already taken or out of range), an error is returned.
|
|
303
331
|
*/
|
|
304
332
|
vlan?: pulumi.Input<number>;
|
|
333
|
+
/**
|
|
334
|
+
* ID of the Scaleway VPC to attach to the link.
|
|
335
|
+
*/
|
|
336
|
+
vpcId?: pulumi.Input<string>;
|
|
305
337
|
}
|
package/interlink/link.js
CHANGED
|
@@ -14,6 +14,28 @@ const utilities = require("../utilities");
|
|
|
14
14
|
*
|
|
15
15
|
* ## Example Usage
|
|
16
16
|
*
|
|
17
|
+
* ### Basic
|
|
18
|
+
*
|
|
19
|
+
* ```typescript
|
|
20
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
21
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
22
|
+
*
|
|
23
|
+
* const pop = scaleway.interlink.getPop({
|
|
24
|
+
* name: "Telehouse TH2",
|
|
25
|
+
* });
|
|
26
|
+
* const partner = scaleway.interlink.getPartner({
|
|
27
|
+
* name: "FranceIX",
|
|
28
|
+
* });
|
|
29
|
+
* const main = new scaleway.interlink.Link("main", {
|
|
30
|
+
* name: "my-hosted-link",
|
|
31
|
+
* popId: pop.then(pop => pop.id),
|
|
32
|
+
* partnerId: partner.then(partner => partner.id),
|
|
33
|
+
* bandwidthMbps: 50,
|
|
34
|
+
* });
|
|
35
|
+
* ```
|
|
36
|
+
*
|
|
37
|
+
* ### With VPC
|
|
38
|
+
*
|
|
17
39
|
* ```typescript
|
|
18
40
|
* import * as pulumi from "@pulumi/pulumi";
|
|
19
41
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
@@ -24,11 +46,13 @@ const utilities = require("../utilities");
|
|
|
24
46
|
* const partner = scaleway.interlink.getPartner({
|
|
25
47
|
* name: "FranceIX",
|
|
26
48
|
* });
|
|
49
|
+
* const vpc = new scaleway.network.Vpc("vpc", {name: "my-vpc"});
|
|
27
50
|
* const main = new scaleway.interlink.Link("main", {
|
|
28
51
|
* name: "my-hosted-link",
|
|
29
52
|
* popId: pop.then(pop => pop.id),
|
|
30
53
|
* partnerId: partner.then(partner => partner.id),
|
|
31
54
|
* bandwidthMbps: 50,
|
|
55
|
+
* vpcId: vpc.id,
|
|
32
56
|
* });
|
|
33
57
|
* ```
|
|
34
58
|
*
|
|
@@ -102,6 +126,7 @@ class Link extends pulumi.CustomResource {
|
|
|
102
126
|
}
|
|
103
127
|
resourceInputs["bandwidthMbps"] = args?.bandwidthMbps;
|
|
104
128
|
resourceInputs["connectionId"] = args?.connectionId;
|
|
129
|
+
resourceInputs["enableRoutePropagation"] = args?.enableRoutePropagation;
|
|
105
130
|
resourceInputs["name"] = args?.name;
|
|
106
131
|
resourceInputs["partnerId"] = args?.partnerId;
|
|
107
132
|
resourceInputs["peerAsn"] = args?.peerAsn;
|
|
@@ -112,17 +137,16 @@ class Link extends pulumi.CustomResource {
|
|
|
112
137
|
resourceInputs["routingPolicyV6Id"] = args?.routingPolicyV6Id;
|
|
113
138
|
resourceInputs["tags"] = args?.tags;
|
|
114
139
|
resourceInputs["vlan"] = args?.vlan;
|
|
140
|
+
resourceInputs["vpcId"] = args?.vpcId;
|
|
115
141
|
resourceInputs["bgpV4Status"] = undefined /*out*/;
|
|
116
142
|
resourceInputs["bgpV6Status"] = undefined /*out*/;
|
|
117
143
|
resourceInputs["createdAt"] = undefined /*out*/;
|
|
118
|
-
resourceInputs["enableRoutePropagation"] = undefined /*out*/;
|
|
119
144
|
resourceInputs["organizationId"] = undefined /*out*/;
|
|
120
145
|
resourceInputs["pairingKey"] = undefined /*out*/;
|
|
121
146
|
resourceInputs["peerBgpConfigs"] = undefined /*out*/;
|
|
122
147
|
resourceInputs["scwBgpConfigs"] = undefined /*out*/;
|
|
123
148
|
resourceInputs["status"] = undefined /*out*/;
|
|
124
149
|
resourceInputs["updatedAt"] = undefined /*out*/;
|
|
125
|
-
resourceInputs["vpcId"] = undefined /*out*/;
|
|
126
150
|
}
|
|
127
151
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
128
152
|
const secretOpts = { additionalSecretOutputs: ["pairingKey"] };
|
package/interlink/link.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"link.js","sourceRoot":"","sources":["../../interlink/link.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"link.js","sourceRoot":"","sources":["../../interlink/link.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0DG;AACH,MAAa,IAAK,SAAQ,MAAM,CAAC,cAAc;IAC3C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiB,EAAE,IAAmC;QAC/G,OAAO,IAAI,IAAI,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC3D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,IAAI,CAAC,YAAY,CAAC;IACrD,CAAC;IAuGD,YAAY,IAAY,EAAE,WAAkC,EAAE,IAAmC;QAC7F,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAoC,CAAC;YACnD,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,wBAAwB,CAAC,GAAG,KAAK,EAAE,sBAAsB,CAAC;YACzE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,EAAE,iBAAiB,CAAC;YAC/D,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,EAAE,iBAAiB,CAAC;YAC/D,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;SAC1C;aAAM;YACH,MAAM,IAAI,GAAG,WAAmC,CAAC;YACjD,IAAI,IAAI,EAAE,aAAa,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAChD,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;aAChE;YACD,IAAI,IAAI,EAAE,KAAK,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxC,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;YACtD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,wBAAwB,CAAC,GAAG,IAAI,EAAE,sBAAsB,CAAC;YACxE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,EAAE,iBAAiB,CAAC;YAC9D,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,EAAE,iBAAiB,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,gBAAgB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACrD,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACjD,cAAc,CAAC,gBAAgB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACrD,cAAc,CAAC,eAAe,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACpD,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC7C,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACnD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,YAAY,CAAC,EAAE,CAAC;QAC/D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,IAAI,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACzD,CAAC;;AAjML,oBAkMC;AApLG,gBAAgB;AACO,iBAAY,GAAG,8BAA8B,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumiverse/scaleway",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.48.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.
|
|
27
|
+
"version": "1.48.0",
|
|
28
28
|
"server": "github://api.github.com/pulumiverse"
|
|
29
29
|
}
|
|
30
30
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -8337,6 +8337,16 @@ export declare namespace instance {
|
|
|
8337
8337
|
}
|
|
8338
8338
|
}
|
|
8339
8339
|
export declare namespace interlink {
|
|
8340
|
+
interface GetDedicatedConnectionVlanRange {
|
|
8341
|
+
/**
|
|
8342
|
+
* End of the VLAN range
|
|
8343
|
+
*/
|
|
8344
|
+
end: number;
|
|
8345
|
+
/**
|
|
8346
|
+
* Start of the VLAN range
|
|
8347
|
+
*/
|
|
8348
|
+
start: number;
|
|
8349
|
+
}
|
|
8340
8350
|
interface GetLinkPeerBgpConfig {
|
|
8341
8351
|
/**
|
|
8342
8352
|
* AS Number of the BGP peer
|