@alicloud/oos20190601 2.0.0 → 2.0.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.
package/dist/client.d.ts CHANGED
@@ -138,6 +138,7 @@ export declare class CreateApplicationRequest extends $tea.Model {
138
138
  name?: string;
139
139
  regionId?: string;
140
140
  resourceGroupId?: string;
141
+ serviceId?: string;
141
142
  tags?: {
142
143
  [key: string]: any;
143
144
  };
@@ -158,6 +159,7 @@ export declare class CreateApplicationShrinkRequest extends $tea.Model {
158
159
  name?: string;
159
160
  regionId?: string;
160
161
  resourceGroupId?: string;
162
+ serviceId?: string;
161
163
  tagsShrink?: string;
162
164
  static names(): {
163
165
  [key: string]: string;
@@ -4523,6 +4525,7 @@ export declare class GetApplicationResponseBodyApplication extends $tea.Model {
4523
4525
  description?: string;
4524
4526
  name?: string;
4525
4527
  resourceGroupId?: string;
4528
+ serviceId?: string;
4526
4529
  tags?: {
4527
4530
  [key: string]: any;
4528
4531
  };
package/dist/client.js CHANGED
@@ -201,6 +201,7 @@ class CreateApplicationRequest extends $tea.Model {
201
201
  name: 'Name',
202
202
  regionId: 'RegionId',
203
203
  resourceGroupId: 'ResourceGroupId',
204
+ serviceId: 'ServiceId',
204
205
  tags: 'Tags',
205
206
  };
206
207
  }
@@ -212,6 +213,7 @@ class CreateApplicationRequest extends $tea.Model {
212
213
  name: 'string',
213
214
  regionId: 'string',
214
215
  resourceGroupId: 'string',
216
+ serviceId: 'string',
215
217
  tags: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
216
218
  };
217
219
  }
@@ -229,6 +231,7 @@ class CreateApplicationShrinkRequest extends $tea.Model {
229
231
  name: 'Name',
230
232
  regionId: 'RegionId',
231
233
  resourceGroupId: 'ResourceGroupId',
234
+ serviceId: 'ServiceId',
232
235
  tagsShrink: 'Tags',
233
236
  };
234
237
  }
@@ -240,6 +243,7 @@ class CreateApplicationShrinkRequest extends $tea.Model {
240
243
  name: 'string',
241
244
  regionId: 'string',
242
245
  resourceGroupId: 'string',
246
+ serviceId: 'string',
243
247
  tagsShrink: 'string',
244
248
  };
245
249
  }
@@ -6423,6 +6427,7 @@ class GetApplicationResponseBodyApplication extends $tea.Model {
6423
6427
  description: 'Description',
6424
6428
  name: 'Name',
6425
6429
  resourceGroupId: 'ResourceGroupId',
6430
+ serviceId: 'ServiceId',
6426
6431
  tags: 'Tags',
6427
6432
  updateDate: 'UpdateDate',
6428
6433
  };
@@ -6435,6 +6440,7 @@ class GetApplicationResponseBodyApplication extends $tea.Model {
6435
6440
  description: 'string',
6436
6441
  name: 'string',
6437
6442
  resourceGroupId: 'string',
6443
+ serviceId: 'string',
6438
6444
  tags: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
6439
6445
  updateDate: 'string',
6440
6446
  };
@@ -8541,6 +8547,9 @@ class Client extends openapi_client_1.default {
8541
8547
  if (!tea_util_1.default.isUnset(request.resourceGroupId)) {
8542
8548
  query["ResourceGroupId"] = request.resourceGroupId;
8543
8549
  }
8550
+ if (!tea_util_1.default.isUnset(request.serviceId)) {
8551
+ query["ServiceId"] = request.serviceId;
8552
+ }
8544
8553
  if (!tea_util_1.default.isUnset(request.tagsShrink)) {
8545
8554
  query["Tags"] = request.tagsShrink;
8546
8555
  }