com.azure.resourcemanager.storage.models.StorageAccountKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storage Show documentation
Show all versions of azure-resourcemanager-storage Show documentation
This package contains Microsoft Azure Storage Management SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.storage.models;
import com.azure.core.annotation.Immutable;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.time.OffsetDateTime;
/** An access key for the storage account. */
@Immutable
public final class StorageAccountKey {
/*
* Name of the key.
*/
@JsonProperty(value = "keyName", access = JsonProperty.Access.WRITE_ONLY)
private String keyName;
/*
* Base 64-encoded value of the key.
*/
@JsonProperty(value = "value", access = JsonProperty.Access.WRITE_ONLY)
private String value;
/*
* Permissions for the key -- read-only or full permissions.
*/
@JsonProperty(value = "permissions", access = JsonProperty.Access.WRITE_ONLY)
private KeyPermission permissions;
/*
* Creation time of the key, in round trip date format.
*/
@JsonProperty(value = "creationTime", access = JsonProperty.Access.WRITE_ONLY)
private OffsetDateTime creationTime;
/**
* Get the keyName property: Name of the key.
*
* @return the keyName value.
*/
public String keyName() {
return this.keyName;
}
/**
* Get the value property: Base 64-encoded value of the key.
*
* @return the value value.
*/
public String value() {
return this.value;
}
/**
* Get the permissions property: Permissions for the key -- read-only or full permissions.
*
* @return the permissions value.
*/
public KeyPermission permissions() {
return this.permissions;
}
/**
* Get the creationTime property: Creation time of the key, in round trip date format.
*
* @return the creationTime value.
*/
public OffsetDateTime creationTime() {
return this.creationTime;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy