@pulumi/aws 6.14.0 → 6.15.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/alb/getLoadBalancer.d.ts +2 -0
- package/alb/getLoadBalancer.js.map +1 -1
- package/alb/loadBalancer.d.ts +18 -12
- package/alb/loadBalancer.js +2 -0
- package/alb/loadBalancer.js.map +1 -1
- package/cloudfront/function.d.ts +4 -4
- package/cloudfront/function.js +1 -1
- package/cloudwatch/getLogGroup.d.ts +4 -0
- package/cloudwatch/getLogGroup.js.map +1 -1
- package/cloudwatch/logGroup.d.ts +1 -1
- package/cloudwatch/metricStream.d.ts +6 -6
- package/dms/endpoint.d.ts +12 -0
- package/dms/endpoint.js +2 -0
- package/dms/endpoint.js.map +1 -1
- package/dms/eventSubscription.d.ts +4 -4
- package/dms/eventSubscription.js +6 -0
- package/dms/eventSubscription.js.map +1 -1
- package/dms/getEndpoint.d.ts +1 -0
- package/dms/getEndpoint.js.map +1 -1
- package/finspace/index.d.ts +9 -0
- package/finspace/index.js +16 -1
- package/finspace/index.js.map +1 -1
- package/finspace/kxCluster.d.ts +26 -2
- package/finspace/kxCluster.js +4 -3
- package/finspace/kxCluster.js.map +1 -1
- package/finspace/kxDataview.d.ts +244 -0
- package/finspace/kxDataview.js +123 -0
- package/finspace/kxDataview.js.map +1 -0
- package/finspace/kxScalingGroup.d.ts +197 -0
- package/finspace/kxScalingGroup.js +107 -0
- package/finspace/kxScalingGroup.js.map +1 -0
- package/finspace/kxVolume.d.ts +230 -0
- package/finspace/kxVolume.js +121 -0
- package/finspace/kxVolume.js.map +1 -0
- package/index.d.ts +2 -1
- package/index.js +4 -2
- package/index.js.map +1 -1
- package/lb/getLoadBalancer.d.ts +2 -0
- package/lb/getLoadBalancer.js.map +1 -1
- package/lb/loadBalancer.d.ts +18 -12
- package/lb/loadBalancer.js +2 -0
- package/lb/loadBalancer.js.map +1 -1
- package/lightsail/instance.d.ts +30 -66
- package/lightsail/instance.js +0 -51
- package/lightsail/instance.js.map +1 -1
- package/opensearch/getServerlessCollection.d.ts +4 -0
- package/opensearch/getServerlessCollection.js.map +1 -1
- package/opensearch/serverlessCollection.d.ts +12 -0
- package/opensearch/serverlessCollection.js +2 -0
- package/opensearch/serverlessCollection.js.map +1 -1
- package/package.json +1 -1
- package/polly/getVoices.d.ts +112 -0
- package/polly/getVoices.js +69 -0
- package/polly/getVoices.js.map +1 -0
- package/polly/index.d.ts +3 -0
- package/polly/index.js +10 -0
- package/polly/index.js.map +1 -0
- package/rds/instance.d.ts +54 -7
- package/rds/instance.js +51 -1
- package/rds/instance.js.map +1 -1
- package/ssoadmin/getApplicationAssignments.d.ts +75 -0
- package/ssoadmin/getApplicationAssignments.js +50 -0
- package/ssoadmin/getApplicationAssignments.js.map +1 -0
- package/ssoadmin/getPrincipalApplicationAssignments.d.ts +76 -0
- package/ssoadmin/getPrincipalApplicationAssignments.js +32 -0
- package/ssoadmin/getPrincipalApplicationAssignments.js.map +1 -0
- package/ssoadmin/index.d.ts +9 -0
- package/ssoadmin/index.js +12 -1
- package/ssoadmin/index.js.map +1 -1
- package/ssoadmin/trustedTokenIssuer.d.ts +159 -0
- package/ssoadmin/trustedTokenIssuer.js +84 -0
- package/ssoadmin/trustedTokenIssuer.js.map +1 -0
- package/types/input.d.ts +305 -3
- package/types/output.d.ts +275 -3
|
@@ -0,0 +1,107 @@
|
|
|
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.KxScalingGroup = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Resource for managing an AWS FinSpace Kx Scaling Group.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
* ### Basic Usage
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as aws from "@pulumi/aws";
|
|
17
|
+
*
|
|
18
|
+
* const example = new aws.finspace.KxScalingGroup("example", {
|
|
19
|
+
* environmentId: aws_finspace_kx_environment.example.id,
|
|
20
|
+
* availabilityZoneId: "use1-az2",
|
|
21
|
+
* hostType: "kx.sg.4xlarge",
|
|
22
|
+
* });
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* ## Import
|
|
26
|
+
*
|
|
27
|
+
* Using `pulumi import`, import an AWS FinSpace Kx Scaling Group using the `id` (environment ID and scaling group name, comma-delimited). For example:
|
|
28
|
+
*
|
|
29
|
+
* ```sh
|
|
30
|
+
* $ pulumi import aws:finspace/kxScalingGroup:KxScalingGroup example n3ceo7wqxoxcti5tujqwzs,my-tf-kx-scalinggroup
|
|
31
|
+
* ```
|
|
32
|
+
*/
|
|
33
|
+
class KxScalingGroup extends pulumi.CustomResource {
|
|
34
|
+
/**
|
|
35
|
+
* Get an existing KxScalingGroup resource's state with the given name, ID, and optional extra
|
|
36
|
+
* properties used to qualify the lookup.
|
|
37
|
+
*
|
|
38
|
+
* @param name The _unique_ name of the resulting resource.
|
|
39
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
40
|
+
* @param state Any extra arguments used during the lookup.
|
|
41
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
42
|
+
*/
|
|
43
|
+
static get(name, id, state, opts) {
|
|
44
|
+
return new KxScalingGroup(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Returns true if the given object is an instance of KxScalingGroup. This is designed to work even
|
|
48
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
49
|
+
*/
|
|
50
|
+
static isInstance(obj) {
|
|
51
|
+
if (obj === undefined || obj === null) {
|
|
52
|
+
return false;
|
|
53
|
+
}
|
|
54
|
+
return obj['__pulumiType'] === KxScalingGroup.__pulumiType;
|
|
55
|
+
}
|
|
56
|
+
constructor(name, argsOrState, opts) {
|
|
57
|
+
let resourceInputs = {};
|
|
58
|
+
opts = opts || {};
|
|
59
|
+
if (opts.id) {
|
|
60
|
+
const state = argsOrState;
|
|
61
|
+
resourceInputs["arn"] = state ? state.arn : undefined;
|
|
62
|
+
resourceInputs["availabilityZoneId"] = state ? state.availabilityZoneId : undefined;
|
|
63
|
+
resourceInputs["clusters"] = state ? state.clusters : undefined;
|
|
64
|
+
resourceInputs["createdTimestamp"] = state ? state.createdTimestamp : undefined;
|
|
65
|
+
resourceInputs["environmentId"] = state ? state.environmentId : undefined;
|
|
66
|
+
resourceInputs["hostType"] = state ? state.hostType : undefined;
|
|
67
|
+
resourceInputs["lastModifiedTimestamp"] = state ? state.lastModifiedTimestamp : undefined;
|
|
68
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
69
|
+
resourceInputs["status"] = state ? state.status : undefined;
|
|
70
|
+
resourceInputs["statusReason"] = state ? state.statusReason : undefined;
|
|
71
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
72
|
+
resourceInputs["tagsAll"] = state ? state.tagsAll : undefined;
|
|
73
|
+
}
|
|
74
|
+
else {
|
|
75
|
+
const args = argsOrState;
|
|
76
|
+
if ((!args || args.availabilityZoneId === undefined) && !opts.urn) {
|
|
77
|
+
throw new Error("Missing required property 'availabilityZoneId'");
|
|
78
|
+
}
|
|
79
|
+
if ((!args || args.environmentId === undefined) && !opts.urn) {
|
|
80
|
+
throw new Error("Missing required property 'environmentId'");
|
|
81
|
+
}
|
|
82
|
+
if ((!args || args.hostType === undefined) && !opts.urn) {
|
|
83
|
+
throw new Error("Missing required property 'hostType'");
|
|
84
|
+
}
|
|
85
|
+
resourceInputs["availabilityZoneId"] = args ? args.availabilityZoneId : undefined;
|
|
86
|
+
resourceInputs["environmentId"] = args ? args.environmentId : undefined;
|
|
87
|
+
resourceInputs["hostType"] = args ? args.hostType : undefined;
|
|
88
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
89
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
90
|
+
resourceInputs["arn"] = undefined /*out*/;
|
|
91
|
+
resourceInputs["clusters"] = undefined /*out*/;
|
|
92
|
+
resourceInputs["createdTimestamp"] = undefined /*out*/;
|
|
93
|
+
resourceInputs["lastModifiedTimestamp"] = undefined /*out*/;
|
|
94
|
+
resourceInputs["status"] = undefined /*out*/;
|
|
95
|
+
resourceInputs["statusReason"] = undefined /*out*/;
|
|
96
|
+
resourceInputs["tagsAll"] = undefined /*out*/;
|
|
97
|
+
}
|
|
98
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
99
|
+
const secretOpts = { additionalSecretOutputs: ["tagsAll"] };
|
|
100
|
+
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
101
|
+
super(KxScalingGroup.__pulumiType, name, resourceInputs, opts);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
exports.KxScalingGroup = KxScalingGroup;
|
|
105
|
+
/** @internal */
|
|
106
|
+
KxScalingGroup.__pulumiType = 'aws:finspace/kxScalingGroup:KxScalingGroup';
|
|
107
|
+
//# sourceMappingURL=kxScalingGroup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"kxScalingGroup.js","sourceRoot":"","sources":["../../finspace/kxScalingGroup.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Resource for managing an AWS FinSpace Kx Volume.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
* ### Basic Usage
|
|
9
|
+
*
|
|
10
|
+
* ```typescript
|
|
11
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
+
* import * as aws from "@pulumi/aws";
|
|
13
|
+
*
|
|
14
|
+
* const example = new aws.finspace.KxVolume("example", {
|
|
15
|
+
* environmentId: aws_finspace_kx_environment.example.id,
|
|
16
|
+
* availabilityZones: "use1-az2",
|
|
17
|
+
* azMode: "SINGLE",
|
|
18
|
+
* type: "NAS_1",
|
|
19
|
+
* nas1Configurations: [{
|
|
20
|
+
* size: 1200,
|
|
21
|
+
* type: "SSD_250",
|
|
22
|
+
* }],
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
*
|
|
26
|
+
* ## Import
|
|
27
|
+
*
|
|
28
|
+
* Using `pulumi import`, import an AWS FinSpace Kx Volume using the `id` (environment ID and volume name, comma-delimited). For example:
|
|
29
|
+
*
|
|
30
|
+
* ```sh
|
|
31
|
+
* $ pulumi import aws:finspace/kxVolume:KxVolume example n3ceo7wqxoxcti5tujqwzs,my-tf-kx-volume
|
|
32
|
+
* ```
|
|
33
|
+
*/
|
|
34
|
+
export declare class KxVolume extends pulumi.CustomResource {
|
|
35
|
+
/**
|
|
36
|
+
* Get an existing KxVolume resource's state with the given name, ID, and optional extra
|
|
37
|
+
* properties used to qualify the lookup.
|
|
38
|
+
*
|
|
39
|
+
* @param name The _unique_ name of the resulting resource.
|
|
40
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
41
|
+
* @param state Any extra arguments used during the lookup.
|
|
42
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
43
|
+
*/
|
|
44
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: KxVolumeState, opts?: pulumi.CustomResourceOptions): KxVolume;
|
|
45
|
+
/**
|
|
46
|
+
* Returns true if the given object is an instance of KxVolume. This is designed to work even
|
|
47
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
48
|
+
*/
|
|
49
|
+
static isInstance(obj: any): obj is KxVolume;
|
|
50
|
+
/**
|
|
51
|
+
* Amazon Resource Name (ARN) identifier of the KX volume.
|
|
52
|
+
*/
|
|
53
|
+
readonly arn: pulumi.Output<string>;
|
|
54
|
+
readonly attachedClusters: pulumi.Output<outputs.finspace.KxVolumeAttachedCluster[]>;
|
|
55
|
+
/**
|
|
56
|
+
* The identifier of the AWS Availability Zone IDs.
|
|
57
|
+
*
|
|
58
|
+
* The following arguments are optional:
|
|
59
|
+
*/
|
|
60
|
+
readonly availabilityZones: pulumi.Output<string[]>;
|
|
61
|
+
/**
|
|
62
|
+
* The number of availability zones you want to assign per volume. Currently, Finspace only support SINGLE for volumes.
|
|
63
|
+
*/
|
|
64
|
+
readonly azMode: pulumi.Output<string>;
|
|
65
|
+
/**
|
|
66
|
+
* The timestamp at which the volume was created in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
|
|
67
|
+
*/
|
|
68
|
+
readonly createdTimestamp: pulumi.Output<string>;
|
|
69
|
+
/**
|
|
70
|
+
* Description of the volume.
|
|
71
|
+
*/
|
|
72
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
73
|
+
/**
|
|
74
|
+
* A unique identifier for the kdb environment, whose clusters can attach to the volume.
|
|
75
|
+
*/
|
|
76
|
+
readonly environmentId: pulumi.Output<string>;
|
|
77
|
+
/**
|
|
78
|
+
* Last timestamp at which the volume was updated in FinSpace. Value determined as epoch time in seconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000.
|
|
79
|
+
*/
|
|
80
|
+
readonly lastModifiedTimestamp: pulumi.Output<string>;
|
|
81
|
+
/**
|
|
82
|
+
* Unique name for the volumr that you want to create.
|
|
83
|
+
*/
|
|
84
|
+
readonly name: pulumi.Output<string>;
|
|
85
|
+
/**
|
|
86
|
+
* Specifies the configuration for the Network attached storage (`NAS_1`) file system volume. This parameter is required when `volumeType` is `NAS_1`. See `nas1Configuration` Argument Reference below.
|
|
87
|
+
*/
|
|
88
|
+
readonly nas1Configurations: pulumi.Output<outputs.finspace.KxVolumeNas1Configuration[] | undefined>;
|
|
89
|
+
/**
|
|
90
|
+
* The status of volume creation.
|
|
91
|
+
*/
|
|
92
|
+
readonly status: pulumi.Output<string>;
|
|
93
|
+
/**
|
|
94
|
+
* The error message when a failed state occurs.
|
|
95
|
+
*/
|
|
96
|
+
readonly statusReason: pulumi.Output<string>;
|
|
97
|
+
/**
|
|
98
|
+
* A list of key-value pairs to label the volume. You can add up to 50 tags to a volume
|
|
99
|
+
*/
|
|
100
|
+
readonly tags: pulumi.Output<{
|
|
101
|
+
[key: string]: string;
|
|
102
|
+
} | undefined>;
|
|
103
|
+
/**
|
|
104
|
+
* @deprecated Please use `tags` instead.
|
|
105
|
+
*/
|
|
106
|
+
readonly tagsAll: pulumi.Output<{
|
|
107
|
+
[key: string]: string;
|
|
108
|
+
}>;
|
|
109
|
+
/**
|
|
110
|
+
* The type of file system volume. Currently, FinSpace only supports the `NAS_1` volume type. When you select the `NAS_1` volume type, you must also provide `nas1Configuration`.
|
|
111
|
+
*/
|
|
112
|
+
readonly type: pulumi.Output<string>;
|
|
113
|
+
/**
|
|
114
|
+
* Create a KxVolume resource with the given unique name, arguments, and options.
|
|
115
|
+
*
|
|
116
|
+
* @param name The _unique_ name of the resource.
|
|
117
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
118
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
119
|
+
*/
|
|
120
|
+
constructor(name: string, args: KxVolumeArgs, opts?: pulumi.CustomResourceOptions);
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* Input properties used for looking up and filtering KxVolume resources.
|
|
124
|
+
*/
|
|
125
|
+
export interface KxVolumeState {
|
|
126
|
+
/**
|
|
127
|
+
* Amazon Resource Name (ARN) identifier of the KX volume.
|
|
128
|
+
*/
|
|
129
|
+
arn?: pulumi.Input<string>;
|
|
130
|
+
attachedClusters?: pulumi.Input<pulumi.Input<inputs.finspace.KxVolumeAttachedCluster>[]>;
|
|
131
|
+
/**
|
|
132
|
+
* The identifier of the AWS Availability Zone IDs.
|
|
133
|
+
*
|
|
134
|
+
* The following arguments are optional:
|
|
135
|
+
*/
|
|
136
|
+
availabilityZones?: pulumi.Input<pulumi.Input<string>[]>;
|
|
137
|
+
/**
|
|
138
|
+
* The number of availability zones you want to assign per volume. Currently, Finspace only support SINGLE for volumes.
|
|
139
|
+
*/
|
|
140
|
+
azMode?: pulumi.Input<string>;
|
|
141
|
+
/**
|
|
142
|
+
* The timestamp at which the volume was created in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
|
|
143
|
+
*/
|
|
144
|
+
createdTimestamp?: pulumi.Input<string>;
|
|
145
|
+
/**
|
|
146
|
+
* Description of the volume.
|
|
147
|
+
*/
|
|
148
|
+
description?: pulumi.Input<string>;
|
|
149
|
+
/**
|
|
150
|
+
* A unique identifier for the kdb environment, whose clusters can attach to the volume.
|
|
151
|
+
*/
|
|
152
|
+
environmentId?: pulumi.Input<string>;
|
|
153
|
+
/**
|
|
154
|
+
* Last timestamp at which the volume was updated in FinSpace. Value determined as epoch time in seconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000.
|
|
155
|
+
*/
|
|
156
|
+
lastModifiedTimestamp?: pulumi.Input<string>;
|
|
157
|
+
/**
|
|
158
|
+
* Unique name for the volumr that you want to create.
|
|
159
|
+
*/
|
|
160
|
+
name?: pulumi.Input<string>;
|
|
161
|
+
/**
|
|
162
|
+
* Specifies the configuration for the Network attached storage (`NAS_1`) file system volume. This parameter is required when `volumeType` is `NAS_1`. See `nas1Configuration` Argument Reference below.
|
|
163
|
+
*/
|
|
164
|
+
nas1Configurations?: pulumi.Input<pulumi.Input<inputs.finspace.KxVolumeNas1Configuration>[]>;
|
|
165
|
+
/**
|
|
166
|
+
* The status of volume creation.
|
|
167
|
+
*/
|
|
168
|
+
status?: pulumi.Input<string>;
|
|
169
|
+
/**
|
|
170
|
+
* The error message when a failed state occurs.
|
|
171
|
+
*/
|
|
172
|
+
statusReason?: pulumi.Input<string>;
|
|
173
|
+
/**
|
|
174
|
+
* A list of key-value pairs to label the volume. You can add up to 50 tags to a volume
|
|
175
|
+
*/
|
|
176
|
+
tags?: pulumi.Input<{
|
|
177
|
+
[key: string]: pulumi.Input<string>;
|
|
178
|
+
}>;
|
|
179
|
+
/**
|
|
180
|
+
* @deprecated Please use `tags` instead.
|
|
181
|
+
*/
|
|
182
|
+
tagsAll?: pulumi.Input<{
|
|
183
|
+
[key: string]: pulumi.Input<string>;
|
|
184
|
+
}>;
|
|
185
|
+
/**
|
|
186
|
+
* The type of file system volume. Currently, FinSpace only supports the `NAS_1` volume type. When you select the `NAS_1` volume type, you must also provide `nas1Configuration`.
|
|
187
|
+
*/
|
|
188
|
+
type?: pulumi.Input<string>;
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* The set of arguments for constructing a KxVolume resource.
|
|
192
|
+
*/
|
|
193
|
+
export interface KxVolumeArgs {
|
|
194
|
+
/**
|
|
195
|
+
* The identifier of the AWS Availability Zone IDs.
|
|
196
|
+
*
|
|
197
|
+
* The following arguments are optional:
|
|
198
|
+
*/
|
|
199
|
+
availabilityZones: pulumi.Input<pulumi.Input<string>[]>;
|
|
200
|
+
/**
|
|
201
|
+
* The number of availability zones you want to assign per volume. Currently, Finspace only support SINGLE for volumes.
|
|
202
|
+
*/
|
|
203
|
+
azMode: pulumi.Input<string>;
|
|
204
|
+
/**
|
|
205
|
+
* Description of the volume.
|
|
206
|
+
*/
|
|
207
|
+
description?: pulumi.Input<string>;
|
|
208
|
+
/**
|
|
209
|
+
* A unique identifier for the kdb environment, whose clusters can attach to the volume.
|
|
210
|
+
*/
|
|
211
|
+
environmentId: pulumi.Input<string>;
|
|
212
|
+
/**
|
|
213
|
+
* Unique name for the volumr that you want to create.
|
|
214
|
+
*/
|
|
215
|
+
name?: pulumi.Input<string>;
|
|
216
|
+
/**
|
|
217
|
+
* Specifies the configuration for the Network attached storage (`NAS_1`) file system volume. This parameter is required when `volumeType` is `NAS_1`. See `nas1Configuration` Argument Reference below.
|
|
218
|
+
*/
|
|
219
|
+
nas1Configurations?: pulumi.Input<pulumi.Input<inputs.finspace.KxVolumeNas1Configuration>[]>;
|
|
220
|
+
/**
|
|
221
|
+
* A list of key-value pairs to label the volume. You can add up to 50 tags to a volume
|
|
222
|
+
*/
|
|
223
|
+
tags?: pulumi.Input<{
|
|
224
|
+
[key: string]: pulumi.Input<string>;
|
|
225
|
+
}>;
|
|
226
|
+
/**
|
|
227
|
+
* The type of file system volume. Currently, FinSpace only supports the `NAS_1` volume type. When you select the `NAS_1` volume type, you must also provide `nas1Configuration`.
|
|
228
|
+
*/
|
|
229
|
+
type: pulumi.Input<string>;
|
|
230
|
+
}
|
|
@@ -0,0 +1,121 @@
|
|
|
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.KxVolume = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Resource for managing an AWS FinSpace Kx Volume.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
* ### Basic Usage
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as aws from "@pulumi/aws";
|
|
17
|
+
*
|
|
18
|
+
* const example = new aws.finspace.KxVolume("example", {
|
|
19
|
+
* environmentId: aws_finspace_kx_environment.example.id,
|
|
20
|
+
* availabilityZones: "use1-az2",
|
|
21
|
+
* azMode: "SINGLE",
|
|
22
|
+
* type: "NAS_1",
|
|
23
|
+
* nas1Configurations: [{
|
|
24
|
+
* size: 1200,
|
|
25
|
+
* type: "SSD_250",
|
|
26
|
+
* }],
|
|
27
|
+
* });
|
|
28
|
+
* ```
|
|
29
|
+
*
|
|
30
|
+
* ## Import
|
|
31
|
+
*
|
|
32
|
+
* Using `pulumi import`, import an AWS FinSpace Kx Volume using the `id` (environment ID and volume name, comma-delimited). For example:
|
|
33
|
+
*
|
|
34
|
+
* ```sh
|
|
35
|
+
* $ pulumi import aws:finspace/kxVolume:KxVolume example n3ceo7wqxoxcti5tujqwzs,my-tf-kx-volume
|
|
36
|
+
* ```
|
|
37
|
+
*/
|
|
38
|
+
class KxVolume extends pulumi.CustomResource {
|
|
39
|
+
/**
|
|
40
|
+
* Get an existing KxVolume resource's state with the given name, ID, and optional extra
|
|
41
|
+
* properties used to qualify the lookup.
|
|
42
|
+
*
|
|
43
|
+
* @param name The _unique_ name of the resulting resource.
|
|
44
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
45
|
+
* @param state Any extra arguments used during the lookup.
|
|
46
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
47
|
+
*/
|
|
48
|
+
static get(name, id, state, opts) {
|
|
49
|
+
return new KxVolume(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* Returns true if the given object is an instance of KxVolume. This is designed to work even
|
|
53
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
54
|
+
*/
|
|
55
|
+
static isInstance(obj) {
|
|
56
|
+
if (obj === undefined || obj === null) {
|
|
57
|
+
return false;
|
|
58
|
+
}
|
|
59
|
+
return obj['__pulumiType'] === KxVolume.__pulumiType;
|
|
60
|
+
}
|
|
61
|
+
constructor(name, argsOrState, opts) {
|
|
62
|
+
let resourceInputs = {};
|
|
63
|
+
opts = opts || {};
|
|
64
|
+
if (opts.id) {
|
|
65
|
+
const state = argsOrState;
|
|
66
|
+
resourceInputs["arn"] = state ? state.arn : undefined;
|
|
67
|
+
resourceInputs["attachedClusters"] = state ? state.attachedClusters : undefined;
|
|
68
|
+
resourceInputs["availabilityZones"] = state ? state.availabilityZones : undefined;
|
|
69
|
+
resourceInputs["azMode"] = state ? state.azMode : undefined;
|
|
70
|
+
resourceInputs["createdTimestamp"] = state ? state.createdTimestamp : undefined;
|
|
71
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
72
|
+
resourceInputs["environmentId"] = state ? state.environmentId : undefined;
|
|
73
|
+
resourceInputs["lastModifiedTimestamp"] = state ? state.lastModifiedTimestamp : undefined;
|
|
74
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
75
|
+
resourceInputs["nas1Configurations"] = state ? state.nas1Configurations : undefined;
|
|
76
|
+
resourceInputs["status"] = state ? state.status : undefined;
|
|
77
|
+
resourceInputs["statusReason"] = state ? state.statusReason : undefined;
|
|
78
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
79
|
+
resourceInputs["tagsAll"] = state ? state.tagsAll : undefined;
|
|
80
|
+
resourceInputs["type"] = state ? state.type : undefined;
|
|
81
|
+
}
|
|
82
|
+
else {
|
|
83
|
+
const args = argsOrState;
|
|
84
|
+
if ((!args || args.availabilityZones === undefined) && !opts.urn) {
|
|
85
|
+
throw new Error("Missing required property 'availabilityZones'");
|
|
86
|
+
}
|
|
87
|
+
if ((!args || args.azMode === undefined) && !opts.urn) {
|
|
88
|
+
throw new Error("Missing required property 'azMode'");
|
|
89
|
+
}
|
|
90
|
+
if ((!args || args.environmentId === undefined) && !opts.urn) {
|
|
91
|
+
throw new Error("Missing required property 'environmentId'");
|
|
92
|
+
}
|
|
93
|
+
if ((!args || args.type === undefined) && !opts.urn) {
|
|
94
|
+
throw new Error("Missing required property 'type'");
|
|
95
|
+
}
|
|
96
|
+
resourceInputs["availabilityZones"] = args ? args.availabilityZones : undefined;
|
|
97
|
+
resourceInputs["azMode"] = args ? args.azMode : undefined;
|
|
98
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
99
|
+
resourceInputs["environmentId"] = args ? args.environmentId : undefined;
|
|
100
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
101
|
+
resourceInputs["nas1Configurations"] = args ? args.nas1Configurations : undefined;
|
|
102
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
103
|
+
resourceInputs["type"] = args ? args.type : undefined;
|
|
104
|
+
resourceInputs["arn"] = undefined /*out*/;
|
|
105
|
+
resourceInputs["attachedClusters"] = undefined /*out*/;
|
|
106
|
+
resourceInputs["createdTimestamp"] = undefined /*out*/;
|
|
107
|
+
resourceInputs["lastModifiedTimestamp"] = undefined /*out*/;
|
|
108
|
+
resourceInputs["status"] = undefined /*out*/;
|
|
109
|
+
resourceInputs["statusReason"] = undefined /*out*/;
|
|
110
|
+
resourceInputs["tagsAll"] = undefined /*out*/;
|
|
111
|
+
}
|
|
112
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
113
|
+
const secretOpts = { additionalSecretOutputs: ["tagsAll"] };
|
|
114
|
+
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
115
|
+
super(KxVolume.__pulumiType, name, resourceInputs, opts);
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
exports.KxVolume = KxVolume;
|
|
119
|
+
/** @internal */
|
|
120
|
+
KxVolume.__pulumiType = 'aws:finspace/kxVolume:KxVolume';
|
|
121
|
+
//# sourceMappingURL=kxVolume.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"kxVolume.js","sourceRoot":"","sources":["../../finspace/kxVolume.ts"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -178,6 +178,7 @@ import * as organizations from "./organizations";
|
|
|
178
178
|
import * as outposts from "./outposts";
|
|
179
179
|
import * as pinpoint from "./pinpoint";
|
|
180
180
|
import * as pipes from "./pipes";
|
|
181
|
+
import * as polly from "./polly";
|
|
181
182
|
import * as pricing from "./pricing";
|
|
182
183
|
import * as qldb from "./qldb";
|
|
183
184
|
import * as quicksight from "./quicksight";
|
|
@@ -237,4 +238,4 @@ import * as wafv2 from "./wafv2";
|
|
|
237
238
|
import * as worklink from "./worklink";
|
|
238
239
|
import * as workspaces from "./workspaces";
|
|
239
240
|
import * as xray from "./xray";
|
|
240
|
-
export { accessanalyzer, account, acm, acmpca, alb, amp, amplify, apigateway, apigatewayv2, appautoscaling, appconfig, appflow, appintegrations, applicationinsights, applicationloadbalancing, appmesh, apprunner, appstream, appsync, athena, auditmanager, autoscaling, autoscalingplans, backup, batch, bedrockfoundation, bedrockmodel, budgets, cfg, chime, chimesdkmediapipelines, cleanrooms, cloud9, cloudcontrol, cloudformation, cloudfront, cloudhsmv2, cloudsearch, cloudtrail, cloudwatch, codeartifact, codebuild, codecatalyst, codecommit, codedeploy, codeguruprofiler, codegurureviewer, codepipeline, codestarconnections, codestarnotifications, cognito, comprehend, config, connect, controltower, costexplorer, cur, customerprofiles, dataexchange, datapipeline, datasync, dax, detective, devicefarm, directconnect, directoryservice, dlm, dms, docdb, dynamodb, ebs, ec2, ec2clientvpn, ec2transitgateway, ecr, ecrpublic, ecs, efs, eks, elasticache, elasticbeanstalk, elasticsearch, elastictranscoder, elb, emr, emrcontainers, emrserverless, evidently, finspace, fis, fms, fsx, gamelift, glacier, globalaccelerator, glue, grafana, guardduty, iam, identitystore, imagebuilder, inspector, inspector2, iot, ivs, ivschat, kendra, keyspaces, kinesis, kinesisanalyticsv2, kms, lakeformation, lambda, lb, lex, licensemanager, lightsail, location, macie, macie2, mediaconvert, medialive, mediapackage, mediastore, memorydb, mq, msk, mskconnect, mwaa, neptune, networkfirewall, networkmanager, oam, opensearch, opsworks, organizations, outposts, pinpoint, pipes, pricing, qldb, quicksight, ram, rbin, rds, redshift, redshiftdata, redshiftserverless, resourceexplorer, resourcegroups, resourcegroupstaggingapi, rolesanywhere, route53, route53domains, route53recoverycontrol, route53recoveryreadiness, rum, s3, s3control, s3outposts, sagemaker, scheduler, schemas, secretsmanager, securityhub, securitylake, serverlessrepository, servicecatalog, servicediscovery, servicequotas, ses, sesv2, sfn, shield, signer, simpledb, sns, sqs, ssm, ssmcontacts, ssmincidents, ssoadmin, storagegateway, swf, synthetics, timestreamwrite, transcribe, transfer, types, verifiedaccess, vpc, vpclattice, waf, wafregional, wafv2, worklink, workspaces, xray, };
|
|
241
|
+
export { accessanalyzer, account, acm, acmpca, alb, amp, amplify, apigateway, apigatewayv2, appautoscaling, appconfig, appflow, appintegrations, applicationinsights, applicationloadbalancing, appmesh, apprunner, appstream, appsync, athena, auditmanager, autoscaling, autoscalingplans, backup, batch, bedrockfoundation, bedrockmodel, budgets, cfg, chime, chimesdkmediapipelines, cleanrooms, cloud9, cloudcontrol, cloudformation, cloudfront, cloudhsmv2, cloudsearch, cloudtrail, cloudwatch, codeartifact, codebuild, codecatalyst, codecommit, codedeploy, codeguruprofiler, codegurureviewer, codepipeline, codestarconnections, codestarnotifications, cognito, comprehend, config, connect, controltower, costexplorer, cur, customerprofiles, dataexchange, datapipeline, datasync, dax, detective, devicefarm, directconnect, directoryservice, dlm, dms, docdb, dynamodb, ebs, ec2, ec2clientvpn, ec2transitgateway, ecr, ecrpublic, ecs, efs, eks, elasticache, elasticbeanstalk, elasticsearch, elastictranscoder, elb, emr, emrcontainers, emrserverless, evidently, finspace, fis, fms, fsx, gamelift, glacier, globalaccelerator, glue, grafana, guardduty, iam, identitystore, imagebuilder, inspector, inspector2, iot, ivs, ivschat, kendra, keyspaces, kinesis, kinesisanalyticsv2, kms, lakeformation, lambda, lb, lex, licensemanager, lightsail, location, macie, macie2, mediaconvert, medialive, mediapackage, mediastore, memorydb, mq, msk, mskconnect, mwaa, neptune, networkfirewall, networkmanager, oam, opensearch, opsworks, organizations, outposts, pinpoint, pipes, polly, pricing, qldb, quicksight, ram, rbin, rds, redshift, redshiftdata, redshiftserverless, resourceexplorer, resourcegroups, resourcegroupstaggingapi, rolesanywhere, route53, route53domains, route53recoverycontrol, route53recoveryreadiness, rum, s3, s3control, s3outposts, sagemaker, scheduler, schemas, secretsmanager, securityhub, securitylake, serverlessrepository, servicecatalog, servicediscovery, servicequotas, ses, sesv2, sfn, shield, signer, simpledb, sns, sqs, ssm, ssmcontacts, ssmincidents, ssoadmin, storagegateway, swf, synthetics, timestreamwrite, transcribe, transfer, types, verifiedaccess, vpc, vpclattice, waf, wafregional, wafv2, worklink, workspaces, xray, };
|
package/index.js
CHANGED
|
@@ -19,8 +19,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19
19
|
exports.bedrockmodel = exports.bedrockfoundation = exports.batch = exports.backup = exports.autoscalingplans = exports.autoscaling = exports.auditmanager = exports.athena = exports.appsync = exports.appstream = exports.apprunner = exports.appmesh = exports.applicationloadbalancing = exports.applicationinsights = exports.appintegrations = exports.appflow = exports.appconfig = exports.appautoscaling = exports.apigatewayv2 = exports.apigateway = exports.amplify = exports.amp = exports.alb = exports.acmpca = exports.acm = exports.account = exports.accessanalyzer = exports.Provider = exports.getServiceOutput = exports.getService = exports.getRegionsOutput = exports.getRegions = exports.getRegionOutput = exports.getRegion = exports.getPartitionOutput = exports.getPartition = exports.getIpRangesOutput = exports.getIpRanges = exports.getDefaultTagsOutput = exports.getDefaultTags = exports.getCallerIdentityOutput = exports.getCallerIdentity = exports.getBillingServiceAccountOutput = exports.getBillingServiceAccount = exports.getAvailabilityZonesOutput = exports.getAvailabilityZones = exports.getAvailabilityZoneOutput = exports.getAvailabilityZone = exports.getArnOutput = exports.getArn = void 0;
|
|
20
20
|
exports.ecs = exports.ecrpublic = exports.ecr = exports.ec2transitgateway = exports.ec2clientvpn = exports.ec2 = exports.ebs = exports.dynamodb = exports.docdb = exports.dms = exports.dlm = exports.directoryservice = exports.directconnect = exports.devicefarm = exports.detective = exports.dax = exports.datasync = exports.datapipeline = exports.dataexchange = exports.customerprofiles = exports.cur = exports.costexplorer = exports.controltower = exports.connect = exports.config = exports.comprehend = exports.cognito = exports.codestarnotifications = exports.codestarconnections = exports.codepipeline = exports.codegurureviewer = exports.codeguruprofiler = exports.codedeploy = exports.codecommit = exports.codecatalyst = exports.codebuild = exports.codeartifact = exports.cloudwatch = exports.cloudtrail = exports.cloudsearch = exports.cloudhsmv2 = exports.cloudfront = exports.cloudformation = exports.cloudcontrol = exports.cloud9 = exports.cleanrooms = exports.chimesdkmediapipelines = exports.chime = exports.cfg = exports.budgets = void 0;
|
|
21
21
|
exports.msk = exports.mq = exports.memorydb = exports.mediastore = exports.mediapackage = exports.medialive = exports.mediaconvert = exports.macie2 = exports.macie = exports.location = exports.lightsail = exports.licensemanager = exports.lex = exports.lb = exports.lambda = exports.lakeformation = exports.kms = exports.kinesisanalyticsv2 = exports.kinesis = exports.keyspaces = exports.kendra = exports.ivschat = exports.ivs = exports.iot = exports.inspector2 = exports.inspector = exports.imagebuilder = exports.identitystore = exports.iam = exports.guardduty = exports.grafana = exports.glue = exports.globalaccelerator = exports.glacier = exports.gamelift = exports.fsx = exports.fms = exports.fis = exports.finspace = exports.evidently = exports.emrserverless = exports.emrcontainers = exports.emr = exports.elb = exports.elastictranscoder = exports.elasticsearch = exports.elasticbeanstalk = exports.elasticache = exports.eks = exports.efs = void 0;
|
|
22
|
-
exports.
|
|
23
|
-
exports.xray = exports.workspaces = exports.worklink = exports.wafv2 = exports.wafregional = exports.waf = exports.vpclattice = exports.vpc = exports.verifiedaccess = exports.types = exports.transfer = exports.transcribe = exports.timestreamwrite = exports.synthetics = exports.swf = exports.storagegateway = exports.ssoadmin = exports.ssmincidents = exports.ssmcontacts = exports.ssm = exports.sqs = void 0;
|
|
22
|
+
exports.simpledb = exports.signer = exports.shield = exports.sfn = exports.sesv2 = exports.ses = exports.servicequotas = exports.servicediscovery = exports.servicecatalog = exports.serverlessrepository = exports.securitylake = exports.securityhub = exports.secretsmanager = exports.schemas = exports.scheduler = exports.sagemaker = exports.s3outposts = exports.s3control = exports.s3 = exports.rum = exports.route53recoveryreadiness = exports.route53recoverycontrol = exports.route53domains = exports.route53 = exports.rolesanywhere = exports.resourcegroupstaggingapi = exports.resourcegroups = exports.resourceexplorer = exports.redshiftserverless = exports.redshiftdata = exports.redshift = exports.rds = exports.rbin = exports.ram = exports.quicksight = exports.qldb = exports.pricing = exports.polly = exports.pipes = exports.pinpoint = exports.outposts = exports.organizations = exports.opsworks = exports.opensearch = exports.oam = exports.networkmanager = exports.networkfirewall = exports.neptune = exports.mwaa = exports.mskconnect = void 0;
|
|
23
|
+
exports.xray = exports.workspaces = exports.worklink = exports.wafv2 = exports.wafregional = exports.waf = exports.vpclattice = exports.vpc = exports.verifiedaccess = exports.types = exports.transfer = exports.transcribe = exports.timestreamwrite = exports.synthetics = exports.swf = exports.storagegateway = exports.ssoadmin = exports.ssmincidents = exports.ssmcontacts = exports.ssm = exports.sqs = exports.sns = void 0;
|
|
24
24
|
const pulumi = require("@pulumi/pulumi");
|
|
25
25
|
const utilities = require("./utilities");
|
|
26
26
|
// Export members:
|
|
@@ -344,6 +344,8 @@ const pinpoint = require("./pinpoint");
|
|
|
344
344
|
exports.pinpoint = pinpoint;
|
|
345
345
|
const pipes = require("./pipes");
|
|
346
346
|
exports.pipes = pipes;
|
|
347
|
+
const polly = require("./polly");
|
|
348
|
+
exports.polly = polly;
|
|
347
349
|
const pricing = require("./pricing");
|
|
348
350
|
exports.pricing = pricing;
|
|
349
351
|
const qldb = require("./qldb");
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/lb/getLoadBalancer.d.ts
CHANGED
|
@@ -53,9 +53,11 @@ export interface GetLoadBalancerResult {
|
|
|
53
53
|
readonly accessLogs: outputs.lb.GetLoadBalancerAccessLogs;
|
|
54
54
|
readonly arn: string;
|
|
55
55
|
readonly arnSuffix: string;
|
|
56
|
+
readonly connectionLogs: outputs.lb.GetLoadBalancerConnectionLog[];
|
|
56
57
|
readonly customerOwnedIpv4Pool: string;
|
|
57
58
|
readonly desyncMitigationMode: string;
|
|
58
59
|
readonly dnsName: string;
|
|
60
|
+
readonly dnsRecordClientRoutingPolicy: string;
|
|
59
61
|
readonly dropInvalidHeaderFields: boolean;
|
|
60
62
|
readonly enableCrossZoneLoadBalancing: boolean;
|
|
61
63
|
readonly enableDeletionProtection: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getLoadBalancer.js","sourceRoot":"","sources":["../../lb/getLoadBalancer.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,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,wCAAwC,EAAE;QACnE,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,0CASC;
|
|
1
|
+
{"version":3,"file":"getLoadBalancer.js","sourceRoot":"","sources":["../../lb/getLoadBalancer.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,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,wCAAwC,EAAE;QACnE,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,0CASC;AA4DD;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAA2B;IAC/F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1E,CAAC;AAFD,sDAEC"}
|