com.pulumi.googlenative.monitoring.v3.outputs.CloudEndpointsResponse 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.monitoring.v3.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class CloudEndpointsResponse {
/**
* @return The name of the Cloud Endpoints service underlying this service. Corresponds to the service resource label in the api monitored resource (https://cloud.google.com/monitoring/api/resources#tag_api).
*
*/
private String service;
private CloudEndpointsResponse() {}
/**
* @return The name of the Cloud Endpoints service underlying this service. Corresponds to the service resource label in the api monitored resource (https://cloud.google.com/monitoring/api/resources#tag_api).
*
*/
public String service() {
return this.service;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(CloudEndpointsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String service;
public Builder() {}
public Builder(CloudEndpointsResponse defaults) {
Objects.requireNonNull(defaults);
this.service = defaults.service;
}
@CustomType.Setter
public Builder service(String service) {
this.service = Objects.requireNonNull(service);
return this;
}
public CloudEndpointsResponse build() {
final var o = new CloudEndpointsResponse();
o.service = service;
return o;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy