/**
* 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.Resource;
/**
* String dictionary resource.
*/
public class ConnectionStringDictionaryInner extends Resource {
/**
* Connection strings.
*/
@JsonProperty(value = "properties")
private Map<String, ConnStringValueTypePair> properties;
/**
* Get the properties value.
*
* @return the properties value
*/
public Map<String, ConnStringValueTypePair> properties() {
return this.properties;
}
/**
* Set the properties value.
*
* @param properties the properties value to set
* @return the ConnectionStringDictionaryInner object itself.
*/
public ConnectionStringDictionaryInner withProperties(Map<String, ConnStringValueTypePair> properties) {
this.properties = properties;
return this;
}
}