com.pulumi.azurenative.securityinsights.outputs.MetadataSupportResponse 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.securityinsights.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class MetadataSupportResponse {
/**
* @return Email of support contact
*
*/
private @Nullable String email;
/**
* @return Link for support help, like to support page to open a ticket etc.
*
*/
private @Nullable String link;
/**
* @return Name of the support contact. Company or person.
*
*/
private @Nullable String name;
/**
* @return Type of support for content item
*
*/
private String tier;
private MetadataSupportResponse() {}
/**
* @return Email of support contact
*
*/
public Optional email() {
return Optional.ofNullable(this.email);
}
/**
* @return Link for support help, like to support page to open a ticket etc.
*
*/
public Optional link() {
return Optional.ofNullable(this.link);
}
/**
* @return Name of the support contact. Company or person.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
/**
* @return Type of support for content item
*
*/
public String tier() {
return this.tier;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(MetadataSupportResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String email;
private @Nullable String link;
private @Nullable String name;
private String tier;
public Builder() {}
public Builder(MetadataSupportResponse defaults) {
Objects.requireNonNull(defaults);
this.email = defaults.email;
this.link = defaults.link;
this.name = defaults.name;
this.tier = defaults.tier;
}
@CustomType.Setter
public Builder email(@Nullable String email) {
this.email = email;
return this;
}
@CustomType.Setter
public Builder link(@Nullable String link) {
this.link = link;
return this;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
@CustomType.Setter
public Builder tier(String tier) {
if (tier == null) {
throw new MissingRequiredPropertyException("MetadataSupportResponse", "tier");
}
this.tier = tier;
return this;
}
public MetadataSupportResponse build() {
final var _resultValue = new MetadataSupportResponse();
_resultValue.email = email;
_resultValue.link = link;
_resultValue.name = name;
_resultValue.tier = tier;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy