com.pulumi.azurenative.media.inputs.GetStreamingEndpointArgs 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.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetStreamingEndpointArgs extends com.pulumi.resources.InvokeArgs {
public static final GetStreamingEndpointArgs Empty = new GetStreamingEndpointArgs();
/**
* 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 name of the streaming endpoint, maximum length is 24.
*
*/
@Import(name="streamingEndpointName", required=true)
private Output streamingEndpointName;
/**
* @return The name of the streaming endpoint, maximum length is 24.
*
*/
public Output streamingEndpointName() {
return this.streamingEndpointName;
}
private GetStreamingEndpointArgs() {}
private GetStreamingEndpointArgs(GetStreamingEndpointArgs $) {
this.accountName = $.accountName;
this.resourceGroupName = $.resourceGroupName;
this.streamingEndpointName = $.streamingEndpointName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetStreamingEndpointArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetStreamingEndpointArgs $;
public Builder() {
$ = new GetStreamingEndpointArgs();
}
public Builder(GetStreamingEndpointArgs defaults) {
$ = new GetStreamingEndpointArgs(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 streamingEndpointName The name of the streaming endpoint, maximum length is 24.
*
* @return builder
*
*/
public Builder streamingEndpointName(Output streamingEndpointName) {
$.streamingEndpointName = streamingEndpointName;
return this;
}
/**
* @param streamingEndpointName The name of the streaming endpoint, maximum length is 24.
*
* @return builder
*
*/
public Builder streamingEndpointName(String streamingEndpointName) {
return streamingEndpointName(Output.of(streamingEndpointName));
}
public GetStreamingEndpointArgs build() {
if ($.accountName == null) {
throw new MissingRequiredPropertyException("GetStreamingEndpointArgs", "accountName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetStreamingEndpointArgs", "resourceGroupName");
}
if ($.streamingEndpointName == null) {
throw new MissingRequiredPropertyException("GetStreamingEndpointArgs", "streamingEndpointName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy