com.pulumi.googlenative.apigee.v1.outputs.GoogleCloudApigeeV1CanaryEvaluationMetricLabelsResponse Maven / Gradle / Ivy
// *** 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.googlenative.apigee.v1.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GoogleCloudApigeeV1CanaryEvaluationMetricLabelsResponse {
/**
* @return The environment ID associated with the metrics.
*
*/
private String env;
/**
* @return The instance ID associated with the metrics. In Apigee Hybrid, the value is configured during installation.
*
*/
private String instanceId;
/**
* @return The location associated with the metrics.
*
*/
private String location;
private GoogleCloudApigeeV1CanaryEvaluationMetricLabelsResponse() {}
/**
* @return The environment ID associated with the metrics.
*
*/
public String env() {
return this.env;
}
/**
* @return The instance ID associated with the metrics. In Apigee Hybrid, the value is configured during installation.
*
*/
public String instanceId() {
return this.instanceId;
}
/**
* @return The location associated with the metrics.
*
*/
public String location() {
return this.location;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GoogleCloudApigeeV1CanaryEvaluationMetricLabelsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String env;
private String instanceId;
private String location;
public Builder() {}
public Builder(GoogleCloudApigeeV1CanaryEvaluationMetricLabelsResponse defaults) {
Objects.requireNonNull(defaults);
this.env = defaults.env;
this.instanceId = defaults.instanceId;
this.location = defaults.location;
}
@CustomType.Setter
public Builder env(String env) {
this.env = Objects.requireNonNull(env);
return this;
}
@CustomType.Setter
public Builder instanceId(String instanceId) {
this.instanceId = Objects.requireNonNull(instanceId);
return this;
}
@CustomType.Setter
public Builder location(String location) {
this.location = Objects.requireNonNull(location);
return this;
}
public GoogleCloudApigeeV1CanaryEvaluationMetricLabelsResponse build() {
final var o = new GoogleCloudApigeeV1CanaryEvaluationMetricLabelsResponse();
o.env = env;
o.instanceId = instanceId;
o.location = location;
return o;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy