Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.appservice.implementation; import java.util.Map; import com.microsoft.azure.management.appservice.ConnStringValueTypePair; import com.fasterxml.jackson.annotation.JsonProperty; import com.microsoft.azure.management.appservice.ProxyOnlyResource;
String dictionary resource.
/** * String dictionary resource. */
public class ConnectionStringDictionaryInner extends ProxyOnlyResource {
Connection strings.
/** * Connection strings. */
@JsonProperty(value = "properties") private Map<String, ConnStringValueTypePair> properties;
Get connection strings.
Returns:the properties value
/** * Get connection strings. * * @return the properties value */
public Map<String, ConnStringValueTypePair> properties() { return this.properties; }
Set connection strings.
Params:
  • properties – the properties value to set
Returns:the ConnectionStringDictionaryInner object itself.
/** * Set connection strings. * * @param properties the properties value to set * @return the ConnectionStringDictionaryInner object itself. */
public ConnectionStringDictionaryInner withProperties(Map<String, ConnStringValueTypePair> properties) { this.properties = properties; return this; } }