SettingsOperations interface

Interface representing a Settings operations.

Properties

createOrUpdateByScope

Create or update a setting within the given scope.

deleteByScope

Delete a setting within the given scope.

getByScope

Get the setting from the given scope by name.

list

List all cost management settings in the requested scope.

Property Details

createOrUpdateByScope

Create or update a setting within the given scope.

createOrUpdateByScope: (scope: string, typeParam: string, setting: SettingUnion, options?: SettingsCreateOrUpdateByScopeOptionalParams) => Promise<SettingUnion>

Property Value

(scope: string, typeParam: string, setting: SettingUnion, options?: SettingsCreateOrUpdateByScopeOptionalParams) => Promise<SettingUnion>

deleteByScope

Delete a setting within the given scope.

deleteByScope: (scope: string, typeParam: string, options?: SettingsDeleteByScopeOptionalParams) => Promise<void>

Property Value

(scope: string, typeParam: string, options?: SettingsDeleteByScopeOptionalParams) => Promise<void>

getByScope

Get the setting from the given scope by name.

getByScope: (scope: string, typeParam: string, options?: SettingsGetByScopeOptionalParams) => Promise<SettingUnion>

Property Value

(scope: string, typeParam: string, options?: SettingsGetByScopeOptionalParams) => Promise<SettingUnion>

list

List all cost management settings in the requested scope.

list: (scope: string, options?: SettingsListOptionalParams) => Promise<SettingsListResult>

Property Value

(scope: string, options?: SettingsListOptionalParams) => Promise<SettingsListResult>