
com.pulumi.azurenative.servicefabricmesh.outputs.AutoScalingResourceMetricResponse 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.servicefabricmesh.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class AutoScalingResourceMetricResponse {
/**
* @return Enumerates the metrics that are used for triggering auto scaling.
* Expected value is 'Resource'.
*
*/
private String kind;
/**
* @return Name of the resource.
*
*/
private String name;
private AutoScalingResourceMetricResponse() {}
/**
* @return Enumerates the metrics that are used for triggering auto scaling.
* Expected value is 'Resource'.
*
*/
public String kind() {
return this.kind;
}
/**
* @return Name of the resource.
*
*/
public String name() {
return this.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AutoScalingResourceMetricResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String kind;
private String name;
public Builder() {}
public Builder(AutoScalingResourceMetricResponse defaults) {
Objects.requireNonNull(defaults);
this.kind = defaults.kind;
this.name = defaults.name;
}
@CustomType.Setter
public Builder kind(String kind) {
if (kind == null) {
throw new MissingRequiredPropertyException("AutoScalingResourceMetricResponse", "kind");
}
this.kind = kind;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("AutoScalingResourceMetricResponse", "name");
}
this.name = name;
return this;
}
public AutoScalingResourceMetricResponse build() {
final var _resultValue = new AutoScalingResourceMetricResponse();
_resultValue.kind = kind;
_resultValue.name = name;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy