com.pulumi.scm.outputs.GetServiceConnectionQos Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scm Show documentation
Show all versions of scm Show documentation
A Pulumi package for managing resources on Strata Cloud Manager.
// *** 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.scm.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetServiceConnectionQos {
/**
* @return The Enable param.
*
*/
private Boolean enable;
/**
* @return The QosProfile param.
*
*/
private String qosProfile;
private GetServiceConnectionQos() {}
/**
* @return The Enable param.
*
*/
public Boolean enable() {
return this.enable;
}
/**
* @return The QosProfile param.
*
*/
public String qosProfile() {
return this.qosProfile;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetServiceConnectionQos defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Boolean enable;
private String qosProfile;
public Builder() {}
public Builder(GetServiceConnectionQos defaults) {
Objects.requireNonNull(defaults);
this.enable = defaults.enable;
this.qosProfile = defaults.qosProfile;
}
@CustomType.Setter
public Builder enable(Boolean enable) {
if (enable == null) {
throw new MissingRequiredPropertyException("GetServiceConnectionQos", "enable");
}
this.enable = enable;
return this;
}
@CustomType.Setter
public Builder qosProfile(String qosProfile) {
if (qosProfile == null) {
throw new MissingRequiredPropertyException("GetServiceConnectionQos", "qosProfile");
}
this.qosProfile = qosProfile;
return this;
}
public GetServiceConnectionQos build() {
final var _resultValue = new GetServiceConnectionQos();
_resultValue.enable = enable;
_resultValue.qosProfile = qosProfile;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy