@huaweicloud/huaweicloud-sdk-aos
Advanced tools
Comparing version 3.1.34 to 3.1.35
{ | ||
"name": "@huaweicloud/huaweicloud-sdk-aos", | ||
"version": "3.1.34", | ||
"version": "3.1.35", | ||
"description": "Huaweicloud SDK for aos", | ||
@@ -17,4 +17,4 @@ "main": "huaweicloud-sdk-aos.js", | ||
"dependencies": { | ||
"@huaweicloud/huaweicloud-sdk-core": "^3.1.34" | ||
"@huaweicloud/huaweicloud-sdk-core": "^3.1.35" | ||
} | ||
} |
export declare class AosRegion { | ||
static CN_NORTH_4: any; | ||
static CN_SOUTH_1: any; | ||
static CN_EAST_3: any; | ||
static AP_SOUTHEAST_3: any; | ||
private static REGION_MAP; | ||
static valueOf(regionId: string): any; | ||
} |
@@ -20,7 +20,11 @@ "use strict"; | ||
AosRegion.CN_SOUTH_1 = new region_1.Region("cn-south-1", ["https://aos.cn-south-1.myhuaweicloud.com"]); | ||
AosRegion.CN_EAST_3 = new region_1.Region("cn-east-3", ["https://aos.cn-east-3.myhuaweicloud.com"]); | ||
AosRegion.AP_SOUTHEAST_3 = new region_1.Region("ap-southeast-3", ["https://aos.ap-southeast-3.myhuaweicloud.com"]); | ||
AosRegion.REGION_MAP = { | ||
"cn-north-4": AosRegion.CN_NORTH_4, | ||
"cn-south-1": AosRegion.CN_SOUTH_1 | ||
"cn-south-1": AosRegion.CN_SOUTH_1, | ||
"cn-east-3": AosRegion.CN_EAST_3, | ||
"ap-southeast-3": AosRegion.AP_SOUTHEAST_3 | ||
}; | ||
return AosRegion; | ||
}()); |
export declare class ApplyExecutionPlanRequestBody { | ||
private 'execution_plan_id'?; | ||
private 'stack_id'?; | ||
executor?: string; | ||
constructor(); | ||
@@ -12,3 +11,2 @@ withExecutionPlanId(executionPlanId: string): ApplyExecutionPlanRequestBody; | ||
get stackId(): string | undefined; | ||
withExecutor(executor: string): ApplyExecutionPlanRequestBody; | ||
} |
@@ -35,8 +35,4 @@ "use strict"; | ||
}); | ||
ApplyExecutionPlanRequestBody.prototype.withExecutor = function (executor) { | ||
this['executor'] = executor; | ||
return this; | ||
}; | ||
return ApplyExecutionPlanRequestBody; | ||
}()); | ||
exports.ApplyExecutionPlanRequestBody = ApplyExecutionPlanRequestBody; |
@@ -7,3 +7,2 @@ import { VarsStructure } from './VarsStructure'; | ||
private 'execution_plan_name'; | ||
executor?: string; | ||
description?: string; | ||
@@ -26,3 +25,2 @@ private 'vars_structure'?; | ||
get executionPlanName(): string | undefined; | ||
withExecutor(executor: string): CreateExecutionPlanRequestBody; | ||
withDescription(description: string): CreateExecutionPlanRequestBody; | ||
@@ -29,0 +27,0 @@ withVarsStructure(varsStructure: Array<VarsStructure>): CreateExecutionPlanRequestBody; |
@@ -64,6 +64,2 @@ "use strict"; | ||
}); | ||
CreateExecutionPlanRequestBody.prototype.withExecutor = function (executor) { | ||
this['executor'] = executor; | ||
return this; | ||
}; | ||
CreateExecutionPlanRequestBody.prototype.withDescription = function (description) { | ||
@@ -70,0 +66,0 @@ this['description'] = description; |
@@ -5,3 +5,2 @@ import { Agency } from './Agency'; | ||
private 'stack_name'; | ||
executor?: string; | ||
agencies?: Array<Agency>; | ||
@@ -20,3 +19,2 @@ description?: string; | ||
get stackName(): string | undefined; | ||
withExecutor(executor: string): CreateStackRequestBody; | ||
withAgencies(agencies: Array<Agency>): CreateStackRequestBody; | ||
@@ -23,0 +21,0 @@ withDescription(description: string): CreateStackRequestBody; |
@@ -22,6 +22,2 @@ "use strict"; | ||
}); | ||
CreateStackRequestBody.prototype.withExecutor = function (executor) { | ||
this['executor'] = executor; | ||
return this; | ||
}; | ||
CreateStackRequestBody.prototype.withAgencies = function (agencies) { | ||
@@ -28,0 +24,0 @@ this['agencies'] = agencies; |
@@ -8,3 +8,2 @@ export declare class DeleteExecutionPlanRequest { | ||
private 'execution_plan_id'?; | ||
executor?: string; | ||
constructor(clientRequestId?: any, projectId?: any, stackName?: any, executionPlanName?: any); | ||
@@ -29,3 +28,2 @@ withClientRequestId(clientRequestId: string): DeleteExecutionPlanRequest; | ||
get executionPlanId(): string | undefined; | ||
withExecutor(executor: string): DeleteExecutionPlanRequest; | ||
} |
@@ -95,8 +95,4 @@ "use strict"; | ||
}); | ||
DeleteExecutionPlanRequest.prototype.withExecutor = function (executor) { | ||
this['executor'] = executor; | ||
return this; | ||
}; | ||
return DeleteExecutionPlanRequest; | ||
}()); | ||
exports.DeleteExecutionPlanRequest = DeleteExecutionPlanRequest; |
@@ -6,3 +6,2 @@ export declare class DeleteStackRequest { | ||
private 'stack_id'?; | ||
executor?: string; | ||
constructor(clientRequestId?: any, projectId?: any, stackName?: any); | ||
@@ -21,3 +20,2 @@ withClientRequestId(clientRequestId: string): DeleteStackRequest; | ||
get stackId(): string | undefined; | ||
withExecutor(executor: string): DeleteStackRequest; | ||
} |
@@ -66,8 +66,4 @@ "use strict"; | ||
}); | ||
DeleteStackRequest.prototype.withExecutor = function (executor) { | ||
this['executor'] = executor; | ||
return this; | ||
}; | ||
return DeleteStackRequest; | ||
}()); | ||
exports.DeleteStackRequest = DeleteStackRequest; |
import { VarsStructure } from './VarsStructure'; | ||
export declare class DeployStackRequestBody { | ||
executor?: string; | ||
private 'template_body'?; | ||
@@ -11,3 +10,2 @@ private 'template_uri'?; | ||
constructor(); | ||
withExecutor(executor: string): DeployStackRequestBody; | ||
withTemplateBody(templateBody: string): DeployStackRequestBody; | ||
@@ -14,0 +12,0 @@ set templateBody(templateBody: string | undefined); |
@@ -7,6 +7,2 @@ "use strict"; | ||
} | ||
DeployStackRequestBody.prototype.withExecutor = function (executor) { | ||
this['executor'] = executor; | ||
return this; | ||
}; | ||
DeployStackRequestBody.prototype.withTemplateBody = function (templateBody) { | ||
@@ -13,0 +9,0 @@ this['template_body'] = templateBody; |
@@ -8,3 +8,2 @@ export declare class GetExecutionPlanMetadataRequest { | ||
private 'execution_plan_id'?; | ||
executor?: string; | ||
constructor(clientRequestId?: any, projectId?: any, stackName?: any, executionPlanName?: any); | ||
@@ -29,3 +28,2 @@ withClientRequestId(clientRequestId: string): GetExecutionPlanMetadataRequest; | ||
get executionPlanId(): string | undefined; | ||
withExecutor(executor: string): GetExecutionPlanMetadataRequest; | ||
} |
@@ -95,8 +95,4 @@ "use strict"; | ||
}); | ||
GetExecutionPlanMetadataRequest.prototype.withExecutor = function (executor) { | ||
this['executor'] = executor; | ||
return this; | ||
}; | ||
return GetExecutionPlanMetadataRequest; | ||
}()); | ||
exports.GetExecutionPlanMetadataRequest = GetExecutionPlanMetadataRequest; |
@@ -8,3 +8,2 @@ export declare class GetExecutionPlanRequest { | ||
private 'execution_plan_id'?; | ||
executor?: string; | ||
constructor(clientRequestId?: any, projectId?: any, stackName?: any, executionPlanName?: any); | ||
@@ -29,3 +28,2 @@ withClientRequestId(clientRequestId: string): GetExecutionPlanRequest; | ||
get executionPlanId(): string | undefined; | ||
withExecutor(executor: string): GetExecutionPlanRequest; | ||
} |
@@ -95,8 +95,4 @@ "use strict"; | ||
}); | ||
GetExecutionPlanRequest.prototype.withExecutor = function (executor) { | ||
this['executor'] = executor; | ||
return this; | ||
}; | ||
return GetExecutionPlanRequest; | ||
}()); | ||
exports.GetExecutionPlanRequest = GetExecutionPlanRequest; |
@@ -6,3 +6,2 @@ export declare class GetStackMetadataRequest { | ||
private 'stack_id'?; | ||
executor?: string; | ||
constructor(clientRequestId?: any, projectId?: any, stackName?: any); | ||
@@ -21,3 +20,2 @@ withClientRequestId(clientRequestId: string): GetStackMetadataRequest; | ||
get stackId(): string | undefined; | ||
withExecutor(executor: string): GetStackMetadataRequest; | ||
} |
@@ -66,8 +66,4 @@ "use strict"; | ||
}); | ||
GetStackMetadataRequest.prototype.withExecutor = function (executor) { | ||
this['executor'] = executor; | ||
return this; | ||
}; | ||
return GetStackMetadataRequest; | ||
}()); | ||
exports.GetStackMetadataRequest = GetStackMetadataRequest; |
@@ -6,3 +6,2 @@ export declare class GetStackTemplateRequest { | ||
private 'stack_id'?; | ||
executor?: string; | ||
constructor(clientRequestId?: any, projectId?: any, stackName?: any); | ||
@@ -21,3 +20,2 @@ withClientRequestId(clientRequestId: string): GetStackTemplateRequest; | ||
get stackId(): string | undefined; | ||
withExecutor(executor: string): GetStackTemplateRequest; | ||
} |
@@ -66,8 +66,4 @@ "use strict"; | ||
}); | ||
GetStackTemplateRequest.prototype.withExecutor = function (executor) { | ||
this['executor'] = executor; | ||
return this; | ||
}; | ||
return GetStackTemplateRequest; | ||
}()); | ||
exports.GetStackTemplateRequest = GetStackTemplateRequest; |
@@ -5,3 +5,2 @@ export declare class ListExecutionPlansRequest { | ||
private 'stack_name'; | ||
executor?: string; | ||
private 'stack_id'?; | ||
@@ -18,3 +17,2 @@ constructor(clientRequestId?: any, projectId?: any, stackName?: any); | ||
get stackName(): string | undefined; | ||
withExecutor(executor: string): ListExecutionPlansRequest; | ||
withStackId(stackId: string): ListExecutionPlansRequest; | ||
@@ -21,0 +19,0 @@ set stackId(stackId: string | undefined); |
@@ -52,6 +52,2 @@ "use strict"; | ||
}); | ||
ListExecutionPlansRequest.prototype.withExecutor = function (executor) { | ||
this['executor'] = executor; | ||
return this; | ||
}; | ||
ListExecutionPlansRequest.prototype.withStackId = function (stackId) { | ||
@@ -58,0 +54,0 @@ this['stack_id'] = stackId; |
@@ -7,3 +7,2 @@ export declare class ListStackEventsRequest { | ||
private 'deployment_id'?; | ||
executor?: string; | ||
filter?: string; | ||
@@ -27,5 +26,4 @@ field?: string; | ||
get deploymentId(): string | undefined; | ||
withExecutor(executor: string): ListStackEventsRequest; | ||
withFilter(filter: string): ListStackEventsRequest; | ||
withField(field: string): ListStackEventsRequest; | ||
} |
@@ -80,6 +80,2 @@ "use strict"; | ||
}); | ||
ListStackEventsRequest.prototype.withExecutor = function (executor) { | ||
this['executor'] = executor; | ||
return this; | ||
}; | ||
ListStackEventsRequest.prototype.withFilter = function (filter) { | ||
@@ -86,0 +82,0 @@ this['filter'] = filter; |
@@ -6,3 +6,2 @@ export declare class ListStackOutputsRequest { | ||
private 'stack_id'?; | ||
executor?: string; | ||
constructor(clientRequestId?: any, projectId?: any, stackName?: any); | ||
@@ -21,3 +20,2 @@ withClientRequestId(clientRequestId: string): ListStackOutputsRequest; | ||
get stackId(): string | undefined; | ||
withExecutor(executor: string): ListStackOutputsRequest; | ||
} |
@@ -66,8 +66,4 @@ "use strict"; | ||
}); | ||
ListStackOutputsRequest.prototype.withExecutor = function (executor) { | ||
this['executor'] = executor; | ||
return this; | ||
}; | ||
return ListStackOutputsRequest; | ||
}()); | ||
exports.ListStackOutputsRequest = ListStackOutputsRequest; |
@@ -6,3 +6,2 @@ export declare class ListStackResourcesRequest { | ||
private 'stack_id'?; | ||
executor?: string; | ||
constructor(clientRequestId?: any, projectId?: any, stackName?: any); | ||
@@ -21,3 +20,2 @@ withClientRequestId(clientRequestId: string): ListStackResourcesRequest; | ||
get stackId(): string | undefined; | ||
withExecutor(executor: string): ListStackResourcesRequest; | ||
} |
@@ -66,8 +66,4 @@ "use strict"; | ||
}); | ||
ListStackResourcesRequest.prototype.withExecutor = function (executor) { | ||
this['executor'] = executor; | ||
return this; | ||
}; | ||
return ListStackResourcesRequest; | ||
}()); | ||
exports.ListStackResourcesRequest = ListStackResourcesRequest; |
export declare class ListStacksRequest { | ||
private 'Client-Request-Id'; | ||
private 'project_id'; | ||
executor?: string; | ||
constructor(clientRequestId?: any, projectId?: any); | ||
@@ -12,3 +11,2 @@ withClientRequestId(clientRequestId: string): ListStacksRequest; | ||
get projectId(): string | undefined; | ||
withExecutor(executor: string): ListStacksRequest; | ||
} |
@@ -37,8 +37,4 @@ "use strict"; | ||
}); | ||
ListStacksRequest.prototype.withExecutor = function (executor) { | ||
this['executor'] = executor; | ||
return this; | ||
}; | ||
return ListStacksRequest; | ||
}()); | ||
exports.ListStacksRequest = ListStacksRequest; |
@@ -44,3 +44,2 @@ export * from './AosClient'; | ||
export * from './model/ExecutionPlanSummary'; | ||
export * from './model/ExecutorPrimitiveTypeHolder'; | ||
export * from './model/GetExecutionPlanMetadataRequest'; | ||
@@ -47,0 +46,0 @@ export * from './model/GetExecutionPlanMetadataResponse'; |
@@ -60,3 +60,2 @@ "use strict"; | ||
__exportStar(require("./model/ExecutionPlanSummary"), exports); | ||
__exportStar(require("./model/ExecutorPrimitiveTypeHolder"), exports); | ||
__exportStar(require("./model/GetExecutionPlanMetadataRequest"), exports); | ||
@@ -63,0 +62,0 @@ __exportStar(require("./model/GetExecutionPlanMetadataResponse"), exports); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
540244
217
11336