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.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.azure.management.appservice.ProxyOnlyResource;
String dictionary resource.
/**
* String dictionary resource.
*/
public class StringDictionaryInner extends ProxyOnlyResource {
Settings.
/**
* Settings.
*/
@JsonProperty(value = "properties")
private Map<String, String> properties;
Get settings.
Returns: the properties value
/**
* Get settings.
*
* @return the properties value
*/
public Map<String, String> properties() {
return this.properties;
}
Set settings.
Params: - properties – the properties value to set
Returns: the StringDictionaryInner object itself.
/**
* Set settings.
*
* @param properties the properties value to set
* @return the StringDictionaryInner object itself.
*/
public StringDictionaryInner withProperties(Map<String, String> properties) {
this.properties = properties;
return this;
}
}