com.azure.resourcemanager.storage.models.SasPolicy 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.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* SasPolicy assigned to the storage account.
*/
@Fluent
public final class SasPolicy {
/*
* The SAS expiration period, DD.HH:MM:SS.
*/
@JsonProperty(value = "sasExpirationPeriod", required = true)
private String sasExpirationPeriod;
/*
* The SAS Expiration Action defines the action to be performed when sasPolicy.sasExpirationPeriod is violated. The
* 'Log' action can be used for audit purposes and the 'Block' action can be used to block and deny the usage of SAS
* tokens that do not adhere to the sas policy expiration period.
*/
@JsonProperty(value = "expirationAction", required = true)
private ExpirationAction expirationAction;
/**
* Creates an instance of SasPolicy class.
*/
public SasPolicy() {
}
/**
* Get the sasExpirationPeriod property: The SAS expiration period, DD.HH:MM:SS.
*
* @return the sasExpirationPeriod value.
*/
public String sasExpirationPeriod() {
return this.sasExpirationPeriod;
}
/**
* Set the sasExpirationPeriod property: The SAS expiration period, DD.HH:MM:SS.
*
* @param sasExpirationPeriod the sasExpirationPeriod value to set.
* @return the SasPolicy object itself.
*/
public SasPolicy withSasExpirationPeriod(String sasExpirationPeriod) {
this.sasExpirationPeriod = sasExpirationPeriod;
return this;
}
/**
* Get the expirationAction property: The SAS Expiration Action defines the action to be performed when
* sasPolicy.sasExpirationPeriod is violated. The 'Log' action can be used for audit purposes and the 'Block' action
* can be used to block and deny the usage of SAS tokens that do not adhere to the sas policy expiration period.
*
* @return the expirationAction value.
*/
public ExpirationAction expirationAction() {
return this.expirationAction;
}
/**
* Set the expirationAction property: The SAS Expiration Action defines the action to be performed when
* sasPolicy.sasExpirationPeriod is violated. The 'Log' action can be used for audit purposes and the 'Block' action
* can be used to block and deny the usage of SAS tokens that do not adhere to the sas policy expiration period.
*
* @param expirationAction the expirationAction value to set.
* @return the SasPolicy object itself.
*/
public SasPolicy withExpirationAction(ExpirationAction expirationAction) {
this.expirationAction = expirationAction;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (sasExpirationPeriod() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException("Missing required property sasExpirationPeriod in model SasPolicy"));
}
if (expirationAction() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException("Missing required property expirationAction in model SasPolicy"));
}
}
private static final ClientLogger LOGGER = new ClientLogger(SasPolicy.class);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy