@pulumi/fastly 5.1.0 → 6.0.0-alpha.1674790572
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/README.md +2 -2
- package/getDatacenters.js +1 -4
- package/getDatacenters.js.map +1 -1
- package/getFastlyIpRanges.js +1 -4
- package/getFastlyIpRanges.js.map +1 -1
- package/getServices.js +1 -4
- package/getServices.js.map +1 -1
- package/getTlsActivation.d.ts +22 -2
- package/getTlsActivation.js +24 -7
- package/getTlsActivation.js.map +1 -1
- package/getTlsActivationIds.d.ts +3 -0
- package/getTlsActivationIds.js +5 -5
- package/getTlsActivationIds.js.map +1 -1
- package/getTlsCertificate.d.ts +22 -2
- package/getTlsCertificate.js +24 -7
- package/getTlsCertificate.js.map +1 -1
- package/getTlsCertificateIds.d.ts +1 -1
- package/getTlsCertificateIds.js +2 -5
- package/getTlsCertificateIds.js.map +1 -1
- package/getTlsConfiguration.d.ts +22 -0
- package/getTlsConfiguration.js +24 -5
- package/getTlsConfiguration.js.map +1 -1
- package/getTlsConfigurationIds.js +1 -4
- package/getTlsConfigurationIds.js.map +1 -1
- package/getTlsDomain.d.ts +16 -2
- package/getTlsDomain.js +18 -7
- package/getTlsDomain.js.map +1 -1
- package/getTlsPlatformCertificate.d.ts +22 -2
- package/getTlsPlatformCertificate.js +24 -7
- package/getTlsPlatformCertificate.js.map +1 -1
- package/getTlsPlatformCertificateIds.d.ts +1 -1
- package/getTlsPlatformCertificateIds.js +2 -5
- package/getTlsPlatformCertificateIds.js.map +1 -1
- package/getTlsPrivateKey.d.ts +22 -0
- package/getTlsPrivateKey.js +24 -5
- package/getTlsPrivateKey.js.map +1 -1
- package/getTlsPrivateKeyIds.js +1 -4
- package/getTlsPrivateKeyIds.js.map +1 -1
- package/getTlsSubscription.d.ts +16 -2
- package/getTlsSubscription.js +18 -7
- package/getTlsSubscription.js.map +1 -1
- package/getTlsSubscriptionIds.js +1 -4
- package/getTlsSubscriptionIds.js.map +1 -1
- package/getWafRules.js +2 -5
- package/getWafRules.js.map +1 -1
- package/index.d.ts +15 -15
- package/index.js +31 -31
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/provider.js +10 -10
- package/provider.js.map +1 -1
- package/serviceACLEntries.js +22 -22
- package/serviceACLEntries.js.map +1 -1
- package/serviceAuthorization.js +22 -22
- package/serviceAuthorization.js.map +1 -1
- package/serviceCompute.d.ts +12 -0
- package/serviceCompute.js +24 -22
- package/serviceCompute.js.map +1 -1
- package/serviceDictionaryItems.js +22 -22
- package/serviceDictionaryItems.js.map +1 -1
- package/serviceDynamicSnippetContent.js +22 -22
- package/serviceDynamicSnippetContent.js.map +1 -1
- package/serviceVcl.d.ts +12 -195
- package/serviceVcl.js +24 -217
- package/serviceVcl.js.map +1 -1
- package/serviceWafConfiguration.js +22 -22
- package/serviceWafConfiguration.js.map +1 -1
- package/tlsActivation.js +22 -22
- package/tlsActivation.js.map +1 -1
- package/tlsCertificate.js +22 -22
- package/tlsCertificate.js.map +1 -1
- package/tlsPlatformCertificate.js +22 -22
- package/tlsPlatformCertificate.js.map +1 -1
- package/tlsPrivateKey.js +22 -22
- package/tlsPrivateKey.js.map +1 -1
- package/tlsSubscription.js +22 -22
- package/tlsSubscription.js.map +1 -1
- package/tlsSubscriptionValidation.js +17 -17
- package/tlsSubscriptionValidation.js.map +1 -1
- package/types/input.d.ts +33 -17
- package/types/output.d.ts +33 -17
- package/user.d.ts +1 -3
- package/user.js +22 -24
- package/user.js.map +1 -1
|
@@ -10,7 +10,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
10
10
|
*
|
|
11
11
|
* const exampleTlsPlatformCertificateIds = fastly.getTlsPlatformCertificateIds({});
|
|
12
12
|
* const exampleTlsPlatformCertificate = exampleTlsPlatformCertificateIds.then(exampleTlsPlatformCertificateIds => fastly.getTlsPlatformCertificate({
|
|
13
|
-
* id: exampleTlsPlatformCertificateIds.ids
|
|
13
|
+
* id: exampleTlsPlatformCertificateIds.ids?.[0],
|
|
14
14
|
* }));
|
|
15
15
|
* ```
|
|
16
16
|
*/
|
|
@@ -16,15 +16,12 @@ const utilities = require("./utilities");
|
|
|
16
16
|
*
|
|
17
17
|
* const exampleTlsPlatformCertificateIds = fastly.getTlsPlatformCertificateIds({});
|
|
18
18
|
* const exampleTlsPlatformCertificate = exampleTlsPlatformCertificateIds.then(exampleTlsPlatformCertificateIds => fastly.getTlsPlatformCertificate({
|
|
19
|
-
* id: exampleTlsPlatformCertificateIds.ids
|
|
19
|
+
* id: exampleTlsPlatformCertificateIds.ids?.[0],
|
|
20
20
|
* }));
|
|
21
21
|
* ```
|
|
22
22
|
*/
|
|
23
23
|
function getTlsPlatformCertificateIds(opts) {
|
|
24
|
-
|
|
25
|
-
opts = {};
|
|
26
|
-
}
|
|
27
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
24
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
28
25
|
return pulumi.runtime.invoke("fastly:index/getTlsPlatformCertificateIds:getTlsPlatformCertificateIds", {}, opts);
|
|
29
26
|
}
|
|
30
27
|
exports.getTlsPlatformCertificateIds = getTlsPlatformCertificateIds;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTlsPlatformCertificateIds.js","sourceRoot":"","sources":["../getTlsPlatformCertificateIds.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,4BAA4B,CAAC,IAA2B;
|
|
1
|
+
{"version":3,"file":"getTlsPlatformCertificateIds.js","sourceRoot":"","sources":["../getTlsPlatformCertificateIds.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,4BAA4B,CAAC,IAA2B;IAEpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wEAAwE,EAAE,EACtG,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oEAKC"}
|
package/getTlsPrivateKey.d.ts
CHANGED
|
@@ -84,6 +84,28 @@ export interface GetTlsPrivateKeyResult {
|
|
|
84
84
|
*/
|
|
85
85
|
readonly replace: boolean;
|
|
86
86
|
}
|
|
87
|
+
/**
|
|
88
|
+
* Use this data source to get information on a TLS Private Key uploaded to Fastly.
|
|
89
|
+
*
|
|
90
|
+
* > **Warning:** The data source's filters are applied using an **AND** boolean operator, so depending on the combination
|
|
91
|
+
* of filters, they may become mutually exclusive. The exception to this is `id` which must not be specified in combination
|
|
92
|
+
* with any of the others.
|
|
93
|
+
*
|
|
94
|
+
* > **Note:** If more or less than a single match is returned by the search, this provider will fail. Ensure that your search
|
|
95
|
+
* is specific enough to return a single key.
|
|
96
|
+
*
|
|
97
|
+
* ## Example Usage
|
|
98
|
+
*
|
|
99
|
+
* ```typescript
|
|
100
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
101
|
+
* import * as fastly from "@pulumi/fastly";
|
|
102
|
+
*
|
|
103
|
+
* const demo = fastly.getTlsPrivateKey({
|
|
104
|
+
* name: "demo-private-key",
|
|
105
|
+
* });
|
|
106
|
+
* export const privateKeyNeedsReplacing = demo.then(demo => demo.replace);
|
|
107
|
+
* ```
|
|
108
|
+
*/
|
|
87
109
|
export declare function getTlsPrivateKeyOutput(args?: GetTlsPrivateKeyOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetTlsPrivateKeyResult>;
|
|
88
110
|
/**
|
|
89
111
|
* A collection of arguments for invoking getTlsPrivateKey.
|
package/getTlsPrivateKey.js
CHANGED
|
@@ -29,10 +29,7 @@ const utilities = require("./utilities");
|
|
|
29
29
|
*/
|
|
30
30
|
function getTlsPrivateKey(args, opts) {
|
|
31
31
|
args = args || {};
|
|
32
|
-
|
|
33
|
-
opts = {};
|
|
34
|
-
}
|
|
35
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
32
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
36
33
|
return pulumi.runtime.invoke("fastly:index/getTlsPrivateKey:getTlsPrivateKey", {
|
|
37
34
|
"createdAt": args.createdAt,
|
|
38
35
|
"id": args.id,
|
|
@@ -43,8 +40,30 @@ function getTlsPrivateKey(args, opts) {
|
|
|
43
40
|
}, opts);
|
|
44
41
|
}
|
|
45
42
|
exports.getTlsPrivateKey = getTlsPrivateKey;
|
|
43
|
+
/**
|
|
44
|
+
* Use this data source to get information on a TLS Private Key uploaded to Fastly.
|
|
45
|
+
*
|
|
46
|
+
* > **Warning:** The data source's filters are applied using an **AND** boolean operator, so depending on the combination
|
|
47
|
+
* of filters, they may become mutually exclusive. The exception to this is `id` which must not be specified in combination
|
|
48
|
+
* with any of the others.
|
|
49
|
+
*
|
|
50
|
+
* > **Note:** If more or less than a single match is returned by the search, this provider will fail. Ensure that your search
|
|
51
|
+
* is specific enough to return a single key.
|
|
52
|
+
*
|
|
53
|
+
* ## Example Usage
|
|
54
|
+
*
|
|
55
|
+
* ```typescript
|
|
56
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
57
|
+
* import * as fastly from "@pulumi/fastly";
|
|
58
|
+
*
|
|
59
|
+
* const demo = fastly.getTlsPrivateKey({
|
|
60
|
+
* name: "demo-private-key",
|
|
61
|
+
* });
|
|
62
|
+
* export const privateKeyNeedsReplacing = demo.then(demo => demo.replace);
|
|
63
|
+
* ```
|
|
64
|
+
*/
|
|
46
65
|
function getTlsPrivateKeyOutput(args, opts) {
|
|
47
|
-
return pulumi.output(args).apply(a => getTlsPrivateKey(a, opts));
|
|
66
|
+
return pulumi.output(args).apply((a) => getTlsPrivateKey(a, opts));
|
|
48
67
|
}
|
|
49
68
|
exports.getTlsPrivateKeyOutput = getTlsPrivateKeyOutput;
|
|
50
69
|
//# sourceMappingURL=getTlsPrivateKey.js.map
|
package/getTlsPrivateKey.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTlsPrivateKey.js","sourceRoot":"","sources":["../getTlsPrivateKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"getTlsPrivateKey.js","sourceRoot":"","sources":["../getTlsPrivateKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gDAAgD,EAAE;QAC3E,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,4CAYC;AAiED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,sBAAsB,CAAC,IAAiC,EAAE,IAA2B;IACjG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,gBAAgB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3E,CAAC;AAFD,wDAEC"}
|
package/getTlsPrivateKeyIds.js
CHANGED
|
@@ -21,10 +21,7 @@ const utilities = require("./utilities");
|
|
|
21
21
|
* ```
|
|
22
22
|
*/
|
|
23
23
|
function getTlsPrivateKeyIds(opts) {
|
|
24
|
-
|
|
25
|
-
opts = {};
|
|
26
|
-
}
|
|
27
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
24
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
28
25
|
return pulumi.runtime.invoke("fastly:index/getTlsPrivateKeyIds:getTlsPrivateKeyIds", {}, opts);
|
|
29
26
|
}
|
|
30
27
|
exports.getTlsPrivateKeyIds = getTlsPrivateKeyIds;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTlsPrivateKeyIds.js","sourceRoot":"","sources":["../getTlsPrivateKeyIds.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,mBAAmB,CAAC,IAA2B;
|
|
1
|
+
{"version":3,"file":"getTlsPrivateKeyIds.js","sourceRoot":"","sources":["../getTlsPrivateKeyIds.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,mBAAmB,CAAC,IAA2B;IAE3D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE,EACpF,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kDAKC"}
|
package/getTlsSubscription.d.ts
CHANGED
|
@@ -8,9 +8,9 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
8
8
|
* import * as pulumi from "@pulumi/pulumi";
|
|
9
9
|
* import * as fastly from "@pulumi/fastly";
|
|
10
10
|
*
|
|
11
|
-
* const example =
|
|
11
|
+
* const example = fastly.getTlsSubscription({
|
|
12
12
|
* domains: ["example.com"],
|
|
13
|
-
* })
|
|
13
|
+
* });
|
|
14
14
|
* ```
|
|
15
15
|
*/
|
|
16
16
|
export declare function getTlsSubscription(args?: GetTlsSubscriptionArgs, opts?: pulumi.InvokeOptions): Promise<GetTlsSubscriptionResult>;
|
|
@@ -72,6 +72,20 @@ export interface GetTlsSubscriptionResult {
|
|
|
72
72
|
*/
|
|
73
73
|
readonly updatedAt: string;
|
|
74
74
|
}
|
|
75
|
+
/**
|
|
76
|
+
* Use this data source to get information about a TLS subscription.
|
|
77
|
+
*
|
|
78
|
+
* ## Example Usage
|
|
79
|
+
*
|
|
80
|
+
* ```typescript
|
|
81
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
82
|
+
* import * as fastly from "@pulumi/fastly";
|
|
83
|
+
*
|
|
84
|
+
* const example = fastly.getTlsSubscription({
|
|
85
|
+
* domains: ["example.com"],
|
|
86
|
+
* });
|
|
87
|
+
* ```
|
|
88
|
+
*/
|
|
75
89
|
export declare function getTlsSubscriptionOutput(args?: GetTlsSubscriptionOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetTlsSubscriptionResult>;
|
|
76
90
|
/**
|
|
77
91
|
* A collection of arguments for invoking getTlsSubscription.
|
package/getTlsSubscription.js
CHANGED
|
@@ -14,17 +14,14 @@ const utilities = require("./utilities");
|
|
|
14
14
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
15
|
* import * as fastly from "@pulumi/fastly";
|
|
16
16
|
*
|
|
17
|
-
* const example =
|
|
17
|
+
* const example = fastly.getTlsSubscription({
|
|
18
18
|
* domains: ["example.com"],
|
|
19
|
-
* })
|
|
19
|
+
* });
|
|
20
20
|
* ```
|
|
21
21
|
*/
|
|
22
22
|
function getTlsSubscription(args, opts) {
|
|
23
23
|
args = args || {};
|
|
24
|
-
|
|
25
|
-
opts = {};
|
|
26
|
-
}
|
|
27
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
24
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
28
25
|
return pulumi.runtime.invoke("fastly:index/getTlsSubscription:getTlsSubscription", {
|
|
29
26
|
"certificateAuthority": args.certificateAuthority,
|
|
30
27
|
"configurationId": args.configurationId,
|
|
@@ -33,8 +30,22 @@ function getTlsSubscription(args, opts) {
|
|
|
33
30
|
}, opts);
|
|
34
31
|
}
|
|
35
32
|
exports.getTlsSubscription = getTlsSubscription;
|
|
33
|
+
/**
|
|
34
|
+
* Use this data source to get information about a TLS subscription.
|
|
35
|
+
*
|
|
36
|
+
* ## Example Usage
|
|
37
|
+
*
|
|
38
|
+
* ```typescript
|
|
39
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
40
|
+
* import * as fastly from "@pulumi/fastly";
|
|
41
|
+
*
|
|
42
|
+
* const example = fastly.getTlsSubscription({
|
|
43
|
+
* domains: ["example.com"],
|
|
44
|
+
* });
|
|
45
|
+
* ```
|
|
46
|
+
*/
|
|
36
47
|
function getTlsSubscriptionOutput(args, opts) {
|
|
37
|
-
return pulumi.output(args).apply(a => getTlsSubscription(a, opts));
|
|
48
|
+
return pulumi.output(args).apply((a) => getTlsSubscription(a, opts));
|
|
38
49
|
}
|
|
39
50
|
exports.getTlsSubscriptionOutput = getTlsSubscriptionOutput;
|
|
40
51
|
//# sourceMappingURL=getTlsSubscription.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTlsSubscription.js","sourceRoot":"","sources":["../getTlsSubscription.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,kBAAkB,CAAC,IAA6B,EAAE,IAA2B;IACzF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"getTlsSubscription.js","sourceRoot":"","sources":["../getTlsSubscription.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,kBAAkB,CAAC,IAA6B,EAAE,IAA2B;IACzF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,gDAUC;AA6DD;;;;;;;;;;;;;GAaG;AACH,SAAgB,wBAAwB,CAAC,IAAmC,EAAE,IAA2B;IACrG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7E,CAAC;AAFD,4DAEC"}
|
package/getTlsSubscriptionIds.js
CHANGED
|
@@ -9,10 +9,7 @@ const utilities = require("./utilities");
|
|
|
9
9
|
* Use this data source to get the list of IDs of TLS Subscriptions in Fastly.
|
|
10
10
|
*/
|
|
11
11
|
function getTlsSubscriptionIds(opts) {
|
|
12
|
-
|
|
13
|
-
opts = {};
|
|
14
|
-
}
|
|
15
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
16
13
|
return pulumi.runtime.invoke("fastly:index/getTlsSubscriptionIds:getTlsSubscriptionIds", {}, opts);
|
|
17
14
|
}
|
|
18
15
|
exports.getTlsSubscriptionIds = getTlsSubscriptionIds;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTlsSubscriptionIds.js","sourceRoot":"","sources":["../getTlsSubscriptionIds.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAA2B;
|
|
1
|
+
{"version":3,"file":"getTlsSubscriptionIds.js","sourceRoot":"","sources":["../getTlsSubscriptionIds.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAA2B;IAE7D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE,EACxF,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sDAKC"}
|
package/getWafRules.js
CHANGED
|
@@ -7,10 +7,7 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
function getWafRules(args, opts) {
|
|
9
9
|
args = args || {};
|
|
10
|
-
|
|
11
|
-
opts = {};
|
|
12
|
-
}
|
|
13
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
10
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
14
11
|
return pulumi.runtime.invoke("fastly:index/getWafRules:getWafRules", {
|
|
15
12
|
"excludeModsecRuleIds": args.excludeModsecRuleIds,
|
|
16
13
|
"modsecRuleIds": args.modsecRuleIds,
|
|
@@ -20,7 +17,7 @@ function getWafRules(args, opts) {
|
|
|
20
17
|
}
|
|
21
18
|
exports.getWafRules = getWafRules;
|
|
22
19
|
function getWafRulesOutput(args, opts) {
|
|
23
|
-
return pulumi.output(args).apply(a => getWafRules(a, opts));
|
|
20
|
+
return pulumi.output(args).apply((a) => getWafRules(a, opts));
|
|
24
21
|
}
|
|
25
22
|
exports.getWafRulesOutput = getWafRulesOutput;
|
|
26
23
|
//# sourceMappingURL=getWafRules.js.map
|
package/getWafRules.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getWafRules.js","sourceRoot":"","sources":["../getWafRules.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"getWafRules.js","sourceRoot":"","sources":["../getWafRules.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,kCAUC;AAqDD,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
|
package/index.d.ts
CHANGED
|
@@ -42,49 +42,49 @@ export { GetWafRulesArgs, GetWafRulesResult, GetWafRulesOutputArgs } from "./get
|
|
|
42
42
|
export declare const getWafRules: typeof import("./getWafRules").getWafRules;
|
|
43
43
|
export declare const getWafRulesOutput: typeof import("./getWafRules").getWafRulesOutput;
|
|
44
44
|
export { ProviderArgs } from "./provider";
|
|
45
|
-
export
|
|
45
|
+
export type Provider = import("./provider").Provider;
|
|
46
46
|
export declare const Provider: typeof import("./provider").Provider;
|
|
47
47
|
export { ServiceACLEntriesArgs, ServiceACLEntriesState } from "./serviceACLEntries";
|
|
48
|
-
export
|
|
48
|
+
export type ServiceACLEntries = import("./serviceACLEntries").ServiceACLEntries;
|
|
49
49
|
export declare const ServiceACLEntries: typeof import("./serviceACLEntries").ServiceACLEntries;
|
|
50
50
|
export { ServiceAuthorizationArgs, ServiceAuthorizationState } from "./serviceAuthorization";
|
|
51
|
-
export
|
|
51
|
+
export type ServiceAuthorization = import("./serviceAuthorization").ServiceAuthorization;
|
|
52
52
|
export declare const ServiceAuthorization: typeof import("./serviceAuthorization").ServiceAuthorization;
|
|
53
53
|
export { ServiceComputeArgs, ServiceComputeState } from "./serviceCompute";
|
|
54
|
-
export
|
|
54
|
+
export type ServiceCompute = import("./serviceCompute").ServiceCompute;
|
|
55
55
|
export declare const ServiceCompute: typeof import("./serviceCompute").ServiceCompute;
|
|
56
56
|
export { ServiceDictionaryItemsArgs, ServiceDictionaryItemsState } from "./serviceDictionaryItems";
|
|
57
|
-
export
|
|
57
|
+
export type ServiceDictionaryItems = import("./serviceDictionaryItems").ServiceDictionaryItems;
|
|
58
58
|
export declare const ServiceDictionaryItems: typeof import("./serviceDictionaryItems").ServiceDictionaryItems;
|
|
59
59
|
export { ServiceDynamicSnippetContentArgs, ServiceDynamicSnippetContentState } from "./serviceDynamicSnippetContent";
|
|
60
|
-
export
|
|
60
|
+
export type ServiceDynamicSnippetContent = import("./serviceDynamicSnippetContent").ServiceDynamicSnippetContent;
|
|
61
61
|
export declare const ServiceDynamicSnippetContent: typeof import("./serviceDynamicSnippetContent").ServiceDynamicSnippetContent;
|
|
62
62
|
export { ServiceVclArgs, ServiceVclState } from "./serviceVcl";
|
|
63
|
-
export
|
|
63
|
+
export type ServiceVcl = import("./serviceVcl").ServiceVcl;
|
|
64
64
|
export declare const ServiceVcl: typeof import("./serviceVcl").ServiceVcl;
|
|
65
65
|
export { ServiceWafConfigurationArgs, ServiceWafConfigurationState } from "./serviceWafConfiguration";
|
|
66
|
-
export
|
|
66
|
+
export type ServiceWafConfiguration = import("./serviceWafConfiguration").ServiceWafConfiguration;
|
|
67
67
|
export declare const ServiceWafConfiguration: typeof import("./serviceWafConfiguration").ServiceWafConfiguration;
|
|
68
68
|
export { TlsActivationArgs, TlsActivationState } from "./tlsActivation";
|
|
69
|
-
export
|
|
69
|
+
export type TlsActivation = import("./tlsActivation").TlsActivation;
|
|
70
70
|
export declare const TlsActivation: typeof import("./tlsActivation").TlsActivation;
|
|
71
71
|
export { TlsCertificateArgs, TlsCertificateState } from "./tlsCertificate";
|
|
72
|
-
export
|
|
72
|
+
export type TlsCertificate = import("./tlsCertificate").TlsCertificate;
|
|
73
73
|
export declare const TlsCertificate: typeof import("./tlsCertificate").TlsCertificate;
|
|
74
74
|
export { TlsPlatformCertificateArgs, TlsPlatformCertificateState } from "./tlsPlatformCertificate";
|
|
75
|
-
export
|
|
75
|
+
export type TlsPlatformCertificate = import("./tlsPlatformCertificate").TlsPlatformCertificate;
|
|
76
76
|
export declare const TlsPlatformCertificate: typeof import("./tlsPlatformCertificate").TlsPlatformCertificate;
|
|
77
77
|
export { TlsPrivateKeyArgs, TlsPrivateKeyState } from "./tlsPrivateKey";
|
|
78
|
-
export
|
|
78
|
+
export type TlsPrivateKey = import("./tlsPrivateKey").TlsPrivateKey;
|
|
79
79
|
export declare const TlsPrivateKey: typeof import("./tlsPrivateKey").TlsPrivateKey;
|
|
80
80
|
export { TlsSubscriptionArgs, TlsSubscriptionState } from "./tlsSubscription";
|
|
81
|
-
export
|
|
81
|
+
export type TlsSubscription = import("./tlsSubscription").TlsSubscription;
|
|
82
82
|
export declare const TlsSubscription: typeof import("./tlsSubscription").TlsSubscription;
|
|
83
83
|
export { TlsSubscriptionValidationArgs, TlsSubscriptionValidationState } from "./tlsSubscriptionValidation";
|
|
84
|
-
export
|
|
84
|
+
export type TlsSubscriptionValidation = import("./tlsSubscriptionValidation").TlsSubscriptionValidation;
|
|
85
85
|
export declare const TlsSubscriptionValidation: typeof import("./tlsSubscriptionValidation").TlsSubscriptionValidation;
|
|
86
86
|
export { UserArgs, UserState } from "./user";
|
|
87
|
-
export
|
|
87
|
+
export type User = import("./user").User;
|
|
88
88
|
export declare const User: typeof import("./user").User;
|
|
89
89
|
import * as config from "./config";
|
|
90
90
|
import * as types from "./types";
|
package/index.js
CHANGED
|
@@ -6,77 +6,77 @@ exports.types = exports.config = exports.User = exports.TlsSubscriptionValidatio
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
exports.getDatacenters = null;
|
|
9
|
+
utilities.lazyLoad(exports, ["getDatacenters"], () => require("./getDatacenters"));
|
|
9
10
|
exports.getFastlyIpRanges = null;
|
|
11
|
+
utilities.lazyLoad(exports, ["getFastlyIpRanges"], () => require("./getFastlyIpRanges"));
|
|
10
12
|
exports.getServices = null;
|
|
13
|
+
utilities.lazyLoad(exports, ["getServices"], () => require("./getServices"));
|
|
11
14
|
exports.getTlsActivation = null;
|
|
12
15
|
exports.getTlsActivationOutput = null;
|
|
16
|
+
utilities.lazyLoad(exports, ["getTlsActivation", "getTlsActivationOutput"], () => require("./getTlsActivation"));
|
|
13
17
|
exports.getTlsActivationIds = null;
|
|
14
18
|
exports.getTlsActivationIdsOutput = null;
|
|
19
|
+
utilities.lazyLoad(exports, ["getTlsActivationIds", "getTlsActivationIdsOutput"], () => require("./getTlsActivationIds"));
|
|
15
20
|
exports.getTlsCertificate = null;
|
|
16
21
|
exports.getTlsCertificateOutput = null;
|
|
22
|
+
utilities.lazyLoad(exports, ["getTlsCertificate", "getTlsCertificateOutput"], () => require("./getTlsCertificate"));
|
|
17
23
|
exports.getTlsCertificateIds = null;
|
|
24
|
+
utilities.lazyLoad(exports, ["getTlsCertificateIds"], () => require("./getTlsCertificateIds"));
|
|
18
25
|
exports.getTlsConfiguration = null;
|
|
19
26
|
exports.getTlsConfigurationOutput = null;
|
|
27
|
+
utilities.lazyLoad(exports, ["getTlsConfiguration", "getTlsConfigurationOutput"], () => require("./getTlsConfiguration"));
|
|
20
28
|
exports.getTlsConfigurationIds = null;
|
|
29
|
+
utilities.lazyLoad(exports, ["getTlsConfigurationIds"], () => require("./getTlsConfigurationIds"));
|
|
21
30
|
exports.getTlsDomain = null;
|
|
22
31
|
exports.getTlsDomainOutput = null;
|
|
32
|
+
utilities.lazyLoad(exports, ["getTlsDomain", "getTlsDomainOutput"], () => require("./getTlsDomain"));
|
|
23
33
|
exports.getTlsPlatformCertificate = null;
|
|
24
34
|
exports.getTlsPlatformCertificateOutput = null;
|
|
35
|
+
utilities.lazyLoad(exports, ["getTlsPlatformCertificate", "getTlsPlatformCertificateOutput"], () => require("./getTlsPlatformCertificate"));
|
|
25
36
|
exports.getTlsPlatformCertificateIds = null;
|
|
37
|
+
utilities.lazyLoad(exports, ["getTlsPlatformCertificateIds"], () => require("./getTlsPlatformCertificateIds"));
|
|
26
38
|
exports.getTlsPrivateKey = null;
|
|
27
39
|
exports.getTlsPrivateKeyOutput = null;
|
|
40
|
+
utilities.lazyLoad(exports, ["getTlsPrivateKey", "getTlsPrivateKeyOutput"], () => require("./getTlsPrivateKey"));
|
|
28
41
|
exports.getTlsPrivateKeyIds = null;
|
|
42
|
+
utilities.lazyLoad(exports, ["getTlsPrivateKeyIds"], () => require("./getTlsPrivateKeyIds"));
|
|
29
43
|
exports.getTlsSubscription = null;
|
|
30
44
|
exports.getTlsSubscriptionOutput = null;
|
|
45
|
+
utilities.lazyLoad(exports, ["getTlsSubscription", "getTlsSubscriptionOutput"], () => require("./getTlsSubscription"));
|
|
31
46
|
exports.getTlsSubscriptionIds = null;
|
|
47
|
+
utilities.lazyLoad(exports, ["getTlsSubscriptionIds"], () => require("./getTlsSubscriptionIds"));
|
|
32
48
|
exports.getWafRules = null;
|
|
33
49
|
exports.getWafRulesOutput = null;
|
|
34
|
-
exports.Provider = null;
|
|
35
|
-
exports.ServiceACLEntries = null;
|
|
36
|
-
exports.ServiceAuthorization = null;
|
|
37
|
-
exports.ServiceCompute = null;
|
|
38
|
-
exports.ServiceDictionaryItems = null;
|
|
39
|
-
exports.ServiceDynamicSnippetContent = null;
|
|
40
|
-
exports.ServiceVcl = null;
|
|
41
|
-
exports.ServiceWafConfiguration = null;
|
|
42
|
-
exports.TlsActivation = null;
|
|
43
|
-
exports.TlsCertificate = null;
|
|
44
|
-
exports.TlsPlatformCertificate = null;
|
|
45
|
-
exports.TlsPrivateKey = null;
|
|
46
|
-
exports.TlsSubscription = null;
|
|
47
|
-
exports.TlsSubscriptionValidation = null;
|
|
48
|
-
exports.User = null;
|
|
49
|
-
utilities.lazyLoad(exports, ["getDatacenters"], () => require("./getDatacenters"));
|
|
50
|
-
utilities.lazyLoad(exports, ["getFastlyIpRanges"], () => require("./getFastlyIpRanges"));
|
|
51
|
-
utilities.lazyLoad(exports, ["getServices"], () => require("./getServices"));
|
|
52
|
-
utilities.lazyLoad(exports, ["getTlsActivation", "getTlsActivationOutput"], () => require("./getTlsActivation"));
|
|
53
|
-
utilities.lazyLoad(exports, ["getTlsActivationIds", "getTlsActivationIdsOutput"], () => require("./getTlsActivationIds"));
|
|
54
|
-
utilities.lazyLoad(exports, ["getTlsCertificate", "getTlsCertificateOutput"], () => require("./getTlsCertificate"));
|
|
55
|
-
utilities.lazyLoad(exports, ["getTlsCertificateIds"], () => require("./getTlsCertificateIds"));
|
|
56
|
-
utilities.lazyLoad(exports, ["getTlsConfiguration", "getTlsConfigurationOutput"], () => require("./getTlsConfiguration"));
|
|
57
|
-
utilities.lazyLoad(exports, ["getTlsConfigurationIds"], () => require("./getTlsConfigurationIds"));
|
|
58
|
-
utilities.lazyLoad(exports, ["getTlsDomain", "getTlsDomainOutput"], () => require("./getTlsDomain"));
|
|
59
|
-
utilities.lazyLoad(exports, ["getTlsPlatformCertificate", "getTlsPlatformCertificateOutput"], () => require("./getTlsPlatformCertificate"));
|
|
60
|
-
utilities.lazyLoad(exports, ["getTlsPlatformCertificateIds"], () => require("./getTlsPlatformCertificateIds"));
|
|
61
|
-
utilities.lazyLoad(exports, ["getTlsPrivateKey", "getTlsPrivateKeyOutput"], () => require("./getTlsPrivateKey"));
|
|
62
|
-
utilities.lazyLoad(exports, ["getTlsPrivateKeyIds"], () => require("./getTlsPrivateKeyIds"));
|
|
63
|
-
utilities.lazyLoad(exports, ["getTlsSubscription", "getTlsSubscriptionOutput"], () => require("./getTlsSubscription"));
|
|
64
|
-
utilities.lazyLoad(exports, ["getTlsSubscriptionIds"], () => require("./getTlsSubscriptionIds"));
|
|
65
50
|
utilities.lazyLoad(exports, ["getWafRules", "getWafRulesOutput"], () => require("./getWafRules"));
|
|
51
|
+
exports.Provider = null;
|
|
66
52
|
utilities.lazyLoad(exports, ["Provider"], () => require("./provider"));
|
|
53
|
+
exports.ServiceACLEntries = null;
|
|
67
54
|
utilities.lazyLoad(exports, ["ServiceACLEntries"], () => require("./serviceACLEntries"));
|
|
55
|
+
exports.ServiceAuthorization = null;
|
|
68
56
|
utilities.lazyLoad(exports, ["ServiceAuthorization"], () => require("./serviceAuthorization"));
|
|
57
|
+
exports.ServiceCompute = null;
|
|
69
58
|
utilities.lazyLoad(exports, ["ServiceCompute"], () => require("./serviceCompute"));
|
|
59
|
+
exports.ServiceDictionaryItems = null;
|
|
70
60
|
utilities.lazyLoad(exports, ["ServiceDictionaryItems"], () => require("./serviceDictionaryItems"));
|
|
61
|
+
exports.ServiceDynamicSnippetContent = null;
|
|
71
62
|
utilities.lazyLoad(exports, ["ServiceDynamicSnippetContent"], () => require("./serviceDynamicSnippetContent"));
|
|
63
|
+
exports.ServiceVcl = null;
|
|
72
64
|
utilities.lazyLoad(exports, ["ServiceVcl"], () => require("./serviceVcl"));
|
|
65
|
+
exports.ServiceWafConfiguration = null;
|
|
73
66
|
utilities.lazyLoad(exports, ["ServiceWafConfiguration"], () => require("./serviceWafConfiguration"));
|
|
67
|
+
exports.TlsActivation = null;
|
|
74
68
|
utilities.lazyLoad(exports, ["TlsActivation"], () => require("./tlsActivation"));
|
|
69
|
+
exports.TlsCertificate = null;
|
|
75
70
|
utilities.lazyLoad(exports, ["TlsCertificate"], () => require("./tlsCertificate"));
|
|
71
|
+
exports.TlsPlatformCertificate = null;
|
|
76
72
|
utilities.lazyLoad(exports, ["TlsPlatformCertificate"], () => require("./tlsPlatformCertificate"));
|
|
73
|
+
exports.TlsPrivateKey = null;
|
|
77
74
|
utilities.lazyLoad(exports, ["TlsPrivateKey"], () => require("./tlsPrivateKey"));
|
|
75
|
+
exports.TlsSubscription = null;
|
|
78
76
|
utilities.lazyLoad(exports, ["TlsSubscription"], () => require("./tlsSubscription"));
|
|
77
|
+
exports.TlsSubscriptionValidation = null;
|
|
79
78
|
utilities.lazyLoad(exports, ["TlsSubscriptionValidation"], () => require("./tlsSubscriptionValidation"));
|
|
79
|
+
exports.User = null;
|
|
80
80
|
utilities.lazyLoad(exports, ["User"], () => require("./user"));
|
|
81
81
|
// Export sub-modules:
|
|
82
82
|
const config = require("./config");
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAI5B,QAAA,cAAc,GAAqD,IAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/fastly",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "v6.0.0-alpha.1674790572+411e1204",
|
|
4
4
|
"description": "A Pulumi package for creating and managing fastly cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource fastly
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource fastly v6.0.0-alpha.1674790572+411e1204"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/fastly",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "v6.0.0-alpha.1674790572+411e1204",
|
|
4
4
|
"description": "A Pulumi package for creating and managing fastly cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource fastly
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource fastly v6.0.0-alpha.1674790572+411e1204"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/provider.js
CHANGED
|
@@ -12,6 +12,16 @@ const utilities = require("./utilities");
|
|
|
12
12
|
* [documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information.
|
|
13
13
|
*/
|
|
14
14
|
class Provider extends pulumi.ProviderResource {
|
|
15
|
+
/**
|
|
16
|
+
* Returns true if the given object is an instance of Provider. This is designed to work even
|
|
17
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
18
|
+
*/
|
|
19
|
+
static isInstance(obj) {
|
|
20
|
+
if (obj === undefined || obj === null) {
|
|
21
|
+
return false;
|
|
22
|
+
}
|
|
23
|
+
return obj['__pulumiType'] === Provider.__pulumiType;
|
|
24
|
+
}
|
|
15
25
|
/**
|
|
16
26
|
* Create a Provider resource with the given unique name, arguments, and options.
|
|
17
27
|
*
|
|
@@ -31,16 +41,6 @@ class Provider extends pulumi.ProviderResource {
|
|
|
31
41
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
32
42
|
super(Provider.__pulumiType, name, resourceInputs, opts);
|
|
33
43
|
}
|
|
34
|
-
/**
|
|
35
|
-
* Returns true if the given object is an instance of Provider. This is designed to work even
|
|
36
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
37
|
-
*/
|
|
38
|
-
static isInstance(obj) {
|
|
39
|
-
if (obj === undefined || obj === null) {
|
|
40
|
-
return false;
|
|
41
|
-
}
|
|
42
|
-
return obj['__pulumiType'] === Provider.__pulumiType;
|
|
43
|
-
}
|
|
44
44
|
}
|
|
45
45
|
exports.Provider = Provider;
|
|
46
46
|
/** @internal */
|
package/provider.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;GAKG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,gBAAgB;
|
|
1
|
+
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;GAKG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,gBAAgB;IAIjD;;;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,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;IAWD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAmB,EAAE,IAA6B;QACxE,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB;YACI,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;YACvG,cAAc,CAAC,QAAQ,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;SAClG;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7D,CAAC;;AA1CL,4BA2CC;AA1CG,gBAAgB;AACO,qBAAY,GAAG,QAAQ,CAAC"}
|