@alicloud/oos20190601 1.0.8 → 1.0.9
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 +3 -0
- package/dist/client.js +9 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +13 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -4518,6 +4518,7 @@ export class ListPatchBaselinesRequest extends $tea.Model {
|
|
|
4518
4518
|
nextToken?: string;
|
|
4519
4519
|
operationSystem?: string;
|
|
4520
4520
|
regionId?: string;
|
|
4521
|
+
resourceGroupld?: string;
|
|
4521
4522
|
shareType?: string;
|
|
4522
4523
|
sources?: string[];
|
|
4523
4524
|
tags?: ListPatchBaselinesRequestTags[];
|
|
@@ -4530,6 +4531,7 @@ export class ListPatchBaselinesRequest extends $tea.Model {
|
|
|
4530
4531
|
nextToken: 'NextToken',
|
|
4531
4532
|
operationSystem: 'OperationSystem',
|
|
4532
4533
|
regionId: 'RegionId',
|
|
4534
|
+
resourceGroupld: 'ResourceGroupld',
|
|
4533
4535
|
shareType: 'ShareType',
|
|
4534
4536
|
sources: 'Sources',
|
|
4535
4537
|
tags: 'Tags',
|
|
@@ -4545,6 +4547,7 @@ export class ListPatchBaselinesRequest extends $tea.Model {
|
|
|
4545
4547
|
nextToken: 'string',
|
|
4546
4548
|
operationSystem: 'string',
|
|
4547
4549
|
regionId: 'string',
|
|
4550
|
+
resourceGroupld: 'string',
|
|
4548
4551
|
shareType: 'string',
|
|
4549
4552
|
sources: { 'type': 'array', 'itemType': 'string' },
|
|
4550
4553
|
tags: { 'type': 'array', 'itemType': ListPatchBaselinesRequestTags },
|
|
@@ -4564,6 +4567,7 @@ export class ListPatchBaselinesShrinkRequest extends $tea.Model {
|
|
|
4564
4567
|
nextToken?: string;
|
|
4565
4568
|
operationSystem?: string;
|
|
4566
4569
|
regionId?: string;
|
|
4570
|
+
resourceGroupld?: string;
|
|
4567
4571
|
shareType?: string;
|
|
4568
4572
|
sourcesShrink?: string;
|
|
4569
4573
|
tagsShrink?: string;
|
|
@@ -4576,6 +4580,7 @@ export class ListPatchBaselinesShrinkRequest extends $tea.Model {
|
|
|
4576
4580
|
nextToken: 'NextToken',
|
|
4577
4581
|
operationSystem: 'OperationSystem',
|
|
4578
4582
|
regionId: 'RegionId',
|
|
4583
|
+
resourceGroupld: 'ResourceGroupld',
|
|
4579
4584
|
shareType: 'ShareType',
|
|
4580
4585
|
sourcesShrink: 'Sources',
|
|
4581
4586
|
tagsShrink: 'Tags',
|
|
@@ -4591,6 +4596,7 @@ export class ListPatchBaselinesShrinkRequest extends $tea.Model {
|
|
|
4591
4596
|
nextToken: 'string',
|
|
4592
4597
|
operationSystem: 'string',
|
|
4593
4598
|
regionId: 'string',
|
|
4599
|
+
resourceGroupld: 'string',
|
|
4594
4600
|
shareType: 'string',
|
|
4595
4601
|
sourcesShrink: 'string',
|
|
4596
4602
|
tagsShrink: 'string',
|
|
@@ -9698,6 +9704,7 @@ export class ListPatchBaselinesResponseBodyPatchBaselines extends $tea.Model {
|
|
|
9698
9704
|
isDefault?: boolean;
|
|
9699
9705
|
name?: string;
|
|
9700
9706
|
operationSystem?: string;
|
|
9707
|
+
resourceGroupld?: string;
|
|
9701
9708
|
shareType?: string;
|
|
9702
9709
|
sources?: string[];
|
|
9703
9710
|
tags?: ListPatchBaselinesResponseBodyPatchBaselinesTags[];
|
|
@@ -9714,6 +9721,7 @@ export class ListPatchBaselinesResponseBodyPatchBaselines extends $tea.Model {
|
|
|
9714
9721
|
isDefault: 'IsDefault',
|
|
9715
9722
|
name: 'Name',
|
|
9716
9723
|
operationSystem: 'OperationSystem',
|
|
9724
|
+
resourceGroupld: 'ResourceGroupld',
|
|
9717
9725
|
shareType: 'ShareType',
|
|
9718
9726
|
sources: 'Sources',
|
|
9719
9727
|
tags: 'Tags',
|
|
@@ -9733,6 +9741,7 @@ export class ListPatchBaselinesResponseBodyPatchBaselines extends $tea.Model {
|
|
|
9733
9741
|
isDefault: 'boolean',
|
|
9734
9742
|
name: 'string',
|
|
9735
9743
|
operationSystem: 'string',
|
|
9744
|
+
resourceGroupld: 'string',
|
|
9736
9745
|
shareType: 'string',
|
|
9737
9746
|
sources: { 'type': 'array', 'itemType': 'string' },
|
|
9738
9747
|
tags: { 'type': 'array', 'itemType': ListPatchBaselinesResponseBodyPatchBaselinesTags },
|
|
@@ -13316,6 +13325,10 @@ export default class Client extends OpenApi {
|
|
|
13316
13325
|
query["RegionId"] = request.regionId;
|
|
13317
13326
|
}
|
|
13318
13327
|
|
|
13328
|
+
if (!Util.isUnset(request.resourceGroupld)) {
|
|
13329
|
+
query["ResourceGroupld"] = request.resourceGroupld;
|
|
13330
|
+
}
|
|
13331
|
+
|
|
13319
13332
|
if (!Util.isUnset(request.shareType)) {
|
|
13320
13333
|
query["ShareType"] = request.shareType;
|
|
13321
13334
|
}
|