@alicloud/cs20151215 3.0.1 → 3.0.2
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 +55 -2
- package/dist/client.js +1145 -92
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1165 -92
package/dist/client.d.ts
CHANGED
|
@@ -241,6 +241,7 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
241
241
|
customSan?: string;
|
|
242
242
|
deletionProtection?: boolean;
|
|
243
243
|
disableRollback?: boolean;
|
|
244
|
+
enableRrsa?: boolean;
|
|
244
245
|
encryptionProviderKey?: string;
|
|
245
246
|
endpointPublicAccess?: boolean;
|
|
246
247
|
formatDisk?: boolean;
|
|
@@ -724,10 +725,35 @@ export declare class DeleteKubernetesTriggerResponse extends $tea.Model {
|
|
|
724
725
|
[key: string]: any;
|
|
725
726
|
});
|
|
726
727
|
}
|
|
728
|
+
export declare class DeletePolicyInstanceRequest extends $tea.Model {
|
|
729
|
+
instanceName?: string;
|
|
730
|
+
static names(): {
|
|
731
|
+
[key: string]: string;
|
|
732
|
+
};
|
|
733
|
+
static types(): {
|
|
734
|
+
[key: string]: any;
|
|
735
|
+
};
|
|
736
|
+
constructor(map?: {
|
|
737
|
+
[key: string]: any;
|
|
738
|
+
});
|
|
739
|
+
}
|
|
740
|
+
export declare class DeletePolicyInstanceResponseBody extends $tea.Model {
|
|
741
|
+
instances?: string[];
|
|
742
|
+
static names(): {
|
|
743
|
+
[key: string]: string;
|
|
744
|
+
};
|
|
745
|
+
static types(): {
|
|
746
|
+
[key: string]: any;
|
|
747
|
+
};
|
|
748
|
+
constructor(map?: {
|
|
749
|
+
[key: string]: any;
|
|
750
|
+
});
|
|
751
|
+
}
|
|
727
752
|
export declare class DeletePolicyInstanceResponse extends $tea.Model {
|
|
728
753
|
headers: {
|
|
729
754
|
[key: string]: string;
|
|
730
755
|
};
|
|
756
|
+
body: DeletePolicyInstanceResponseBody;
|
|
731
757
|
static names(): {
|
|
732
758
|
[key: string]: string;
|
|
733
759
|
};
|
|
@@ -782,10 +808,23 @@ export declare class DeployPolicyInstanceRequest extends $tea.Model {
|
|
|
782
808
|
[key: string]: any;
|
|
783
809
|
});
|
|
784
810
|
}
|
|
811
|
+
export declare class DeployPolicyInstanceResponseBody extends $tea.Model {
|
|
812
|
+
instances?: string[];
|
|
813
|
+
static names(): {
|
|
814
|
+
[key: string]: string;
|
|
815
|
+
};
|
|
816
|
+
static types(): {
|
|
817
|
+
[key: string]: any;
|
|
818
|
+
};
|
|
819
|
+
constructor(map?: {
|
|
820
|
+
[key: string]: any;
|
|
821
|
+
});
|
|
822
|
+
}
|
|
785
823
|
export declare class DeployPolicyInstanceResponse extends $tea.Model {
|
|
786
824
|
headers: {
|
|
787
825
|
[key: string]: string;
|
|
788
826
|
};
|
|
827
|
+
body: DeployPolicyInstanceResponseBody;
|
|
789
828
|
static names(): {
|
|
790
829
|
[key: string]: string;
|
|
791
830
|
};
|
|
@@ -2198,6 +2237,7 @@ export declare class ModifyClusterRequest extends $tea.Model {
|
|
|
2198
2237
|
apiServerEip?: boolean;
|
|
2199
2238
|
apiServerEipId?: string;
|
|
2200
2239
|
deletionProtection?: boolean;
|
|
2240
|
+
enableRrsa?: boolean;
|
|
2201
2241
|
ingressDomainRebinding?: string;
|
|
2202
2242
|
ingressLoadbalancerId?: string;
|
|
2203
2243
|
instanceDeletionProtection?: boolean;
|
|
@@ -2383,10 +2423,23 @@ export declare class ModifyPolicyInstanceRequest extends $tea.Model {
|
|
|
2383
2423
|
[key: string]: any;
|
|
2384
2424
|
});
|
|
2385
2425
|
}
|
|
2426
|
+
export declare class ModifyPolicyInstanceResponseBody extends $tea.Model {
|
|
2427
|
+
instances?: string[];
|
|
2428
|
+
static names(): {
|
|
2429
|
+
[key: string]: string;
|
|
2430
|
+
};
|
|
2431
|
+
static types(): {
|
|
2432
|
+
[key: string]: any;
|
|
2433
|
+
};
|
|
2434
|
+
constructor(map?: {
|
|
2435
|
+
[key: string]: any;
|
|
2436
|
+
});
|
|
2437
|
+
}
|
|
2386
2438
|
export declare class ModifyPolicyInstanceResponse extends $tea.Model {
|
|
2387
2439
|
headers: {
|
|
2388
2440
|
[key: string]: string;
|
|
2389
2441
|
};
|
|
2442
|
+
body: ModifyPolicyInstanceResponseBody;
|
|
2390
2443
|
static names(): {
|
|
2391
2444
|
[key: string]: string;
|
|
2392
2445
|
};
|
|
@@ -4587,8 +4640,8 @@ export default class Client extends OpenApi {
|
|
|
4587
4640
|
deleteKubernetesTriggerWithOptions(Id: string, headers: {
|
|
4588
4641
|
[key: string]: string;
|
|
4589
4642
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteKubernetesTriggerResponse>;
|
|
4590
|
-
deletePolicyInstance(clusterId: string, policyName: string,
|
|
4591
|
-
deletePolicyInstanceWithOptions(clusterId: string, policyName: string,
|
|
4643
|
+
deletePolicyInstance(clusterId: string, policyName: string, request: DeletePolicyInstanceRequest): Promise<DeletePolicyInstanceResponse>;
|
|
4644
|
+
deletePolicyInstanceWithOptions(clusterId: string, policyName: string, request: DeletePolicyInstanceRequest, headers: {
|
|
4592
4645
|
[key: string]: string;
|
|
4593
4646
|
}, runtime: $Util.RuntimeOptions): Promise<DeletePolicyInstanceResponse>;
|
|
4594
4647
|
deleteTemplate(TemplateId: string): Promise<DeleteTemplateResponse>;
|