com.azure.resourcemanager.mediaservices.fluent.models.ContentKeyPolicyPropertiesInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-mediaservices Show documentation
Show all versions of azure-resourcemanager-mediaservices Show documentation
This package contains Microsoft Azure SDK for MediaServices Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. This Swagger was generated by the API Framework. Package tag package-account-2023-01.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.mediaservices.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.mediaservices.models.ContentKeyPolicyOption;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.time.OffsetDateTime;
import java.util.List;
import java.util.UUID;
/** The properties of the Content Key Policy. */
@Fluent
public final class ContentKeyPolicyPropertiesInner {
/*
* The legacy Policy ID.
*/
@JsonProperty(value = "policyId", access = JsonProperty.Access.WRITE_ONLY)
private UUID policyId;
/*
* The creation date of the Policy
*/
@JsonProperty(value = "created", access = JsonProperty.Access.WRITE_ONLY)
private OffsetDateTime created;
/*
* The last modified date of the Policy
*/
@JsonProperty(value = "lastModified", access = JsonProperty.Access.WRITE_ONLY)
private OffsetDateTime lastModified;
/*
* A description for the Policy.
*/
@JsonProperty(value = "description")
private String description;
/*
* The Key Policy options.
*/
@JsonProperty(value = "options", required = true)
private List options;
/**
* Get the policyId property: The legacy Policy ID.
*
* @return the policyId value.
*/
public UUID policyId() {
return this.policyId;
}
/**
* Get the created property: The creation date of the Policy.
*
* @return the created value.
*/
public OffsetDateTime created() {
return this.created;
}
/**
* Get the lastModified property: The last modified date of the Policy.
*
* @return the lastModified value.
*/
public OffsetDateTime lastModified() {
return this.lastModified;
}
/**
* Get the description property: A description for the Policy.
*
* @return the description value.
*/
public String description() {
return this.description;
}
/**
* Set the description property: A description for the Policy.
*
* @param description the description value to set.
* @return the ContentKeyPolicyPropertiesInner object itself.
*/
public ContentKeyPolicyPropertiesInner withDescription(String description) {
this.description = description;
return this;
}
/**
* Get the options property: The Key Policy options.
*
* @return the options value.
*/
public List options() {
return this.options;
}
/**
* Set the options property: The Key Policy options.
*
* @param options the options value to set.
* @return the ContentKeyPolicyPropertiesInner object itself.
*/
public ContentKeyPolicyPropertiesInner withOptions(List options) {
this.options = options;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (options() == null) {
throw LOGGER
.logExceptionAsError(
new IllegalArgumentException(
"Missing required property options in model ContentKeyPolicyPropertiesInner"));
} else {
options().forEach(e -> e.validate());
}
}
private static final ClientLogger LOGGER = new ClientLogger(ContentKeyPolicyPropertiesInner.class);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy