@huaweicloud/huaweicloud-sdk-aos
Advanced tools
Comparing version 3.1.110 to 3.1.111
{ | ||
"name": "@huaweicloud/huaweicloud-sdk-aos", | ||
"version": "3.1.110", | ||
"version": "3.1.111", | ||
"description": "Huaweicloud SDK for aos", | ||
@@ -17,3 +17,3 @@ "main": "huaweicloud-sdk-aos.js", | ||
"dependencies": { | ||
"@huaweicloud/huaweicloud-sdk-core": "^3.1.110" | ||
"@huaweicloud/huaweicloud-sdk-core": "^3.1.111" | ||
}, | ||
@@ -20,0 +20,0 @@ "devDependencies": { |
@@ -6,2 +6,3 @@ import { ResourcePriceResponse } from './ResourcePriceResponse'; | ||
index?: string; | ||
private 'module_address'?; | ||
supported?: boolean; | ||
@@ -18,2 +19,5 @@ private 'unsupported_message'?; | ||
withIndex(index: string): ItemsResponse; | ||
withModuleAddress(moduleAddress: string): ItemsResponse; | ||
set moduleAddress(moduleAddress: string | undefined); | ||
get moduleAddress(): string | undefined; | ||
withSupported(supported: boolean): ItemsResponse; | ||
@@ -20,0 +24,0 @@ withUnsupportedMessage(unsupportedMessage: string): ItemsResponse; |
@@ -31,2 +31,12 @@ "use strict"; | ||
} | ||
withModuleAddress(moduleAddress) { | ||
this['module_address'] = moduleAddress; | ||
return this; | ||
} | ||
set moduleAddress(moduleAddress) { | ||
this['module_address'] = moduleAddress; | ||
} | ||
get moduleAddress() { | ||
return this['module_address']; | ||
} | ||
withSupported(supported) { | ||
@@ -33,0 +43,0 @@ this['supported'] = supported; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1613777
21702