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