@pulumi/fastly 3.13.0 → 4.0.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/config/index.js +5 -1
- package/config/index.js.map +1 -1
- package/getDatacenters.d.ts +19 -0
- package/getDatacenters.js +19 -0
- package/getDatacenters.js.map +1 -0
- package/index.d.ts +6 -5
- package/index.js +31 -26
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/serviceACLEntries.d.ts +96 -0
- package/{serviceACLEntriesv1.js → serviceACLEntries.js} +16 -12
- package/serviceACLEntries.js.map +1 -0
- package/serviceCompute.d.ts +30 -30
- package/serviceCompute.js +20 -20
- package/serviceCompute.js.map +1 -1
- package/serviceDictionaryItems.d.ts +103 -0
- package/serviceDictionaryItems.js +74 -0
- package/serviceDictionaryItems.js.map +1 -0
- package/{serviceDynamicSnippetContentv1.d.ts → serviceDynamicSnippetContent.d.ts} +27 -21
- package/{serviceDynamicSnippetContentv1.js → serviceDynamicSnippetContent.js} +16 -20
- package/serviceDynamicSnippetContent.js.map +1 -0
- package/{servicev1.d.ts → serviceVcl.d.ts} +145 -144
- package/{servicev1.js → serviceVcl.js} +40 -39
- package/serviceVcl.js.map +1 -0
- package/serviceWafConfiguration.d.ts +11 -11
- package/serviceWafConfiguration.js +11 -11
- package/tlsActivation.d.ts +2 -2
- package/tlsActivation.js +2 -2
- package/tlsSubscriptionValidation.d.ts +2 -2
- package/tlsSubscriptionValidation.js +2 -2
- package/types/input.d.ts +767 -777
- package/types/output.d.ts +772 -776
- package/{userv1.d.ts → user.d.ts} +13 -13
- package/{userv1.js → user.js} +12 -12
- package/user.js.map +1 -0
- package/serviceACLEntriesv1.d.ts +0 -82
- package/serviceACLEntriesv1.js.map +0 -1
- package/serviceDictionaryItemsv1.d.ts +0 -121
- package/serviceDictionaryItemsv1.js +0 -102
- package/serviceDictionaryItemsv1.js.map +0 -1
- package/serviceDynamicSnippetContentv1.js.map +0 -1
- package/servicev1.js.map +0 -1
- package/userv1.js.map +0 -1
|
@@ -12,7 +12,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
12
12
|
* import * as pulumi from "@pulumi/pulumi";
|
|
13
13
|
* import * as fastly from "@pulumi/fastly";
|
|
14
14
|
*
|
|
15
|
-
* const demo = new fastly.
|
|
15
|
+
* const demo = new fastly.User("demo", {
|
|
16
16
|
* login: "demo@example.com",
|
|
17
17
|
* });
|
|
18
18
|
* ```
|
|
@@ -22,12 +22,12 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
22
22
|
* A Fastly User can be imported using their user ID, e.g.
|
|
23
23
|
*
|
|
24
24
|
* ```sh
|
|
25
|
-
* $ pulumi import fastly:index/
|
|
25
|
+
* $ pulumi import fastly:index/user:User demo xxxxxxxxxxxxxxxxxxxx
|
|
26
26
|
* ```
|
|
27
27
|
*/
|
|
28
|
-
export declare class
|
|
28
|
+
export declare class User extends pulumi.CustomResource {
|
|
29
29
|
/**
|
|
30
|
-
* Get an existing
|
|
30
|
+
* Get an existing User resource's state with the given name, ID, and optional extra
|
|
31
31
|
* properties used to qualify the lookup.
|
|
32
32
|
*
|
|
33
33
|
* @param name The _unique_ name of the resulting resource.
|
|
@@ -35,12 +35,12 @@ export declare class Userv1 extends pulumi.CustomResource {
|
|
|
35
35
|
* @param state Any extra arguments used during the lookup.
|
|
36
36
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
37
37
|
*/
|
|
38
|
-
static get(name: string, id: pulumi.Input<pulumi.ID>, state?:
|
|
38
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: UserState, opts?: pulumi.CustomResourceOptions): User;
|
|
39
39
|
/**
|
|
40
|
-
* Returns true if the given object is an instance of
|
|
40
|
+
* Returns true if the given object is an instance of User. This is designed to work even
|
|
41
41
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
42
42
|
*/
|
|
43
|
-
static isInstance(obj: any): obj is
|
|
43
|
+
static isInstance(obj: any): obj is User;
|
|
44
44
|
/**
|
|
45
45
|
* The email address, which is the login name, of the User
|
|
46
46
|
*/
|
|
@@ -54,18 +54,18 @@ export declare class Userv1 extends pulumi.CustomResource {
|
|
|
54
54
|
*/
|
|
55
55
|
readonly role: pulumi.Output<string | undefined>;
|
|
56
56
|
/**
|
|
57
|
-
* Create a
|
|
57
|
+
* Create a User resource with the given unique name, arguments, and options.
|
|
58
58
|
*
|
|
59
59
|
* @param name The _unique_ name of the resource.
|
|
60
60
|
* @param args The arguments to use to populate this resource's properties.
|
|
61
61
|
* @param opts A bag of options that control this resource's behavior.
|
|
62
62
|
*/
|
|
63
|
-
constructor(name: string, args:
|
|
63
|
+
constructor(name: string, args: UserArgs, opts?: pulumi.CustomResourceOptions);
|
|
64
64
|
}
|
|
65
65
|
/**
|
|
66
|
-
* Input properties used for looking up and filtering
|
|
66
|
+
* Input properties used for looking up and filtering User resources.
|
|
67
67
|
*/
|
|
68
|
-
export interface
|
|
68
|
+
export interface UserState {
|
|
69
69
|
/**
|
|
70
70
|
* The email address, which is the login name, of the User
|
|
71
71
|
*/
|
|
@@ -80,9 +80,9 @@ export interface Userv1State {
|
|
|
80
80
|
role?: pulumi.Input<string>;
|
|
81
81
|
}
|
|
82
82
|
/**
|
|
83
|
-
* The set of arguments for constructing a
|
|
83
|
+
* The set of arguments for constructing a User resource.
|
|
84
84
|
*/
|
|
85
|
-
export interface
|
|
85
|
+
export interface UserArgs {
|
|
86
86
|
/**
|
|
87
87
|
* The email address, which is the login name, of the User
|
|
88
88
|
*/
|
package/{userv1.js → user.js}
RENAMED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.
|
|
5
|
+
exports.User = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -18,7 +18,7 @@ const utilities = require("./utilities");
|
|
|
18
18
|
* import * as pulumi from "@pulumi/pulumi";
|
|
19
19
|
* import * as fastly from "@pulumi/fastly";
|
|
20
20
|
*
|
|
21
|
-
* const demo = new fastly.
|
|
21
|
+
* const demo = new fastly.User("demo", {
|
|
22
22
|
* login: "demo@example.com",
|
|
23
23
|
* });
|
|
24
24
|
* ```
|
|
@@ -28,10 +28,10 @@ const utilities = require("./utilities");
|
|
|
28
28
|
* A Fastly User can be imported using their user ID, e.g.
|
|
29
29
|
*
|
|
30
30
|
* ```sh
|
|
31
|
-
* $ pulumi import fastly:index/
|
|
31
|
+
* $ pulumi import fastly:index/user:User demo xxxxxxxxxxxxxxxxxxxx
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
|
-
class
|
|
34
|
+
class User extends pulumi.CustomResource {
|
|
35
35
|
constructor(name, argsOrState, opts) {
|
|
36
36
|
let resourceInputs = {};
|
|
37
37
|
opts = opts || {};
|
|
@@ -51,10 +51,10 @@ class Userv1 extends pulumi.CustomResource {
|
|
|
51
51
|
resourceInputs["role"] = args ? args.role : undefined;
|
|
52
52
|
}
|
|
53
53
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
54
|
-
super(
|
|
54
|
+
super(User.__pulumiType, name, resourceInputs, opts);
|
|
55
55
|
}
|
|
56
56
|
/**
|
|
57
|
-
* Get an existing
|
|
57
|
+
* Get an existing User resource's state with the given name, ID, and optional extra
|
|
58
58
|
* properties used to qualify the lookup.
|
|
59
59
|
*
|
|
60
60
|
* @param name The _unique_ name of the resulting resource.
|
|
@@ -63,20 +63,20 @@ class Userv1 extends pulumi.CustomResource {
|
|
|
63
63
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
64
64
|
*/
|
|
65
65
|
static get(name, id, state, opts) {
|
|
66
|
-
return new
|
|
66
|
+
return new User(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
67
67
|
}
|
|
68
68
|
/**
|
|
69
|
-
* Returns true if the given object is an instance of
|
|
69
|
+
* Returns true if the given object is an instance of User. This is designed to work even
|
|
70
70
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
71
71
|
*/
|
|
72
72
|
static isInstance(obj) {
|
|
73
73
|
if (obj === undefined || obj === null) {
|
|
74
74
|
return false;
|
|
75
75
|
}
|
|
76
|
-
return obj['__pulumiType'] ===
|
|
76
|
+
return obj['__pulumiType'] === User.__pulumiType;
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
|
-
exports.
|
|
79
|
+
exports.User = User;
|
|
80
80
|
/** @internal */
|
|
81
|
-
|
|
82
|
-
//# sourceMappingURL=
|
|
81
|
+
User.__pulumiType = 'fastly:index/user:User';
|
|
82
|
+
//# sourceMappingURL=user.js.map
|
package/user.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"user.js","sourceRoot":"","sources":["../user.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAa,IAAK,SAAQ,MAAM,CAAC,cAAc;IAiD3C,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,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAmC,CAAC;YACjD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,IAAI,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACzD,CAAC;IAnED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiB,EAAE,IAAmC;QAC/G,OAAO,IAAI,IAAI,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,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;;AA1BL,oBAqEC;AAvDG,gBAAgB;AACO,iBAAY,GAAG,wBAAwB,CAAC"}
|
package/serviceACLEntriesv1.d.ts
DELETED
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import { input as inputs, output as outputs } from "./types";
|
|
3
|
-
/**
|
|
4
|
-
* ## Import
|
|
5
|
-
*
|
|
6
|
-
* This is an example of the import command being applied to the resource named `fastly_service_acl_entries_v1.entries` The resource ID is a combined value of the `service_id` and `acl_id` separated by a forward slash.
|
|
7
|
-
*
|
|
8
|
-
* ```sh
|
|
9
|
-
* $ pulumi import fastly:index/serviceACLEntriesv1:ServiceACLEntriesv1 entries xxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxx
|
|
10
|
-
* ```
|
|
11
|
-
*/
|
|
12
|
-
export declare class ServiceACLEntriesv1 extends pulumi.CustomResource {
|
|
13
|
-
/**
|
|
14
|
-
* Get an existing ServiceACLEntriesv1 resource's state with the given name, ID, and optional extra
|
|
15
|
-
* properties used to qualify the lookup.
|
|
16
|
-
*
|
|
17
|
-
* @param name The _unique_ name of the resulting resource.
|
|
18
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
19
|
-
* @param state Any extra arguments used during the lookup.
|
|
20
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
21
|
-
*/
|
|
22
|
-
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ServiceACLEntriesv1State, opts?: pulumi.CustomResourceOptions): ServiceACLEntriesv1;
|
|
23
|
-
/**
|
|
24
|
-
* Returns true if the given object is an instance of ServiceACLEntriesv1. This is designed to work even
|
|
25
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
26
|
-
*/
|
|
27
|
-
static isInstance(obj: any): obj is ServiceACLEntriesv1;
|
|
28
|
-
/**
|
|
29
|
-
* The ID of the ACL that the items belong to
|
|
30
|
-
*/
|
|
31
|
-
readonly aclId: pulumi.Output<string>;
|
|
32
|
-
/**
|
|
33
|
-
* ACL Entries
|
|
34
|
-
*/
|
|
35
|
-
readonly entries: pulumi.Output<outputs.ServiceACLEntriesv1Entry[] | undefined>;
|
|
36
|
-
/**
|
|
37
|
-
* The ID of the Service that the ACL belongs to
|
|
38
|
-
*/
|
|
39
|
-
readonly serviceId: pulumi.Output<string>;
|
|
40
|
-
/**
|
|
41
|
-
* Create a ServiceACLEntriesv1 resource with the given unique name, arguments, and options.
|
|
42
|
-
*
|
|
43
|
-
* @param name The _unique_ name of the resource.
|
|
44
|
-
* @param args The arguments to use to populate this resource's properties.
|
|
45
|
-
* @param opts A bag of options that control this resource's behavior.
|
|
46
|
-
*/
|
|
47
|
-
constructor(name: string, args: ServiceACLEntriesv1Args, opts?: pulumi.CustomResourceOptions);
|
|
48
|
-
}
|
|
49
|
-
/**
|
|
50
|
-
* Input properties used for looking up and filtering ServiceACLEntriesv1 resources.
|
|
51
|
-
*/
|
|
52
|
-
export interface ServiceACLEntriesv1State {
|
|
53
|
-
/**
|
|
54
|
-
* The ID of the ACL that the items belong to
|
|
55
|
-
*/
|
|
56
|
-
aclId?: pulumi.Input<string>;
|
|
57
|
-
/**
|
|
58
|
-
* ACL Entries
|
|
59
|
-
*/
|
|
60
|
-
entries?: pulumi.Input<pulumi.Input<inputs.ServiceACLEntriesv1Entry>[]>;
|
|
61
|
-
/**
|
|
62
|
-
* The ID of the Service that the ACL belongs to
|
|
63
|
-
*/
|
|
64
|
-
serviceId?: pulumi.Input<string>;
|
|
65
|
-
}
|
|
66
|
-
/**
|
|
67
|
-
* The set of arguments for constructing a ServiceACLEntriesv1 resource.
|
|
68
|
-
*/
|
|
69
|
-
export interface ServiceACLEntriesv1Args {
|
|
70
|
-
/**
|
|
71
|
-
* The ID of the ACL that the items belong to
|
|
72
|
-
*/
|
|
73
|
-
aclId: pulumi.Input<string>;
|
|
74
|
-
/**
|
|
75
|
-
* ACL Entries
|
|
76
|
-
*/
|
|
77
|
-
entries?: pulumi.Input<pulumi.Input<inputs.ServiceACLEntriesv1Entry>[]>;
|
|
78
|
-
/**
|
|
79
|
-
* The ID of the Service that the ACL belongs to
|
|
80
|
-
*/
|
|
81
|
-
serviceId: pulumi.Input<string>;
|
|
82
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"serviceACLEntriesv1.js","sourceRoot":"","sources":["../serviceACLEntriesv1.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;GAQG;AACH,MAAa,mBAAoB,SAAQ,MAAM,CAAC,cAAc;IAiD1D,YAAY,IAAY,EAAE,WAAgE,EAAE,IAAmC;QAC3H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAmD,CAAC;YAClE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;aAAM;YACH,MAAM,IAAI,GAAG,WAAkD,CAAC;YAChE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,mBAAmB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACxE,CAAC;IAtED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAgC,EAAE,IAAmC;QAC9H,OAAO,IAAI,mBAAmB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC1E,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,mBAAmB,CAAC,YAAY,CAAC;IACpE,CAAC;;AA1BL,kDAwEC;AA1DG,gBAAgB;AACO,gCAAY,GAAG,sDAAsD,CAAC"}
|
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
/**
|
|
3
|
-
* Defines a map of Fastly dictionary items that can be used to populate a service dictionary. This resource will populate a dictionary with the items and will track their state.
|
|
4
|
-
*
|
|
5
|
-
* > **Warning:** This provider will take precedence over any changes you make in the UI or API. Such changes are likely to be reversed if you run the provider again.
|
|
6
|
-
*
|
|
7
|
-
* If this provider is being used to populate the initial content of a dictionary which you intend to manage via API or UI, then the lifecycle `ignoreChanges` field can be used with the resource. An example of this configuration is provided below.
|
|
8
|
-
*
|
|
9
|
-
* ## Limitations
|
|
10
|
-
*
|
|
11
|
-
* - `writeOnly` dictionaries are not supported
|
|
12
|
-
*
|
|
13
|
-
* ## Example Usage
|
|
14
|
-
* ### Supporting API and UI dictionary updates with ignoreChanges
|
|
15
|
-
*
|
|
16
|
-
* The following example demonstrates how the lifecycle `ignoreChanges` field can be used to suppress updates against the
|
|
17
|
-
* items in a dictionary. If, after your first deploy, the Fastly API or UI is to be used to manage items in a dictionary, then this will stop this provider realigning the remote state with the initial set of dictionary items defined in your HCL.
|
|
18
|
-
*
|
|
19
|
-
* ```typescript
|
|
20
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
21
|
-
* import * as fastly from "@pulumi/fastly";
|
|
22
|
-
*
|
|
23
|
-
* //...
|
|
24
|
-
* const items: fastly.ServiceDictionaryItemsv1[];
|
|
25
|
-
* for (const range of Object.entries(.filter(d => d.name == _var.mydict_name).reduce((__obj, d) => { ...__obj, [d.name]: d })).map(([k, v]) => {key: k, value: v})) {
|
|
26
|
-
* items.push(new fastly.ServiceDictionaryItemsv1(`items-${range.key}`, {
|
|
27
|
-
* serviceId: fastly_service_v1.myservice.id,
|
|
28
|
-
* dictionaryId: range.value.dictionaryId,
|
|
29
|
-
* items: {
|
|
30
|
-
* key1: "value1",
|
|
31
|
-
* key2: "value2",
|
|
32
|
-
* },
|
|
33
|
-
* }));
|
|
34
|
-
* }
|
|
35
|
-
* ```
|
|
36
|
-
*
|
|
37
|
-
* ## Import
|
|
38
|
-
*
|
|
39
|
-
* This is an example of the import command being applied to the resource named `fastly_service_dictionary_items_v1.items` The resource ID is a combined value of the `service_id` and `dictionary_id` separated by a forward slash.
|
|
40
|
-
*
|
|
41
|
-
* ```sh
|
|
42
|
-
* $ pulumi import fastly:index/serviceDictionaryItemsv1:ServiceDictionaryItemsv1 items xxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxx
|
|
43
|
-
* ```
|
|
44
|
-
*/
|
|
45
|
-
export declare class ServiceDictionaryItemsv1 extends pulumi.CustomResource {
|
|
46
|
-
/**
|
|
47
|
-
* Get an existing ServiceDictionaryItemsv1 resource's state with the given name, ID, and optional extra
|
|
48
|
-
* properties used to qualify the lookup.
|
|
49
|
-
*
|
|
50
|
-
* @param name The _unique_ name of the resulting resource.
|
|
51
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
52
|
-
* @param state Any extra arguments used during the lookup.
|
|
53
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
54
|
-
*/
|
|
55
|
-
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ServiceDictionaryItemsv1State, opts?: pulumi.CustomResourceOptions): ServiceDictionaryItemsv1;
|
|
56
|
-
/**
|
|
57
|
-
* Returns true if the given object is an instance of ServiceDictionaryItemsv1. This is designed to work even
|
|
58
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
59
|
-
*/
|
|
60
|
-
static isInstance(obj: any): obj is ServiceDictionaryItemsv1;
|
|
61
|
-
/**
|
|
62
|
-
* The ID of the dictionary that the items belong to
|
|
63
|
-
*/
|
|
64
|
-
readonly dictionaryId: pulumi.Output<string>;
|
|
65
|
-
/**
|
|
66
|
-
* A map representing an entry in the dictionary, (key/value)
|
|
67
|
-
*/
|
|
68
|
-
readonly items: pulumi.Output<{
|
|
69
|
-
[key: string]: any;
|
|
70
|
-
} | undefined>;
|
|
71
|
-
/**
|
|
72
|
-
* The ID of the service that the dictionary belongs to
|
|
73
|
-
*/
|
|
74
|
-
readonly serviceId: pulumi.Output<string>;
|
|
75
|
-
/**
|
|
76
|
-
* Create a ServiceDictionaryItemsv1 resource with the given unique name, arguments, and options.
|
|
77
|
-
*
|
|
78
|
-
* @param name The _unique_ name of the resource.
|
|
79
|
-
* @param args The arguments to use to populate this resource's properties.
|
|
80
|
-
* @param opts A bag of options that control this resource's behavior.
|
|
81
|
-
*/
|
|
82
|
-
constructor(name: string, args: ServiceDictionaryItemsv1Args, opts?: pulumi.CustomResourceOptions);
|
|
83
|
-
}
|
|
84
|
-
/**
|
|
85
|
-
* Input properties used for looking up and filtering ServiceDictionaryItemsv1 resources.
|
|
86
|
-
*/
|
|
87
|
-
export interface ServiceDictionaryItemsv1State {
|
|
88
|
-
/**
|
|
89
|
-
* The ID of the dictionary that the items belong to
|
|
90
|
-
*/
|
|
91
|
-
dictionaryId?: pulumi.Input<string>;
|
|
92
|
-
/**
|
|
93
|
-
* A map representing an entry in the dictionary, (key/value)
|
|
94
|
-
*/
|
|
95
|
-
items?: pulumi.Input<{
|
|
96
|
-
[key: string]: any;
|
|
97
|
-
}>;
|
|
98
|
-
/**
|
|
99
|
-
* The ID of the service that the dictionary belongs to
|
|
100
|
-
*/
|
|
101
|
-
serviceId?: pulumi.Input<string>;
|
|
102
|
-
}
|
|
103
|
-
/**
|
|
104
|
-
* The set of arguments for constructing a ServiceDictionaryItemsv1 resource.
|
|
105
|
-
*/
|
|
106
|
-
export interface ServiceDictionaryItemsv1Args {
|
|
107
|
-
/**
|
|
108
|
-
* The ID of the dictionary that the items belong to
|
|
109
|
-
*/
|
|
110
|
-
dictionaryId: pulumi.Input<string>;
|
|
111
|
-
/**
|
|
112
|
-
* A map representing an entry in the dictionary, (key/value)
|
|
113
|
-
*/
|
|
114
|
-
items?: pulumi.Input<{
|
|
115
|
-
[key: string]: any;
|
|
116
|
-
}>;
|
|
117
|
-
/**
|
|
118
|
-
* The ID of the service that the dictionary belongs to
|
|
119
|
-
*/
|
|
120
|
-
serviceId: pulumi.Input<string>;
|
|
121
|
-
}
|
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.ServiceDictionaryItemsv1 = void 0;
|
|
6
|
-
const pulumi = require("@pulumi/pulumi");
|
|
7
|
-
const utilities = require("./utilities");
|
|
8
|
-
/**
|
|
9
|
-
* Defines a map of Fastly dictionary items that can be used to populate a service dictionary. This resource will populate a dictionary with the items and will track their state.
|
|
10
|
-
*
|
|
11
|
-
* > **Warning:** This provider will take precedence over any changes you make in the UI or API. Such changes are likely to be reversed if you run the provider again.
|
|
12
|
-
*
|
|
13
|
-
* If this provider is being used to populate the initial content of a dictionary which you intend to manage via API or UI, then the lifecycle `ignoreChanges` field can be used with the resource. An example of this configuration is provided below.
|
|
14
|
-
*
|
|
15
|
-
* ## Limitations
|
|
16
|
-
*
|
|
17
|
-
* - `writeOnly` dictionaries are not supported
|
|
18
|
-
*
|
|
19
|
-
* ## Example Usage
|
|
20
|
-
* ### Supporting API and UI dictionary updates with ignoreChanges
|
|
21
|
-
*
|
|
22
|
-
* The following example demonstrates how the lifecycle `ignoreChanges` field can be used to suppress updates against the
|
|
23
|
-
* items in a dictionary. If, after your first deploy, the Fastly API or UI is to be used to manage items in a dictionary, then this will stop this provider realigning the remote state with the initial set of dictionary items defined in your HCL.
|
|
24
|
-
*
|
|
25
|
-
* ```typescript
|
|
26
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
27
|
-
* import * as fastly from "@pulumi/fastly";
|
|
28
|
-
*
|
|
29
|
-
* //...
|
|
30
|
-
* const items: fastly.ServiceDictionaryItemsv1[];
|
|
31
|
-
* for (const range of Object.entries(.filter(d => d.name == _var.mydict_name).reduce((__obj, d) => { ...__obj, [d.name]: d })).map(([k, v]) => {key: k, value: v})) {
|
|
32
|
-
* items.push(new fastly.ServiceDictionaryItemsv1(`items-${range.key}`, {
|
|
33
|
-
* serviceId: fastly_service_v1.myservice.id,
|
|
34
|
-
* dictionaryId: range.value.dictionaryId,
|
|
35
|
-
* items: {
|
|
36
|
-
* key1: "value1",
|
|
37
|
-
* key2: "value2",
|
|
38
|
-
* },
|
|
39
|
-
* }));
|
|
40
|
-
* }
|
|
41
|
-
* ```
|
|
42
|
-
*
|
|
43
|
-
* ## Import
|
|
44
|
-
*
|
|
45
|
-
* This is an example of the import command being applied to the resource named `fastly_service_dictionary_items_v1.items` The resource ID is a combined value of the `service_id` and `dictionary_id` separated by a forward slash.
|
|
46
|
-
*
|
|
47
|
-
* ```sh
|
|
48
|
-
* $ pulumi import fastly:index/serviceDictionaryItemsv1:ServiceDictionaryItemsv1 items xxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxx
|
|
49
|
-
* ```
|
|
50
|
-
*/
|
|
51
|
-
class ServiceDictionaryItemsv1 extends pulumi.CustomResource {
|
|
52
|
-
constructor(name, argsOrState, opts) {
|
|
53
|
-
let resourceInputs = {};
|
|
54
|
-
opts = opts || {};
|
|
55
|
-
if (opts.id) {
|
|
56
|
-
const state = argsOrState;
|
|
57
|
-
resourceInputs["dictionaryId"] = state ? state.dictionaryId : undefined;
|
|
58
|
-
resourceInputs["items"] = state ? state.items : undefined;
|
|
59
|
-
resourceInputs["serviceId"] = state ? state.serviceId : undefined;
|
|
60
|
-
}
|
|
61
|
-
else {
|
|
62
|
-
const args = argsOrState;
|
|
63
|
-
if ((!args || args.dictionaryId === undefined) && !opts.urn) {
|
|
64
|
-
throw new Error("Missing required property 'dictionaryId'");
|
|
65
|
-
}
|
|
66
|
-
if ((!args || args.serviceId === undefined) && !opts.urn) {
|
|
67
|
-
throw new Error("Missing required property 'serviceId'");
|
|
68
|
-
}
|
|
69
|
-
resourceInputs["dictionaryId"] = args ? args.dictionaryId : undefined;
|
|
70
|
-
resourceInputs["items"] = args ? args.items : undefined;
|
|
71
|
-
resourceInputs["serviceId"] = args ? args.serviceId : undefined;
|
|
72
|
-
}
|
|
73
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
74
|
-
super(ServiceDictionaryItemsv1.__pulumiType, name, resourceInputs, opts);
|
|
75
|
-
}
|
|
76
|
-
/**
|
|
77
|
-
* Get an existing ServiceDictionaryItemsv1 resource's state with the given name, ID, and optional extra
|
|
78
|
-
* properties used to qualify the lookup.
|
|
79
|
-
*
|
|
80
|
-
* @param name The _unique_ name of the resulting resource.
|
|
81
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
82
|
-
* @param state Any extra arguments used during the lookup.
|
|
83
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
84
|
-
*/
|
|
85
|
-
static get(name, id, state, opts) {
|
|
86
|
-
return new ServiceDictionaryItemsv1(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
87
|
-
}
|
|
88
|
-
/**
|
|
89
|
-
* Returns true if the given object is an instance of ServiceDictionaryItemsv1. This is designed to work even
|
|
90
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
91
|
-
*/
|
|
92
|
-
static isInstance(obj) {
|
|
93
|
-
if (obj === undefined || obj === null) {
|
|
94
|
-
return false;
|
|
95
|
-
}
|
|
96
|
-
return obj['__pulumiType'] === ServiceDictionaryItemsv1.__pulumiType;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
exports.ServiceDictionaryItemsv1 = ServiceDictionaryItemsv1;
|
|
100
|
-
/** @internal */
|
|
101
|
-
ServiceDictionaryItemsv1.__pulumiType = 'fastly:index/serviceDictionaryItemsv1:ServiceDictionaryItemsv1';
|
|
102
|
-
//# sourceMappingURL=serviceDictionaryItemsv1.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"serviceDictionaryItemsv1.js","sourceRoot":"","sources":["../serviceDictionaryItemsv1.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,MAAa,wBAAyB,SAAQ,MAAM,CAAC,cAAc;IAiD/D,YAAY,IAAY,EAAE,WAA0E,EAAE,IAAmC;QACrI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwD,CAAC;YACvE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;aAAM;YACH,MAAM,IAAI,GAAG,WAAuD,CAAC;YACrE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,wBAAwB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7E,CAAC;IAtED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqC,EAAE,IAAmC;QACnI,OAAO,IAAI,wBAAwB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/E,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,wBAAwB,CAAC,YAAY,CAAC;IACzE,CAAC;;AA1BL,4DAwEC;AA1DG,gBAAgB;AACO,qCAAY,GAAG,gEAAgE,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"serviceDynamicSnippetContentv1.js","sourceRoot":"","sources":["../serviceDynamicSnippetContentv1.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,MAAa,8BAA+B,SAAQ,MAAM,CAAC,cAAc;IAiDrE,YAAY,IAAY,EAAE,WAAsF,EAAE,IAAmC;QACjJ,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA8D,CAAC;YAC7E,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;aAAM;YACH,MAAM,IAAI,GAAG,WAA6D,CAAC;YAC3E,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,8BAA8B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACnF,CAAC;IAzED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2C,EAAE,IAAmC;QACzI,OAAO,IAAI,8BAA8B,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACrF,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,8BAA8B,CAAC,YAAY,CAAC;IAC/E,CAAC;;AA1BL,wEA2EC;AA7DG,gBAAgB;AACO,2CAAY,GAAG,4EAA4E,CAAC"}
|
package/servicev1.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"servicev1.js","sourceRoot":"","sources":["../servicev1.ts"],"names":[],"mappings":"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"}
|
package/userv1.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"userv1.js","sourceRoot":"","sources":["../userv1.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAiD7C,YAAY,IAAY,EAAE,WAAsC,EAAE,IAAmC;QACjG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsC,CAAC;YACrD,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAqC,CAAC;YACnD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,MAAM,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3D,CAAC;IAnED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,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,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;;AA1BL,wBAqEC;AAvDG,gBAAgB;AACO,mBAAY,GAAG,4BAA4B,CAAC"}
|