@pulumi/alicloud 3.31.0 → 3.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bastionhost/instance.d.ts +12 -0
- package/bastionhost/instance.js +2 -0
- package/bastionhost/instance.js.map +1 -1
- package/bastionhost/user.d.ts +12 -3
- package/bastionhost/user.js.map +1 -1
- package/bss/getOpenApiPricingModules.d.ts +74 -0
- package/bss/getOpenApiPricingModules.js +40 -0
- package/bss/getOpenApiPricingModules.js.map +1 -1
- package/bss/getOpenApiProducts.d.ts +28 -0
- package/bss/getOpenApiProducts.js +10 -0
- package/bss/getOpenApiProducts.js.map +1 -1
- package/clickhouse/dbCluster.d.ts +6 -6
- package/cms/alarmContact.d.ts +2 -2
- package/cms/alarmContact.js +2 -2
- package/cr/getVpcEndpointLinkedVpcs.d.ts +117 -0
- package/cr/getVpcEndpointLinkedVpcs.js +65 -0
- package/cr/getVpcEndpointLinkedVpcs.js.map +1 -0
- package/cr/index.d.ts +6 -0
- package/cr/index.js +9 -1
- package/cr/index.js.map +1 -1
- package/cr/vpcEndpointLinkedVpc.d.ts +136 -0
- package/cr/vpcEndpointLinkedVpc.js +103 -0
- package/cr/vpcEndpointLinkedVpc.js.map +1 -0
- package/emrv2/cluster.d.ts +358 -0
- package/emrv2/cluster.js +239 -0
- package/emrv2/cluster.js.map +1 -0
- package/emrv2/getClusters.d.ts +135 -0
- package/emrv2/getClusters.js +40 -0
- package/emrv2/getClusters.js.map +1 -0
- package/emrv2/index.d.ts +6 -0
- package/emrv2/index.js +25 -0
- package/emrv2/index.js.map +1 -0
- package/ess/scalingConfiguration.d.ts +12 -0
- package/ess/scalingConfiguration.js +2 -0
- package/ess/scalingConfiguration.js.map +1 -1
- package/expressconnect/getRouterInterfaces.d.ts +110 -0
- package/expressconnect/getRouterInterfaces.js +62 -0
- package/expressconnect/getRouterInterfaces.js.map +1 -0
- package/expressconnect/index.d.ts +6 -0
- package/expressconnect/index.js +9 -1
- package/expressconnect/index.js.map +1 -1
- package/expressconnect/routerInterface.d.ts +493 -0
- package/expressconnect/routerInterface.js +177 -0
- package/expressconnect/routerInterface.js.map +1 -0
- package/hbr/serverBackupPlan.d.ts +36 -0
- package/hbr/serverBackupPlan.js +6 -0
- package/hbr/serverBackupPlan.js.map +1 -1
- package/index.d.ts +2 -1
- package/index.js +4 -2
- package/index.js.map +1 -1
- package/mongodb/instance.d.ts +48 -0
- package/mongodb/instance.js +8 -0
- package/mongodb/instance.js.map +1 -1
- package/nlb/securityPolicy.d.ts +17 -4
- package/nlb/securityPolicy.js +17 -4
- package/nlb/securityPolicy.js.map +1 -1
- package/ots/getSearchIndexes.d.ts +53 -0
- package/ots/getSearchIndexes.js +14 -0
- package/ots/getSearchIndexes.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/threatdetection/getInstances.d.ts +103 -0
- package/threatdetection/getInstances.js +59 -0
- package/threatdetection/getInstances.js.map +1 -0
- package/threatdetection/index.d.ts +6 -0
- package/threatdetection/index.js +9 -1
- package/threatdetection/index.js.map +1 -1
- package/threatdetection/instance.d.ts +360 -0
- package/threatdetection/instance.js +139 -0
- package/threatdetection/instance.js.map +1 -0
- package/types/input.d.ts +284 -0
- package/types/output.d.ts +648 -0
- package/vpc/getRouterInterfaces.d.ts +0 -6
- package/vpc/getRouterInterfaces.js +0 -6
- package/vpc/getRouterInterfaces.js.map +1 -1
- package/vpc/routerInterfaceConnection.d.ts +0 -11
- package/vpc/routerInterfaceConnection.js +0 -11
- package/vpc/routerInterfaceConnection.js.map +1 -1
- package/yundun/bastionHostInstance.d.ts +3 -0
- package/yundun/bastionHostInstance.js +2 -0
- package/yundun/bastionHostInstance.js.map +1 -1
|
@@ -0,0 +1,358 @@
|
|
|
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 EMR cluster resource. This resource is based on EMR's new version OpenAPI.
|
|
6
|
+
*
|
|
7
|
+
* For information about EMR New and how to use it, see [Add a domain](https://www.alibabacloud.com/help/doc-detail/28068.htm).
|
|
8
|
+
*
|
|
9
|
+
* > **NOTE:** Available in v1.199.0+.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* Basic Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as alicloud from "@pulumi/alicloud";
|
|
18
|
+
*
|
|
19
|
+
* const defaultResourceGroups = alicloud.resourcemanager.getResourceGroups({
|
|
20
|
+
* status: "OK",
|
|
21
|
+
* });
|
|
22
|
+
* const defaultZones = alicloud.getZones({
|
|
23
|
+
* availableInstanceType: "ecs.g7.xlarge",
|
|
24
|
+
* });
|
|
25
|
+
* const defaultNetwork = new alicloud.vpc.Network("defaultNetwork", {
|
|
26
|
+
* vpcName: "TF-VPC",
|
|
27
|
+
* cidrBlock: "172.16.0.0/12",
|
|
28
|
+
* });
|
|
29
|
+
* const defaultSwitch = new alicloud.vpc.Switch("defaultSwitch", {
|
|
30
|
+
* vpcId: defaultNetwork.id,
|
|
31
|
+
* cidrBlock: "172.16.0.0/21",
|
|
32
|
+
* zoneId: defaultZones.then(defaultZones => defaultZones.zones?.[0]?.id),
|
|
33
|
+
* vswitchName: "TF_VSwitch",
|
|
34
|
+
* });
|
|
35
|
+
* const defaultEcsKeyPair = new alicloud.ecs.EcsKeyPair("defaultEcsKeyPair", {keyPairName: "terraform-kp"});
|
|
36
|
+
* const defaultSecurityGroup = new alicloud.ecs.SecurityGroup("defaultSecurityGroup", {vpcId: defaultNetwork.id});
|
|
37
|
+
* const defaultRole = new alicloud.ram.Role("defaultRole", {
|
|
38
|
+
* document: ` {
|
|
39
|
+
* "Statement": [
|
|
40
|
+
* {
|
|
41
|
+
* "Action": "sts:AssumeRole",
|
|
42
|
+
* "Effect": "Allow",
|
|
43
|
+
* "Principal": {
|
|
44
|
+
* "Service": [
|
|
45
|
+
* "emr.aliyuncs.com",
|
|
46
|
+
* "ecs.aliyuncs.com"
|
|
47
|
+
* ]
|
|
48
|
+
* }
|
|
49
|
+
* }
|
|
50
|
+
* ],
|
|
51
|
+
* "Version": "1"
|
|
52
|
+
* }
|
|
53
|
+
* `,
|
|
54
|
+
* description: "this is a role test.",
|
|
55
|
+
* force: true,
|
|
56
|
+
* });
|
|
57
|
+
* const defaultCluster = new alicloud.emrv2.Cluster("defaultCluster", {
|
|
58
|
+
* paymentType: "PayAsYouGo",
|
|
59
|
+
* clusterType: "DATALAKE",
|
|
60
|
+
* releaseVersion: "EMR-5.10.0",
|
|
61
|
+
* clusterName: "terraform-emr-cluster-v2",
|
|
62
|
+
* deployMode: "NORMAL",
|
|
63
|
+
* securityMode: "NORMAL",
|
|
64
|
+
* applications: [
|
|
65
|
+
* "HADOOP-COMMON",
|
|
66
|
+
* "HDFS",
|
|
67
|
+
* "YARN",
|
|
68
|
+
* "HIVE",
|
|
69
|
+
* "SPARK3",
|
|
70
|
+
* "TEZ",
|
|
71
|
+
* ],
|
|
72
|
+
* applicationConfigs: [
|
|
73
|
+
* {
|
|
74
|
+
* applicationName: "HIVE",
|
|
75
|
+
* configFileName: "hivemetastore-site.xml",
|
|
76
|
+
* configItemKey: "hive.metastore.type",
|
|
77
|
+
* configItemValue: "DLF",
|
|
78
|
+
* configScope: "CLUSTER",
|
|
79
|
+
* },
|
|
80
|
+
* {
|
|
81
|
+
* applicationName: "SPARK3",
|
|
82
|
+
* configFileName: "hive-site.xml",
|
|
83
|
+
* configItemKey: "hive.metastore.type",
|
|
84
|
+
* configItemValue: "DLF",
|
|
85
|
+
* configScope: "CLUSTER",
|
|
86
|
+
* },
|
|
87
|
+
* ],
|
|
88
|
+
* nodeAttributes: [{
|
|
89
|
+
* ramRole: defaultRole.name,
|
|
90
|
+
* securityGroupId: defaultSecurityGroup.id,
|
|
91
|
+
* vpcId: defaultNetwork.id,
|
|
92
|
+
* zoneId: defaultZones.then(defaultZones => defaultZones.zones?.[0]?.id),
|
|
93
|
+
* keyPairName: defaultEcsKeyPair.id,
|
|
94
|
+
* }],
|
|
95
|
+
* tags: {
|
|
96
|
+
* created: "tf",
|
|
97
|
+
* },
|
|
98
|
+
* nodeGroups: [
|
|
99
|
+
* {
|
|
100
|
+
* nodeGroupType: "MASTER",
|
|
101
|
+
* nodeGroupName: "emr-master",
|
|
102
|
+
* paymentType: "PayAsYouGo",
|
|
103
|
+
* vswitchIds: [defaultSwitch.id],
|
|
104
|
+
* withPublicIp: false,
|
|
105
|
+
* instanceTypes: ["ecs.g7.xlarge"],
|
|
106
|
+
* nodeCount: 1,
|
|
107
|
+
* systemDisk: {
|
|
108
|
+
* category: "cloud_essd",
|
|
109
|
+
* size: 80,
|
|
110
|
+
* count: 1,
|
|
111
|
+
* },
|
|
112
|
+
* dataDisks: [{
|
|
113
|
+
* category: "cloud_essd",
|
|
114
|
+
* size: 80,
|
|
115
|
+
* count: 3,
|
|
116
|
+
* }],
|
|
117
|
+
* },
|
|
118
|
+
* {
|
|
119
|
+
* nodeGroupType: "CORE",
|
|
120
|
+
* nodeGroupName: "emr-core",
|
|
121
|
+
* paymentType: "PayAsYouGo",
|
|
122
|
+
* vswitchIds: [defaultSwitch.id],
|
|
123
|
+
* withPublicIp: false,
|
|
124
|
+
* instanceTypes: ["ecs.g7.xlarge"],
|
|
125
|
+
* nodeCount: 3,
|
|
126
|
+
* systemDisk: {
|
|
127
|
+
* category: "cloud_essd",
|
|
128
|
+
* size: 80,
|
|
129
|
+
* count: 1,
|
|
130
|
+
* },
|
|
131
|
+
* dataDisks: [{
|
|
132
|
+
* category: "cloud_essd",
|
|
133
|
+
* size: 80,
|
|
134
|
+
* count: 3,
|
|
135
|
+
* }],
|
|
136
|
+
* },
|
|
137
|
+
* ],
|
|
138
|
+
* resourceGroupId: defaultResourceGroups.then(defaultResourceGroups => defaultResourceGroups.ids?.[0]),
|
|
139
|
+
* });
|
|
140
|
+
* ```
|
|
141
|
+
*
|
|
142
|
+
* ## Import
|
|
143
|
+
*
|
|
144
|
+
* Aliclioud E-MapReduce cluster can be imported using the id e.g.
|
|
145
|
+
*
|
|
146
|
+
* ```sh
|
|
147
|
+
* $ pulumi import alicloud:emrv2/cluster:Cluster default <id>
|
|
148
|
+
* ```
|
|
149
|
+
*/
|
|
150
|
+
export declare class Cluster extends pulumi.CustomResource {
|
|
151
|
+
/**
|
|
152
|
+
* Get an existing Cluster resource's state with the given name, ID, and optional extra
|
|
153
|
+
* properties used to qualify the lookup.
|
|
154
|
+
*
|
|
155
|
+
* @param name The _unique_ name of the resulting resource.
|
|
156
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
157
|
+
* @param state Any extra arguments used during the lookup.
|
|
158
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
159
|
+
*/
|
|
160
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ClusterState, opts?: pulumi.CustomResourceOptions): Cluster;
|
|
161
|
+
/**
|
|
162
|
+
* Returns true if the given object is an instance of Cluster. This is designed to work even
|
|
163
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
164
|
+
*/
|
|
165
|
+
static isInstance(obj: any): obj is Cluster;
|
|
166
|
+
/**
|
|
167
|
+
* The application configurations of EMR cluster.
|
|
168
|
+
*/
|
|
169
|
+
readonly applicationConfigs: pulumi.Output<outputs.emrv2.ClusterApplicationConfig[] | undefined>;
|
|
170
|
+
/**
|
|
171
|
+
* The applications of EMR cluster to be installed, e.g. HADOOP-COMMON, HDFS, YARN, HIVE, SPARK2, SPARK3, ZOOKEEPER etc. You can find all valid applications in emr web console.
|
|
172
|
+
*/
|
|
173
|
+
readonly applications: pulumi.Output<string[]>;
|
|
174
|
+
/**
|
|
175
|
+
* The bootstrap scripts to be effected when creating emr-cluster or resize emr-cluster.
|
|
176
|
+
*/
|
|
177
|
+
readonly bootstrapScripts: pulumi.Output<outputs.emrv2.ClusterBootstrapScript[] | undefined>;
|
|
178
|
+
/**
|
|
179
|
+
* The name of emr cluster. The name length must be less than 64. Supported characters: chinese character, english character, number, "-", "_".
|
|
180
|
+
*/
|
|
181
|
+
readonly clusterName: pulumi.Output<string>;
|
|
182
|
+
/**
|
|
183
|
+
* EMR Cluster Type, e.g. DATALAKE, OLAP, DATAFLOW, DATASERVING, CUSTOM etc. You can find all valid EMR cluster type in emr web console.
|
|
184
|
+
*/
|
|
185
|
+
readonly clusterType: pulumi.Output<string>;
|
|
186
|
+
/**
|
|
187
|
+
* The deploy mode of EMR cluster. Supported value: NORMAL or HA.
|
|
188
|
+
*/
|
|
189
|
+
readonly deployMode: pulumi.Output<string>;
|
|
190
|
+
/**
|
|
191
|
+
* The node attributes of ecs instances which the emr-cluster belongs.
|
|
192
|
+
*/
|
|
193
|
+
readonly nodeAttributes: pulumi.Output<outputs.emrv2.ClusterNodeAttribute[]>;
|
|
194
|
+
/**
|
|
195
|
+
* Groups of node, You can specify MASTER as a group, CORE as a group (just like the above example).
|
|
196
|
+
*/
|
|
197
|
+
readonly nodeGroups: pulumi.Output<outputs.emrv2.ClusterNodeGroup[]>;
|
|
198
|
+
/**
|
|
199
|
+
* Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
200
|
+
*/
|
|
201
|
+
readonly paymentType: pulumi.Output<string>;
|
|
202
|
+
/**
|
|
203
|
+
* EMR Version, e.g. EMR-5.10.0. You can find the all valid EMR Version in emr web console.
|
|
204
|
+
*/
|
|
205
|
+
readonly releaseVersion: pulumi.Output<string>;
|
|
206
|
+
/**
|
|
207
|
+
* The Id of resource group which the emr-cluster belongs.
|
|
208
|
+
*/
|
|
209
|
+
readonly resourceGroupId: pulumi.Output<string>;
|
|
210
|
+
/**
|
|
211
|
+
* The security mode of EMR cluster. Supported value: NORMAL or KERBEROS.
|
|
212
|
+
*/
|
|
213
|
+
readonly securityMode: pulumi.Output<string>;
|
|
214
|
+
/**
|
|
215
|
+
* The detail configuration of subscription payment type.
|
|
216
|
+
*/
|
|
217
|
+
readonly subscriptionConfig: pulumi.Output<outputs.emrv2.ClusterSubscriptionConfig | undefined>;
|
|
218
|
+
/**
|
|
219
|
+
* A mapping of tags to assign to the resource.
|
|
220
|
+
*/
|
|
221
|
+
readonly tags: pulumi.Output<{
|
|
222
|
+
[key: string]: any;
|
|
223
|
+
} | undefined>;
|
|
224
|
+
/**
|
|
225
|
+
* Create a Cluster resource with the given unique name, arguments, and options.
|
|
226
|
+
*
|
|
227
|
+
* @param name The _unique_ name of the resource.
|
|
228
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
229
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
230
|
+
*/
|
|
231
|
+
constructor(name: string, args: ClusterArgs, opts?: pulumi.CustomResourceOptions);
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* Input properties used for looking up and filtering Cluster resources.
|
|
235
|
+
*/
|
|
236
|
+
export interface ClusterState {
|
|
237
|
+
/**
|
|
238
|
+
* The application configurations of EMR cluster.
|
|
239
|
+
*/
|
|
240
|
+
applicationConfigs?: pulumi.Input<pulumi.Input<inputs.emrv2.ClusterApplicationConfig>[]>;
|
|
241
|
+
/**
|
|
242
|
+
* The applications of EMR cluster to be installed, e.g. HADOOP-COMMON, HDFS, YARN, HIVE, SPARK2, SPARK3, ZOOKEEPER etc. You can find all valid applications in emr web console.
|
|
243
|
+
*/
|
|
244
|
+
applications?: pulumi.Input<pulumi.Input<string>[]>;
|
|
245
|
+
/**
|
|
246
|
+
* The bootstrap scripts to be effected when creating emr-cluster or resize emr-cluster.
|
|
247
|
+
*/
|
|
248
|
+
bootstrapScripts?: pulumi.Input<pulumi.Input<inputs.emrv2.ClusterBootstrapScript>[]>;
|
|
249
|
+
/**
|
|
250
|
+
* The name of emr cluster. The name length must be less than 64. Supported characters: chinese character, english character, number, "-", "_".
|
|
251
|
+
*/
|
|
252
|
+
clusterName?: pulumi.Input<string>;
|
|
253
|
+
/**
|
|
254
|
+
* EMR Cluster Type, e.g. DATALAKE, OLAP, DATAFLOW, DATASERVING, CUSTOM etc. You can find all valid EMR cluster type in emr web console.
|
|
255
|
+
*/
|
|
256
|
+
clusterType?: pulumi.Input<string>;
|
|
257
|
+
/**
|
|
258
|
+
* The deploy mode of EMR cluster. Supported value: NORMAL or HA.
|
|
259
|
+
*/
|
|
260
|
+
deployMode?: pulumi.Input<string>;
|
|
261
|
+
/**
|
|
262
|
+
* The node attributes of ecs instances which the emr-cluster belongs.
|
|
263
|
+
*/
|
|
264
|
+
nodeAttributes?: pulumi.Input<pulumi.Input<inputs.emrv2.ClusterNodeAttribute>[]>;
|
|
265
|
+
/**
|
|
266
|
+
* Groups of node, You can specify MASTER as a group, CORE as a group (just like the above example).
|
|
267
|
+
*/
|
|
268
|
+
nodeGroups?: pulumi.Input<pulumi.Input<inputs.emrv2.ClusterNodeGroup>[]>;
|
|
269
|
+
/**
|
|
270
|
+
* Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
271
|
+
*/
|
|
272
|
+
paymentType?: pulumi.Input<string>;
|
|
273
|
+
/**
|
|
274
|
+
* EMR Version, e.g. EMR-5.10.0. You can find the all valid EMR Version in emr web console.
|
|
275
|
+
*/
|
|
276
|
+
releaseVersion?: pulumi.Input<string>;
|
|
277
|
+
/**
|
|
278
|
+
* The Id of resource group which the emr-cluster belongs.
|
|
279
|
+
*/
|
|
280
|
+
resourceGroupId?: pulumi.Input<string>;
|
|
281
|
+
/**
|
|
282
|
+
* The security mode of EMR cluster. Supported value: NORMAL or KERBEROS.
|
|
283
|
+
*/
|
|
284
|
+
securityMode?: pulumi.Input<string>;
|
|
285
|
+
/**
|
|
286
|
+
* The detail configuration of subscription payment type.
|
|
287
|
+
*/
|
|
288
|
+
subscriptionConfig?: pulumi.Input<inputs.emrv2.ClusterSubscriptionConfig>;
|
|
289
|
+
/**
|
|
290
|
+
* A mapping of tags to assign to the resource.
|
|
291
|
+
*/
|
|
292
|
+
tags?: pulumi.Input<{
|
|
293
|
+
[key: string]: any;
|
|
294
|
+
}>;
|
|
295
|
+
}
|
|
296
|
+
/**
|
|
297
|
+
* The set of arguments for constructing a Cluster resource.
|
|
298
|
+
*/
|
|
299
|
+
export interface ClusterArgs {
|
|
300
|
+
/**
|
|
301
|
+
* The application configurations of EMR cluster.
|
|
302
|
+
*/
|
|
303
|
+
applicationConfigs?: pulumi.Input<pulumi.Input<inputs.emrv2.ClusterApplicationConfig>[]>;
|
|
304
|
+
/**
|
|
305
|
+
* The applications of EMR cluster to be installed, e.g. HADOOP-COMMON, HDFS, YARN, HIVE, SPARK2, SPARK3, ZOOKEEPER etc. You can find all valid applications in emr web console.
|
|
306
|
+
*/
|
|
307
|
+
applications: pulumi.Input<pulumi.Input<string>[]>;
|
|
308
|
+
/**
|
|
309
|
+
* The bootstrap scripts to be effected when creating emr-cluster or resize emr-cluster.
|
|
310
|
+
*/
|
|
311
|
+
bootstrapScripts?: pulumi.Input<pulumi.Input<inputs.emrv2.ClusterBootstrapScript>[]>;
|
|
312
|
+
/**
|
|
313
|
+
* The name of emr cluster. The name length must be less than 64. Supported characters: chinese character, english character, number, "-", "_".
|
|
314
|
+
*/
|
|
315
|
+
clusterName: pulumi.Input<string>;
|
|
316
|
+
/**
|
|
317
|
+
* EMR Cluster Type, e.g. DATALAKE, OLAP, DATAFLOW, DATASERVING, CUSTOM etc. You can find all valid EMR cluster type in emr web console.
|
|
318
|
+
*/
|
|
319
|
+
clusterType: pulumi.Input<string>;
|
|
320
|
+
/**
|
|
321
|
+
* The deploy mode of EMR cluster. Supported value: NORMAL or HA.
|
|
322
|
+
*/
|
|
323
|
+
deployMode?: pulumi.Input<string>;
|
|
324
|
+
/**
|
|
325
|
+
* The node attributes of ecs instances which the emr-cluster belongs.
|
|
326
|
+
*/
|
|
327
|
+
nodeAttributes: pulumi.Input<pulumi.Input<inputs.emrv2.ClusterNodeAttribute>[]>;
|
|
328
|
+
/**
|
|
329
|
+
* Groups of node, You can specify MASTER as a group, CORE as a group (just like the above example).
|
|
330
|
+
*/
|
|
331
|
+
nodeGroups: pulumi.Input<pulumi.Input<inputs.emrv2.ClusterNodeGroup>[]>;
|
|
332
|
+
/**
|
|
333
|
+
* Payment Type for this cluster. Supported value: PayAsYouGo or Subscription.
|
|
334
|
+
*/
|
|
335
|
+
paymentType?: pulumi.Input<string>;
|
|
336
|
+
/**
|
|
337
|
+
* EMR Version, e.g. EMR-5.10.0. You can find the all valid EMR Version in emr web console.
|
|
338
|
+
*/
|
|
339
|
+
releaseVersion: pulumi.Input<string>;
|
|
340
|
+
/**
|
|
341
|
+
* The Id of resource group which the emr-cluster belongs.
|
|
342
|
+
*/
|
|
343
|
+
resourceGroupId?: pulumi.Input<string>;
|
|
344
|
+
/**
|
|
345
|
+
* The security mode of EMR cluster. Supported value: NORMAL or KERBEROS.
|
|
346
|
+
*/
|
|
347
|
+
securityMode?: pulumi.Input<string>;
|
|
348
|
+
/**
|
|
349
|
+
* The detail configuration of subscription payment type.
|
|
350
|
+
*/
|
|
351
|
+
subscriptionConfig?: pulumi.Input<inputs.emrv2.ClusterSubscriptionConfig>;
|
|
352
|
+
/**
|
|
353
|
+
* A mapping of tags to assign to the resource.
|
|
354
|
+
*/
|
|
355
|
+
tags?: pulumi.Input<{
|
|
356
|
+
[key: string]: any;
|
|
357
|
+
}>;
|
|
358
|
+
}
|
package/emrv2/cluster.js
ADDED
|
@@ -0,0 +1,239 @@
|
|
|
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.Cluster = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a EMR cluster resource. This resource is based on EMR's new version OpenAPI.
|
|
10
|
+
*
|
|
11
|
+
* For information about EMR New and how to use it, see [Add a domain](https://www.alibabacloud.com/help/doc-detail/28068.htm).
|
|
12
|
+
*
|
|
13
|
+
* > **NOTE:** Available in v1.199.0+.
|
|
14
|
+
*
|
|
15
|
+
* ## Example Usage
|
|
16
|
+
*
|
|
17
|
+
* Basic Usage
|
|
18
|
+
*
|
|
19
|
+
* ```typescript
|
|
20
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
21
|
+
* import * as alicloud from "@pulumi/alicloud";
|
|
22
|
+
*
|
|
23
|
+
* const defaultResourceGroups = alicloud.resourcemanager.getResourceGroups({
|
|
24
|
+
* status: "OK",
|
|
25
|
+
* });
|
|
26
|
+
* const defaultZones = alicloud.getZones({
|
|
27
|
+
* availableInstanceType: "ecs.g7.xlarge",
|
|
28
|
+
* });
|
|
29
|
+
* const defaultNetwork = new alicloud.vpc.Network("defaultNetwork", {
|
|
30
|
+
* vpcName: "TF-VPC",
|
|
31
|
+
* cidrBlock: "172.16.0.0/12",
|
|
32
|
+
* });
|
|
33
|
+
* const defaultSwitch = new alicloud.vpc.Switch("defaultSwitch", {
|
|
34
|
+
* vpcId: defaultNetwork.id,
|
|
35
|
+
* cidrBlock: "172.16.0.0/21",
|
|
36
|
+
* zoneId: defaultZones.then(defaultZones => defaultZones.zones?.[0]?.id),
|
|
37
|
+
* vswitchName: "TF_VSwitch",
|
|
38
|
+
* });
|
|
39
|
+
* const defaultEcsKeyPair = new alicloud.ecs.EcsKeyPair("defaultEcsKeyPair", {keyPairName: "terraform-kp"});
|
|
40
|
+
* const defaultSecurityGroup = new alicloud.ecs.SecurityGroup("defaultSecurityGroup", {vpcId: defaultNetwork.id});
|
|
41
|
+
* const defaultRole = new alicloud.ram.Role("defaultRole", {
|
|
42
|
+
* document: ` {
|
|
43
|
+
* "Statement": [
|
|
44
|
+
* {
|
|
45
|
+
* "Action": "sts:AssumeRole",
|
|
46
|
+
* "Effect": "Allow",
|
|
47
|
+
* "Principal": {
|
|
48
|
+
* "Service": [
|
|
49
|
+
* "emr.aliyuncs.com",
|
|
50
|
+
* "ecs.aliyuncs.com"
|
|
51
|
+
* ]
|
|
52
|
+
* }
|
|
53
|
+
* }
|
|
54
|
+
* ],
|
|
55
|
+
* "Version": "1"
|
|
56
|
+
* }
|
|
57
|
+
* `,
|
|
58
|
+
* description: "this is a role test.",
|
|
59
|
+
* force: true,
|
|
60
|
+
* });
|
|
61
|
+
* const defaultCluster = new alicloud.emrv2.Cluster("defaultCluster", {
|
|
62
|
+
* paymentType: "PayAsYouGo",
|
|
63
|
+
* clusterType: "DATALAKE",
|
|
64
|
+
* releaseVersion: "EMR-5.10.0",
|
|
65
|
+
* clusterName: "terraform-emr-cluster-v2",
|
|
66
|
+
* deployMode: "NORMAL",
|
|
67
|
+
* securityMode: "NORMAL",
|
|
68
|
+
* applications: [
|
|
69
|
+
* "HADOOP-COMMON",
|
|
70
|
+
* "HDFS",
|
|
71
|
+
* "YARN",
|
|
72
|
+
* "HIVE",
|
|
73
|
+
* "SPARK3",
|
|
74
|
+
* "TEZ",
|
|
75
|
+
* ],
|
|
76
|
+
* applicationConfigs: [
|
|
77
|
+
* {
|
|
78
|
+
* applicationName: "HIVE",
|
|
79
|
+
* configFileName: "hivemetastore-site.xml",
|
|
80
|
+
* configItemKey: "hive.metastore.type",
|
|
81
|
+
* configItemValue: "DLF",
|
|
82
|
+
* configScope: "CLUSTER",
|
|
83
|
+
* },
|
|
84
|
+
* {
|
|
85
|
+
* applicationName: "SPARK3",
|
|
86
|
+
* configFileName: "hive-site.xml",
|
|
87
|
+
* configItemKey: "hive.metastore.type",
|
|
88
|
+
* configItemValue: "DLF",
|
|
89
|
+
* configScope: "CLUSTER",
|
|
90
|
+
* },
|
|
91
|
+
* ],
|
|
92
|
+
* nodeAttributes: [{
|
|
93
|
+
* ramRole: defaultRole.name,
|
|
94
|
+
* securityGroupId: defaultSecurityGroup.id,
|
|
95
|
+
* vpcId: defaultNetwork.id,
|
|
96
|
+
* zoneId: defaultZones.then(defaultZones => defaultZones.zones?.[0]?.id),
|
|
97
|
+
* keyPairName: defaultEcsKeyPair.id,
|
|
98
|
+
* }],
|
|
99
|
+
* tags: {
|
|
100
|
+
* created: "tf",
|
|
101
|
+
* },
|
|
102
|
+
* nodeGroups: [
|
|
103
|
+
* {
|
|
104
|
+
* nodeGroupType: "MASTER",
|
|
105
|
+
* nodeGroupName: "emr-master",
|
|
106
|
+
* paymentType: "PayAsYouGo",
|
|
107
|
+
* vswitchIds: [defaultSwitch.id],
|
|
108
|
+
* withPublicIp: false,
|
|
109
|
+
* instanceTypes: ["ecs.g7.xlarge"],
|
|
110
|
+
* nodeCount: 1,
|
|
111
|
+
* systemDisk: {
|
|
112
|
+
* category: "cloud_essd",
|
|
113
|
+
* size: 80,
|
|
114
|
+
* count: 1,
|
|
115
|
+
* },
|
|
116
|
+
* dataDisks: [{
|
|
117
|
+
* category: "cloud_essd",
|
|
118
|
+
* size: 80,
|
|
119
|
+
* count: 3,
|
|
120
|
+
* }],
|
|
121
|
+
* },
|
|
122
|
+
* {
|
|
123
|
+
* nodeGroupType: "CORE",
|
|
124
|
+
* nodeGroupName: "emr-core",
|
|
125
|
+
* paymentType: "PayAsYouGo",
|
|
126
|
+
* vswitchIds: [defaultSwitch.id],
|
|
127
|
+
* withPublicIp: false,
|
|
128
|
+
* instanceTypes: ["ecs.g7.xlarge"],
|
|
129
|
+
* nodeCount: 3,
|
|
130
|
+
* systemDisk: {
|
|
131
|
+
* category: "cloud_essd",
|
|
132
|
+
* size: 80,
|
|
133
|
+
* count: 1,
|
|
134
|
+
* },
|
|
135
|
+
* dataDisks: [{
|
|
136
|
+
* category: "cloud_essd",
|
|
137
|
+
* size: 80,
|
|
138
|
+
* count: 3,
|
|
139
|
+
* }],
|
|
140
|
+
* },
|
|
141
|
+
* ],
|
|
142
|
+
* resourceGroupId: defaultResourceGroups.then(defaultResourceGroups => defaultResourceGroups.ids?.[0]),
|
|
143
|
+
* });
|
|
144
|
+
* ```
|
|
145
|
+
*
|
|
146
|
+
* ## Import
|
|
147
|
+
*
|
|
148
|
+
* Aliclioud E-MapReduce cluster can be imported using the id e.g.
|
|
149
|
+
*
|
|
150
|
+
* ```sh
|
|
151
|
+
* $ pulumi import alicloud:emrv2/cluster:Cluster default <id>
|
|
152
|
+
* ```
|
|
153
|
+
*/
|
|
154
|
+
class Cluster extends pulumi.CustomResource {
|
|
155
|
+
/**
|
|
156
|
+
* Get an existing Cluster resource's state with the given name, ID, and optional extra
|
|
157
|
+
* properties used to qualify the lookup.
|
|
158
|
+
*
|
|
159
|
+
* @param name The _unique_ name of the resulting resource.
|
|
160
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
161
|
+
* @param state Any extra arguments used during the lookup.
|
|
162
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
163
|
+
*/
|
|
164
|
+
static get(name, id, state, opts) {
|
|
165
|
+
return new Cluster(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
166
|
+
}
|
|
167
|
+
/**
|
|
168
|
+
* Returns true if the given object is an instance of Cluster. This is designed to work even
|
|
169
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
170
|
+
*/
|
|
171
|
+
static isInstance(obj) {
|
|
172
|
+
if (obj === undefined || obj === null) {
|
|
173
|
+
return false;
|
|
174
|
+
}
|
|
175
|
+
return obj['__pulumiType'] === Cluster.__pulumiType;
|
|
176
|
+
}
|
|
177
|
+
constructor(name, argsOrState, opts) {
|
|
178
|
+
let resourceInputs = {};
|
|
179
|
+
opts = opts || {};
|
|
180
|
+
if (opts.id) {
|
|
181
|
+
const state = argsOrState;
|
|
182
|
+
resourceInputs["applicationConfigs"] = state ? state.applicationConfigs : undefined;
|
|
183
|
+
resourceInputs["applications"] = state ? state.applications : undefined;
|
|
184
|
+
resourceInputs["bootstrapScripts"] = state ? state.bootstrapScripts : undefined;
|
|
185
|
+
resourceInputs["clusterName"] = state ? state.clusterName : undefined;
|
|
186
|
+
resourceInputs["clusterType"] = state ? state.clusterType : undefined;
|
|
187
|
+
resourceInputs["deployMode"] = state ? state.deployMode : undefined;
|
|
188
|
+
resourceInputs["nodeAttributes"] = state ? state.nodeAttributes : undefined;
|
|
189
|
+
resourceInputs["nodeGroups"] = state ? state.nodeGroups : undefined;
|
|
190
|
+
resourceInputs["paymentType"] = state ? state.paymentType : undefined;
|
|
191
|
+
resourceInputs["releaseVersion"] = state ? state.releaseVersion : undefined;
|
|
192
|
+
resourceInputs["resourceGroupId"] = state ? state.resourceGroupId : undefined;
|
|
193
|
+
resourceInputs["securityMode"] = state ? state.securityMode : undefined;
|
|
194
|
+
resourceInputs["subscriptionConfig"] = state ? state.subscriptionConfig : undefined;
|
|
195
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
196
|
+
}
|
|
197
|
+
else {
|
|
198
|
+
const args = argsOrState;
|
|
199
|
+
if ((!args || args.applications === undefined) && !opts.urn) {
|
|
200
|
+
throw new Error("Missing required property 'applications'");
|
|
201
|
+
}
|
|
202
|
+
if ((!args || args.clusterName === undefined) && !opts.urn) {
|
|
203
|
+
throw new Error("Missing required property 'clusterName'");
|
|
204
|
+
}
|
|
205
|
+
if ((!args || args.clusterType === undefined) && !opts.urn) {
|
|
206
|
+
throw new Error("Missing required property 'clusterType'");
|
|
207
|
+
}
|
|
208
|
+
if ((!args || args.nodeAttributes === undefined) && !opts.urn) {
|
|
209
|
+
throw new Error("Missing required property 'nodeAttributes'");
|
|
210
|
+
}
|
|
211
|
+
if ((!args || args.nodeGroups === undefined) && !opts.urn) {
|
|
212
|
+
throw new Error("Missing required property 'nodeGroups'");
|
|
213
|
+
}
|
|
214
|
+
if ((!args || args.releaseVersion === undefined) && !opts.urn) {
|
|
215
|
+
throw new Error("Missing required property 'releaseVersion'");
|
|
216
|
+
}
|
|
217
|
+
resourceInputs["applicationConfigs"] = args ? args.applicationConfigs : undefined;
|
|
218
|
+
resourceInputs["applications"] = args ? args.applications : undefined;
|
|
219
|
+
resourceInputs["bootstrapScripts"] = args ? args.bootstrapScripts : undefined;
|
|
220
|
+
resourceInputs["clusterName"] = args ? args.clusterName : undefined;
|
|
221
|
+
resourceInputs["clusterType"] = args ? args.clusterType : undefined;
|
|
222
|
+
resourceInputs["deployMode"] = args ? args.deployMode : undefined;
|
|
223
|
+
resourceInputs["nodeAttributes"] = args ? args.nodeAttributes : undefined;
|
|
224
|
+
resourceInputs["nodeGroups"] = args ? args.nodeGroups : undefined;
|
|
225
|
+
resourceInputs["paymentType"] = args ? args.paymentType : undefined;
|
|
226
|
+
resourceInputs["releaseVersion"] = args ? args.releaseVersion : undefined;
|
|
227
|
+
resourceInputs["resourceGroupId"] = args ? args.resourceGroupId : undefined;
|
|
228
|
+
resourceInputs["securityMode"] = args ? args.securityMode : undefined;
|
|
229
|
+
resourceInputs["subscriptionConfig"] = args ? args.subscriptionConfig : undefined;
|
|
230
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
231
|
+
}
|
|
232
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
233
|
+
super(Cluster.__pulumiType, name, resourceInputs, opts);
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
exports.Cluster = Cluster;
|
|
237
|
+
/** @internal */
|
|
238
|
+
Cluster.__pulumiType = 'alicloud:emrv2/cluster:Cluster';
|
|
239
|
+
//# sourceMappingURL=cluster.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cluster.js","sourceRoot":"","sources":["../../emrv2/cluster.ts"],"names":[],"mappings":"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"}
|