com.pulumi.azurenative.media.inputs.GetLiveOutputArgs 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 GetLiveOutputArgs extends com.pulumi.resources.InvokeArgs {
public static final GetLiveOutputArgs Empty = new GetLiveOutputArgs();
/**
* 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 live event, maximum length is 32.
*
*/
@Import(name="liveEventName", required=true)
private Output liveEventName;
/**
* @return The name of the live event, maximum length is 32.
*
*/
public Output liveEventName() {
return this.liveEventName;
}
/**
* The name of the live output.
*
*/
@Import(name="liveOutputName", required=true)
private Output liveOutputName;
/**
* @return The name of the live output.
*
*/
public Output liveOutputName() {
return this.liveOutputName;
}
/**
* 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;
}
private GetLiveOutputArgs() {}
private GetLiveOutputArgs(GetLiveOutputArgs $) {
this.accountName = $.accountName;
this.liveEventName = $.liveEventName;
this.liveOutputName = $.liveOutputName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetLiveOutputArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetLiveOutputArgs $;
public Builder() {
$ = new GetLiveOutputArgs();
}
public Builder(GetLiveOutputArgs defaults) {
$ = new GetLiveOutputArgs(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 liveEventName The name of the live event, maximum length is 32.
*
* @return builder
*
*/
public Builder liveEventName(Output liveEventName) {
$.liveEventName = liveEventName;
return this;
}
/**
* @param liveEventName The name of the live event, maximum length is 32.
*
* @return builder
*
*/
public Builder liveEventName(String liveEventName) {
return liveEventName(Output.of(liveEventName));
}
/**
* @param liveOutputName The name of the live output.
*
* @return builder
*
*/
public Builder liveOutputName(Output liveOutputName) {
$.liveOutputName = liveOutputName;
return this;
}
/**
* @param liveOutputName The name of the live output.
*
* @return builder
*
*/
public Builder liveOutputName(String liveOutputName) {
return liveOutputName(Output.of(liveOutputName));
}
/**
* @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));
}
public GetLiveOutputArgs build() {
if ($.accountName == null) {
throw new MissingRequiredPropertyException("GetLiveOutputArgs", "accountName");
}
if ($.liveEventName == null) {
throw new MissingRequiredPropertyException("GetLiveOutputArgs", "liveEventName");
}
if ($.liveOutputName == null) {
throw new MissingRequiredPropertyException("GetLiveOutputArgs", "liveOutputName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetLiveOutputArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy