Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */
package com.microsoft.azure.management.appservice; import com.microsoft.azure.management.apigeneration.Beta; import com.microsoft.azure.management.apigeneration.Fluent;
An immutable client-side representation of a connection string on a web app.
/** * An immutable client-side representation of a connection string on a web app. */
@Fluent(ContainerName = "/Microsoft.Azure.Management.AppService.Fluent") @Beta public interface ConnectionString {
Returns:the key of the setting
/** * @return the key of the setting */
String name();
Returns:the value of the connection string
/** * @return the value of the connection string */
String value();
Returns:the type of the connection string
/** * @return the type of the connection string */
ConnectionStringType type();
Returns:if the connection string sticks to the slot during a swap
/** * @return if the connection string sticks to the slot during a swap */
boolean sticky(); }