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.ApiKVReference; import com.fasterxml.jackson.annotation.JsonProperty; import com.microsoft.rest.serializer.JsonFlatten; import com.microsoft.azure.management.appservice.ProxyOnlyResource;
Web app key vault reference and status ARM resource.
/** * Web app key vault reference and status ARM resource. */
@JsonFlatten public class KeyVaultReferenceCollectionInner extends ProxyOnlyResource {
The keyToReferenceStatuses property.
/** * The keyToReferenceStatuses property. */
@JsonProperty(value = "properties.keyToReferenceStatuses") private Map<String, ApiKVReference> keyToReferenceStatuses;
Get the keyToReferenceStatuses value.
Returns:the keyToReferenceStatuses value
/** * Get the keyToReferenceStatuses value. * * @return the keyToReferenceStatuses value */
public Map<String, ApiKVReference> keyToReferenceStatuses() { return this.keyToReferenceStatuses; }
Set the keyToReferenceStatuses value.
Params:
  • keyToReferenceStatuses – the keyToReferenceStatuses value to set
Returns:the KeyVaultReferenceCollectionInner object itself.
/** * Set the keyToReferenceStatuses value. * * @param keyToReferenceStatuses the keyToReferenceStatuses value to set * @return the KeyVaultReferenceCollectionInner object itself. */
public KeyVaultReferenceCollectionInner withKeyToReferenceStatuses(Map<String, ApiKVReference> keyToReferenceStatuses) { this.keyToReferenceStatuses = keyToReferenceStatuses; return this; } }