com.pulumi.azurenative.media.inputs.ListStreamingLocatorContentKeysArgs 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.
// *** 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.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class ListStreamingLocatorContentKeysArgs extends com.pulumi.resources.InvokeArgs {
public static final ListStreamingLocatorContentKeysArgs Empty = new ListStreamingLocatorContentKeysArgs();
/**
* The Media Services account name.
*
*/
@Import(name="accountName", required=true)
private Output accountName;
/**
* @return The Media Services account name.
*
*/
public Output accountName() {
return this.accountName;
}
/**
* The name of the resource group within the Azure subscription.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group within the Azure subscription.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* The Streaming Locator name.
*
*/
@Import(name="streamingLocatorName", required=true)
private Output streamingLocatorName;
/**
* @return The Streaming Locator name.
*
*/
public Output streamingLocatorName() {
return this.streamingLocatorName;
}
private ListStreamingLocatorContentKeysArgs() {}
private ListStreamingLocatorContentKeysArgs(ListStreamingLocatorContentKeysArgs $) {
this.accountName = $.accountName;
this.resourceGroupName = $.resourceGroupName;
this.streamingLocatorName = $.streamingLocatorName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ListStreamingLocatorContentKeysArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ListStreamingLocatorContentKeysArgs $;
public Builder() {
$ = new ListStreamingLocatorContentKeysArgs();
}
public Builder(ListStreamingLocatorContentKeysArgs defaults) {
$ = new ListStreamingLocatorContentKeysArgs(Objects.requireNonNull(defaults));
}
/**
* @param accountName The Media Services account name.
*
* @return builder
*
*/
public Builder accountName(Output accountName) {
$.accountName = accountName;
return this;
}
/**
* @param accountName The Media Services account name.
*
* @return builder
*
*/
public Builder accountName(String accountName) {
return accountName(Output.of(accountName));
}
/**
* @param resourceGroupName The name of the resource group within the Azure subscription.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The name of the resource group within the Azure subscription.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
/**
* @param streamingLocatorName The Streaming Locator name.
*
* @return builder
*
*/
public Builder streamingLocatorName(Output streamingLocatorName) {
$.streamingLocatorName = streamingLocatorName;
return this;
}
/**
* @param streamingLocatorName The Streaming Locator name.
*
* @return builder
*
*/
public Builder streamingLocatorName(String streamingLocatorName) {
return streamingLocatorName(Output.of(streamingLocatorName));
}
public ListStreamingLocatorContentKeysArgs build() {
if ($.accountName == null) {
throw new MissingRequiredPropertyException("ListStreamingLocatorContentKeysArgs", "accountName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("ListStreamingLocatorContentKeysArgs", "resourceGroupName");
}
if ($.streamingLocatorName == null) {
throw new MissingRequiredPropertyException("ListStreamingLocatorContentKeysArgs", "streamingLocatorName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy