@pulumi/aws 6.44.0 → 6.45.0-alpha.1721035716
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/appstream/fleet.d.ts +3 -3
- package/cloudformation/stackSetInstance.d.ts +3 -3
- package/cloudtrail/eventDataStore.d.ts +12 -0
- package/cloudtrail/eventDataStore.js +2 -0
- package/cloudtrail/eventDataStore.js.map +1 -1
- package/cloudwatch/index.d.ts +3 -0
- package/cloudwatch/index.js +6 -1
- package/cloudwatch/index.js.map +1 -1
- package/cloudwatch/logAccountPolicy.d.ts +162 -0
- package/cloudwatch/logAccountPolicy.js +132 -0
- package/cloudwatch/logAccountPolicy.js.map +1 -0
- package/ec2/getCoipPools.d.ts +1 -1
- package/ec2/getLocalGatewayVirtualInterfaceGroups.d.ts +1 -1
- package/efs/getAccessPoint.d.ts +1 -1
- package/eks/cluster.d.ts +12 -0
- package/eks/cluster.js +2 -0
- package/eks/cluster.js.map +1 -1
- package/fms/policy.d.ts +3 -0
- package/fms/policy.js +2 -0
- package/fms/policy.js.map +1 -1
- package/fsx/ontapFileSystem.d.ts +45 -13
- package/fsx/ontapFileSystem.js +33 -1
- package/fsx/ontapFileSystem.js.map +1 -1
- package/mskconnect/connector.d.ts +61 -21
- package/mskconnect/connector.js +4 -0
- package/mskconnect/connector.js.map +1 -1
- package/mskconnect/customPlugin.d.ts +43 -9
- package/mskconnect/customPlugin.js +4 -0
- package/mskconnect/customPlugin.js.map +1 -1
- package/mskconnect/getConnector.d.ts +18 -0
- package/mskconnect/getConnector.js +1 -0
- package/mskconnect/getConnector.js.map +1 -1
- package/mskconnect/getCustomPlugin.d.ts +18 -0
- package/mskconnect/getCustomPlugin.js +1 -0
- package/mskconnect/getCustomPlugin.js.map +1 -1
- package/mskconnect/getWorkerConfiguration.d.ts +18 -0
- package/mskconnect/getWorkerConfiguration.js +1 -0
- package/mskconnect/getWorkerConfiguration.js.map +1 -1
- package/mskconnect/workerConfiguration.d.ts +34 -0
- package/mskconnect/workerConfiguration.js +4 -0
- package/mskconnect/workerConfiguration.js.map +1 -1
- package/mwaa/environment.d.ts +9 -0
- package/mwaa/environment.js.map +1 -1
- package/oam/getLink.d.ts +5 -0
- package/oam/getLink.js.map +1 -1
- package/oam/link.d.ts +50 -0
- package/oam/link.js +38 -0
- package/oam/link.js.map +1 -1
- package/package.json +2 -2
- package/rds/cluster.d.ts +22 -0
- package/rds/cluster.js +6 -0
- package/rds/cluster.js.map +1 -1
- package/s3/bucketObjectLockConfigurationV2.d.ts +6 -6
- package/ssm/association.d.ts +34 -0
- package/ssm/association.js +4 -0
- package/ssm/association.js.map +1 -1
- package/types/input.d.ts +164 -32
- package/types/input.js.map +1 -1
- package/types/output.d.ts +185 -26
- package/types/output.js.map +1 -1
- package/verifiedpermissions/identitySource.d.ts +144 -0
- package/verifiedpermissions/identitySource.js +126 -0
- package/verifiedpermissions/identitySource.js.map +1 -0
- package/verifiedpermissions/index.d.ts +3 -0
- package/verifiedpermissions/index.js +6 -1
- package/verifiedpermissions/index.js.map +1 -1
package/fms/policy.d.ts
CHANGED
|
@@ -104,6 +104,7 @@ export declare class Policy extends pulumi.CustomResource {
|
|
|
104
104
|
* A boolean value, indicates if the policy should automatically applied to resources that already exist in the account.
|
|
105
105
|
*/
|
|
106
106
|
readonly remediationEnabled: pulumi.Output<boolean | undefined>;
|
|
107
|
+
readonly resourceSetIds: pulumi.Output<string[]>;
|
|
107
108
|
/**
|
|
108
109
|
* A map of resource tags, that if present will filter protections on resources based on the exclude_resource_tags.
|
|
109
110
|
*/
|
|
@@ -186,6 +187,7 @@ export interface PolicyState {
|
|
|
186
187
|
* A boolean value, indicates if the policy should automatically applied to resources that already exist in the account.
|
|
187
188
|
*/
|
|
188
189
|
remediationEnabled?: pulumi.Input<boolean>;
|
|
190
|
+
resourceSetIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
189
191
|
/**
|
|
190
192
|
* A map of resource tags, that if present will filter protections on resources based on the exclude_resource_tags.
|
|
191
193
|
*/
|
|
@@ -255,6 +257,7 @@ export interface PolicyArgs {
|
|
|
255
257
|
* A boolean value, indicates if the policy should automatically applied to resources that already exist in the account.
|
|
256
258
|
*/
|
|
257
259
|
remediationEnabled?: pulumi.Input<boolean>;
|
|
260
|
+
resourceSetIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
258
261
|
/**
|
|
259
262
|
* A map of resource tags, that if present will filter protections on resources based on the exclude_resource_tags.
|
|
260
263
|
*/
|
package/fms/policy.js
CHANGED
|
@@ -93,6 +93,7 @@ class Policy extends pulumi.CustomResource {
|
|
|
93
93
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
94
94
|
resourceInputs["policyUpdateToken"] = state ? state.policyUpdateToken : undefined;
|
|
95
95
|
resourceInputs["remediationEnabled"] = state ? state.remediationEnabled : undefined;
|
|
96
|
+
resourceInputs["resourceSetIds"] = state ? state.resourceSetIds : undefined;
|
|
96
97
|
resourceInputs["resourceTags"] = state ? state.resourceTags : undefined;
|
|
97
98
|
resourceInputs["resourceType"] = state ? state.resourceType : undefined;
|
|
98
99
|
resourceInputs["resourceTypeLists"] = state ? state.resourceTypeLists : undefined;
|
|
@@ -116,6 +117,7 @@ class Policy extends pulumi.CustomResource {
|
|
|
116
117
|
resourceInputs["includeMap"] = args ? args.includeMap : undefined;
|
|
117
118
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
118
119
|
resourceInputs["remediationEnabled"] = args ? args.remediationEnabled : undefined;
|
|
120
|
+
resourceInputs["resourceSetIds"] = args ? args.resourceSetIds : undefined;
|
|
119
121
|
resourceInputs["resourceTags"] = args ? args.resourceTags : undefined;
|
|
120
122
|
resourceInputs["resourceType"] = args ? args.resourceType : undefined;
|
|
121
123
|
resourceInputs["resourceTypeLists"] = args ? args.resourceTypeLists : undefined;
|
package/fms/policy.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"policy.js","sourceRoot":"","sources":["../../fms/policy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;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;
|
|
1
|
+
{"version":3,"file":"policy.js","sourceRoot":"","sources":["../../fms/policy.ts"],"names":[],"mappings":"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"}
|
package/fsx/ontapFileSystem.d.ts
CHANGED
|
@@ -30,8 +30,40 @@ import * as outputs from "../types/output";
|
|
|
30
30
|
* const testhapairs = new aws.fsx.OntapFileSystem("testhapairs", {
|
|
31
31
|
* storageCapacity: 2048,
|
|
32
32
|
* subnetIds: [test1.id],
|
|
33
|
+
* deploymentType: "SINGLE_AZ_1",
|
|
34
|
+
* haPairs: 2,
|
|
35
|
+
* throughputCapacityPerHaPair: 128,
|
|
36
|
+
* preferredSubnetId: test1.id,
|
|
37
|
+
* });
|
|
38
|
+
* ```
|
|
39
|
+
*
|
|
40
|
+
* ```typescript
|
|
41
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
42
|
+
* import * as aws from "@pulumi/aws";
|
|
43
|
+
*
|
|
44
|
+
* const testsingleazgen2 = new aws.fsx.OntapFileSystem("testsingleazgen2", {
|
|
45
|
+
* storageCapacity: 4096,
|
|
46
|
+
* subnetIds: [test1.id],
|
|
33
47
|
* deploymentType: "SINGLE_AZ_2",
|
|
34
|
-
*
|
|
48
|
+
* haPairs: 4,
|
|
49
|
+
* throughputCapacityPerHaPair: 384,
|
|
50
|
+
* preferredSubnetId: test1.id,
|
|
51
|
+
* });
|
|
52
|
+
* ```
|
|
53
|
+
*
|
|
54
|
+
* ```typescript
|
|
55
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
56
|
+
* import * as aws from "@pulumi/aws";
|
|
57
|
+
*
|
|
58
|
+
* const testmultiazgen2 = new aws.fsx.OntapFileSystem("testmultiazgen2", {
|
|
59
|
+
* storageCapacity: 1024,
|
|
60
|
+
* subnetIds: [
|
|
61
|
+
* test1.id,
|
|
62
|
+
* test2.id,
|
|
63
|
+
* ],
|
|
64
|
+
* deploymentType: "MULTI_AZ_2",
|
|
65
|
+
* haPairs: 1,
|
|
66
|
+
* throughputCapacityPerHaPair: 384,
|
|
35
67
|
* preferredSubnetId: test1.id,
|
|
36
68
|
* });
|
|
37
69
|
* ```
|
|
@@ -74,7 +106,7 @@ export declare class OntapFileSystem extends pulumi.CustomResource {
|
|
|
74
106
|
*/
|
|
75
107
|
readonly dailyAutomaticBackupStartTime: pulumi.Output<string>;
|
|
76
108
|
/**
|
|
77
|
-
* The filesystem deployment type. Supports `MULTI_AZ_1`, `SINGLE_AZ_1`, and `SINGLE_AZ_2`.
|
|
109
|
+
* The filesystem deployment type. Supports `MULTI_AZ_1`, `MULTI_AZ_2`, `SINGLE_AZ_1`, and `SINGLE_AZ_2`.
|
|
78
110
|
*/
|
|
79
111
|
readonly deploymentType: pulumi.Output<string>;
|
|
80
112
|
/**
|
|
@@ -98,7 +130,7 @@ export declare class OntapFileSystem extends pulumi.CustomResource {
|
|
|
98
130
|
*/
|
|
99
131
|
readonly fsxAdminPassword: pulumi.Output<string | undefined>;
|
|
100
132
|
/**
|
|
101
|
-
* The number of haPairs to deploy for the file system. Valid
|
|
133
|
+
* The number of haPairs to deploy for the file system. Valid value is 1 for `SINGLE_AZ_1` or `MULTI_AZ_1` and `MULTI_AZ_2`. Valid values are 1 through 12 for `SINGLE_AZ_2`.
|
|
102
134
|
*/
|
|
103
135
|
readonly haPairs: pulumi.Output<number>;
|
|
104
136
|
/**
|
|
@@ -126,7 +158,7 @@ export declare class OntapFileSystem extends pulumi.CustomResource {
|
|
|
126
158
|
*/
|
|
127
159
|
readonly securityGroupIds: pulumi.Output<string[] | undefined>;
|
|
128
160
|
/**
|
|
129
|
-
* The storage capacity (GiB) of the file system. Valid values between `1024` and `196608` for file systems with deploymentType `SINGLE_AZ_1` and `MULTI_AZ_1`. Valid values between `
|
|
161
|
+
* The storage capacity (GiB) of the file system. Valid values between `1024` and `196608` for file systems with deploymentType `SINGLE_AZ_1` and `MULTI_AZ_1`. Valid values are between `1024` and `524288` for `MULTI_AZ_2`. Valid values between `1024` (`1024` per ha pair) and `1048576` for file systems with deploymentType `SINGLE_AZ_2`. For `SINGLE_AZ_2`, the `1048576` (1PB) maximum is only supported when using 2 or more ha_pairs, the maximum is `524288` (512TB) when using 1 ha_pair.
|
|
130
162
|
*/
|
|
131
163
|
readonly storageCapacity: pulumi.Output<number>;
|
|
132
164
|
/**
|
|
@@ -156,7 +188,7 @@ export declare class OntapFileSystem extends pulumi.CustomResource {
|
|
|
156
188
|
*/
|
|
157
189
|
readonly throughputCapacity: pulumi.Output<number>;
|
|
158
190
|
/**
|
|
159
|
-
* Sets the throughput capacity (in MBps) for the file system that you're creating. Valid value
|
|
191
|
+
* Sets the per-HA-pair throughput capacity (in MBps) for the file system that you're creating, as opposed to `throughputCapacity` which specifies the total throughput capacity for the file system. Valid value for `MULTI_AZ_1` and `SINGLE_AZ_1` are `128`, `256`, `512`, `1024`, `2048`, and `4096`. Valid values for deployment type `MULTI_AZ_2` and `SINGLE_AZ_2` are `384`,`768`,`1536`,`3072`,`6144` where `haPairs` is `1`. Valid values for deployment type `SINGLE_AZ_2` are `1536`, `3072`, and `6144` where `haPairs` is greater than 1. This parameter is only supported when specifying the haPairs parameter. Either throughputCapacity or throughputCapacityPerHaPair must be specified.
|
|
160
192
|
*/
|
|
161
193
|
readonly throughputCapacityPerHaPair: pulumi.Output<number>;
|
|
162
194
|
/**
|
|
@@ -193,7 +225,7 @@ export interface OntapFileSystemState {
|
|
|
193
225
|
*/
|
|
194
226
|
dailyAutomaticBackupStartTime?: pulumi.Input<string>;
|
|
195
227
|
/**
|
|
196
|
-
* The filesystem deployment type. Supports `MULTI_AZ_1`, `SINGLE_AZ_1`, and `SINGLE_AZ_2`.
|
|
228
|
+
* The filesystem deployment type. Supports `MULTI_AZ_1`, `MULTI_AZ_2`, `SINGLE_AZ_1`, and `SINGLE_AZ_2`.
|
|
197
229
|
*/
|
|
198
230
|
deploymentType?: pulumi.Input<string>;
|
|
199
231
|
/**
|
|
@@ -217,7 +249,7 @@ export interface OntapFileSystemState {
|
|
|
217
249
|
*/
|
|
218
250
|
fsxAdminPassword?: pulumi.Input<string>;
|
|
219
251
|
/**
|
|
220
|
-
* The number of haPairs to deploy for the file system. Valid
|
|
252
|
+
* The number of haPairs to deploy for the file system. Valid value is 1 for `SINGLE_AZ_1` or `MULTI_AZ_1` and `MULTI_AZ_2`. Valid values are 1 through 12 for `SINGLE_AZ_2`.
|
|
221
253
|
*/
|
|
222
254
|
haPairs?: pulumi.Input<number>;
|
|
223
255
|
/**
|
|
@@ -245,7 +277,7 @@ export interface OntapFileSystemState {
|
|
|
245
277
|
*/
|
|
246
278
|
securityGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
247
279
|
/**
|
|
248
|
-
* The storage capacity (GiB) of the file system. Valid values between `1024` and `196608` for file systems with deploymentType `SINGLE_AZ_1` and `MULTI_AZ_1`. Valid values between `
|
|
280
|
+
* The storage capacity (GiB) of the file system. Valid values between `1024` and `196608` for file systems with deploymentType `SINGLE_AZ_1` and `MULTI_AZ_1`. Valid values are between `1024` and `524288` for `MULTI_AZ_2`. Valid values between `1024` (`1024` per ha pair) and `1048576` for file systems with deploymentType `SINGLE_AZ_2`. For `SINGLE_AZ_2`, the `1048576` (1PB) maximum is only supported when using 2 or more ha_pairs, the maximum is `524288` (512TB) when using 1 ha_pair.
|
|
249
281
|
*/
|
|
250
282
|
storageCapacity?: pulumi.Input<number>;
|
|
251
283
|
/**
|
|
@@ -275,7 +307,7 @@ export interface OntapFileSystemState {
|
|
|
275
307
|
*/
|
|
276
308
|
throughputCapacity?: pulumi.Input<number>;
|
|
277
309
|
/**
|
|
278
|
-
* Sets the throughput capacity (in MBps) for the file system that you're creating. Valid value
|
|
310
|
+
* Sets the per-HA-pair throughput capacity (in MBps) for the file system that you're creating, as opposed to `throughputCapacity` which specifies the total throughput capacity for the file system. Valid value for `MULTI_AZ_1` and `SINGLE_AZ_1` are `128`, `256`, `512`, `1024`, `2048`, and `4096`. Valid values for deployment type `MULTI_AZ_2` and `SINGLE_AZ_2` are `384`,`768`,`1536`,`3072`,`6144` where `haPairs` is `1`. Valid values for deployment type `SINGLE_AZ_2` are `1536`, `3072`, and `6144` where `haPairs` is greater than 1. This parameter is only supported when specifying the haPairs parameter. Either throughputCapacity or throughputCapacityPerHaPair must be specified.
|
|
279
311
|
*/
|
|
280
312
|
throughputCapacityPerHaPair?: pulumi.Input<number>;
|
|
281
313
|
/**
|
|
@@ -300,7 +332,7 @@ export interface OntapFileSystemArgs {
|
|
|
300
332
|
*/
|
|
301
333
|
dailyAutomaticBackupStartTime?: pulumi.Input<string>;
|
|
302
334
|
/**
|
|
303
|
-
* The filesystem deployment type. Supports `MULTI_AZ_1`, `SINGLE_AZ_1`, and `SINGLE_AZ_2`.
|
|
335
|
+
* The filesystem deployment type. Supports `MULTI_AZ_1`, `MULTI_AZ_2`, `SINGLE_AZ_1`, and `SINGLE_AZ_2`.
|
|
304
336
|
*/
|
|
305
337
|
deploymentType: pulumi.Input<string>;
|
|
306
338
|
/**
|
|
@@ -316,7 +348,7 @@ export interface OntapFileSystemArgs {
|
|
|
316
348
|
*/
|
|
317
349
|
fsxAdminPassword?: pulumi.Input<string>;
|
|
318
350
|
/**
|
|
319
|
-
* The number of haPairs to deploy for the file system. Valid
|
|
351
|
+
* The number of haPairs to deploy for the file system. Valid value is 1 for `SINGLE_AZ_1` or `MULTI_AZ_1` and `MULTI_AZ_2`. Valid values are 1 through 12 for `SINGLE_AZ_2`.
|
|
320
352
|
*/
|
|
321
353
|
haPairs?: pulumi.Input<number>;
|
|
322
354
|
/**
|
|
@@ -336,7 +368,7 @@ export interface OntapFileSystemArgs {
|
|
|
336
368
|
*/
|
|
337
369
|
securityGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
338
370
|
/**
|
|
339
|
-
* The storage capacity (GiB) of the file system. Valid values between `1024` and `196608` for file systems with deploymentType `SINGLE_AZ_1` and `MULTI_AZ_1`. Valid values between `
|
|
371
|
+
* The storage capacity (GiB) of the file system. Valid values between `1024` and `196608` for file systems with deploymentType `SINGLE_AZ_1` and `MULTI_AZ_1`. Valid values are between `1024` and `524288` for `MULTI_AZ_2`. Valid values between `1024` (`1024` per ha pair) and `1048576` for file systems with deploymentType `SINGLE_AZ_2`. For `SINGLE_AZ_2`, the `1048576` (1PB) maximum is only supported when using 2 or more ha_pairs, the maximum is `524288` (512TB) when using 1 ha_pair.
|
|
340
372
|
*/
|
|
341
373
|
storageCapacity: pulumi.Input<number>;
|
|
342
374
|
/**
|
|
@@ -358,7 +390,7 @@ export interface OntapFileSystemArgs {
|
|
|
358
390
|
*/
|
|
359
391
|
throughputCapacity?: pulumi.Input<number>;
|
|
360
392
|
/**
|
|
361
|
-
* Sets the throughput capacity (in MBps) for the file system that you're creating. Valid value
|
|
393
|
+
* Sets the per-HA-pair throughput capacity (in MBps) for the file system that you're creating, as opposed to `throughputCapacity` which specifies the total throughput capacity for the file system. Valid value for `MULTI_AZ_1` and `SINGLE_AZ_1` are `128`, `256`, `512`, `1024`, `2048`, and `4096`. Valid values for deployment type `MULTI_AZ_2` and `SINGLE_AZ_2` are `384`,`768`,`1536`,`3072`,`6144` where `haPairs` is `1`. Valid values for deployment type `SINGLE_AZ_2` are `1536`, `3072`, and `6144` where `haPairs` is greater than 1. This parameter is only supported when specifying the haPairs parameter. Either throughputCapacity or throughputCapacityPerHaPair must be specified.
|
|
362
394
|
*/
|
|
363
395
|
throughputCapacityPerHaPair?: pulumi.Input<number>;
|
|
364
396
|
/**
|
package/fsx/ontapFileSystem.js
CHANGED
|
@@ -34,8 +34,40 @@ const utilities = require("../utilities");
|
|
|
34
34
|
* const testhapairs = new aws.fsx.OntapFileSystem("testhapairs", {
|
|
35
35
|
* storageCapacity: 2048,
|
|
36
36
|
* subnetIds: [test1.id],
|
|
37
|
+
* deploymentType: "SINGLE_AZ_1",
|
|
38
|
+
* haPairs: 2,
|
|
39
|
+
* throughputCapacityPerHaPair: 128,
|
|
40
|
+
* preferredSubnetId: test1.id,
|
|
41
|
+
* });
|
|
42
|
+
* ```
|
|
43
|
+
*
|
|
44
|
+
* ```typescript
|
|
45
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
46
|
+
* import * as aws from "@pulumi/aws";
|
|
47
|
+
*
|
|
48
|
+
* const testsingleazgen2 = new aws.fsx.OntapFileSystem("testsingleazgen2", {
|
|
49
|
+
* storageCapacity: 4096,
|
|
50
|
+
* subnetIds: [test1.id],
|
|
37
51
|
* deploymentType: "SINGLE_AZ_2",
|
|
38
|
-
*
|
|
52
|
+
* haPairs: 4,
|
|
53
|
+
* throughputCapacityPerHaPair: 384,
|
|
54
|
+
* preferredSubnetId: test1.id,
|
|
55
|
+
* });
|
|
56
|
+
* ```
|
|
57
|
+
*
|
|
58
|
+
* ```typescript
|
|
59
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
60
|
+
* import * as aws from "@pulumi/aws";
|
|
61
|
+
*
|
|
62
|
+
* const testmultiazgen2 = new aws.fsx.OntapFileSystem("testmultiazgen2", {
|
|
63
|
+
* storageCapacity: 1024,
|
|
64
|
+
* subnetIds: [
|
|
65
|
+
* test1.id,
|
|
66
|
+
* test2.id,
|
|
67
|
+
* ],
|
|
68
|
+
* deploymentType: "MULTI_AZ_2",
|
|
69
|
+
* haPairs: 1,
|
|
70
|
+
* throughputCapacityPerHaPair: 384,
|
|
39
71
|
* preferredSubnetId: test1.id,
|
|
40
72
|
* });
|
|
41
73
|
* ```
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ontapFileSystem.js","sourceRoot":"","sources":["../../fsx/ontapFileSystem.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"ontapFileSystem.js","sourceRoot":"","sources":["../../fsx/ontapFileSystem.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2EG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,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,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;IAiHD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,8BAA8B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAC;YACxG,cAAc,CAAC,+BAA+B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,6BAA6B,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1G,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,wBAAwB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,qBAAqB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,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,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,6BAA6B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,4BAA4B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAAC,CAAC,SAAS,CAAC;SACvG;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,cAAc,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3D,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,iBAAiB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9D,MAAM,IAAI,KAAK,CAAC,+CAA+C,CAAC,CAAC;aACpE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,eAAe,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC5D,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;aAClE;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,8BAA8B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,+BAA+B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,6BAA6B,CAAC,CAAC,CAAC,SAAS,CAAC;YACxG,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,kBAAkB,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,gBAAgB,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YAC/G,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,6BAA6B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACpG,cAAc,CAAC,4BAA4B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,0BAA0B,CAAC,CAAC,CAAC,SAAS,CAAC;YAClG,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC1C,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC9C,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,qBAAqB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC1D,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC9C,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC9C,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC/C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,kBAAkB,CAAC,EAAE,CAAC;QACrE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpE,CAAC;;AArNL,0CAsNC;AAxMG,gBAAgB;AACO,4BAAY,GAAG,yCAAyC,CAAC"}
|
|
@@ -91,7 +91,7 @@ export declare class Connector extends pulumi.CustomResource {
|
|
|
91
91
|
*/
|
|
92
92
|
readonly arn: pulumi.Output<string>;
|
|
93
93
|
/**
|
|
94
|
-
* Information about the capacity allocated to the connector. See
|
|
94
|
+
* Information about the capacity allocated to the connector. See `capacity` Block for details.
|
|
95
95
|
*/
|
|
96
96
|
readonly capacity: pulumi.Output<outputs.mskconnect.ConnectorCapacity>;
|
|
97
97
|
/**
|
|
@@ -105,15 +105,15 @@ export declare class Connector extends pulumi.CustomResource {
|
|
|
105
105
|
*/
|
|
106
106
|
readonly description: pulumi.Output<string | undefined>;
|
|
107
107
|
/**
|
|
108
|
-
* Specifies which Apache Kafka cluster to connect to. See
|
|
108
|
+
* Specifies which Apache Kafka cluster to connect to. See `kafkaCluster` Block for details.
|
|
109
109
|
*/
|
|
110
110
|
readonly kafkaCluster: pulumi.Output<outputs.mskconnect.ConnectorKafkaCluster>;
|
|
111
111
|
/**
|
|
112
|
-
* Details of the client authentication used by the Apache Kafka cluster. See
|
|
112
|
+
* Details of the client authentication used by the Apache Kafka cluster. See `kafkaClusterClientAuthentication` Block for details.
|
|
113
113
|
*/
|
|
114
114
|
readonly kafkaClusterClientAuthentication: pulumi.Output<outputs.mskconnect.ConnectorKafkaClusterClientAuthentication>;
|
|
115
115
|
/**
|
|
116
|
-
* Details of encryption in transit to the Apache Kafka cluster. See
|
|
116
|
+
* Details of encryption in transit to the Apache Kafka cluster. See `kafkaClusterEncryptionInTransit` Block for details.
|
|
117
117
|
*/
|
|
118
118
|
readonly kafkaClusterEncryptionInTransit: pulumi.Output<outputs.mskconnect.ConnectorKafkaClusterEncryptionInTransit>;
|
|
119
119
|
/**
|
|
@@ -121,7 +121,7 @@ export declare class Connector extends pulumi.CustomResource {
|
|
|
121
121
|
*/
|
|
122
122
|
readonly kafkaconnectVersion: pulumi.Output<string>;
|
|
123
123
|
/**
|
|
124
|
-
* Details about log delivery. See
|
|
124
|
+
* Details about log delivery. See `logDelivery` Block for details.
|
|
125
125
|
*/
|
|
126
126
|
readonly logDelivery: pulumi.Output<outputs.mskconnect.ConnectorLogDelivery | undefined>;
|
|
127
127
|
/**
|
|
@@ -129,19 +129,35 @@ export declare class Connector extends pulumi.CustomResource {
|
|
|
129
129
|
*/
|
|
130
130
|
readonly name: pulumi.Output<string>;
|
|
131
131
|
/**
|
|
132
|
-
* Specifies which plugins to use for the connector. See
|
|
132
|
+
* Specifies which plugins to use for the connector. See `plugin` Block for details.
|
|
133
133
|
*/
|
|
134
134
|
readonly plugins: pulumi.Output<outputs.mskconnect.ConnectorPlugin[]>;
|
|
135
135
|
/**
|
|
136
136
|
* The Amazon Resource Name (ARN) of the IAM role used by the connector to access the Amazon Web Services resources that it needs. The types of resources depends on the logic of the connector. For example, a connector that has Amazon S3 as a destination must have permissions that allow it to write to the S3 destination bucket.
|
|
137
|
+
*
|
|
138
|
+
* The following arguments are optional:
|
|
137
139
|
*/
|
|
138
140
|
readonly serviceExecutionRoleArn: pulumi.Output<string>;
|
|
141
|
+
/**
|
|
142
|
+
* 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.
|
|
143
|
+
*/
|
|
144
|
+
readonly tags: pulumi.Output<{
|
|
145
|
+
[key: string]: string;
|
|
146
|
+
} | undefined>;
|
|
147
|
+
/**
|
|
148
|
+
* A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block.
|
|
149
|
+
*
|
|
150
|
+
* @deprecated Please use `tags` instead.
|
|
151
|
+
*/
|
|
152
|
+
readonly tagsAll: pulumi.Output<{
|
|
153
|
+
[key: string]: string;
|
|
154
|
+
}>;
|
|
139
155
|
/**
|
|
140
156
|
* The current version of the connector.
|
|
141
157
|
*/
|
|
142
158
|
readonly version: pulumi.Output<string>;
|
|
143
159
|
/**
|
|
144
|
-
* Specifies which worker configuration to use with the connector. See
|
|
160
|
+
* Specifies which worker configuration to use with the connector. See `workerConfiguration` Block for details.
|
|
145
161
|
*/
|
|
146
162
|
readonly workerConfiguration: pulumi.Output<outputs.mskconnect.ConnectorWorkerConfiguration | undefined>;
|
|
147
163
|
/**
|
|
@@ -162,7 +178,7 @@ export interface ConnectorState {
|
|
|
162
178
|
*/
|
|
163
179
|
arn?: pulumi.Input<string>;
|
|
164
180
|
/**
|
|
165
|
-
* Information about the capacity allocated to the connector. See
|
|
181
|
+
* Information about the capacity allocated to the connector. See `capacity` Block for details.
|
|
166
182
|
*/
|
|
167
183
|
capacity?: pulumi.Input<inputs.mskconnect.ConnectorCapacity>;
|
|
168
184
|
/**
|
|
@@ -176,15 +192,15 @@ export interface ConnectorState {
|
|
|
176
192
|
*/
|
|
177
193
|
description?: pulumi.Input<string>;
|
|
178
194
|
/**
|
|
179
|
-
* Specifies which Apache Kafka cluster to connect to. See
|
|
195
|
+
* Specifies which Apache Kafka cluster to connect to. See `kafkaCluster` Block for details.
|
|
180
196
|
*/
|
|
181
197
|
kafkaCluster?: pulumi.Input<inputs.mskconnect.ConnectorKafkaCluster>;
|
|
182
198
|
/**
|
|
183
|
-
* Details of the client authentication used by the Apache Kafka cluster. See
|
|
199
|
+
* Details of the client authentication used by the Apache Kafka cluster. See `kafkaClusterClientAuthentication` Block for details.
|
|
184
200
|
*/
|
|
185
201
|
kafkaClusterClientAuthentication?: pulumi.Input<inputs.mskconnect.ConnectorKafkaClusterClientAuthentication>;
|
|
186
202
|
/**
|
|
187
|
-
* Details of encryption in transit to the Apache Kafka cluster. See
|
|
203
|
+
* Details of encryption in transit to the Apache Kafka cluster. See `kafkaClusterEncryptionInTransit` Block for details.
|
|
188
204
|
*/
|
|
189
205
|
kafkaClusterEncryptionInTransit?: pulumi.Input<inputs.mskconnect.ConnectorKafkaClusterEncryptionInTransit>;
|
|
190
206
|
/**
|
|
@@ -192,7 +208,7 @@ export interface ConnectorState {
|
|
|
192
208
|
*/
|
|
193
209
|
kafkaconnectVersion?: pulumi.Input<string>;
|
|
194
210
|
/**
|
|
195
|
-
* Details about log delivery. See
|
|
211
|
+
* Details about log delivery. See `logDelivery` Block for details.
|
|
196
212
|
*/
|
|
197
213
|
logDelivery?: pulumi.Input<inputs.mskconnect.ConnectorLogDelivery>;
|
|
198
214
|
/**
|
|
@@ -200,19 +216,35 @@ export interface ConnectorState {
|
|
|
200
216
|
*/
|
|
201
217
|
name?: pulumi.Input<string>;
|
|
202
218
|
/**
|
|
203
|
-
* Specifies which plugins to use for the connector. See
|
|
219
|
+
* Specifies which plugins to use for the connector. See `plugin` Block for details.
|
|
204
220
|
*/
|
|
205
221
|
plugins?: pulumi.Input<pulumi.Input<inputs.mskconnect.ConnectorPlugin>[]>;
|
|
206
222
|
/**
|
|
207
223
|
* The Amazon Resource Name (ARN) of the IAM role used by the connector to access the Amazon Web Services resources that it needs. The types of resources depends on the logic of the connector. For example, a connector that has Amazon S3 as a destination must have permissions that allow it to write to the S3 destination bucket.
|
|
224
|
+
*
|
|
225
|
+
* The following arguments are optional:
|
|
208
226
|
*/
|
|
209
227
|
serviceExecutionRoleArn?: pulumi.Input<string>;
|
|
228
|
+
/**
|
|
229
|
+
* 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.
|
|
230
|
+
*/
|
|
231
|
+
tags?: pulumi.Input<{
|
|
232
|
+
[key: string]: pulumi.Input<string>;
|
|
233
|
+
}>;
|
|
234
|
+
/**
|
|
235
|
+
* A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block.
|
|
236
|
+
*
|
|
237
|
+
* @deprecated Please use `tags` instead.
|
|
238
|
+
*/
|
|
239
|
+
tagsAll?: pulumi.Input<{
|
|
240
|
+
[key: string]: pulumi.Input<string>;
|
|
241
|
+
}>;
|
|
210
242
|
/**
|
|
211
243
|
* The current version of the connector.
|
|
212
244
|
*/
|
|
213
245
|
version?: pulumi.Input<string>;
|
|
214
246
|
/**
|
|
215
|
-
* Specifies which worker configuration to use with the connector. See
|
|
247
|
+
* Specifies which worker configuration to use with the connector. See `workerConfiguration` Block for details.
|
|
216
248
|
*/
|
|
217
249
|
workerConfiguration?: pulumi.Input<inputs.mskconnect.ConnectorWorkerConfiguration>;
|
|
218
250
|
}
|
|
@@ -221,7 +253,7 @@ export interface ConnectorState {
|
|
|
221
253
|
*/
|
|
222
254
|
export interface ConnectorArgs {
|
|
223
255
|
/**
|
|
224
|
-
* Information about the capacity allocated to the connector. See
|
|
256
|
+
* Information about the capacity allocated to the connector. See `capacity` Block for details.
|
|
225
257
|
*/
|
|
226
258
|
capacity: pulumi.Input<inputs.mskconnect.ConnectorCapacity>;
|
|
227
259
|
/**
|
|
@@ -235,15 +267,15 @@ export interface ConnectorArgs {
|
|
|
235
267
|
*/
|
|
236
268
|
description?: pulumi.Input<string>;
|
|
237
269
|
/**
|
|
238
|
-
* Specifies which Apache Kafka cluster to connect to. See
|
|
270
|
+
* Specifies which Apache Kafka cluster to connect to. See `kafkaCluster` Block for details.
|
|
239
271
|
*/
|
|
240
272
|
kafkaCluster: pulumi.Input<inputs.mskconnect.ConnectorKafkaCluster>;
|
|
241
273
|
/**
|
|
242
|
-
* Details of the client authentication used by the Apache Kafka cluster. See
|
|
274
|
+
* Details of the client authentication used by the Apache Kafka cluster. See `kafkaClusterClientAuthentication` Block for details.
|
|
243
275
|
*/
|
|
244
276
|
kafkaClusterClientAuthentication: pulumi.Input<inputs.mskconnect.ConnectorKafkaClusterClientAuthentication>;
|
|
245
277
|
/**
|
|
246
|
-
* Details of encryption in transit to the Apache Kafka cluster. See
|
|
278
|
+
* Details of encryption in transit to the Apache Kafka cluster. See `kafkaClusterEncryptionInTransit` Block for details.
|
|
247
279
|
*/
|
|
248
280
|
kafkaClusterEncryptionInTransit: pulumi.Input<inputs.mskconnect.ConnectorKafkaClusterEncryptionInTransit>;
|
|
249
281
|
/**
|
|
@@ -251,7 +283,7 @@ export interface ConnectorArgs {
|
|
|
251
283
|
*/
|
|
252
284
|
kafkaconnectVersion: pulumi.Input<string>;
|
|
253
285
|
/**
|
|
254
|
-
* Details about log delivery. See
|
|
286
|
+
* Details about log delivery. See `logDelivery` Block for details.
|
|
255
287
|
*/
|
|
256
288
|
logDelivery?: pulumi.Input<inputs.mskconnect.ConnectorLogDelivery>;
|
|
257
289
|
/**
|
|
@@ -259,15 +291,23 @@ export interface ConnectorArgs {
|
|
|
259
291
|
*/
|
|
260
292
|
name?: pulumi.Input<string>;
|
|
261
293
|
/**
|
|
262
|
-
* Specifies which plugins to use for the connector. See
|
|
294
|
+
* Specifies which plugins to use for the connector. See `plugin` Block for details.
|
|
263
295
|
*/
|
|
264
296
|
plugins: pulumi.Input<pulumi.Input<inputs.mskconnect.ConnectorPlugin>[]>;
|
|
265
297
|
/**
|
|
266
298
|
* The Amazon Resource Name (ARN) of the IAM role used by the connector to access the Amazon Web Services resources that it needs. The types of resources depends on the logic of the connector. For example, a connector that has Amazon S3 as a destination must have permissions that allow it to write to the S3 destination bucket.
|
|
299
|
+
*
|
|
300
|
+
* The following arguments are optional:
|
|
267
301
|
*/
|
|
268
302
|
serviceExecutionRoleArn: pulumi.Input<string>;
|
|
269
303
|
/**
|
|
270
|
-
*
|
|
304
|
+
* 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.
|
|
305
|
+
*/
|
|
306
|
+
tags?: pulumi.Input<{
|
|
307
|
+
[key: string]: pulumi.Input<string>;
|
|
308
|
+
}>;
|
|
309
|
+
/**
|
|
310
|
+
* Specifies which worker configuration to use with the connector. See `workerConfiguration` Block for details.
|
|
271
311
|
*/
|
|
272
312
|
workerConfiguration?: pulumi.Input<inputs.mskconnect.ConnectorWorkerConfiguration>;
|
|
273
313
|
}
|
package/mskconnect/connector.js
CHANGED
|
@@ -114,6 +114,8 @@ class Connector extends pulumi.CustomResource {
|
|
|
114
114
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
115
115
|
resourceInputs["plugins"] = state ? state.plugins : undefined;
|
|
116
116
|
resourceInputs["serviceExecutionRoleArn"] = state ? state.serviceExecutionRoleArn : undefined;
|
|
117
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
118
|
+
resourceInputs["tagsAll"] = state ? state.tagsAll : undefined;
|
|
117
119
|
resourceInputs["version"] = state ? state.version : undefined;
|
|
118
120
|
resourceInputs["workerConfiguration"] = state ? state.workerConfiguration : undefined;
|
|
119
121
|
}
|
|
@@ -154,8 +156,10 @@ class Connector extends pulumi.CustomResource {
|
|
|
154
156
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
155
157
|
resourceInputs["plugins"] = args ? args.plugins : undefined;
|
|
156
158
|
resourceInputs["serviceExecutionRoleArn"] = args ? args.serviceExecutionRoleArn : undefined;
|
|
159
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
157
160
|
resourceInputs["workerConfiguration"] = args ? args.workerConfiguration : undefined;
|
|
158
161
|
resourceInputs["arn"] = undefined /*out*/;
|
|
162
|
+
resourceInputs["tagsAll"] = undefined /*out*/;
|
|
159
163
|
resourceInputs["version"] = undefined /*out*/;
|
|
160
164
|
}
|
|
161
165
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connector.js","sourceRoot":"","sources":["../../mskconnect/connector.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoEG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChE,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,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;
|
|
1
|
+
{"version":3,"file":"connector.js","sourceRoot":"","sources":["../../mskconnect/connector.ts"],"names":[],"mappings":"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"}
|
|
@@ -71,9 +71,7 @@ export declare class CustomPlugin extends pulumi.CustomResource {
|
|
|
71
71
|
*/
|
|
72
72
|
readonly latestRevision: pulumi.Output<number>;
|
|
73
73
|
/**
|
|
74
|
-
* Information about the location of a custom plugin. See
|
|
75
|
-
*
|
|
76
|
-
* The following arguments are optional:
|
|
74
|
+
* Information about the location of a custom plugin. See `location` Block for details.
|
|
77
75
|
*/
|
|
78
76
|
readonly location: pulumi.Output<outputs.mskconnect.CustomPluginLocation>;
|
|
79
77
|
/**
|
|
@@ -84,6 +82,22 @@ export declare class CustomPlugin extends pulumi.CustomResource {
|
|
|
84
82
|
* the state of the custom plugin.
|
|
85
83
|
*/
|
|
86
84
|
readonly state: pulumi.Output<string>;
|
|
85
|
+
/**
|
|
86
|
+
* 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.
|
|
87
|
+
*
|
|
88
|
+
* The following arguments are optional:
|
|
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
|
+
* @deprecated Please use `tags` instead.
|
|
97
|
+
*/
|
|
98
|
+
readonly tagsAll: pulumi.Output<{
|
|
99
|
+
[key: string]: string;
|
|
100
|
+
}>;
|
|
87
101
|
/**
|
|
88
102
|
* Create a CustomPlugin resource with the given unique name, arguments, and options.
|
|
89
103
|
*
|
|
@@ -114,9 +128,7 @@ export interface CustomPluginState {
|
|
|
114
128
|
*/
|
|
115
129
|
latestRevision?: pulumi.Input<number>;
|
|
116
130
|
/**
|
|
117
|
-
* Information about the location of a custom plugin. See
|
|
118
|
-
*
|
|
119
|
-
* The following arguments are optional:
|
|
131
|
+
* Information about the location of a custom plugin. See `location` Block for details.
|
|
120
132
|
*/
|
|
121
133
|
location?: pulumi.Input<inputs.mskconnect.CustomPluginLocation>;
|
|
122
134
|
/**
|
|
@@ -127,6 +139,22 @@ export interface CustomPluginState {
|
|
|
127
139
|
* the state of the custom plugin.
|
|
128
140
|
*/
|
|
129
141
|
state?: pulumi.Input<string>;
|
|
142
|
+
/**
|
|
143
|
+
* 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.
|
|
144
|
+
*
|
|
145
|
+
* The following arguments are optional:
|
|
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
|
+
* @deprecated Please use `tags` instead.
|
|
154
|
+
*/
|
|
155
|
+
tagsAll?: pulumi.Input<{
|
|
156
|
+
[key: string]: pulumi.Input<string>;
|
|
157
|
+
}>;
|
|
130
158
|
}
|
|
131
159
|
/**
|
|
132
160
|
* The set of arguments for constructing a CustomPlugin resource.
|
|
@@ -141,13 +169,19 @@ export interface CustomPluginArgs {
|
|
|
141
169
|
*/
|
|
142
170
|
description?: pulumi.Input<string>;
|
|
143
171
|
/**
|
|
144
|
-
* Information about the location of a custom plugin. See
|
|
145
|
-
*
|
|
146
|
-
* The following arguments are optional:
|
|
172
|
+
* Information about the location of a custom plugin. See `location` Block for details.
|
|
147
173
|
*/
|
|
148
174
|
location: pulumi.Input<inputs.mskconnect.CustomPluginLocation>;
|
|
149
175
|
/**
|
|
150
176
|
* The name of the custom plugin..
|
|
151
177
|
*/
|
|
152
178
|
name?: pulumi.Input<string>;
|
|
179
|
+
/**
|
|
180
|
+
* 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.
|
|
181
|
+
*
|
|
182
|
+
* The following arguments are optional:
|
|
183
|
+
*/
|
|
184
|
+
tags?: pulumi.Input<{
|
|
185
|
+
[key: string]: pulumi.Input<string>;
|
|
186
|
+
}>;
|
|
153
187
|
}
|