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

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

// *** 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.TrackPropertyConditionResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;

@CustomType
public final class TrackSelectionResponse {
    /**
     * @return TrackSelections is a track property condition list which can specify track(s)
     * 
     */
    private @Nullable List trackSelections;

    private TrackSelectionResponse() {}
    /**
     * @return TrackSelections is a track property condition list which can specify track(s)
     * 
     */
    public List trackSelections() {
        return this.trackSelections == null ? List.of() : this.trackSelections;
    }

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

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

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

            this.trackSelections = trackSelections;
            return this;
        }
        public Builder trackSelections(TrackPropertyConditionResponse... trackSelections) {
            return trackSelections(List.of(trackSelections));
        }
        public TrackSelectionResponse build() {
            final var _resultValue = new TrackSelectionResponse();
            _resultValue.trackSelections = trackSelections;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy