com.pulumi.googlenative.compute.alpha.TargetGrpcProxy 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.compute.alpha;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import com.pulumi.googlenative.Utilities;
import com.pulumi.googlenative.compute.alpha.TargetGrpcProxyArgs;
import java.lang.Boolean;
import java.lang.String;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Creates a TargetGrpcProxy in the specified project in the given scope using the parameters that are included in the request.
*
*/
@ResourceType(type="google-native:compute/alpha:TargetGrpcProxy")
public class TargetGrpcProxy extends com.pulumi.resources.CustomResource {
/**
* Creation timestamp in RFC3339 text format.
*
*/
@Export(name="creationTimestamp", type=String.class, parameters={})
private Output creationTimestamp;
/**
* @return Creation timestamp in RFC3339 text format.
*
*/
public Output creationTimestamp() {
return this.creationTimestamp;
}
/**
* An optional description of this resource. Provide this property when you create the resource.
*
*/
@Export(name="description", type=String.class, parameters={})
private Output description;
/**
* @return An optional description of this resource. Provide this property when you create the resource.
*
*/
public Output description() {
return this.description;
}
/**
* Fingerprint of this resource. A hash of the contents stored in this object. This field is used in optimistic locking. This field will be ignored when inserting a TargetGrpcProxy. An up-to-date fingerprint must be provided in order to patch/update the TargetGrpcProxy; otherwise, the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve the TargetGrpcProxy.
*
*/
@Export(name="fingerprint", type=String.class, parameters={})
private Output fingerprint;
/**
* @return Fingerprint of this resource. A hash of the contents stored in this object. This field is used in optimistic locking. This field will be ignored when inserting a TargetGrpcProxy. An up-to-date fingerprint must be provided in order to patch/update the TargetGrpcProxy; otherwise, the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve the TargetGrpcProxy.
*
*/
public Output fingerprint() {
return this.fingerprint;
}
/**
* Type of the resource. Always compute#targetGrpcProxy for target grpc proxies.
*
*/
@Export(name="kind", type=String.class, parameters={})
private Output kind;
/**
* @return Type of the resource. Always compute#targetGrpcProxy for target grpc proxies.
*
*/
public Output kind() {
return this.kind;
}
/**
* Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
*
*/
@Export(name="name", type=String.class, parameters={})
private Output name;
/**
* @return Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
*
*/
public Output name() {
return this.name;
}
@Export(name="project", type=String.class, parameters={})
private Output project;
public Output project() {
return this.project;
}
/**
* An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
*
*/
@Export(name="requestId", type=String.class, parameters={})
private Output* @Nullable */ String> requestId;
/**
* @return An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
*
*/
public Output> requestId() {
return Codegen.optional(this.requestId);
}
/**
* Server-defined URL for the resource.
*
*/
@Export(name="selfLink", type=String.class, parameters={})
private Output selfLink;
/**
* @return Server-defined URL for the resource.
*
*/
public Output selfLink() {
return this.selfLink;
}
/**
* Server-defined URL with id for the resource.
*
*/
@Export(name="selfLinkWithId", type=String.class, parameters={})
private Output selfLinkWithId;
/**
* @return Server-defined URL with id for the resource.
*
*/
public Output selfLinkWithId() {
return this.selfLinkWithId;
}
/**
* URL to the UrlMap resource that defines the mapping from URL to the BackendService. The protocol field in the BackendService must be set to GRPC.
*
*/
@Export(name="urlMap", type=String.class, parameters={})
private Output urlMap;
/**
* @return URL to the UrlMap resource that defines the mapping from URL to the BackendService. The protocol field in the BackendService must be set to GRPC.
*
*/
public Output urlMap() {
return this.urlMap;
}
/**
* If true, indicates that the BackendServices referenced by the urlMap may be accessed by gRPC applications without using a sidecar proxy. This will enable configuration checks on urlMap and its referenced BackendServices to not allow unsupported features. A gRPC application must use "xds:///" scheme in the target URI of the service it is connecting to. If false, indicates that the BackendServices referenced by the urlMap will be accessed by gRPC applications via a sidecar proxy. In this case, a gRPC application must not use "xds:///" scheme in the target URI of the service it is connecting to
*
*/
@Export(name="validateForProxyless", type=Boolean.class, parameters={})
private Output validateForProxyless;
/**
* @return If true, indicates that the BackendServices referenced by the urlMap may be accessed by gRPC applications without using a sidecar proxy. This will enable configuration checks on urlMap and its referenced BackendServices to not allow unsupported features. A gRPC application must use "xds:///" scheme in the target URI of the service it is connecting to. If false, indicates that the BackendServices referenced by the urlMap will be accessed by gRPC applications via a sidecar proxy. In this case, a gRPC application must not use "xds:///" scheme in the target URI of the service it is connecting to
*
*/
public Output validateForProxyless() {
return this.validateForProxyless;
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public TargetGrpcProxy(String name) {
this(name, TargetGrpcProxyArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public TargetGrpcProxy(String name, @Nullable TargetGrpcProxyArgs args) {
this(name, args, null);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
* @param options A bag of options that control this resource's behavior.
*/
public TargetGrpcProxy(String name, @Nullable TargetGrpcProxyArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("google-native:compute/alpha:TargetGrpcProxy", name, args == null ? TargetGrpcProxyArgs.Empty : args, makeResourceOptions(options, Codegen.empty()));
}
private TargetGrpcProxy(String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("google-native:compute/alpha:TargetGrpcProxy", name, null, makeResourceOptions(options, id));
}
private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) {
var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder()
.version(Utilities.getVersion())
.build();
return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id);
}
/**
* Get an existing Host resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param options Optional settings to control the behavior of the CustomResource.
*/
public static TargetGrpcProxy get(String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new TargetGrpcProxy(name, id, options);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy