@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/oos20190601",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -225,6 +225,7 @@ export class CreateApplicationRequest extends $tea.Model {
225
225
  name?: string;
226
226
  regionId?: string;
227
227
  resourceGroupId?: string;
228
+ serviceId?: string;
228
229
  tags?: { [key: string]: any };
229
230
  static names(): { [key: string]: string } {
230
231
  return {
@@ -234,6 +235,7 @@ export class CreateApplicationRequest extends $tea.Model {
234
235
  name: 'Name',
235
236
  regionId: 'RegionId',
236
237
  resourceGroupId: 'ResourceGroupId',
238
+ serviceId: 'ServiceId',
237
239
  tags: 'Tags',
238
240
  };
239
241
  }
@@ -246,6 +248,7 @@ export class CreateApplicationRequest extends $tea.Model {
246
248
  name: 'string',
247
249
  regionId: 'string',
248
250
  resourceGroupId: 'string',
251
+ serviceId: 'string',
249
252
  tags: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
250
253
  };
251
254
  }
@@ -262,6 +265,7 @@ export class CreateApplicationShrinkRequest extends $tea.Model {
262
265
  name?: string;
263
266
  regionId?: string;
264
267
  resourceGroupId?: string;
268
+ serviceId?: string;
265
269
  tagsShrink?: string;
266
270
  static names(): { [key: string]: string } {
267
271
  return {
@@ -271,6 +275,7 @@ export class CreateApplicationShrinkRequest extends $tea.Model {
271
275
  name: 'Name',
272
276
  regionId: 'RegionId',
273
277
  resourceGroupId: 'ResourceGroupId',
278
+ serviceId: 'ServiceId',
274
279
  tagsShrink: 'Tags',
275
280
  };
276
281
  }
@@ -283,6 +288,7 @@ export class CreateApplicationShrinkRequest extends $tea.Model {
283
288
  name: 'string',
284
289
  regionId: 'string',
285
290
  resourceGroupId: 'string',
291
+ serviceId: 'string',
286
292
  tagsShrink: 'string',
287
293
  };
288
294
  }
@@ -8243,6 +8249,7 @@ export class GetApplicationResponseBodyApplication extends $tea.Model {
8243
8249
  description?: string;
8244
8250
  name?: string;
8245
8251
  resourceGroupId?: string;
8252
+ serviceId?: string;
8246
8253
  tags?: { [key: string]: any };
8247
8254
  updateDate?: string;
8248
8255
  static names(): { [key: string]: string } {
@@ -8253,6 +8260,7 @@ export class GetApplicationResponseBodyApplication extends $tea.Model {
8253
8260
  description: 'Description',
8254
8261
  name: 'Name',
8255
8262
  resourceGroupId: 'ResourceGroupId',
8263
+ serviceId: 'ServiceId',
8256
8264
  tags: 'Tags',
8257
8265
  updateDate: 'UpdateDate',
8258
8266
  };
@@ -8266,6 +8274,7 @@ export class GetApplicationResponseBodyApplication extends $tea.Model {
8266
8274
  description: 'string',
8267
8275
  name: 'string',
8268
8276
  resourceGroupId: 'string',
8277
+ serviceId: 'string',
8269
8278
  tags: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
8270
8279
  updateDate: 'string',
8271
8280
  };
@@ -11090,6 +11099,10 @@ export default class Client extends OpenApi {
11090
11099
  query["ResourceGroupId"] = request.resourceGroupId;
11091
11100
  }
11092
11101
 
11102
+ if (!Util.isUnset(request.serviceId)) {
11103
+ query["ServiceId"] = request.serviceId;
11104
+ }
11105
+
11093
11106
  if (!Util.isUnset(request.tagsShrink)) {
11094
11107
  query["Tags"] = request.tagsShrink;
11095
11108
  }