com.pulumi.azurenative.web.outputs.ListSiteIdentifiersAssignedToHostNameResult 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.web.outputs;
import com.pulumi.azurenative.web.outputs.IdentifierResponse;
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 ListSiteIdentifiersAssignedToHostNameResult {
/**
* @return Link to next page of resources.
*
*/
private String nextLink;
/**
* @return Collection of resources.
*
*/
private List value;
private ListSiteIdentifiersAssignedToHostNameResult() {}
/**
* @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(ListSiteIdentifiersAssignedToHostNameResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String nextLink;
private List value;
public Builder() {}
public Builder(ListSiteIdentifiersAssignedToHostNameResult 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("ListSiteIdentifiersAssignedToHostNameResult", "nextLink");
}
this.nextLink = nextLink;
return this;
}
@CustomType.Setter
public Builder value(List value) {
if (value == null) {
throw new MissingRequiredPropertyException("ListSiteIdentifiersAssignedToHostNameResult", "value");
}
this.value = value;
return this;
}
public Builder value(IdentifierResponse... value) {
return value(List.of(value));
}
public ListSiteIdentifiersAssignedToHostNameResult build() {
final var _resultValue = new ListSiteIdentifiersAssignedToHostNameResult();
_resultValue.nextLink = nextLink;
_resultValue.value = value;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy