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

com.pulumi.azurenative.web.outputs.ListWebAppSiteBackupsResult Maven / Gradle / Ivy

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

import com.pulumi.azurenative.web.outputs.BackupItemResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;

@CustomType
public final class ListWebAppSiteBackupsResult {
    /**
     * @return Link to next page of resources.
     * 
     */
    private String nextLink;
    /**
     * @return Collection of resources.
     * 
     */
    private List value;

    private ListWebAppSiteBackupsResult() {}
    /**
     * @return Link to next page of resources.
     * 
     */
    public String nextLink() {
        return this.nextLink;
    }
    /**
     * @return Collection of resources.
     * 
     */
    public List value() {
        return this.value;
    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy