@pulumi/alicloud 3.59.0 → 3.59.1

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.
@@ -2,8 +2,9 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "../types/input";
3
3
  import * as outputs from "../types/output";
4
4
  /**
5
- * A virtual server group contains several ECS instances. The virtual server group can help you to define multiple listening dimension,
6
- * and to meet the personalized requirements of domain name and URL forwarding.
5
+ * Provides a Load Balancer Virtual Backend Server Group resource.
6
+ *
7
+ * For information about Load Balancer Virtual Backend Server Group and how to use it, see [What is Virtual Backend Server Group](https://www.alibabacloud.com/help/en/doc-detail/35215.html).
7
8
  *
8
9
  * > **NOTE:** Available since v1.6.0.
9
10
  *
@@ -17,46 +18,46 @@ import * as outputs from "../types/output";
17
18
  *
18
19
  * > **NOTE:** One VPC load balancer, its virtual server group can only add the same VPC ECS instances.
19
20
  *
20
- * For information about server group and how to use it, see [Configure a server group](https://www.alibabacloud.com/help/en/doc-detail/35215.html).
21
- *
22
21
  * ## Example Usage
23
22
  *
23
+ * Basic Usage
24
+ *
24
25
  * ```typescript
25
26
  * import * as pulumi from "@pulumi/pulumi";
26
27
  * import * as alicloud from "@pulumi/alicloud";
27
28
  *
28
29
  * const config = new pulumi.Config();
29
- * const slbServerGroupName = config.get("slbServerGroupName") || "forSlbServerGroup";
30
- * const serverGroup = alicloud.getZones({
30
+ * const name = config.get("name") || "tf-example";
31
+ * const default = alicloud.getZones({
31
32
  * availableResourceCreation: "VSwitch",
32
33
  * });
33
- * const serverGroupNetwork = new alicloud.vpc.Network("server_group", {
34
- * vpcName: slbServerGroupName,
34
+ * const defaultNetwork = new alicloud.vpc.Network("default", {
35
+ * vpcName: name,
35
36
  * cidrBlock: "172.16.0.0/16",
36
37
  * });
37
- * const serverGroupSwitch = new alicloud.vpc.Switch("server_group", {
38
- * vpcId: serverGroupNetwork.id,
38
+ * const defaultSwitch = new alicloud.vpc.Switch("default", {
39
+ * vpcId: defaultNetwork.id,
39
40
  * cidrBlock: "172.16.0.0/16",
40
- * zoneId: serverGroup.then(serverGroup => serverGroup.zones?.[0]?.id),
41
- * vswitchName: slbServerGroupName,
41
+ * zoneId: _default.then(_default => _default.zones?.[0]?.id),
42
+ * vswitchName: name,
42
43
  * });
43
- * const serverGroupApplicationLoadBalancer = new alicloud.slb.ApplicationLoadBalancer("server_group", {
44
- * loadBalancerName: slbServerGroupName,
45
- * vswitchId: serverGroupSwitch.id,
46
- * instanceChargeType: "PayByCLCU",
44
+ * const defaultApplicationLoadBalancer = new alicloud.slb.ApplicationLoadBalancer("default", {
45
+ * loadBalancerName: name,
46
+ * vswitchId: defaultSwitch.id,
47
+ * loadBalancerSpec: "slb.s2.small",
47
48
  * });
48
- * const serverGroupServerGroup = new alicloud.slb.ServerGroup("server_group", {
49
- * loadBalancerId: serverGroupApplicationLoadBalancer.id,
50
- * name: slbServerGroupName,
49
+ * const defaultServerGroup = new alicloud.slb.ServerGroup("default", {
50
+ * loadBalancerId: defaultApplicationLoadBalancer.id,
51
+ * name: name,
51
52
  * });
52
53
  * ```
53
54
  *
54
55
  * ## Import
55
56
  *
56
- * Load balancer backend server group can be imported using the id, e.g.
57
+ * Load Balancer Virtual Backend Server Group can be imported using the id, e.g.
57
58
  *
58
59
  * ```sh
59
- * $ pulumi import alicloud:slb/serverGroup:ServerGroup example abc123456
60
+ * $ pulumi import alicloud:slb/serverGroup:ServerGroup example <id>
60
61
  * ```
61
62
  */
62
63
  export declare class ServerGroup extends pulumi.CustomResource {
@@ -76,23 +77,30 @@ export declare class ServerGroup extends pulumi.CustomResource {
76
77
  */
77
78
  static isInstance(obj: any): obj is ServerGroup;
78
79
  /**
79
- * Checking DeleteProtection of SLB instance before deleting. If true, this resource will not be deleted when its SLB instance enabled DeleteProtection. Default to false.
80
+ * Checking DeleteProtection of SLB instance before deleting. Default value: `false`. If `deleteProtectionValidation` is set to `true`, this resource will not be deleted when its SLB instance enabled DeleteProtection.
80
81
  */
81
82
  readonly deleteProtectionValidation: pulumi.Output<boolean | undefined>;
82
83
  /**
83
- * The Load Balancer ID which is used to launch a new virtual server group.
84
+ * The ID of the Server Load Balancer (SLB) instance.
84
85
  */
85
86
  readonly loadBalancerId: pulumi.Output<string>;
86
87
  /**
87
- * Name of the virtual server group. Our plugin provides a default name: "tf-server-group".
88
+ * The name of the vServer group. Default value: `tf-server-group`.
88
89
  */
89
90
  readonly name: pulumi.Output<string>;
90
91
  /**
91
- * A list of ECS instances to be added. **NOTE:** Field 'servers' has been deprecated from provider version 1.163.0 and it will be removed in the future version. Please use the new resource 'alicloud_slb_server_group_server_attachment'. At most 20 ECS instances can be supported in one resource. It contains three sub-fields as `Block server` follows. See `servers` below for details.
92
+ * The list of backend servers to be added. See `servers` below.
93
+ * > **NOTE:** Field `servers` has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resource `alicloud.slb.ServerGroupServerAttachment`.
92
94
  *
93
- * @deprecated Field 'servers' has been deprecated from provider version 1.163.0 and it will be removed in the future version. Please use the new resource 'alicloud_slb_server_group_server_attachment'.
95
+ * @deprecated Field `servers` has been deprecated from provider version 1.163.0 and it will be removed in the future version. Please use the new resource `alicloud.slb.ServerGroupServerAttachment`.
94
96
  */
95
97
  readonly servers: pulumi.Output<outputs.slb.ServerGroupServer[]>;
98
+ /**
99
+ * A mapping of tags to assign to the resource.
100
+ */
101
+ readonly tags: pulumi.Output<{
102
+ [key: string]: any;
103
+ } | undefined>;
96
104
  /**
97
105
  * Create a ServerGroup resource with the given unique name, arguments, and options.
98
106
  *
@@ -107,44 +115,58 @@ export declare class ServerGroup extends pulumi.CustomResource {
107
115
  */
108
116
  export interface ServerGroupState {
109
117
  /**
110
- * Checking DeleteProtection of SLB instance before deleting. If true, this resource will not be deleted when its SLB instance enabled DeleteProtection. Default to false.
118
+ * Checking DeleteProtection of SLB instance before deleting. Default value: `false`. If `deleteProtectionValidation` is set to `true`, this resource will not be deleted when its SLB instance enabled DeleteProtection.
111
119
  */
112
120
  deleteProtectionValidation?: pulumi.Input<boolean>;
113
121
  /**
114
- * The Load Balancer ID which is used to launch a new virtual server group.
122
+ * The ID of the Server Load Balancer (SLB) instance.
115
123
  */
116
124
  loadBalancerId?: pulumi.Input<string>;
117
125
  /**
118
- * Name of the virtual server group. Our plugin provides a default name: "tf-server-group".
126
+ * The name of the vServer group. Default value: `tf-server-group`.
119
127
  */
120
128
  name?: pulumi.Input<string>;
121
129
  /**
122
- * A list of ECS instances to be added. **NOTE:** Field 'servers' has been deprecated from provider version 1.163.0 and it will be removed in the future version. Please use the new resource 'alicloud_slb_server_group_server_attachment'. At most 20 ECS instances can be supported in one resource. It contains three sub-fields as `Block server` follows. See `servers` below for details.
130
+ * The list of backend servers to be added. See `servers` below.
131
+ * > **NOTE:** Field `servers` has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resource `alicloud.slb.ServerGroupServerAttachment`.
123
132
  *
124
- * @deprecated Field 'servers' has been deprecated from provider version 1.163.0 and it will be removed in the future version. Please use the new resource 'alicloud_slb_server_group_server_attachment'.
133
+ * @deprecated Field `servers` has been deprecated from provider version 1.163.0 and it will be removed in the future version. Please use the new resource `alicloud.slb.ServerGroupServerAttachment`.
125
134
  */
126
135
  servers?: pulumi.Input<pulumi.Input<inputs.slb.ServerGroupServer>[]>;
136
+ /**
137
+ * A mapping of tags to assign to the resource.
138
+ */
139
+ tags?: pulumi.Input<{
140
+ [key: string]: any;
141
+ }>;
127
142
  }
128
143
  /**
129
144
  * The set of arguments for constructing a ServerGroup resource.
130
145
  */
131
146
  export interface ServerGroupArgs {
132
147
  /**
133
- * Checking DeleteProtection of SLB instance before deleting. If true, this resource will not be deleted when its SLB instance enabled DeleteProtection. Default to false.
148
+ * Checking DeleteProtection of SLB instance before deleting. Default value: `false`. If `deleteProtectionValidation` is set to `true`, this resource will not be deleted when its SLB instance enabled DeleteProtection.
134
149
  */
135
150
  deleteProtectionValidation?: pulumi.Input<boolean>;
136
151
  /**
137
- * The Load Balancer ID which is used to launch a new virtual server group.
152
+ * The ID of the Server Load Balancer (SLB) instance.
138
153
  */
139
154
  loadBalancerId: pulumi.Input<string>;
140
155
  /**
141
- * Name of the virtual server group. Our plugin provides a default name: "tf-server-group".
156
+ * The name of the vServer group. Default value: `tf-server-group`.
142
157
  */
143
158
  name?: pulumi.Input<string>;
144
159
  /**
145
- * A list of ECS instances to be added. **NOTE:** Field 'servers' has been deprecated from provider version 1.163.0 and it will be removed in the future version. Please use the new resource 'alicloud_slb_server_group_server_attachment'. At most 20 ECS instances can be supported in one resource. It contains three sub-fields as `Block server` follows. See `servers` below for details.
160
+ * The list of backend servers to be added. See `servers` below.
161
+ * > **NOTE:** Field `servers` has been deprecated from provider version 1.163.0, and it will be removed in the future version. Please use the new resource `alicloud.slb.ServerGroupServerAttachment`.
146
162
  *
147
- * @deprecated Field 'servers' has been deprecated from provider version 1.163.0 and it will be removed in the future version. Please use the new resource 'alicloud_slb_server_group_server_attachment'.
163
+ * @deprecated Field `servers` has been deprecated from provider version 1.163.0 and it will be removed in the future version. Please use the new resource `alicloud.slb.ServerGroupServerAttachment`.
148
164
  */
149
165
  servers?: pulumi.Input<pulumi.Input<inputs.slb.ServerGroupServer>[]>;
166
+ /**
167
+ * A mapping of tags to assign to the resource.
168
+ */
169
+ tags?: pulumi.Input<{
170
+ [key: string]: any;
171
+ }>;
150
172
  }
@@ -6,8 +6,9 @@ exports.ServerGroup = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  /**
9
- * A virtual server group contains several ECS instances. The virtual server group can help you to define multiple listening dimension,
10
- * and to meet the personalized requirements of domain name and URL forwarding.
9
+ * Provides a Load Balancer Virtual Backend Server Group resource.
10
+ *
11
+ * For information about Load Balancer Virtual Backend Server Group and how to use it, see [What is Virtual Backend Server Group](https://www.alibabacloud.com/help/en/doc-detail/35215.html).
11
12
  *
12
13
  * > **NOTE:** Available since v1.6.0.
13
14
  *
@@ -21,46 +22,46 @@ const utilities = require("../utilities");
21
22
  *
22
23
  * > **NOTE:** One VPC load balancer, its virtual server group can only add the same VPC ECS instances.
23
24
  *
24
- * For information about server group and how to use it, see [Configure a server group](https://www.alibabacloud.com/help/en/doc-detail/35215.html).
25
- *
26
25
  * ## Example Usage
27
26
  *
27
+ * Basic Usage
28
+ *
28
29
  * ```typescript
29
30
  * import * as pulumi from "@pulumi/pulumi";
30
31
  * import * as alicloud from "@pulumi/alicloud";
31
32
  *
32
33
  * const config = new pulumi.Config();
33
- * const slbServerGroupName = config.get("slbServerGroupName") || "forSlbServerGroup";
34
- * const serverGroup = alicloud.getZones({
34
+ * const name = config.get("name") || "tf-example";
35
+ * const default = alicloud.getZones({
35
36
  * availableResourceCreation: "VSwitch",
36
37
  * });
37
- * const serverGroupNetwork = new alicloud.vpc.Network("server_group", {
38
- * vpcName: slbServerGroupName,
38
+ * const defaultNetwork = new alicloud.vpc.Network("default", {
39
+ * vpcName: name,
39
40
  * cidrBlock: "172.16.0.0/16",
40
41
  * });
41
- * const serverGroupSwitch = new alicloud.vpc.Switch("server_group", {
42
- * vpcId: serverGroupNetwork.id,
42
+ * const defaultSwitch = new alicloud.vpc.Switch("default", {
43
+ * vpcId: defaultNetwork.id,
43
44
  * cidrBlock: "172.16.0.0/16",
44
- * zoneId: serverGroup.then(serverGroup => serverGroup.zones?.[0]?.id),
45
- * vswitchName: slbServerGroupName,
45
+ * zoneId: _default.then(_default => _default.zones?.[0]?.id),
46
+ * vswitchName: name,
46
47
  * });
47
- * const serverGroupApplicationLoadBalancer = new alicloud.slb.ApplicationLoadBalancer("server_group", {
48
- * loadBalancerName: slbServerGroupName,
49
- * vswitchId: serverGroupSwitch.id,
50
- * instanceChargeType: "PayByCLCU",
48
+ * const defaultApplicationLoadBalancer = new alicloud.slb.ApplicationLoadBalancer("default", {
49
+ * loadBalancerName: name,
50
+ * vswitchId: defaultSwitch.id,
51
+ * loadBalancerSpec: "slb.s2.small",
51
52
  * });
52
- * const serverGroupServerGroup = new alicloud.slb.ServerGroup("server_group", {
53
- * loadBalancerId: serverGroupApplicationLoadBalancer.id,
54
- * name: slbServerGroupName,
53
+ * const defaultServerGroup = new alicloud.slb.ServerGroup("default", {
54
+ * loadBalancerId: defaultApplicationLoadBalancer.id,
55
+ * name: name,
55
56
  * });
56
57
  * ```
57
58
  *
58
59
  * ## Import
59
60
  *
60
- * Load balancer backend server group can be imported using the id, e.g.
61
+ * Load Balancer Virtual Backend Server Group can be imported using the id, e.g.
61
62
  *
62
63
  * ```sh
63
- * $ pulumi import alicloud:slb/serverGroup:ServerGroup example abc123456
64
+ * $ pulumi import alicloud:slb/serverGroup:ServerGroup example <id>
64
65
  * ```
65
66
  */
66
67
  class ServerGroup extends pulumi.CustomResource {
@@ -95,6 +96,7 @@ class ServerGroup extends pulumi.CustomResource {
95
96
  resourceInputs["loadBalancerId"] = state ? state.loadBalancerId : undefined;
96
97
  resourceInputs["name"] = state ? state.name : undefined;
97
98
  resourceInputs["servers"] = state ? state.servers : undefined;
99
+ resourceInputs["tags"] = state ? state.tags : undefined;
98
100
  }
99
101
  else {
100
102
  const args = argsOrState;
@@ -105,6 +107,7 @@ class ServerGroup extends pulumi.CustomResource {
105
107
  resourceInputs["loadBalancerId"] = args ? args.loadBalancerId : undefined;
106
108
  resourceInputs["name"] = args ? args.name : undefined;
107
109
  resourceInputs["servers"] = args ? args.servers : undefined;
110
+ resourceInputs["tags"] = args ? args.tags : undefined;
108
111
  }
109
112
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
110
113
  super(ServerGroup.__pulumiType, name, resourceInputs, opts);
@@ -1 +1 @@
1
- {"version":3,"file":"serverGroup.js","sourceRoot":"","sources":["../../slb/serverGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyDG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;IA6BD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,4BAA4B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAAC,CAAC,SAAS,CAAC;YACpG,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,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;SACjE;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,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,cAAc,CAAC,4BAA4B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,0BAA0B,CAAC,CAAC,CAAC,SAAS,CAAC;YAClG,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;;AA5EL,kCA6EC;AA/DG,gBAAgB;AACO,wBAAY,GAAG,sCAAsC,CAAC"}
1
+ {"version":3,"file":"serverGroup.js","sourceRoot":"","sources":["../../slb/serverGroup.ts"],"names":[],"mappings":"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"}