WebAppBase.UpdateStages.WithAppSettings<FluentT> Interface
Type Parameters
- FluentT
the type of the resource
public static interface WebAppBase.UpdateStages.WithAppSettings
A web app update stage allowing app settings to be set.
Method Summary
Modifier and Type | Method and Description |
---|---|
abstract Update<FluentT> |
withAppSetting(String key, String value)
Adds an app setting to the web app. |
abstract Update<FluentT> |
withAppSettingStickiness(String key, boolean sticky)
Changes the stickiness of an app setting. |
abstract Update<FluentT> |
withAppSettings(Map<String,String> settings)
Specifies the app settings for the web app as a Map. |
abstract Update<FluentT> |
withStickyAppSetting(String key, String value)
Adds an app setting to the web app. |
abstract Update<FluentT> |
withStickyAppSettings(Map<String,String> settings)
Specifies the app settings for the web app as a Map. |
abstract Update<FluentT> |
withoutAppSetting(String key)
Removes an app setting from the web app. |
Method Details
withAppSetting
public abstract WebAppBase.Update
Adds an app setting to the web app.
Parameters:
Returns:
withAppSettingStickiness
public abstract WebAppBase.Update
Changes the stickiness of an app setting.
Parameters:
Returns:
withAppSettings
public abstract WebAppBase.Update
Specifies the app settings for the web app as a Map.
Parameters:
Returns:
withStickyAppSetting
public abstract WebAppBase.Update
Adds an app setting to the web app. This app setting will stay at the slot during a swap.
Parameters:
Returns:
withStickyAppSettings
public abstract WebAppBase.Update
Specifies the app settings for the web app as a Map. These app settings will stay at the slot during a swap.
Parameters:
Returns:
withoutAppSetting
public abstract WebAppBase.Update
Removes an app setting from the web app.
Parameters:
Returns:
Applies to
Azure SDK for Java