1. Packages
  2. Google Cloud Native
  3. API Docs
  4. networksecurity
  5. networksecurity/v1beta1
  6. ClientTlsPolicy

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.networksecurity/v1beta1.ClientTlsPolicy

Explore with Pulumi AI

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

Creates a new ClientTlsPolicy in a given project and location.

Create ClientTlsPolicy Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ClientTlsPolicy(name: string, args: ClientTlsPolicyArgs, opts?: CustomResourceOptions);
@overload
def ClientTlsPolicy(resource_name: str,
                    args: ClientTlsPolicyArgs,
                    opts: Optional[ResourceOptions] = None)

@overload
def ClientTlsPolicy(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    client_tls_policy_id: Optional[str] = None,
                    client_certificate: Optional[GoogleCloudNetworksecurityV1beta1CertificateProviderArgs] = None,
                    description: Optional[str] = None,
                    labels: Optional[Mapping[str, str]] = None,
                    location: Optional[str] = None,
                    name: Optional[str] = None,
                    project: Optional[str] = None,
                    server_validation_ca: Optional[Sequence[ValidationCAArgs]] = None,
                    sni: Optional[str] = None)
func NewClientTlsPolicy(ctx *Context, name string, args ClientTlsPolicyArgs, opts ...ResourceOption) (*ClientTlsPolicy, error)
public ClientTlsPolicy(string name, ClientTlsPolicyArgs args, CustomResourceOptions? opts = null)
public ClientTlsPolicy(String name, ClientTlsPolicyArgs args)
public ClientTlsPolicy(String name, ClientTlsPolicyArgs args, CustomResourceOptions options)
type: google-native:networksecurity/v1beta1:ClientTlsPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ClientTlsPolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ClientTlsPolicyArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ClientTlsPolicyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ClientTlsPolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ClientTlsPolicyArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var google_nativeClientTlsPolicyResource = new GoogleNative.NetworkSecurity.V1Beta1.ClientTlsPolicy("google-nativeClientTlsPolicyResource", new()
{
    ClientTlsPolicyId = "string",
    ClientCertificate = new GoogleNative.NetworkSecurity.V1Beta1.Inputs.GoogleCloudNetworksecurityV1beta1CertificateProviderArgs
    {
        CertificateProviderInstance = new GoogleNative.NetworkSecurity.V1Beta1.Inputs.CertificateProviderInstanceArgs
        {
            PluginInstance = "string",
        },
        GrpcEndpoint = new GoogleNative.NetworkSecurity.V1Beta1.Inputs.GoogleCloudNetworksecurityV1beta1GrpcEndpointArgs
        {
            TargetUri = "string",
        },
    },
    Description = "string",
    Labels = 
    {
        { "string", "string" },
    },
    Location = "string",
    Name = "string",
    Project = "string",
    ServerValidationCa = new[]
    {
        new GoogleNative.NetworkSecurity.V1Beta1.Inputs.ValidationCAArgs
        {
            CertificateProviderInstance = new GoogleNative.NetworkSecurity.V1Beta1.Inputs.CertificateProviderInstanceArgs
            {
                PluginInstance = "string",
            },
            GrpcEndpoint = new GoogleNative.NetworkSecurity.V1Beta1.Inputs.GoogleCloudNetworksecurityV1beta1GrpcEndpointArgs
            {
                TargetUri = "string",
            },
        },
    },
    Sni = "string",
});
Copy
example, err := networksecurityv1beta1.NewClientTlsPolicy(ctx, "google-nativeClientTlsPolicyResource", &networksecurityv1beta1.ClientTlsPolicyArgs{
	ClientTlsPolicyId: pulumi.String("string"),
	ClientCertificate: &networksecurity.GoogleCloudNetworksecurityV1beta1CertificateProviderArgs{
		CertificateProviderInstance: &networksecurity.CertificateProviderInstanceArgs{
			PluginInstance: pulumi.String("string"),
		},
		GrpcEndpoint: &networksecurity.GoogleCloudNetworksecurityV1beta1GrpcEndpointArgs{
			TargetUri: pulumi.String("string"),
		},
	},
	Description: pulumi.String("string"),
	Labels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	Name:     pulumi.String("string"),
	Project:  pulumi.String("string"),
	ServerValidationCa: networksecurity.ValidationCAArray{
		&networksecurity.ValidationCAArgs{
			CertificateProviderInstance: &networksecurity.CertificateProviderInstanceArgs{
				PluginInstance: pulumi.String("string"),
			},
			GrpcEndpoint: &networksecurity.GoogleCloudNetworksecurityV1beta1GrpcEndpointArgs{
				TargetUri: pulumi.String("string"),
			},
		},
	},
	Sni: pulumi.String("string"),
})
Copy
var google_nativeClientTlsPolicyResource = new ClientTlsPolicy("google-nativeClientTlsPolicyResource", ClientTlsPolicyArgs.builder()
    .clientTlsPolicyId("string")
    .clientCertificate(GoogleCloudNetworksecurityV1beta1CertificateProviderArgs.builder()
        .certificateProviderInstance(CertificateProviderInstanceArgs.builder()
            .pluginInstance("string")
            .build())
        .grpcEndpoint(GoogleCloudNetworksecurityV1beta1GrpcEndpointArgs.builder()
            .targetUri("string")
            .build())
        .build())
    .description("string")
    .labels(Map.of("string", "string"))
    .location("string")
    .name("string")
    .project("string")
    .serverValidationCa(ValidationCAArgs.builder()
        .certificateProviderInstance(CertificateProviderInstanceArgs.builder()
            .pluginInstance("string")
            .build())
        .grpcEndpoint(GoogleCloudNetworksecurityV1beta1GrpcEndpointArgs.builder()
            .targetUri("string")
            .build())
        .build())
    .sni("string")
    .build());
Copy
google_native_client_tls_policy_resource = google_native.networksecurity.v1beta1.ClientTlsPolicy("google-nativeClientTlsPolicyResource",
    client_tls_policy_id="string",
    client_certificate={
        "certificate_provider_instance": {
            "plugin_instance": "string",
        },
        "grpc_endpoint": {
            "target_uri": "string",
        },
    },
    description="string",
    labels={
        "string": "string",
    },
    location="string",
    name="string",
    project="string",
    server_validation_ca=[{
        "certificate_provider_instance": {
            "plugin_instance": "string",
        },
        "grpc_endpoint": {
            "target_uri": "string",
        },
    }],
    sni="string")
Copy
const google_nativeClientTlsPolicyResource = new google_native.networksecurity.v1beta1.ClientTlsPolicy("google-nativeClientTlsPolicyResource", {
    clientTlsPolicyId: "string",
    clientCertificate: {
        certificateProviderInstance: {
            pluginInstance: "string",
        },
        grpcEndpoint: {
            targetUri: "string",
        },
    },
    description: "string",
    labels: {
        string: "string",
    },
    location: "string",
    name: "string",
    project: "string",
    serverValidationCa: [{
        certificateProviderInstance: {
            pluginInstance: "string",
        },
        grpcEndpoint: {
            targetUri: "string",
        },
    }],
    sni: "string",
});
Copy
type: google-native:networksecurity/v1beta1:ClientTlsPolicy
properties:
    clientCertificate:
        certificateProviderInstance:
            pluginInstance: string
        grpcEndpoint:
            targetUri: string
    clientTlsPolicyId: string
    description: string
    labels:
        string: string
    location: string
    name: string
    project: string
    serverValidationCa:
        - certificateProviderInstance:
            pluginInstance: string
          grpcEndpoint:
            targetUri: string
    sni: string
Copy

ClientTlsPolicy Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ClientTlsPolicy resource accepts the following input properties:

ClientTlsPolicyId
This property is required.
Changes to this property will trigger replacement.
string
Required. Short name of the ClientTlsPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "client_mtls_policy".
ClientCertificate Pulumi.GoogleNative.NetworkSecurity.V1Beta1.Inputs.GoogleCloudNetworksecurityV1beta1CertificateProvider
Optional. Defines a mechanism to provision client identity (public and private keys) for peer to peer authentication. The presence of this dictates mTLS.
Description string
Optional. Free-text description of the resource.
Labels Dictionary<string, string>
Optional. Set of label tags associated with the resource.
Location Changes to this property will trigger replacement. string
Name string
Name of the ClientTlsPolicy resource. It matches the pattern projects/*/locations/{location}/clientTlsPolicies/{client_tls_policy}
Project Changes to this property will trigger replacement. string
ServerValidationCa List<Pulumi.GoogleNative.NetworkSecurity.V1Beta1.Inputs.ValidationCA>
Optional. Defines the mechanism to obtain the Certificate Authority certificate to validate the server certificate. If empty, client does not validate the server certificate.
Sni string
Optional. Server Name Indication string to present to the server during TLS handshake. E.g: "secure.example.com".
ClientTlsPolicyId
This property is required.
Changes to this property will trigger replacement.
string
Required. Short name of the ClientTlsPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "client_mtls_policy".
ClientCertificate GoogleCloudNetworksecurityV1beta1CertificateProviderArgs
Optional. Defines a mechanism to provision client identity (public and private keys) for peer to peer authentication. The presence of this dictates mTLS.
Description string
Optional. Free-text description of the resource.
Labels map[string]string
Optional. Set of label tags associated with the resource.
Location Changes to this property will trigger replacement. string
Name string
Name of the ClientTlsPolicy resource. It matches the pattern projects/*/locations/{location}/clientTlsPolicies/{client_tls_policy}
Project Changes to this property will trigger replacement. string
ServerValidationCa []ValidationCAArgs
Optional. Defines the mechanism to obtain the Certificate Authority certificate to validate the server certificate. If empty, client does not validate the server certificate.
Sni string
Optional. Server Name Indication string to present to the server during TLS handshake. E.g: "secure.example.com".
clientTlsPolicyId
This property is required.
Changes to this property will trigger replacement.
String
Required. Short name of the ClientTlsPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "client_mtls_policy".
clientCertificate GoogleCloudNetworksecurityV1beta1CertificateProvider
Optional. Defines a mechanism to provision client identity (public and private keys) for peer to peer authentication. The presence of this dictates mTLS.
description String
Optional. Free-text description of the resource.
labels Map<String,String>
Optional. Set of label tags associated with the resource.
location Changes to this property will trigger replacement. String
name String
Name of the ClientTlsPolicy resource. It matches the pattern projects/*/locations/{location}/clientTlsPolicies/{client_tls_policy}
project Changes to this property will trigger replacement. String
serverValidationCa List<ValidationCA>
Optional. Defines the mechanism to obtain the Certificate Authority certificate to validate the server certificate. If empty, client does not validate the server certificate.
sni String
Optional. Server Name Indication string to present to the server during TLS handshake. E.g: "secure.example.com".
clientTlsPolicyId
This property is required.
Changes to this property will trigger replacement.
string
Required. Short name of the ClientTlsPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "client_mtls_policy".
clientCertificate GoogleCloudNetworksecurityV1beta1CertificateProvider
Optional. Defines a mechanism to provision client identity (public and private keys) for peer to peer authentication. The presence of this dictates mTLS.
description string
Optional. Free-text description of the resource.
labels {[key: string]: string}
Optional. Set of label tags associated with the resource.
location Changes to this property will trigger replacement. string
name string
Name of the ClientTlsPolicy resource. It matches the pattern projects/*/locations/{location}/clientTlsPolicies/{client_tls_policy}
project Changes to this property will trigger replacement. string
serverValidationCa ValidationCA[]
Optional. Defines the mechanism to obtain the Certificate Authority certificate to validate the server certificate. If empty, client does not validate the server certificate.
sni string
Optional. Server Name Indication string to present to the server during TLS handshake. E.g: "secure.example.com".
client_tls_policy_id
This property is required.
Changes to this property will trigger replacement.
str
Required. Short name of the ClientTlsPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "client_mtls_policy".
client_certificate GoogleCloudNetworksecurityV1beta1CertificateProviderArgs
Optional. Defines a mechanism to provision client identity (public and private keys) for peer to peer authentication. The presence of this dictates mTLS.
description str
Optional. Free-text description of the resource.
labels Mapping[str, str]
Optional. Set of label tags associated with the resource.
location Changes to this property will trigger replacement. str
name str
Name of the ClientTlsPolicy resource. It matches the pattern projects/*/locations/{location}/clientTlsPolicies/{client_tls_policy}
project Changes to this property will trigger replacement. str
server_validation_ca Sequence[ValidationCAArgs]
Optional. Defines the mechanism to obtain the Certificate Authority certificate to validate the server certificate. If empty, client does not validate the server certificate.
sni str
Optional. Server Name Indication string to present to the server during TLS handshake. E.g: "secure.example.com".
clientTlsPolicyId
This property is required.
Changes to this property will trigger replacement.
String
Required. Short name of the ClientTlsPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "client_mtls_policy".
clientCertificate Property Map
Optional. Defines a mechanism to provision client identity (public and private keys) for peer to peer authentication. The presence of this dictates mTLS.
description String
Optional. Free-text description of the resource.
labels Map<String>
Optional. Set of label tags associated with the resource.
location Changes to this property will trigger replacement. String
name String
Name of the ClientTlsPolicy resource. It matches the pattern projects/*/locations/{location}/clientTlsPolicies/{client_tls_policy}
project Changes to this property will trigger replacement. String
serverValidationCa List<Property Map>
Optional. Defines the mechanism to obtain the Certificate Authority certificate to validate the server certificate. If empty, client does not validate the server certificate.
sni String
Optional. Server Name Indication string to present to the server during TLS handshake. E.g: "secure.example.com".

Outputs

All input properties are implicitly available as output properties. Additionally, the ClientTlsPolicy resource produces the following output properties:

CreateTime string
The timestamp when the resource was created.
Id string
The provider-assigned unique ID for this managed resource.
UpdateTime string
The timestamp when the resource was updated.
CreateTime string
The timestamp when the resource was created.
Id string
The provider-assigned unique ID for this managed resource.
UpdateTime string
The timestamp when the resource was updated.
createTime String
The timestamp when the resource was created.
id String
The provider-assigned unique ID for this managed resource.
updateTime String
The timestamp when the resource was updated.
createTime string
The timestamp when the resource was created.
id string
The provider-assigned unique ID for this managed resource.
updateTime string
The timestamp when the resource was updated.
create_time str
The timestamp when the resource was created.
id str
The provider-assigned unique ID for this managed resource.
update_time str
The timestamp when the resource was updated.
createTime String
The timestamp when the resource was created.
id String
The provider-assigned unique ID for this managed resource.
updateTime String
The timestamp when the resource was updated.

Supporting Types

CertificateProviderInstance
, CertificateProviderInstanceArgs

PluginInstance This property is required. string
Plugin instance name, used to locate and load CertificateProvider instance configuration. Set to "google_cloud_private_spiffe" to use Certificate Authority Service certificate provider instance.
PluginInstance This property is required. string
Plugin instance name, used to locate and load CertificateProvider instance configuration. Set to "google_cloud_private_spiffe" to use Certificate Authority Service certificate provider instance.
pluginInstance This property is required. String
Plugin instance name, used to locate and load CertificateProvider instance configuration. Set to "google_cloud_private_spiffe" to use Certificate Authority Service certificate provider instance.
pluginInstance This property is required. string
Plugin instance name, used to locate and load CertificateProvider instance configuration. Set to "google_cloud_private_spiffe" to use Certificate Authority Service certificate provider instance.
plugin_instance This property is required. str
Plugin instance name, used to locate and load CertificateProvider instance configuration. Set to "google_cloud_private_spiffe" to use Certificate Authority Service certificate provider instance.
pluginInstance This property is required. String
Plugin instance name, used to locate and load CertificateProvider instance configuration. Set to "google_cloud_private_spiffe" to use Certificate Authority Service certificate provider instance.

CertificateProviderInstanceResponse
, CertificateProviderInstanceResponseArgs

PluginInstance This property is required. string
Plugin instance name, used to locate and load CertificateProvider instance configuration. Set to "google_cloud_private_spiffe" to use Certificate Authority Service certificate provider instance.
PluginInstance This property is required. string
Plugin instance name, used to locate and load CertificateProvider instance configuration. Set to "google_cloud_private_spiffe" to use Certificate Authority Service certificate provider instance.
pluginInstance This property is required. String
Plugin instance name, used to locate and load CertificateProvider instance configuration. Set to "google_cloud_private_spiffe" to use Certificate Authority Service certificate provider instance.
pluginInstance This property is required. string
Plugin instance name, used to locate and load CertificateProvider instance configuration. Set to "google_cloud_private_spiffe" to use Certificate Authority Service certificate provider instance.
plugin_instance This property is required. str
Plugin instance name, used to locate and load CertificateProvider instance configuration. Set to "google_cloud_private_spiffe" to use Certificate Authority Service certificate provider instance.
pluginInstance This property is required. String
Plugin instance name, used to locate and load CertificateProvider instance configuration. Set to "google_cloud_private_spiffe" to use Certificate Authority Service certificate provider instance.

GoogleCloudNetworksecurityV1beta1CertificateProvider
, GoogleCloudNetworksecurityV1beta1CertificateProviderArgs

CertificateProviderInstance Pulumi.GoogleNative.NetworkSecurity.V1Beta1.Inputs.CertificateProviderInstance
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
GrpcEndpoint Pulumi.GoogleNative.NetworkSecurity.V1Beta1.Inputs.GoogleCloudNetworksecurityV1beta1GrpcEndpoint
gRPC specific configuration to access the gRPC server to obtain the cert and private key.
CertificateProviderInstance CertificateProviderInstance
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
GrpcEndpoint GoogleCloudNetworksecurityV1beta1GrpcEndpoint
gRPC specific configuration to access the gRPC server to obtain the cert and private key.
certificateProviderInstance CertificateProviderInstance
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
grpcEndpoint GoogleCloudNetworksecurityV1beta1GrpcEndpoint
gRPC specific configuration to access the gRPC server to obtain the cert and private key.
certificateProviderInstance CertificateProviderInstance
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
grpcEndpoint GoogleCloudNetworksecurityV1beta1GrpcEndpoint
gRPC specific configuration to access the gRPC server to obtain the cert and private key.
certificate_provider_instance CertificateProviderInstance
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
grpc_endpoint GoogleCloudNetworksecurityV1beta1GrpcEndpoint
gRPC specific configuration to access the gRPC server to obtain the cert and private key.
certificateProviderInstance Property Map
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
grpcEndpoint Property Map
gRPC specific configuration to access the gRPC server to obtain the cert and private key.

GoogleCloudNetworksecurityV1beta1CertificateProviderResponse
, GoogleCloudNetworksecurityV1beta1CertificateProviderResponseArgs

CertificateProviderInstance This property is required. Pulumi.GoogleNative.NetworkSecurity.V1Beta1.Inputs.CertificateProviderInstanceResponse
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
GrpcEndpoint This property is required. Pulumi.GoogleNative.NetworkSecurity.V1Beta1.Inputs.GoogleCloudNetworksecurityV1beta1GrpcEndpointResponse
gRPC specific configuration to access the gRPC server to obtain the cert and private key.
CertificateProviderInstance This property is required. CertificateProviderInstanceResponse
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
GrpcEndpoint This property is required. GoogleCloudNetworksecurityV1beta1GrpcEndpointResponse
gRPC specific configuration to access the gRPC server to obtain the cert and private key.
certificateProviderInstance This property is required. CertificateProviderInstanceResponse
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
grpcEndpoint This property is required. GoogleCloudNetworksecurityV1beta1GrpcEndpointResponse
gRPC specific configuration to access the gRPC server to obtain the cert and private key.
certificateProviderInstance This property is required. CertificateProviderInstanceResponse
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
grpcEndpoint This property is required. GoogleCloudNetworksecurityV1beta1GrpcEndpointResponse
gRPC specific configuration to access the gRPC server to obtain the cert and private key.
certificate_provider_instance This property is required. CertificateProviderInstanceResponse
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
grpc_endpoint This property is required. GoogleCloudNetworksecurityV1beta1GrpcEndpointResponse
gRPC specific configuration to access the gRPC server to obtain the cert and private key.
certificateProviderInstance This property is required. Property Map
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
grpcEndpoint This property is required. Property Map
gRPC specific configuration to access the gRPC server to obtain the cert and private key.

GoogleCloudNetworksecurityV1beta1GrpcEndpoint
, GoogleCloudNetworksecurityV1beta1GrpcEndpointArgs

TargetUri This property is required. string
The target URI of the gRPC endpoint. Only UDS path is supported, and should start with "unix:".
TargetUri This property is required. string
The target URI of the gRPC endpoint. Only UDS path is supported, and should start with "unix:".
targetUri This property is required. String
The target URI of the gRPC endpoint. Only UDS path is supported, and should start with "unix:".
targetUri This property is required. string
The target URI of the gRPC endpoint. Only UDS path is supported, and should start with "unix:".
target_uri This property is required. str
The target URI of the gRPC endpoint. Only UDS path is supported, and should start with "unix:".
targetUri This property is required. String
The target URI of the gRPC endpoint. Only UDS path is supported, and should start with "unix:".

GoogleCloudNetworksecurityV1beta1GrpcEndpointResponse
, GoogleCloudNetworksecurityV1beta1GrpcEndpointResponseArgs

TargetUri This property is required. string
The target URI of the gRPC endpoint. Only UDS path is supported, and should start with "unix:".
TargetUri This property is required. string
The target URI of the gRPC endpoint. Only UDS path is supported, and should start with "unix:".
targetUri This property is required. String
The target URI of the gRPC endpoint. Only UDS path is supported, and should start with "unix:".
targetUri This property is required. string
The target URI of the gRPC endpoint. Only UDS path is supported, and should start with "unix:".
target_uri This property is required. str
The target URI of the gRPC endpoint. Only UDS path is supported, and should start with "unix:".
targetUri This property is required. String
The target URI of the gRPC endpoint. Only UDS path is supported, and should start with "unix:".

ValidationCA
, ValidationCAArgs

CertificateProviderInstance Pulumi.GoogleNative.NetworkSecurity.V1Beta1.Inputs.CertificateProviderInstance
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
GrpcEndpoint Pulumi.GoogleNative.NetworkSecurity.V1Beta1.Inputs.GoogleCloudNetworksecurityV1beta1GrpcEndpoint
gRPC specific configuration to access the gRPC server to obtain the CA certificate.
CertificateProviderInstance CertificateProviderInstance
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
GrpcEndpoint GoogleCloudNetworksecurityV1beta1GrpcEndpoint
gRPC specific configuration to access the gRPC server to obtain the CA certificate.
certificateProviderInstance CertificateProviderInstance
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
grpcEndpoint GoogleCloudNetworksecurityV1beta1GrpcEndpoint
gRPC specific configuration to access the gRPC server to obtain the CA certificate.
certificateProviderInstance CertificateProviderInstance
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
grpcEndpoint GoogleCloudNetworksecurityV1beta1GrpcEndpoint
gRPC specific configuration to access the gRPC server to obtain the CA certificate.
certificate_provider_instance CertificateProviderInstance
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
grpc_endpoint GoogleCloudNetworksecurityV1beta1GrpcEndpoint
gRPC specific configuration to access the gRPC server to obtain the CA certificate.
certificateProviderInstance Property Map
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
grpcEndpoint Property Map
gRPC specific configuration to access the gRPC server to obtain the CA certificate.

ValidationCAResponse
, ValidationCAResponseArgs

CertificateProviderInstance This property is required. Pulumi.GoogleNative.NetworkSecurity.V1Beta1.Inputs.CertificateProviderInstanceResponse
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
GrpcEndpoint This property is required. Pulumi.GoogleNative.NetworkSecurity.V1Beta1.Inputs.GoogleCloudNetworksecurityV1beta1GrpcEndpointResponse
gRPC specific configuration to access the gRPC server to obtain the CA certificate.
CertificateProviderInstance This property is required. CertificateProviderInstanceResponse
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
GrpcEndpoint This property is required. GoogleCloudNetworksecurityV1beta1GrpcEndpointResponse
gRPC specific configuration to access the gRPC server to obtain the CA certificate.
certificateProviderInstance This property is required. CertificateProviderInstanceResponse
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
grpcEndpoint This property is required. GoogleCloudNetworksecurityV1beta1GrpcEndpointResponse
gRPC specific configuration to access the gRPC server to obtain the CA certificate.
certificateProviderInstance This property is required. CertificateProviderInstanceResponse
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
grpcEndpoint This property is required. GoogleCloudNetworksecurityV1beta1GrpcEndpointResponse
gRPC specific configuration to access the gRPC server to obtain the CA certificate.
certificate_provider_instance This property is required. CertificateProviderInstanceResponse
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
grpc_endpoint This property is required. GoogleCloudNetworksecurityV1beta1GrpcEndpointResponse
gRPC specific configuration to access the gRPC server to obtain the CA certificate.
certificateProviderInstance This property is required. Property Map
The certificate provider instance specification that will be passed to the data plane, which will be used to load necessary credential information.
grpcEndpoint This property is required. Property Map
gRPC specific configuration to access the gRPC server to obtain the CA certificate.

Package Details

Repository
Google Cloud Native pulumi/pulumi-google-native
License
Apache-2.0

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi