@pulumi/aws 6.0.0-alpha.6 → 6.0.0-alpha.7
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/apigateway/authorizer.d.ts +55 -0
- package/apigateway/authorizer.js +55 -0
- package/apigateway/authorizer.js.map +1 -1
- package/apigateway/methodSettings.d.ts +72 -0
- package/apigateway/methodSettings.js +72 -0
- package/apigateway/methodSettings.js.map +1 -1
- package/apigateway/stage.d.ts +1 -1
- package/apigateway/stage.js +1 -1
- package/appmesh/virtualRouter.d.ts +1 -1
- package/appmesh/virtualRouter.js +1 -1
- package/athena/database.d.ts +1 -1
- package/athena/database.js +1 -1
- package/autoscaling/policy.d.ts +1 -1
- package/autoscaling/policy.js +1 -1
- package/budgets/getBudget.d.ts +4 -1
- package/budgets/getBudget.js.map +1 -1
- package/cloudfront/distribution.d.ts +229 -0
- package/cloudfront/distribution.js +229 -0
- package/cloudfront/distribution.js.map +1 -1
- package/codepipeline/customActionType.d.ts +1 -1
- package/codepipeline/customActionType.js +1 -1
- package/dlm/lifecyclePolicy.d.ts +41 -0
- package/dlm/lifecyclePolicy.js +41 -0
- package/dlm/lifecyclePolicy.js.map +1 -1
- package/ec2/defaultRouteTable.d.ts +1 -1
- package/ec2/defaultRouteTable.js +1 -1
- package/ec2/getNatGateway.d.ts +31 -21
- package/ec2/getNatGateway.js +4 -6
- package/ec2/getNatGateway.js.map +1 -1
- package/ec2/natGateway.d.ts +79 -18
- package/ec2/natGateway.js +31 -0
- package/ec2/natGateway.js.map +1 -1
- package/ec2/routeTable.d.ts +43 -0
- package/ec2/routeTable.js +43 -0
- package/ec2/routeTable.js.map +1 -1
- package/ec2transitgateway/vpcAttachment.d.ts +2 -2
- package/glue/job.d.ts +39 -6
- package/glue/job.js +18 -0
- package/glue/job.js.map +1 -1
- package/grafana/workspace.d.ts +3 -3
- package/iam/index.d.ts +3 -0
- package/iam/index.js +7 -2
- package/iam/index.js.map +1 -1
- package/iam/securityTokenServicePreferences.d.ts +60 -0
- package/iam/securityTokenServicePreferences.js +64 -0
- package/iam/securityTokenServicePreferences.js.map +1 -0
- package/licensemanager/licenseGrantAccepter.d.ts +9 -0
- package/licensemanager/licenseGrantAccepter.js +9 -0
- package/licensemanager/licenseGrantAccepter.js.map +1 -1
- package/networkfirewall/firewallPolicy.d.ts +32 -0
- package/networkfirewall/firewallPolicy.js +32 -0
- package/networkfirewall/firewallPolicy.js.map +1 -1
- package/opensearch/serverlessAccessPolicy.d.ts +78 -18
- package/opensearch/serverlessAccessPolicy.js +78 -18
- package/opensearch/serverlessAccessPolicy.js.map +1 -1
- package/opensearch/serverlessCollection.d.ts +7 -3
- package/opensearch/serverlessCollection.js +4 -0
- package/opensearch/serverlessCollection.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/rds/getClusterSnapshot.d.ts +4 -2
- package/rds/getClusterSnapshot.js.map +1 -1
- package/rds/getInstance.d.ts +12 -6
- package/rds/getInstance.js +1 -0
- package/rds/getInstance.js.map +1 -1
- package/rds/getInstances.d.ts +41 -2
- package/rds/getInstances.js +25 -0
- package/rds/getInstances.js.map +1 -1
- package/rds/getSnapshot.d.ts +13 -0
- package/rds/getSnapshot.js +1 -0
- package/rds/getSnapshot.js.map +1 -1
- package/rds/instance.d.ts +6 -12
- package/rds/instance.js.map +1 -1
- package/sagemaker/index.d.ts +3 -0
- package/sagemaker/index.js +6 -1
- package/sagemaker/index.js.map +1 -1
- package/sagemaker/pipeline.d.ts +195 -0
- package/sagemaker/pipeline.js +108 -0
- package/sagemaker/pipeline.js.map +1 -0
- package/ssm/association.d.ts +3 -3
- package/ssm/parameter.d.ts +4 -4
- package/ssm/parameter.js +1 -1
- package/transfer/getServer.d.ts +1 -0
- package/transfer/getServer.js.map +1 -1
- package/transfer/server.d.ts +41 -0
- package/transfer/server.js +31 -0
- package/transfer/server.js.map +1 -1
- package/types/input.d.ts +534 -32
- package/types/output.d.ts +567 -50
- package/vpclattice/getService.d.ts +20 -8
- package/vpclattice/getService.js +8 -2
- package/vpclattice/getService.js.map +1 -1
- package/vpclattice/getServiceNetwork.d.ts +1 -1
- package/wafv2/webAclLoggingConfiguration.d.ts +3 -3
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Provides a SageMaker Pipeline resource.
|
|
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.sagemaker.Pipeline("example", {
|
|
15
|
+
* pipelineName: "example",
|
|
16
|
+
* pipelineDisplayName: "example",
|
|
17
|
+
* roleArn: aws_iam_role.example.arn,
|
|
18
|
+
* pipelineDefinition: JSON.stringify({
|
|
19
|
+
* Version: "2020-12-01",
|
|
20
|
+
* Steps: [{
|
|
21
|
+
* Name: "Test",
|
|
22
|
+
* Type: "Fail",
|
|
23
|
+
* Arguments: {
|
|
24
|
+
* ErrorMessage: "test",
|
|
25
|
+
* },
|
|
26
|
+
* }],
|
|
27
|
+
* }),
|
|
28
|
+
* });
|
|
29
|
+
* ```
|
|
30
|
+
*
|
|
31
|
+
* ## Import
|
|
32
|
+
*
|
|
33
|
+
* You can use `pulumi import` to import pipelines using `pipeline_name`. For exampleterraform import {
|
|
34
|
+
*
|
|
35
|
+
* to = aws_sagemaker_pipeline.test_pipeline
|
|
36
|
+
*
|
|
37
|
+
* id = "pipeline" } Using `pulumi import`, import pipelines using the `pipeline_name`. For exampleconsole % pulumi import aws_sagemaker_pipeline.test_pipeline pipeline
|
|
38
|
+
*/
|
|
39
|
+
export declare class Pipeline extends pulumi.CustomResource {
|
|
40
|
+
/**
|
|
41
|
+
* Get an existing Pipeline resource's state with the given name, ID, and optional extra
|
|
42
|
+
* properties used to qualify the lookup.
|
|
43
|
+
*
|
|
44
|
+
* @param name The _unique_ name of the resulting resource.
|
|
45
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
46
|
+
* @param state Any extra arguments used during the lookup.
|
|
47
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
48
|
+
*/
|
|
49
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: PipelineState, opts?: pulumi.CustomResourceOptions): Pipeline;
|
|
50
|
+
/**
|
|
51
|
+
* Returns true if the given object is an instance of Pipeline. This is designed to work even
|
|
52
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
53
|
+
*/
|
|
54
|
+
static isInstance(obj: any): obj is Pipeline;
|
|
55
|
+
/**
|
|
56
|
+
* The Amazon Resource Name (ARN) assigned by AWS to this Pipeline.
|
|
57
|
+
*/
|
|
58
|
+
readonly arn: pulumi.Output<string>;
|
|
59
|
+
/**
|
|
60
|
+
* This is the configuration that controls the parallelism of the pipeline. If specified, it applies to all runs of this pipeline by default. see Parallelism Configuration details below.
|
|
61
|
+
*/
|
|
62
|
+
readonly parallelismConfiguration: pulumi.Output<outputs.sagemaker.PipelineParallelismConfiguration | undefined>;
|
|
63
|
+
/**
|
|
64
|
+
* The [JSON pipeline definition](https://aws-sagemaker-mlops.github.io/sagemaker-model-building-pipeline-definition-JSON-schema/) of the pipeline.
|
|
65
|
+
*/
|
|
66
|
+
readonly pipelineDefinition: pulumi.Output<string | undefined>;
|
|
67
|
+
/**
|
|
68
|
+
* The location of the pipeline definition stored in Amazon S3. If specified, SageMaker will retrieve the pipeline definition from this location. see Pipeline Definition S3 Location details below.
|
|
69
|
+
*/
|
|
70
|
+
readonly pipelineDefinitionS3Location: pulumi.Output<outputs.sagemaker.PipelinePipelineDefinitionS3Location | undefined>;
|
|
71
|
+
/**
|
|
72
|
+
* A description of the pipeline.
|
|
73
|
+
*/
|
|
74
|
+
readonly pipelineDescription: pulumi.Output<string | undefined>;
|
|
75
|
+
/**
|
|
76
|
+
* The display name of the pipeline.
|
|
77
|
+
*/
|
|
78
|
+
readonly pipelineDisplayName: pulumi.Output<string>;
|
|
79
|
+
/**
|
|
80
|
+
* The name of the pipeline.
|
|
81
|
+
*/
|
|
82
|
+
readonly pipelineName: pulumi.Output<string>;
|
|
83
|
+
/**
|
|
84
|
+
* The name of the Pipeline (must be unique).
|
|
85
|
+
*/
|
|
86
|
+
readonly roleArn: pulumi.Output<string | undefined>;
|
|
87
|
+
/**
|
|
88
|
+
* A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
89
|
+
*/
|
|
90
|
+
readonly tags: pulumi.Output<{
|
|
91
|
+
[key: string]: string;
|
|
92
|
+
} | undefined>;
|
|
93
|
+
/**
|
|
94
|
+
* A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block.
|
|
95
|
+
*/
|
|
96
|
+
readonly tagsAll: pulumi.Output<{
|
|
97
|
+
[key: string]: string;
|
|
98
|
+
}>;
|
|
99
|
+
/**
|
|
100
|
+
* Create a Pipeline resource with the given unique name, arguments, and options.
|
|
101
|
+
*
|
|
102
|
+
* @param name The _unique_ name of the resource.
|
|
103
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
104
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
105
|
+
*/
|
|
106
|
+
constructor(name: string, args: PipelineArgs, opts?: pulumi.CustomResourceOptions);
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Input properties used for looking up and filtering Pipeline resources.
|
|
110
|
+
*/
|
|
111
|
+
export interface PipelineState {
|
|
112
|
+
/**
|
|
113
|
+
* The Amazon Resource Name (ARN) assigned by AWS to this Pipeline.
|
|
114
|
+
*/
|
|
115
|
+
arn?: pulumi.Input<string>;
|
|
116
|
+
/**
|
|
117
|
+
* This is the configuration that controls the parallelism of the pipeline. If specified, it applies to all runs of this pipeline by default. see Parallelism Configuration details below.
|
|
118
|
+
*/
|
|
119
|
+
parallelismConfiguration?: pulumi.Input<inputs.sagemaker.PipelineParallelismConfiguration>;
|
|
120
|
+
/**
|
|
121
|
+
* The [JSON pipeline definition](https://aws-sagemaker-mlops.github.io/sagemaker-model-building-pipeline-definition-JSON-schema/) of the pipeline.
|
|
122
|
+
*/
|
|
123
|
+
pipelineDefinition?: pulumi.Input<string>;
|
|
124
|
+
/**
|
|
125
|
+
* The location of the pipeline definition stored in Amazon S3. If specified, SageMaker will retrieve the pipeline definition from this location. see Pipeline Definition S3 Location details below.
|
|
126
|
+
*/
|
|
127
|
+
pipelineDefinitionS3Location?: pulumi.Input<inputs.sagemaker.PipelinePipelineDefinitionS3Location>;
|
|
128
|
+
/**
|
|
129
|
+
* A description of the pipeline.
|
|
130
|
+
*/
|
|
131
|
+
pipelineDescription?: pulumi.Input<string>;
|
|
132
|
+
/**
|
|
133
|
+
* The display name of the pipeline.
|
|
134
|
+
*/
|
|
135
|
+
pipelineDisplayName?: pulumi.Input<string>;
|
|
136
|
+
/**
|
|
137
|
+
* The name of the pipeline.
|
|
138
|
+
*/
|
|
139
|
+
pipelineName?: pulumi.Input<string>;
|
|
140
|
+
/**
|
|
141
|
+
* The name of the Pipeline (must be unique).
|
|
142
|
+
*/
|
|
143
|
+
roleArn?: pulumi.Input<string>;
|
|
144
|
+
/**
|
|
145
|
+
* A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
146
|
+
*/
|
|
147
|
+
tags?: pulumi.Input<{
|
|
148
|
+
[key: string]: pulumi.Input<string>;
|
|
149
|
+
}>;
|
|
150
|
+
/**
|
|
151
|
+
* A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block.
|
|
152
|
+
*/
|
|
153
|
+
tagsAll?: pulumi.Input<{
|
|
154
|
+
[key: string]: pulumi.Input<string>;
|
|
155
|
+
}>;
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
* The set of arguments for constructing a Pipeline resource.
|
|
159
|
+
*/
|
|
160
|
+
export interface PipelineArgs {
|
|
161
|
+
/**
|
|
162
|
+
* This is the configuration that controls the parallelism of the pipeline. If specified, it applies to all runs of this pipeline by default. see Parallelism Configuration details below.
|
|
163
|
+
*/
|
|
164
|
+
parallelismConfiguration?: pulumi.Input<inputs.sagemaker.PipelineParallelismConfiguration>;
|
|
165
|
+
/**
|
|
166
|
+
* The [JSON pipeline definition](https://aws-sagemaker-mlops.github.io/sagemaker-model-building-pipeline-definition-JSON-schema/) of the pipeline.
|
|
167
|
+
*/
|
|
168
|
+
pipelineDefinition?: pulumi.Input<string>;
|
|
169
|
+
/**
|
|
170
|
+
* The location of the pipeline definition stored in Amazon S3. If specified, SageMaker will retrieve the pipeline definition from this location. see Pipeline Definition S3 Location details below.
|
|
171
|
+
*/
|
|
172
|
+
pipelineDefinitionS3Location?: pulumi.Input<inputs.sagemaker.PipelinePipelineDefinitionS3Location>;
|
|
173
|
+
/**
|
|
174
|
+
* A description of the pipeline.
|
|
175
|
+
*/
|
|
176
|
+
pipelineDescription?: pulumi.Input<string>;
|
|
177
|
+
/**
|
|
178
|
+
* The display name of the pipeline.
|
|
179
|
+
*/
|
|
180
|
+
pipelineDisplayName: pulumi.Input<string>;
|
|
181
|
+
/**
|
|
182
|
+
* The name of the pipeline.
|
|
183
|
+
*/
|
|
184
|
+
pipelineName: pulumi.Input<string>;
|
|
185
|
+
/**
|
|
186
|
+
* The name of the Pipeline (must be unique).
|
|
187
|
+
*/
|
|
188
|
+
roleArn?: pulumi.Input<string>;
|
|
189
|
+
/**
|
|
190
|
+
* A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
191
|
+
*/
|
|
192
|
+
tags?: pulumi.Input<{
|
|
193
|
+
[key: string]: pulumi.Input<string>;
|
|
194
|
+
}>;
|
|
195
|
+
}
|
|
@@ -0,0 +1,108 @@
|
|
|
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.Pipeline = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a SageMaker Pipeline resource.
|
|
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.sagemaker.Pipeline("example", {
|
|
19
|
+
* pipelineName: "example",
|
|
20
|
+
* pipelineDisplayName: "example",
|
|
21
|
+
* roleArn: aws_iam_role.example.arn,
|
|
22
|
+
* pipelineDefinition: JSON.stringify({
|
|
23
|
+
* Version: "2020-12-01",
|
|
24
|
+
* Steps: [{
|
|
25
|
+
* Name: "Test",
|
|
26
|
+
* Type: "Fail",
|
|
27
|
+
* Arguments: {
|
|
28
|
+
* ErrorMessage: "test",
|
|
29
|
+
* },
|
|
30
|
+
* }],
|
|
31
|
+
* }),
|
|
32
|
+
* });
|
|
33
|
+
* ```
|
|
34
|
+
*
|
|
35
|
+
* ## Import
|
|
36
|
+
*
|
|
37
|
+
* You can use `pulumi import` to import pipelines using `pipeline_name`. For exampleterraform import {
|
|
38
|
+
*
|
|
39
|
+
* to = aws_sagemaker_pipeline.test_pipeline
|
|
40
|
+
*
|
|
41
|
+
* id = "pipeline" } Using `pulumi import`, import pipelines using the `pipeline_name`. For exampleconsole % pulumi import aws_sagemaker_pipeline.test_pipeline pipeline
|
|
42
|
+
*/
|
|
43
|
+
class Pipeline extends pulumi.CustomResource {
|
|
44
|
+
/**
|
|
45
|
+
* Get an existing Pipeline resource's state with the given name, ID, and optional extra
|
|
46
|
+
* properties used to qualify the lookup.
|
|
47
|
+
*
|
|
48
|
+
* @param name The _unique_ name of the resulting resource.
|
|
49
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
50
|
+
* @param state Any extra arguments used during the lookup.
|
|
51
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
52
|
+
*/
|
|
53
|
+
static get(name, id, state, opts) {
|
|
54
|
+
return new Pipeline(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Returns true if the given object is an instance of Pipeline. 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) {
|
|
61
|
+
if (obj === undefined || obj === null) {
|
|
62
|
+
return false;
|
|
63
|
+
}
|
|
64
|
+
return obj['__pulumiType'] === Pipeline.__pulumiType;
|
|
65
|
+
}
|
|
66
|
+
constructor(name, argsOrState, opts) {
|
|
67
|
+
let resourceInputs = {};
|
|
68
|
+
opts = opts || {};
|
|
69
|
+
if (opts.id) {
|
|
70
|
+
const state = argsOrState;
|
|
71
|
+
resourceInputs["arn"] = state ? state.arn : undefined;
|
|
72
|
+
resourceInputs["parallelismConfiguration"] = state ? state.parallelismConfiguration : undefined;
|
|
73
|
+
resourceInputs["pipelineDefinition"] = state ? state.pipelineDefinition : undefined;
|
|
74
|
+
resourceInputs["pipelineDefinitionS3Location"] = state ? state.pipelineDefinitionS3Location : undefined;
|
|
75
|
+
resourceInputs["pipelineDescription"] = state ? state.pipelineDescription : undefined;
|
|
76
|
+
resourceInputs["pipelineDisplayName"] = state ? state.pipelineDisplayName : undefined;
|
|
77
|
+
resourceInputs["pipelineName"] = state ? state.pipelineName : undefined;
|
|
78
|
+
resourceInputs["roleArn"] = state ? state.roleArn : undefined;
|
|
79
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
80
|
+
resourceInputs["tagsAll"] = state ? state.tagsAll : undefined;
|
|
81
|
+
}
|
|
82
|
+
else {
|
|
83
|
+
const args = argsOrState;
|
|
84
|
+
if ((!args || args.pipelineDisplayName === undefined) && !opts.urn) {
|
|
85
|
+
throw new Error("Missing required property 'pipelineDisplayName'");
|
|
86
|
+
}
|
|
87
|
+
if ((!args || args.pipelineName === undefined) && !opts.urn) {
|
|
88
|
+
throw new Error("Missing required property 'pipelineName'");
|
|
89
|
+
}
|
|
90
|
+
resourceInputs["parallelismConfiguration"] = args ? args.parallelismConfiguration : undefined;
|
|
91
|
+
resourceInputs["pipelineDefinition"] = args ? args.pipelineDefinition : undefined;
|
|
92
|
+
resourceInputs["pipelineDefinitionS3Location"] = args ? args.pipelineDefinitionS3Location : undefined;
|
|
93
|
+
resourceInputs["pipelineDescription"] = args ? args.pipelineDescription : undefined;
|
|
94
|
+
resourceInputs["pipelineDisplayName"] = args ? args.pipelineDisplayName : undefined;
|
|
95
|
+
resourceInputs["pipelineName"] = args ? args.pipelineName : undefined;
|
|
96
|
+
resourceInputs["roleArn"] = args ? args.roleArn : undefined;
|
|
97
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
98
|
+
resourceInputs["arn"] = undefined /*out*/;
|
|
99
|
+
resourceInputs["tagsAll"] = undefined /*out*/;
|
|
100
|
+
}
|
|
101
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
102
|
+
super(Pipeline.__pulumiType, name, resourceInputs, opts);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
exports.Pipeline = Pipeline;
|
|
106
|
+
/** @internal */
|
|
107
|
+
Pipeline.__pulumiType = 'aws:sagemaker/pipeline:Pipeline';
|
|
108
|
+
//# sourceMappingURL=pipeline.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pipeline.js","sourceRoot":"","sources":["../../sagemaker/pipeline.ts"],"names":[],"mappings":"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"}
|
package/ssm/association.d.ts
CHANGED
|
@@ -122,7 +122,7 @@ export declare class Association extends pulumi.CustomResource {
|
|
|
122
122
|
*/
|
|
123
123
|
readonly maxConcurrency: pulumi.Output<string | undefined>;
|
|
124
124
|
/**
|
|
125
|
-
* The number of errors that are allowed before the system stops sending requests to run the association on additional targets. You can specify a number, for example 10, or a percentage of the target set, for example 10%.
|
|
125
|
+
* The number of errors that are allowed before the system stops sending requests to run the association on additional targets. You can specify a number, for example 10, or a percentage of the target set, for example 10%. If you specify a threshold of 3, the stop command is sent when the fourth error is returned. If you specify a threshold of 10% for 50 associations, the stop command is sent when the sixth error is returned.
|
|
126
126
|
*/
|
|
127
127
|
readonly maxErrors: pulumi.Output<string | undefined>;
|
|
128
128
|
/**
|
|
@@ -205,7 +205,7 @@ export interface AssociationState {
|
|
|
205
205
|
*/
|
|
206
206
|
maxConcurrency?: pulumi.Input<string>;
|
|
207
207
|
/**
|
|
208
|
-
* The number of errors that are allowed before the system stops sending requests to run the association on additional targets. You can specify a number, for example 10, or a percentage of the target set, for example 10%.
|
|
208
|
+
* The number of errors that are allowed before the system stops sending requests to run the association on additional targets. You can specify a number, for example 10, or a percentage of the target set, for example 10%. If you specify a threshold of 3, the stop command is sent when the fourth error is returned. If you specify a threshold of 10% for 50 associations, the stop command is sent when the sixth error is returned.
|
|
209
209
|
*/
|
|
210
210
|
maxErrors?: pulumi.Input<string>;
|
|
211
211
|
/**
|
|
@@ -272,7 +272,7 @@ export interface AssociationArgs {
|
|
|
272
272
|
*/
|
|
273
273
|
maxConcurrency?: pulumi.Input<string>;
|
|
274
274
|
/**
|
|
275
|
-
* The number of errors that are allowed before the system stops sending requests to run the association on additional targets. You can specify a number, for example 10, or a percentage of the target set, for example 10%.
|
|
275
|
+
* The number of errors that are allowed before the system stops sending requests to run the association on additional targets. You can specify a number, for example 10, or a percentage of the target set, for example 10%. If you specify a threshold of 3, the stop command is sent when the fourth error is returned. If you specify a threshold of 10% for 50 associations, the stop command is sent when the sixth error is returned.
|
|
276
276
|
*/
|
|
277
277
|
maxErrors?: pulumi.Input<string>;
|
|
278
278
|
/**
|
package/ssm/parameter.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as enums from "../types/enums";
|
|
|
3
3
|
/**
|
|
4
4
|
* Provides an SSM Parameter resource.
|
|
5
5
|
*
|
|
6
|
-
* > **Note:** `overwrite` also makes it possible to overwrite an existing SSM Parameter that's not created by the provider before.
|
|
6
|
+
* > **Note:** `overwrite` also makes it possible to overwrite an existing SSM Parameter that's not created by the provider before. This argument has been deprecated and will be removed in v6.0.0 of the provider. For more information on how this affects the behavior of this resource, see this issue comment.
|
|
7
7
|
*
|
|
8
8
|
* ## Example Usage
|
|
9
9
|
* ### Basic example
|
|
@@ -98,7 +98,7 @@ export declare class Parameter extends pulumi.CustomResource {
|
|
|
98
98
|
*/
|
|
99
99
|
readonly name: pulumi.Output<string>;
|
|
100
100
|
/**
|
|
101
|
-
* Overwrite an existing parameter. If not specified,
|
|
101
|
+
* Overwrite an existing parameter. If not specified, defaults to `false` if the resource has not been created by Pulumi to avoid overwrite of existing resource, and will default to `true` otherwise (Pulumi lifecycle rules should then be used to manage the update behavior).
|
|
102
102
|
*
|
|
103
103
|
* @deprecated this attribute has been deprecated
|
|
104
104
|
*/
|
|
@@ -177,7 +177,7 @@ export interface ParameterState {
|
|
|
177
177
|
*/
|
|
178
178
|
name?: pulumi.Input<string>;
|
|
179
179
|
/**
|
|
180
|
-
* Overwrite an existing parameter. If not specified,
|
|
180
|
+
* Overwrite an existing parameter. If not specified, defaults to `false` if the resource has not been created by Pulumi to avoid overwrite of existing resource, and will default to `true` otherwise (Pulumi lifecycle rules should then be used to manage the update behavior).
|
|
181
181
|
*
|
|
182
182
|
* @deprecated this attribute has been deprecated
|
|
183
183
|
*/
|
|
@@ -248,7 +248,7 @@ export interface ParameterArgs {
|
|
|
248
248
|
*/
|
|
249
249
|
name?: pulumi.Input<string>;
|
|
250
250
|
/**
|
|
251
|
-
* Overwrite an existing parameter. If not specified,
|
|
251
|
+
* Overwrite an existing parameter. If not specified, defaults to `false` if the resource has not been created by Pulumi to avoid overwrite of existing resource, and will default to `true` otherwise (Pulumi lifecycle rules should then be used to manage the update behavior).
|
|
252
252
|
*
|
|
253
253
|
* @deprecated this attribute has been deprecated
|
|
254
254
|
*/
|
package/ssm/parameter.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Provides an SSM Parameter resource.
|
|
10
10
|
*
|
|
11
|
-
* > **Note:** `overwrite` also makes it possible to overwrite an existing SSM Parameter that's not created by the provider before.
|
|
11
|
+
* > **Note:** `overwrite` also makes it possible to overwrite an existing SSM Parameter that's not created by the provider before. This argument has been deprecated and will be removed in v6.0.0 of the provider. For more information on how this affects the behavior of this resource, see this issue comment.
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
* ### Basic example
|
package/transfer/getServer.d.ts
CHANGED
|
@@ -73,6 +73,7 @@ export interface GetServerResult {
|
|
|
73
73
|
*/
|
|
74
74
|
readonly securityPolicyName: string;
|
|
75
75
|
readonly serverId: string;
|
|
76
|
+
readonly structuredLogDestinations: string[];
|
|
76
77
|
/**
|
|
77
78
|
* URL of the service endpoint used to authenticate users with an `identityProviderType` of `API_GATEWAY`.
|
|
78
79
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getServer.js","sourceRoot":"","sources":["../../transfer/getServer.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;GAcG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IAEtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8BAMC;
|
|
1
|
+
{"version":3,"file":"getServer.js","sourceRoot":"","sources":["../../transfer/getServer.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;GAcG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IAEtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8BAMC;AAmED;;;;;;;;;;;;;;GAcG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpE,CAAC;AAFD,0CAEC"}
|
package/transfer/server.d.ts
CHANGED
|
@@ -85,6 +85,35 @@ import * as outputs from "../types/output";
|
|
|
85
85
|
* url: `${aws_api_gateway_deployment.example.invoke_url}${aws_api_gateway_resource.example.path}`,
|
|
86
86
|
* });
|
|
87
87
|
* ```
|
|
88
|
+
* ### Using Structured Logging Destinations
|
|
89
|
+
*
|
|
90
|
+
* ```typescript
|
|
91
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
92
|
+
* import * as aws from "@pulumi/aws";
|
|
93
|
+
*
|
|
94
|
+
* const transferLogGroup = new aws.cloudwatch.LogGroup("transferLogGroup", {namePrefix: "transfer_test_"});
|
|
95
|
+
* const transferAssumeRole = aws.iam.getPolicyDocument({
|
|
96
|
+
* statements: [{
|
|
97
|
+
* effect: "Allow",
|
|
98
|
+
* principals: [{
|
|
99
|
+
* type: "Service",
|
|
100
|
+
* identifiers: ["transfer.amazonaws.com"],
|
|
101
|
+
* }],
|
|
102
|
+
* actions: ["sts:AssumeRole"],
|
|
103
|
+
* }],
|
|
104
|
+
* });
|
|
105
|
+
* const iamForTransfer = new aws.iam.Role("iamForTransfer", {
|
|
106
|
+
* namePrefix: "iam_for_transfer_",
|
|
107
|
+
* assumeRolePolicy: transferAssumeRole.then(transferAssumeRole => transferAssumeRole.json),
|
|
108
|
+
* managedPolicyArns: ["arn:aws:iam::aws:policy/service-role/AWSTransferLoggingAccess"],
|
|
109
|
+
* });
|
|
110
|
+
* const transferServer = new aws.transfer.Server("transferServer", {
|
|
111
|
+
* endpointType: "PUBLIC",
|
|
112
|
+
* loggingRole: iamForTransfer.arn,
|
|
113
|
+
* protocols: ["SFTP"],
|
|
114
|
+
* structuredLogDestinations: [pulumi.interpolate`${transferLogGroup.arn}:*`],
|
|
115
|
+
* });
|
|
116
|
+
* ```
|
|
88
117
|
*
|
|
89
118
|
* ## Import
|
|
90
119
|
*
|
|
@@ -186,6 +215,10 @@ export declare class Server extends pulumi.CustomResource {
|
|
|
186
215
|
* Specifies the name of the security policy that is attached to the server. Possible values are `TransferSecurityPolicy-2018-11`, `TransferSecurityPolicy-2020-06`, `TransferSecurityPolicy-FIPS-2020-06`, `TransferSecurityPolicy-2022-03` and `TransferSecurityPolicy-2023-05`. Default value is: `TransferSecurityPolicy-2018-11`.
|
|
187
216
|
*/
|
|
188
217
|
readonly securityPolicyName: pulumi.Output<string | undefined>;
|
|
218
|
+
/**
|
|
219
|
+
* This is a set of arns of destinations that will receive structured logs from the transfer server
|
|
220
|
+
*/
|
|
221
|
+
readonly structuredLogDestinations: pulumi.Output<string[] | undefined>;
|
|
189
222
|
/**
|
|
190
223
|
* A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
191
224
|
*/
|
|
@@ -295,6 +328,10 @@ export interface ServerState {
|
|
|
295
328
|
* Specifies the name of the security policy that is attached to the server. Possible values are `TransferSecurityPolicy-2018-11`, `TransferSecurityPolicy-2020-06`, `TransferSecurityPolicy-FIPS-2020-06`, `TransferSecurityPolicy-2022-03` and `TransferSecurityPolicy-2023-05`. Default value is: `TransferSecurityPolicy-2018-11`.
|
|
296
329
|
*/
|
|
297
330
|
securityPolicyName?: pulumi.Input<string>;
|
|
331
|
+
/**
|
|
332
|
+
* This is a set of arns of destinations that will receive structured logs from the transfer server
|
|
333
|
+
*/
|
|
334
|
+
structuredLogDestinations?: pulumi.Input<pulumi.Input<string>[]>;
|
|
298
335
|
/**
|
|
299
336
|
* A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
300
337
|
*/
|
|
@@ -384,6 +421,10 @@ export interface ServerArgs {
|
|
|
384
421
|
* Specifies the name of the security policy that is attached to the server. Possible values are `TransferSecurityPolicy-2018-11`, `TransferSecurityPolicy-2020-06`, `TransferSecurityPolicy-FIPS-2020-06`, `TransferSecurityPolicy-2022-03` and `TransferSecurityPolicy-2023-05`. Default value is: `TransferSecurityPolicy-2018-11`.
|
|
385
422
|
*/
|
|
386
423
|
securityPolicyName?: pulumi.Input<string>;
|
|
424
|
+
/**
|
|
425
|
+
* This is a set of arns of destinations that will receive structured logs from the transfer server
|
|
426
|
+
*/
|
|
427
|
+
structuredLogDestinations?: pulumi.Input<pulumi.Input<string>[]>;
|
|
387
428
|
/**
|
|
388
429
|
* A map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
389
430
|
*/
|
package/transfer/server.js
CHANGED
|
@@ -89,6 +89,35 @@ const utilities = require("../utilities");
|
|
|
89
89
|
* url: `${aws_api_gateway_deployment.example.invoke_url}${aws_api_gateway_resource.example.path}`,
|
|
90
90
|
* });
|
|
91
91
|
* ```
|
|
92
|
+
* ### Using Structured Logging Destinations
|
|
93
|
+
*
|
|
94
|
+
* ```typescript
|
|
95
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
96
|
+
* import * as aws from "@pulumi/aws";
|
|
97
|
+
*
|
|
98
|
+
* const transferLogGroup = new aws.cloudwatch.LogGroup("transferLogGroup", {namePrefix: "transfer_test_"});
|
|
99
|
+
* const transferAssumeRole = aws.iam.getPolicyDocument({
|
|
100
|
+
* statements: [{
|
|
101
|
+
* effect: "Allow",
|
|
102
|
+
* principals: [{
|
|
103
|
+
* type: "Service",
|
|
104
|
+
* identifiers: ["transfer.amazonaws.com"],
|
|
105
|
+
* }],
|
|
106
|
+
* actions: ["sts:AssumeRole"],
|
|
107
|
+
* }],
|
|
108
|
+
* });
|
|
109
|
+
* const iamForTransfer = new aws.iam.Role("iamForTransfer", {
|
|
110
|
+
* namePrefix: "iam_for_transfer_",
|
|
111
|
+
* assumeRolePolicy: transferAssumeRole.then(transferAssumeRole => transferAssumeRole.json),
|
|
112
|
+
* managedPolicyArns: ["arn:aws:iam::aws:policy/service-role/AWSTransferLoggingAccess"],
|
|
113
|
+
* });
|
|
114
|
+
* const transferServer = new aws.transfer.Server("transferServer", {
|
|
115
|
+
* endpointType: "PUBLIC",
|
|
116
|
+
* loggingRole: iamForTransfer.arn,
|
|
117
|
+
* protocols: ["SFTP"],
|
|
118
|
+
* structuredLogDestinations: [pulumi.interpolate`${transferLogGroup.arn}:*`],
|
|
119
|
+
* });
|
|
120
|
+
* ```
|
|
92
121
|
*
|
|
93
122
|
* ## Import
|
|
94
123
|
*
|
|
@@ -145,6 +174,7 @@ class Server extends pulumi.CustomResource {
|
|
|
145
174
|
resourceInputs["protocolDetails"] = state ? state.protocolDetails : undefined;
|
|
146
175
|
resourceInputs["protocols"] = state ? state.protocols : undefined;
|
|
147
176
|
resourceInputs["securityPolicyName"] = state ? state.securityPolicyName : undefined;
|
|
177
|
+
resourceInputs["structuredLogDestinations"] = state ? state.structuredLogDestinations : undefined;
|
|
148
178
|
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
149
179
|
resourceInputs["tagsAll"] = state ? state.tagsAll : undefined;
|
|
150
180
|
resourceInputs["url"] = state ? state.url : undefined;
|
|
@@ -168,6 +198,7 @@ class Server extends pulumi.CustomResource {
|
|
|
168
198
|
resourceInputs["protocolDetails"] = args ? args.protocolDetails : undefined;
|
|
169
199
|
resourceInputs["protocols"] = args ? args.protocols : undefined;
|
|
170
200
|
resourceInputs["securityPolicyName"] = args ? args.securityPolicyName : undefined;
|
|
201
|
+
resourceInputs["structuredLogDestinations"] = args ? args.structuredLogDestinations : undefined;
|
|
171
202
|
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
172
203
|
resourceInputs["url"] = args ? args.url : undefined;
|
|
173
204
|
resourceInputs["workflowDetails"] = args ? args.workflowDetails : undefined;
|
package/transfer/server.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.js","sourceRoot":"","sources":["../../transfer/server.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"server.js","sourceRoot":"","sources":["../../transfer/server.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyHG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;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;IA2GD,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,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,+BAA+B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,6BAA6B,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1G,cAAc,CAAC,8BAA8B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAC;YACxG,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,2BAA2B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClG,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;SACjF;aAAM;YACH,MAAM,IAAI,GAAG,WAAqC,CAAC;YACnD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,SAAS,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,OAAO,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,+BAA+B,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,6BAA6B,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,6BAA6B,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACtJ,cAAc,CAAC,8BAA8B,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,4BAA4B,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,4BAA4B,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACnJ,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC1C,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,cAAc,CAAC,oBAAoB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACzD,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACjD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,SAAS,EAAE,+BAA+B,EAAE,8BAA8B,CAAC,EAAE,CAAC;QAC7H,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,MAAM,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3D,CAAC;;AAjML,wBAkMC;AApLG,gBAAgB;AACO,mBAAY,GAAG,4BAA4B,CAAC"}
|