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

com.pulumi.azurenative.edgeorder.outputs.ListConfigurationsResult Maven / Gradle / Ivy

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

import com.pulumi.azurenative.edgeorder.outputs.ConfigurationResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class ListConfigurationsResult {
    /**
     * @return Link for the next set of configurations.
     * 
     */
    private @Nullable String nextLink;
    /**
     * @return List of configurations.
     * 
     */
    private List value;

    private ListConfigurationsResult() {}
    /**
     * @return Link for the next set of configurations.
     * 
     */
    public Optional nextLink() {
        return Optional.ofNullable(this.nextLink);
    }
    /**
     * @return List of configurations.
     * 
     */
    public List value() {
        return this.value;
    }

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

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

        @CustomType.Setter
        public Builder nextLink(@Nullable String nextLink) {

            this.nextLink = nextLink;
            return this;
        }
        @CustomType.Setter
        public Builder value(List value) {
            if (value == null) {
              throw new MissingRequiredPropertyException("ListConfigurationsResult", "value");
            }
            this.value = value;
            return this;
        }
        public Builder value(ConfigurationResponse... value) {
            return value(List.of(value));
        }
        public ListConfigurationsResult build() {
            final var _resultValue = new ListConfigurationsResult();
            _resultValue.nextLink = nextLink;
            _resultValue.value = value;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy