com.pulumi.googlenative.pubsub.v1beta1a.outputs.PushConfigResponse 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.pubsub.v1beta1a.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class PushConfigResponse {
/**
* @return A URL locating the endpoint to which messages should be pushed. For example, a Webhook endpoint might use "https://example.com/push".
*
*/
private String pushEndpoint;
private PushConfigResponse() {}
/**
* @return A URL locating the endpoint to which messages should be pushed. For example, a Webhook endpoint might use "https://example.com/push".
*
*/
public String pushEndpoint() {
return this.pushEndpoint;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(PushConfigResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String pushEndpoint;
public Builder() {}
public Builder(PushConfigResponse defaults) {
Objects.requireNonNull(defaults);
this.pushEndpoint = defaults.pushEndpoint;
}
@CustomType.Setter
public Builder pushEndpoint(String pushEndpoint) {
this.pushEndpoint = Objects.requireNonNull(pushEndpoint);
return this;
}
public PushConfigResponse build() {
final var o = new PushConfigResponse();
o.pushEndpoint = pushEndpoint;
return o;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy