com.pulumi.azurenative.media.inputs.GetContentKeyPolicyPropertiesWithSecretsPlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
The newest version!
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.media.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetContentKeyPolicyPropertiesWithSecretsPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetContentKeyPolicyPropertiesWithSecretsPlainArgs Empty = new GetContentKeyPolicyPropertiesWithSecretsPlainArgs();
/**
* The Media Services account name.
*
*/
@Import(name="accountName", required=true)
private String accountName;
/**
* @return The Media Services account name.
*
*/
public String accountName() {
return this.accountName;
}
/**
* The Content Key Policy name.
*
*/
@Import(name="contentKeyPolicyName", required=true)
private String contentKeyPolicyName;
/**
* @return The Content Key Policy name.
*
*/
public String contentKeyPolicyName() {
return this.contentKeyPolicyName;
}
/**
* The name of the resource group within the Azure subscription.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group within the Azure subscription.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private GetContentKeyPolicyPropertiesWithSecretsPlainArgs() {}
private GetContentKeyPolicyPropertiesWithSecretsPlainArgs(GetContentKeyPolicyPropertiesWithSecretsPlainArgs $) {
this.accountName = $.accountName;
this.contentKeyPolicyName = $.contentKeyPolicyName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetContentKeyPolicyPropertiesWithSecretsPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetContentKeyPolicyPropertiesWithSecretsPlainArgs $;
public Builder() {
$ = new GetContentKeyPolicyPropertiesWithSecretsPlainArgs();
}
public Builder(GetContentKeyPolicyPropertiesWithSecretsPlainArgs defaults) {
$ = new GetContentKeyPolicyPropertiesWithSecretsPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param accountName The Media Services account name.
*
* @return builder
*
*/
public Builder accountName(String accountName) {
$.accountName = accountName;
return this;
}
/**
* @param contentKeyPolicyName The Content Key Policy name.
*
* @return builder
*
*/
public Builder contentKeyPolicyName(String contentKeyPolicyName) {
$.contentKeyPolicyName = contentKeyPolicyName;
return this;
}
/**
* @param resourceGroupName The name of the resource group within the Azure subscription.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
public GetContentKeyPolicyPropertiesWithSecretsPlainArgs build() {
if ($.accountName == null) {
throw new MissingRequiredPropertyException("GetContentKeyPolicyPropertiesWithSecretsPlainArgs", "accountName");
}
if ($.contentKeyPolicyName == null) {
throw new MissingRequiredPropertyException("GetContentKeyPolicyPropertiesWithSecretsPlainArgs", "contentKeyPolicyName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetContentKeyPolicyPropertiesWithSecretsPlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy