All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.media.outputs.ListStreamingLocatorContentKeysResult Maven / Gradle / Ivy

There is a newer version: 2.89.2
Show 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.outputs;

import com.pulumi.azurenative.media.outputs.StreamingLocatorContentKeyResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;

@CustomType
public final class ListStreamingLocatorContentKeysResult {
    /**
     * @return ContentKeys used by current Streaming Locator
     * 
     */
    private @Nullable List contentKeys;

    private ListStreamingLocatorContentKeysResult() {}
    /**
     * @return ContentKeys used by current Streaming Locator
     * 
     */
    public List contentKeys() {
        return this.contentKeys == null ? List.of() : this.contentKeys;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(ListStreamingLocatorContentKeysResult defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable List contentKeys;
        public Builder() {}
        public Builder(ListStreamingLocatorContentKeysResult defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.contentKeys = defaults.contentKeys;
        }

        @CustomType.Setter
        public Builder contentKeys(@Nullable List contentKeys) {

            this.contentKeys = contentKeys;
            return this;
        }
        public Builder contentKeys(StreamingLocatorContentKeyResponse... contentKeys) {
            return contentKeys(List.of(contentKeys));
        }
        public ListStreamingLocatorContentKeysResult build() {
            final var _resultValue = new ListStreamingLocatorContentKeysResult();
            _resultValue.contentKeys = contentKeys;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy