com.microsoft.azure.keyvault.models.SasDefinitionItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-keyvault Show documentation
Show all versions of azure-keyvault Show documentation
This package contains Microsoft Azure Key Vault SDK.
/**
* 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.keyvault.models;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The SAS definition item containing storage SAS definition metadata.
*/
public class SasDefinitionItem {
/**
* The storage SAS identifier.
*/
@JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY)
private String id;
/**
* The storage account SAS definition secret id.
*/
@JsonProperty(value = "sid", access = JsonProperty.Access.WRITE_ONLY)
private String secretId;
/**
* The SAS definition management attributes.
*/
@JsonProperty(value = "attributes", access = JsonProperty.Access.WRITE_ONLY)
private SasDefinitionAttributes attributes;
/**
* Application specific metadata in the form of key-value pairs.
*/
@JsonProperty(value = "tags", access = JsonProperty.Access.WRITE_ONLY)
private Map tags;
/**
* Get the id value.
*
* @return the id value
*/
public String id() {
return this.id;
}
/**
* Get the secretId value.
*
* @return the secretId value
*/
public String secretId() {
return this.secretId;
}
/**
* Get the attributes value.
*
* @return the attributes value
*/
public SasDefinitionAttributes attributes() {
return this.attributes;
}
/**
* Get the tags value.
*
* @return the tags value
*/
public Map tags() {
return this.tags;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy