@alicloud/oos20190601 1.0.8 → 2.0.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/dist/client.d.ts CHANGED
@@ -2530,6 +2530,7 @@ export declare class ListPatchBaselinesRequest extends $tea.Model {
2530
2530
  nextToken?: string;
2531
2531
  operationSystem?: string;
2532
2532
  regionId?: string;
2533
+ resourceGroupId?: string;
2533
2534
  shareType?: string;
2534
2535
  sources?: string[];
2535
2536
  tags?: ListPatchBaselinesRequestTags[];
@@ -2551,6 +2552,7 @@ export declare class ListPatchBaselinesShrinkRequest extends $tea.Model {
2551
2552
  nextToken?: string;
2552
2553
  operationSystem?: string;
2553
2554
  regionId?: string;
2555
+ resourceGroupId?: string;
2554
2556
  shareType?: string;
2555
2557
  sourcesShrink?: string;
2556
2558
  tagsShrink?: string;
@@ -3745,6 +3747,8 @@ export declare class UpdateExecutionRequest extends $tea.Model {
3745
3747
  executionId?: string;
3746
3748
  parameters?: string;
3747
3749
  regionId?: string;
3750
+ resourceGroupId?: string;
3751
+ tags?: string;
3748
3752
  static names(): {
3749
3753
  [key: string]: string;
3750
3754
  };
@@ -5231,6 +5235,7 @@ export declare class ListPatchBaselinesResponseBodyPatchBaselines extends $tea.M
5231
5235
  isDefault?: boolean;
5232
5236
  name?: string;
5233
5237
  operationSystem?: string;
5238
+ resourceGroupId?: string;
5234
5239
  shareType?: string;
5235
5240
  sources?: string[];
5236
5241
  tags?: ListPatchBaselinesResponseBodyPatchBaselinesTags[];
package/dist/client.js CHANGED
@@ -3560,6 +3560,7 @@ class ListPatchBaselinesRequest extends $tea.Model {
3560
3560
  nextToken: 'NextToken',
3561
3561
  operationSystem: 'OperationSystem',
3562
3562
  regionId: 'RegionId',
3563
+ resourceGroupId: 'ResourceGroupId',
3563
3564
  shareType: 'ShareType',
3564
3565
  sources: 'Sources',
3565
3566
  tags: 'Tags',
@@ -3574,6 +3575,7 @@ class ListPatchBaselinesRequest extends $tea.Model {
3574
3575
  nextToken: 'string',
3575
3576
  operationSystem: 'string',
3576
3577
  regionId: 'string',
3578
+ resourceGroupId: 'string',
3577
3579
  shareType: 'string',
3578
3580
  sources: { 'type': 'array', 'itemType': 'string' },
3579
3581
  tags: { 'type': 'array', 'itemType': ListPatchBaselinesRequestTags },
@@ -3594,6 +3596,7 @@ class ListPatchBaselinesShrinkRequest extends $tea.Model {
3594
3596
  nextToken: 'NextToken',
3595
3597
  operationSystem: 'OperationSystem',
3596
3598
  regionId: 'RegionId',
3599
+ resourceGroupId: 'ResourceGroupId',
3597
3600
  shareType: 'ShareType',
3598
3601
  sourcesShrink: 'Sources',
3599
3602
  tagsShrink: 'Tags',
@@ -3608,6 +3611,7 @@ class ListPatchBaselinesShrinkRequest extends $tea.Model {
3608
3611
  nextToken: 'string',
3609
3612
  operationSystem: 'string',
3610
3613
  regionId: 'string',
3614
+ resourceGroupId: 'string',
3611
3615
  shareType: 'string',
3612
3616
  sourcesShrink: 'string',
3613
3617
  tagsShrink: 'string',
@@ -5284,6 +5288,8 @@ class UpdateExecutionRequest extends $tea.Model {
5284
5288
  executionId: 'ExecutionId',
5285
5289
  parameters: 'Parameters',
5286
5290
  regionId: 'RegionId',
5291
+ resourceGroupId: 'ResourceGroupId',
5292
+ tags: 'Tags',
5287
5293
  };
5288
5294
  }
5289
5295
  static types() {
@@ -5293,6 +5299,8 @@ class UpdateExecutionRequest extends $tea.Model {
5293
5299
  executionId: 'string',
5294
5300
  parameters: 'string',
5295
5301
  regionId: 'string',
5302
+ resourceGroupId: 'string',
5303
+ tags: 'string',
5296
5304
  };
5297
5305
  }
5298
5306
  }
@@ -7504,6 +7512,7 @@ class ListPatchBaselinesResponseBodyPatchBaselines extends $tea.Model {
7504
7512
  isDefault: 'IsDefault',
7505
7513
  name: 'Name',
7506
7514
  operationSystem: 'OperationSystem',
7515
+ resourceGroupId: 'ResourceGroupId',
7507
7516
  shareType: 'ShareType',
7508
7517
  sources: 'Sources',
7509
7518
  tags: 'Tags',
@@ -7522,6 +7531,7 @@ class ListPatchBaselinesResponseBodyPatchBaselines extends $tea.Model {
7522
7531
  isDefault: 'boolean',
7523
7532
  name: 'string',
7524
7533
  operationSystem: 'string',
7534
+ resourceGroupId: 'string',
7525
7535
  shareType: 'string',
7526
7536
  sources: { 'type': 'array', 'itemType': 'string' },
7527
7537
  tags: { 'type': 'array', 'itemType': ListPatchBaselinesResponseBodyPatchBaselinesTags },
@@ -10416,6 +10426,9 @@ class Client extends openapi_client_1.default {
10416
10426
  if (!tea_util_1.default.isUnset(request.regionId)) {
10417
10427
  query["RegionId"] = request.regionId;
10418
10428
  }
10429
+ if (!tea_util_1.default.isUnset(request.resourceGroupId)) {
10430
+ query["ResourceGroupId"] = request.resourceGroupId;
10431
+ }
10419
10432
  if (!tea_util_1.default.isUnset(request.shareType)) {
10420
10433
  query["ShareType"] = request.shareType;
10421
10434
  }
@@ -11430,6 +11443,12 @@ class Client extends openapi_client_1.default {
11430
11443
  if (!tea_util_1.default.isUnset(request.regionId)) {
11431
11444
  query["RegionId"] = request.regionId;
11432
11445
  }
11446
+ if (!tea_util_1.default.isUnset(request.resourceGroupId)) {
11447
+ query["ResourceGroupId"] = request.resourceGroupId;
11448
+ }
11449
+ if (!tea_util_1.default.isUnset(request.tags)) {
11450
+ query["Tags"] = request.tags;
11451
+ }
11433
11452
  let req = new $OpenApi.OpenApiRequest({
11434
11453
  query: openapi_util_1.default.query(query),
11435
11454
  });