@alicloud/elasticsearch20170613 2.0.5 → 2.0.6
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/dist/client.d.ts +1 -0
- package/dist/client.js +5 -0
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alicloud/elasticsearch20170613",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/client.js",
|
|
6
6
|
"scripts": {
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@alicloud/tea-typescript": "^1.7.1",
|
|
23
|
-
"@alicloud/tea-util": "^1.4.
|
|
24
|
-
"@alicloud/openapi-client": "^0.4.
|
|
23
|
+
"@alicloud/tea-util": "^1.4.9",
|
|
24
|
+
"@alicloud/openapi-client": "^0.4.11",
|
|
25
25
|
"@alicloud/openapi-util": "^0.3.2",
|
|
26
26
|
"@alicloud/endpoint-util": "^0.0.1"
|
|
27
27
|
},
|
package/src/client.ts
CHANGED
|
@@ -17226,6 +17226,7 @@ export class UpdateLogstashSettingsResponse extends $tea.Model {
|
|
|
17226
17226
|
|
|
17227
17227
|
export class UpdatePipelineManagementConfigRequest extends $tea.Model {
|
|
17228
17228
|
endpoints?: string[];
|
|
17229
|
+
esInstanceId?: string;
|
|
17229
17230
|
/**
|
|
17230
17231
|
* @example
|
|
17231
17232
|
* ******
|
|
@@ -17250,6 +17251,7 @@ export class UpdatePipelineManagementConfigRequest extends $tea.Model {
|
|
|
17250
17251
|
static names(): { [key: string]: string } {
|
|
17251
17252
|
return {
|
|
17252
17253
|
endpoints: 'endpoints',
|
|
17254
|
+
esInstanceId: 'esInstanceId',
|
|
17253
17255
|
password: 'password',
|
|
17254
17256
|
pipelineIds: 'pipelineIds',
|
|
17255
17257
|
pipelineManagementType: 'pipelineManagementType',
|
|
@@ -17261,6 +17263,7 @@ export class UpdatePipelineManagementConfigRequest extends $tea.Model {
|
|
|
17261
17263
|
static types(): { [key: string]: any } {
|
|
17262
17264
|
return {
|
|
17263
17265
|
endpoints: { 'type': 'array', 'itemType': 'string' },
|
|
17266
|
+
esInstanceId: 'string',
|
|
17264
17267
|
password: 'string',
|
|
17265
17268
|
pipelineIds: { 'type': 'array', 'itemType': 'string' },
|
|
17266
17269
|
pipelineManagementType: 'string',
|
|
@@ -41850,6 +41853,10 @@ export default class Client extends OpenApi {
|
|
|
41850
41853
|
body["endpoints"] = request.endpoints;
|
|
41851
41854
|
}
|
|
41852
41855
|
|
|
41856
|
+
if (!Util.isUnset(request.esInstanceId)) {
|
|
41857
|
+
body["esInstanceId"] = request.esInstanceId;
|
|
41858
|
+
}
|
|
41859
|
+
|
|
41853
41860
|
if (!Util.isUnset(request.password)) {
|
|
41854
41861
|
body["password"] = request.password;
|
|
41855
41862
|
}
|