@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.
Files changed (74) hide show
  1. package/alb/getLoadBalancer.d.ts +2 -0
  2. package/alb/getLoadBalancer.js.map +1 -1
  3. package/alb/loadBalancer.d.ts +18 -12
  4. package/alb/loadBalancer.js +2 -0
  5. package/alb/loadBalancer.js.map +1 -1
  6. package/cloudfront/function.d.ts +4 -4
  7. package/cloudfront/function.js +1 -1
  8. package/cloudwatch/getLogGroup.d.ts +4 -0
  9. package/cloudwatch/getLogGroup.js.map +1 -1
  10. package/cloudwatch/logGroup.d.ts +1 -1
  11. package/cloudwatch/metricStream.d.ts +6 -6
  12. package/dms/endpoint.d.ts +12 -0
  13. package/dms/endpoint.js +2 -0
  14. package/dms/endpoint.js.map +1 -1
  15. package/dms/eventSubscription.d.ts +4 -4
  16. package/dms/eventSubscription.js +6 -0
  17. package/dms/eventSubscription.js.map +1 -1
  18. package/dms/getEndpoint.d.ts +1 -0
  19. package/dms/getEndpoint.js.map +1 -1
  20. package/finspace/index.d.ts +9 -0
  21. package/finspace/index.js +16 -1
  22. package/finspace/index.js.map +1 -1
  23. package/finspace/kxCluster.d.ts +26 -2
  24. package/finspace/kxCluster.js +4 -3
  25. package/finspace/kxCluster.js.map +1 -1
  26. package/finspace/kxDataview.d.ts +244 -0
  27. package/finspace/kxDataview.js +123 -0
  28. package/finspace/kxDataview.js.map +1 -0
  29. package/finspace/kxScalingGroup.d.ts +197 -0
  30. package/finspace/kxScalingGroup.js +107 -0
  31. package/finspace/kxScalingGroup.js.map +1 -0
  32. package/finspace/kxVolume.d.ts +230 -0
  33. package/finspace/kxVolume.js +121 -0
  34. package/finspace/kxVolume.js.map +1 -0
  35. package/index.d.ts +2 -1
  36. package/index.js +4 -2
  37. package/index.js.map +1 -1
  38. package/lb/getLoadBalancer.d.ts +2 -0
  39. package/lb/getLoadBalancer.js.map +1 -1
  40. package/lb/loadBalancer.d.ts +18 -12
  41. package/lb/loadBalancer.js +2 -0
  42. package/lb/loadBalancer.js.map +1 -1
  43. package/lightsail/instance.d.ts +30 -66
  44. package/lightsail/instance.js +0 -51
  45. package/lightsail/instance.js.map +1 -1
  46. package/opensearch/getServerlessCollection.d.ts +4 -0
  47. package/opensearch/getServerlessCollection.js.map +1 -1
  48. package/opensearch/serverlessCollection.d.ts +12 -0
  49. package/opensearch/serverlessCollection.js +2 -0
  50. package/opensearch/serverlessCollection.js.map +1 -1
  51. package/package.json +1 -1
  52. package/polly/getVoices.d.ts +112 -0
  53. package/polly/getVoices.js +69 -0
  54. package/polly/getVoices.js.map +1 -0
  55. package/polly/index.d.ts +3 -0
  56. package/polly/index.js +10 -0
  57. package/polly/index.js.map +1 -0
  58. package/rds/instance.d.ts +54 -7
  59. package/rds/instance.js +51 -1
  60. package/rds/instance.js.map +1 -1
  61. package/ssoadmin/getApplicationAssignments.d.ts +75 -0
  62. package/ssoadmin/getApplicationAssignments.js +50 -0
  63. package/ssoadmin/getApplicationAssignments.js.map +1 -0
  64. package/ssoadmin/getPrincipalApplicationAssignments.d.ts +76 -0
  65. package/ssoadmin/getPrincipalApplicationAssignments.js +32 -0
  66. package/ssoadmin/getPrincipalApplicationAssignments.js.map +1 -0
  67. package/ssoadmin/index.d.ts +9 -0
  68. package/ssoadmin/index.js +12 -1
  69. package/ssoadmin/index.js.map +1 -1
  70. package/ssoadmin/trustedTokenIssuer.d.ts +159 -0
  71. package/ssoadmin/trustedTokenIssuer.js +84 -0
  72. package/ssoadmin/trustedTokenIssuer.js.map +1 -0
  73. package/types/input.d.ts +305 -3
  74. package/types/output.d.ts +275 -3
@@ -64,10 +64,12 @@ class KxCluster extends pulumi.CustomResource {
64
64
  resourceInputs["name"] = state ? state.name : undefined;
65
65
  resourceInputs["releaseLabel"] = state ? state.releaseLabel : undefined;
66
66
  resourceInputs["savedownStorageConfiguration"] = state ? state.savedownStorageConfiguration : undefined;
67
+ resourceInputs["scalingGroupConfiguration"] = state ? state.scalingGroupConfiguration : undefined;
67
68
  resourceInputs["status"] = state ? state.status : undefined;
68
69
  resourceInputs["statusReason"] = state ? state.statusReason : undefined;
69
70
  resourceInputs["tags"] = state ? state.tags : undefined;
70
71
  resourceInputs["tagsAll"] = state ? state.tagsAll : undefined;
72
+ resourceInputs["tickerplantLogConfigurations"] = state ? state.tickerplantLogConfigurations : undefined;
71
73
  resourceInputs["type"] = state ? state.type : undefined;
72
74
  resourceInputs["vpcConfiguration"] = state ? state.vpcConfiguration : undefined;
73
75
  }
@@ -76,9 +78,6 @@ class KxCluster extends pulumi.CustomResource {
76
78
  if ((!args || args.azMode === undefined) && !opts.urn) {
77
79
  throw new Error("Missing required property 'azMode'");
78
80
  }
79
- if ((!args || args.capacityConfiguration === undefined) && !opts.urn) {
80
- throw new Error("Missing required property 'capacityConfiguration'");
81
- }
82
81
  if ((!args || args.environmentId === undefined) && !opts.urn) {
83
82
  throw new Error("Missing required property 'environmentId'");
84
83
  }
@@ -106,7 +105,9 @@ class KxCluster extends pulumi.CustomResource {
106
105
  resourceInputs["name"] = args ? args.name : undefined;
107
106
  resourceInputs["releaseLabel"] = args ? args.releaseLabel : undefined;
108
107
  resourceInputs["savedownStorageConfiguration"] = args ? args.savedownStorageConfiguration : undefined;
108
+ resourceInputs["scalingGroupConfiguration"] = args ? args.scalingGroupConfiguration : undefined;
109
109
  resourceInputs["tags"] = args ? args.tags : undefined;
110
+ resourceInputs["tickerplantLogConfigurations"] = args ? args.tickerplantLogConfigurations : undefined;
110
111
  resourceInputs["type"] = args ? args.type : undefined;
111
112
  resourceInputs["vpcConfiguration"] = args ? args.vpcConfiguration : undefined;
112
113
  resourceInputs["arn"] = undefined /*out*/;
@@ -1 +1 @@
1
- {"version":3,"file":"kxCluster.js","sourceRoot":"","sources":["../../finspace/kxCluster.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"kxCluster.js","sourceRoot":"","sources":["../../finspace/kxCluster.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,244 @@
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 Dataview.
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.KxDataview("example", {
15
+ * environmentId: aws_finspace_kx_environment.example.id,
16
+ * databaseName: aws_finspace_kx_database.example.name,
17
+ * availabilityZoneId: "use1-az2",
18
+ * description: "Terraform managed Kx Dataview",
19
+ * azMode: "SINGLE",
20
+ * autoUpdate: true,
21
+ * segmentConfigurations: [{
22
+ * volumeName: aws_finspace_kx_volume.example.name,
23
+ * dbPaths: ["/*"],
24
+ * }],
25
+ * });
26
+ * ```
27
+ *
28
+ * ## Import
29
+ *
30
+ * Using `pulumi import`, import an AWS FinSpace Kx Cluster using the `id` (environment ID and cluster name, comma-delimited). For example:
31
+ *
32
+ * ```sh
33
+ * $ pulumi import aws:finspace/kxDataview:KxDataview example n3ceo7wqxoxcti5tujqwzs,my-tf-kx-database,my-tf-kx-dataview
34
+ * ```
35
+ */
36
+ export declare class KxDataview extends pulumi.CustomResource {
37
+ /**
38
+ * Get an existing KxDataview resource's state with the given name, ID, and optional extra
39
+ * properties used to qualify the lookup.
40
+ *
41
+ * @param name The _unique_ name of the resulting resource.
42
+ * @param id The _unique_ provider ID of the resource to lookup.
43
+ * @param state Any extra arguments used during the lookup.
44
+ * @param opts Optional settings to control the behavior of the CustomResource.
45
+ */
46
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: KxDataviewState, opts?: pulumi.CustomResourceOptions): KxDataview;
47
+ /**
48
+ * Returns true if the given object is an instance of KxDataview. This is designed to work even
49
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
50
+ */
51
+ static isInstance(obj: any): obj is KxDataview;
52
+ /**
53
+ * Amazon Resource Name (ARN) identifier of the KX dataview.
54
+ */
55
+ readonly arn: pulumi.Output<string>;
56
+ /**
57
+ * The option to specify whether you want to apply all the future additions and corrections automatically to the dataview, when you ingest new changesets. The default value is false.
58
+ */
59
+ readonly autoUpdate: pulumi.Output<boolean>;
60
+ /**
61
+ * The identifier of the availability zones. If attaching a volume, the volume must be in the same availability zone as the dataview that you are attaching to.
62
+ */
63
+ readonly availabilityZoneId: pulumi.Output<string | undefined>;
64
+ /**
65
+ * The number of availability zones you want to assign per cluster. This can be one of the following:
66
+ */
67
+ readonly azMode: pulumi.Output<string>;
68
+ /**
69
+ * A unique identifier of the changeset of the database that you want to use to ingest data.
70
+ */
71
+ readonly changesetId: pulumi.Output<string | undefined>;
72
+ /**
73
+ * Timestamp at which the dataview was created in FinSpace. Value determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
74
+ */
75
+ readonly createdTimestamp: pulumi.Output<string>;
76
+ /**
77
+ * The name of the database where you want to create a dataview.
78
+ */
79
+ readonly databaseName: pulumi.Output<string>;
80
+ /**
81
+ * A description for the dataview.
82
+ */
83
+ readonly description: pulumi.Output<string | undefined>;
84
+ /**
85
+ * Unique identifier for the KX environment.
86
+ */
87
+ readonly environmentId: pulumi.Output<string>;
88
+ /**
89
+ * The last time that the dataview was updated 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.
90
+ */
91
+ readonly lastModifiedTimestamp: pulumi.Output<string>;
92
+ /**
93
+ * A unique identifier for the dataview.
94
+ *
95
+ * The following arguments are optional:
96
+ */
97
+ readonly name: pulumi.Output<string>;
98
+ /**
99
+ * The configuration that contains the database path of the data that you want to place on each selected volume. Each segment must have a unique database path for each volume. If you do not explicitly specify any database path for a volume, they are accessible from the cluster through the default S3/object store segment. See segmentConfigurations below.
100
+ */
101
+ readonly segmentConfigurations: pulumi.Output<outputs.finspace.KxDataviewSegmentConfiguration[] | undefined>;
102
+ readonly status: pulumi.Output<string>;
103
+ /**
104
+ * Key-value mapping of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
105
+ */
106
+ readonly tags: pulumi.Output<{
107
+ [key: string]: string;
108
+ } | undefined>;
109
+ /**
110
+ * Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block.
111
+ *
112
+ * @deprecated Please use `tags` instead.
113
+ */
114
+ readonly tagsAll: pulumi.Output<{
115
+ [key: string]: string;
116
+ }>;
117
+ /**
118
+ * Create a KxDataview resource with the given unique name, arguments, and options.
119
+ *
120
+ * @param name The _unique_ name of the resource.
121
+ * @param args The arguments to use to populate this resource's properties.
122
+ * @param opts A bag of options that control this resource's behavior.
123
+ */
124
+ constructor(name: string, args: KxDataviewArgs, opts?: pulumi.CustomResourceOptions);
125
+ }
126
+ /**
127
+ * Input properties used for looking up and filtering KxDataview resources.
128
+ */
129
+ export interface KxDataviewState {
130
+ /**
131
+ * Amazon Resource Name (ARN) identifier of the KX dataview.
132
+ */
133
+ arn?: pulumi.Input<string>;
134
+ /**
135
+ * The option to specify whether you want to apply all the future additions and corrections automatically to the dataview, when you ingest new changesets. The default value is false.
136
+ */
137
+ autoUpdate?: pulumi.Input<boolean>;
138
+ /**
139
+ * The identifier of the availability zones. If attaching a volume, the volume must be in the same availability zone as the dataview that you are attaching to.
140
+ */
141
+ availabilityZoneId?: pulumi.Input<string>;
142
+ /**
143
+ * The number of availability zones you want to assign per cluster. This can be one of the following:
144
+ */
145
+ azMode?: pulumi.Input<string>;
146
+ /**
147
+ * A unique identifier of the changeset of the database that you want to use to ingest data.
148
+ */
149
+ changesetId?: pulumi.Input<string>;
150
+ /**
151
+ * Timestamp at which the dataview was created in FinSpace. Value determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
152
+ */
153
+ createdTimestamp?: pulumi.Input<string>;
154
+ /**
155
+ * The name of the database where you want to create a dataview.
156
+ */
157
+ databaseName?: pulumi.Input<string>;
158
+ /**
159
+ * A description for the dataview.
160
+ */
161
+ description?: pulumi.Input<string>;
162
+ /**
163
+ * Unique identifier for the KX environment.
164
+ */
165
+ environmentId?: pulumi.Input<string>;
166
+ /**
167
+ * The last time that the dataview was updated 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.
168
+ */
169
+ lastModifiedTimestamp?: pulumi.Input<string>;
170
+ /**
171
+ * A unique identifier for the dataview.
172
+ *
173
+ * The following arguments are optional:
174
+ */
175
+ name?: pulumi.Input<string>;
176
+ /**
177
+ * The configuration that contains the database path of the data that you want to place on each selected volume. Each segment must have a unique database path for each volume. If you do not explicitly specify any database path for a volume, they are accessible from the cluster through the default S3/object store segment. See segmentConfigurations below.
178
+ */
179
+ segmentConfigurations?: pulumi.Input<pulumi.Input<inputs.finspace.KxDataviewSegmentConfiguration>[]>;
180
+ status?: pulumi.Input<string>;
181
+ /**
182
+ * Key-value mapping of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
183
+ */
184
+ tags?: pulumi.Input<{
185
+ [key: string]: pulumi.Input<string>;
186
+ }>;
187
+ /**
188
+ * Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block.
189
+ *
190
+ * @deprecated Please use `tags` instead.
191
+ */
192
+ tagsAll?: pulumi.Input<{
193
+ [key: string]: pulumi.Input<string>;
194
+ }>;
195
+ }
196
+ /**
197
+ * The set of arguments for constructing a KxDataview resource.
198
+ */
199
+ export interface KxDataviewArgs {
200
+ /**
201
+ * The option to specify whether you want to apply all the future additions and corrections automatically to the dataview, when you ingest new changesets. The default value is false.
202
+ */
203
+ autoUpdate: pulumi.Input<boolean>;
204
+ /**
205
+ * The identifier of the availability zones. If attaching a volume, the volume must be in the same availability zone as the dataview that you are attaching to.
206
+ */
207
+ availabilityZoneId?: pulumi.Input<string>;
208
+ /**
209
+ * The number of availability zones you want to assign per cluster. This can be one of the following:
210
+ */
211
+ azMode: pulumi.Input<string>;
212
+ /**
213
+ * A unique identifier of the changeset of the database that you want to use to ingest data.
214
+ */
215
+ changesetId?: pulumi.Input<string>;
216
+ /**
217
+ * The name of the database where you want to create a dataview.
218
+ */
219
+ databaseName: pulumi.Input<string>;
220
+ /**
221
+ * A description for the dataview.
222
+ */
223
+ description?: pulumi.Input<string>;
224
+ /**
225
+ * Unique identifier for the KX environment.
226
+ */
227
+ environmentId: pulumi.Input<string>;
228
+ /**
229
+ * A unique identifier for the dataview.
230
+ *
231
+ * The following arguments are optional:
232
+ */
233
+ name?: pulumi.Input<string>;
234
+ /**
235
+ * The configuration that contains the database path of the data that you want to place on each selected volume. Each segment must have a unique database path for each volume. If you do not explicitly specify any database path for a volume, they are accessible from the cluster through the default S3/object store segment. See segmentConfigurations below.
236
+ */
237
+ segmentConfigurations?: pulumi.Input<pulumi.Input<inputs.finspace.KxDataviewSegmentConfiguration>[]>;
238
+ /**
239
+ * Key-value mapping of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
240
+ */
241
+ tags?: pulumi.Input<{
242
+ [key: string]: pulumi.Input<string>;
243
+ }>;
244
+ }
@@ -0,0 +1,123 @@
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.KxDataview = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Resource for managing an AWS FinSpace Kx Dataview.
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.KxDataview("example", {
19
+ * environmentId: aws_finspace_kx_environment.example.id,
20
+ * databaseName: aws_finspace_kx_database.example.name,
21
+ * availabilityZoneId: "use1-az2",
22
+ * description: "Terraform managed Kx Dataview",
23
+ * azMode: "SINGLE",
24
+ * autoUpdate: true,
25
+ * segmentConfigurations: [{
26
+ * volumeName: aws_finspace_kx_volume.example.name,
27
+ * dbPaths: ["/*"],
28
+ * }],
29
+ * });
30
+ * ```
31
+ *
32
+ * ## Import
33
+ *
34
+ * Using `pulumi import`, import an AWS FinSpace Kx Cluster using the `id` (environment ID and cluster name, comma-delimited). For example:
35
+ *
36
+ * ```sh
37
+ * $ pulumi import aws:finspace/kxDataview:KxDataview example n3ceo7wqxoxcti5tujqwzs,my-tf-kx-database,my-tf-kx-dataview
38
+ * ```
39
+ */
40
+ class KxDataview extends pulumi.CustomResource {
41
+ /**
42
+ * Get an existing KxDataview resource's state with the given name, ID, and optional extra
43
+ * properties used to qualify the lookup.
44
+ *
45
+ * @param name The _unique_ name of the resulting resource.
46
+ * @param id The _unique_ provider ID of the resource to lookup.
47
+ * @param state Any extra arguments used during the lookup.
48
+ * @param opts Optional settings to control the behavior of the CustomResource.
49
+ */
50
+ static get(name, id, state, opts) {
51
+ return new KxDataview(name, state, Object.assign(Object.assign({}, opts), { id: id }));
52
+ }
53
+ /**
54
+ * Returns true if the given object is an instance of KxDataview. This is designed to work even
55
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
56
+ */
57
+ static isInstance(obj) {
58
+ if (obj === undefined || obj === null) {
59
+ return false;
60
+ }
61
+ return obj['__pulumiType'] === KxDataview.__pulumiType;
62
+ }
63
+ constructor(name, argsOrState, opts) {
64
+ let resourceInputs = {};
65
+ opts = opts || {};
66
+ if (opts.id) {
67
+ const state = argsOrState;
68
+ resourceInputs["arn"] = state ? state.arn : undefined;
69
+ resourceInputs["autoUpdate"] = state ? state.autoUpdate : undefined;
70
+ resourceInputs["availabilityZoneId"] = state ? state.availabilityZoneId : undefined;
71
+ resourceInputs["azMode"] = state ? state.azMode : undefined;
72
+ resourceInputs["changesetId"] = state ? state.changesetId : undefined;
73
+ resourceInputs["createdTimestamp"] = state ? state.createdTimestamp : undefined;
74
+ resourceInputs["databaseName"] = state ? state.databaseName : undefined;
75
+ resourceInputs["description"] = state ? state.description : undefined;
76
+ resourceInputs["environmentId"] = state ? state.environmentId : undefined;
77
+ resourceInputs["lastModifiedTimestamp"] = state ? state.lastModifiedTimestamp : undefined;
78
+ resourceInputs["name"] = state ? state.name : undefined;
79
+ resourceInputs["segmentConfigurations"] = state ? state.segmentConfigurations : undefined;
80
+ resourceInputs["status"] = state ? state.status : undefined;
81
+ resourceInputs["tags"] = state ? state.tags : undefined;
82
+ resourceInputs["tagsAll"] = state ? state.tagsAll : undefined;
83
+ }
84
+ else {
85
+ const args = argsOrState;
86
+ if ((!args || args.autoUpdate === undefined) && !opts.urn) {
87
+ throw new Error("Missing required property 'autoUpdate'");
88
+ }
89
+ if ((!args || args.azMode === undefined) && !opts.urn) {
90
+ throw new Error("Missing required property 'azMode'");
91
+ }
92
+ if ((!args || args.databaseName === undefined) && !opts.urn) {
93
+ throw new Error("Missing required property 'databaseName'");
94
+ }
95
+ if ((!args || args.environmentId === undefined) && !opts.urn) {
96
+ throw new Error("Missing required property 'environmentId'");
97
+ }
98
+ resourceInputs["autoUpdate"] = args ? args.autoUpdate : undefined;
99
+ resourceInputs["availabilityZoneId"] = args ? args.availabilityZoneId : undefined;
100
+ resourceInputs["azMode"] = args ? args.azMode : undefined;
101
+ resourceInputs["changesetId"] = args ? args.changesetId : undefined;
102
+ resourceInputs["databaseName"] = args ? args.databaseName : undefined;
103
+ resourceInputs["description"] = args ? args.description : undefined;
104
+ resourceInputs["environmentId"] = args ? args.environmentId : undefined;
105
+ resourceInputs["name"] = args ? args.name : undefined;
106
+ resourceInputs["segmentConfigurations"] = args ? args.segmentConfigurations : undefined;
107
+ resourceInputs["tags"] = args ? args.tags : undefined;
108
+ resourceInputs["arn"] = undefined /*out*/;
109
+ resourceInputs["createdTimestamp"] = undefined /*out*/;
110
+ resourceInputs["lastModifiedTimestamp"] = undefined /*out*/;
111
+ resourceInputs["status"] = undefined /*out*/;
112
+ resourceInputs["tagsAll"] = undefined /*out*/;
113
+ }
114
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
115
+ const secretOpts = { additionalSecretOutputs: ["tagsAll"] };
116
+ opts = pulumi.mergeOptions(opts, secretOpts);
117
+ super(KxDataview.__pulumiType, name, resourceInputs, opts);
118
+ }
119
+ }
120
+ exports.KxDataview = KxDataview;
121
+ /** @internal */
122
+ KxDataview.__pulumiType = 'aws:finspace/kxDataview:KxDataview';
123
+ //# sourceMappingURL=kxDataview.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"kxDataview.js","sourceRoot":"","sources":["../../finspace/kxDataview.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,197 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Resource for managing an AWS FinSpace Kx Scaling Group.
4
+ *
5
+ * ## Example Usage
6
+ * ### Basic Usage
7
+ *
8
+ * ```typescript
9
+ * import * as pulumi from "@pulumi/pulumi";
10
+ * import * as aws from "@pulumi/aws";
11
+ *
12
+ * const example = new aws.finspace.KxScalingGroup("example", {
13
+ * environmentId: aws_finspace_kx_environment.example.id,
14
+ * availabilityZoneId: "use1-az2",
15
+ * hostType: "kx.sg.4xlarge",
16
+ * });
17
+ * ```
18
+ *
19
+ * ## Import
20
+ *
21
+ * Using `pulumi import`, import an AWS FinSpace Kx Scaling Group using the `id` (environment ID and scaling group name, comma-delimited). For example:
22
+ *
23
+ * ```sh
24
+ * $ pulumi import aws:finspace/kxScalingGroup:KxScalingGroup example n3ceo7wqxoxcti5tujqwzs,my-tf-kx-scalinggroup
25
+ * ```
26
+ */
27
+ export declare class KxScalingGroup extends pulumi.CustomResource {
28
+ /**
29
+ * Get an existing KxScalingGroup resource's state with the given name, ID, and optional extra
30
+ * properties used to qualify the lookup.
31
+ *
32
+ * @param name The _unique_ name of the resulting resource.
33
+ * @param id The _unique_ provider ID of the resource to lookup.
34
+ * @param state Any extra arguments used during the lookup.
35
+ * @param opts Optional settings to control the behavior of the CustomResource.
36
+ */
37
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: KxScalingGroupState, opts?: pulumi.CustomResourceOptions): KxScalingGroup;
38
+ /**
39
+ * Returns true if the given object is an instance of KxScalingGroup. This is designed to work even
40
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
41
+ */
42
+ static isInstance(obj: any): obj is KxScalingGroup;
43
+ /**
44
+ * Amazon Resource Name (ARN) identifier of the KX Scaling Group.
45
+ */
46
+ readonly arn: pulumi.Output<string>;
47
+ /**
48
+ * The availability zone identifiers for the requested regions.
49
+ */
50
+ readonly availabilityZoneId: pulumi.Output<string>;
51
+ /**
52
+ * The list of Managed kdb clusters that are currently active in the given scaling group.
53
+ */
54
+ readonly clusters: pulumi.Output<string[]>;
55
+ /**
56
+ * The timestamp at which the scaling group 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.
57
+ */
58
+ readonly createdTimestamp: pulumi.Output<string>;
59
+ /**
60
+ * A unique identifier for the kdb environment, where you want to create the scaling group.
61
+ */
62
+ readonly environmentId: pulumi.Output<string>;
63
+ /**
64
+ * The memory and CPU capabilities of the scaling group host on which FinSpace Managed kdb clusters will be placed.
65
+ *
66
+ * The following arguments are optional:
67
+ */
68
+ readonly hostType: pulumi.Output<string>;
69
+ /**
70
+ * Last timestamp at which the scaling group 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.
71
+ */
72
+ readonly lastModifiedTimestamp: pulumi.Output<string>;
73
+ /**
74
+ * Unique name for the scaling group that you want to create.
75
+ */
76
+ readonly name: pulumi.Output<string>;
77
+ /**
78
+ * The status of scaling group.
79
+ */
80
+ readonly status: pulumi.Output<string>;
81
+ /**
82
+ * The error message when a failed state occurs.
83
+ */
84
+ readonly statusReason: pulumi.Output<string>;
85
+ /**
86
+ * Key-value mapping of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. You can add up to 50 tags to a scaling group.
87
+ */
88
+ readonly tags: pulumi.Output<{
89
+ [key: string]: string;
90
+ } | undefined>;
91
+ /**
92
+ * Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block.
93
+ *
94
+ * @deprecated Please use `tags` instead.
95
+ */
96
+ readonly tagsAll: pulumi.Output<{
97
+ [key: string]: string;
98
+ }>;
99
+ /**
100
+ * Create a KxScalingGroup 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: KxScalingGroupArgs, opts?: pulumi.CustomResourceOptions);
107
+ }
108
+ /**
109
+ * Input properties used for looking up and filtering KxScalingGroup resources.
110
+ */
111
+ export interface KxScalingGroupState {
112
+ /**
113
+ * Amazon Resource Name (ARN) identifier of the KX Scaling Group.
114
+ */
115
+ arn?: pulumi.Input<string>;
116
+ /**
117
+ * The availability zone identifiers for the requested regions.
118
+ */
119
+ availabilityZoneId?: pulumi.Input<string>;
120
+ /**
121
+ * The list of Managed kdb clusters that are currently active in the given scaling group.
122
+ */
123
+ clusters?: pulumi.Input<pulumi.Input<string>[]>;
124
+ /**
125
+ * The timestamp at which the scaling group 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.
126
+ */
127
+ createdTimestamp?: pulumi.Input<string>;
128
+ /**
129
+ * A unique identifier for the kdb environment, where you want to create the scaling group.
130
+ */
131
+ environmentId?: pulumi.Input<string>;
132
+ /**
133
+ * The memory and CPU capabilities of the scaling group host on which FinSpace Managed kdb clusters will be placed.
134
+ *
135
+ * The following arguments are optional:
136
+ */
137
+ hostType?: pulumi.Input<string>;
138
+ /**
139
+ * Last timestamp at which the scaling group 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.
140
+ */
141
+ lastModifiedTimestamp?: pulumi.Input<string>;
142
+ /**
143
+ * Unique name for the scaling group that you want to create.
144
+ */
145
+ name?: pulumi.Input<string>;
146
+ /**
147
+ * The status of scaling group.
148
+ */
149
+ status?: pulumi.Input<string>;
150
+ /**
151
+ * The error message when a failed state occurs.
152
+ */
153
+ statusReason?: pulumi.Input<string>;
154
+ /**
155
+ * Key-value mapping of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. You can add up to 50 tags to a scaling group.
156
+ */
157
+ tags?: pulumi.Input<{
158
+ [key: string]: pulumi.Input<string>;
159
+ }>;
160
+ /**
161
+ * Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block.
162
+ *
163
+ * @deprecated Please use `tags` instead.
164
+ */
165
+ tagsAll?: pulumi.Input<{
166
+ [key: string]: pulumi.Input<string>;
167
+ }>;
168
+ }
169
+ /**
170
+ * The set of arguments for constructing a KxScalingGroup resource.
171
+ */
172
+ export interface KxScalingGroupArgs {
173
+ /**
174
+ * The availability zone identifiers for the requested regions.
175
+ */
176
+ availabilityZoneId: pulumi.Input<string>;
177
+ /**
178
+ * A unique identifier for the kdb environment, where you want to create the scaling group.
179
+ */
180
+ environmentId: pulumi.Input<string>;
181
+ /**
182
+ * The memory and CPU capabilities of the scaling group host on which FinSpace Managed kdb clusters will be placed.
183
+ *
184
+ * The following arguments are optional:
185
+ */
186
+ hostType: pulumi.Input<string>;
187
+ /**
188
+ * Unique name for the scaling group that you want to create.
189
+ */
190
+ name?: pulumi.Input<string>;
191
+ /**
192
+ * Key-value mapping of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. You can add up to 50 tags to a scaling group.
193
+ */
194
+ tags?: pulumi.Input<{
195
+ [key: string]: pulumi.Input<string>;
196
+ }>;
197
+ }