
com.pulumi.azurenative.media.outputs.ListStreamingLocatorPathsResult 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.outputs;
import com.pulumi.azurenative.media.outputs.StreamingPathResponse;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class ListStreamingLocatorPathsResult {
/**
* @return Download Paths supported by current Streaming Locator
*
*/
private @Nullable List downloadPaths;
/**
* @return Streaming Paths supported by current Streaming Locator
*
*/
private @Nullable List streamingPaths;
private ListStreamingLocatorPathsResult() {}
/**
* @return Download Paths supported by current Streaming Locator
*
*/
public List downloadPaths() {
return this.downloadPaths == null ? List.of() : this.downloadPaths;
}
/**
* @return Streaming Paths supported by current Streaming Locator
*
*/
public List streamingPaths() {
return this.streamingPaths == null ? List.of() : this.streamingPaths;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ListStreamingLocatorPathsResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List downloadPaths;
private @Nullable List streamingPaths;
public Builder() {}
public Builder(ListStreamingLocatorPathsResult defaults) {
Objects.requireNonNull(defaults);
this.downloadPaths = defaults.downloadPaths;
this.streamingPaths = defaults.streamingPaths;
}
@CustomType.Setter
public Builder downloadPaths(@Nullable List downloadPaths) {
this.downloadPaths = downloadPaths;
return this;
}
public Builder downloadPaths(String... downloadPaths) {
return downloadPaths(List.of(downloadPaths));
}
@CustomType.Setter
public Builder streamingPaths(@Nullable List streamingPaths) {
this.streamingPaths = streamingPaths;
return this;
}
public Builder streamingPaths(StreamingPathResponse... streamingPaths) {
return streamingPaths(List.of(streamingPaths));
}
public ListStreamingLocatorPathsResult build() {
final var _resultValue = new ListStreamingLocatorPathsResult();
_resultValue.downloadPaths = downloadPaths;
_resultValue.streamingPaths = streamingPaths;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy