1. Packages
  2. Google Cloud Native
  3. API Docs
  4. beyondcorp
  5. beyondcorp/v1alpha
  6. ProxyConfig

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.beyondcorp/v1alpha.ProxyConfig

Explore with Pulumi AI

google-native logo

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 BeyondCorp Enterprise ProxyConfig in a given organization and PartnerTenant. Can only be called by on onboarded Beyondcorp Enterprise partner. Auto-naming is currently not supported for this resource.

    Create ProxyConfig Resource

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

    Constructor syntax

    new ProxyConfig(name: string, args: ProxyConfigArgs, opts?: CustomResourceOptions);
    @overload
    def ProxyConfig(resource_name: str,
                    args: ProxyConfigArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def ProxyConfig(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    organization_id: Optional[str] = None,
                    partner_tenant_id: Optional[str] = None,
                    proxy_uri: Optional[str] = None,
                    routing_info: Optional[GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfoArgs] = None,
                    transport_info: Optional[GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfoArgs] = None,
                    display_name: Optional[str] = None,
                    encryption_info: Optional[GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfoArgs] = None,
                    request_id: Optional[str] = None)
    func NewProxyConfig(ctx *Context, name string, args ProxyConfigArgs, opts ...ResourceOption) (*ProxyConfig, error)
    public ProxyConfig(string name, ProxyConfigArgs args, CustomResourceOptions? opts = null)
    public ProxyConfig(String name, ProxyConfigArgs args)
    public ProxyConfig(String name, ProxyConfigArgs args, CustomResourceOptions options)
    
    type: google-native:beyondcorp/v1alpha:ProxyConfig
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

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

    Example

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

    var proxyConfigResource = new GoogleNative.BeyondCorp.V1Alpha.ProxyConfig("proxyConfigResource", new()
    {
        OrganizationId = "string",
        PartnerTenantId = "string",
        ProxyUri = "string",
        RoutingInfo = new GoogleNative.BeyondCorp.V1Alpha.Inputs.GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfoArgs
        {
            PacUri = "string",
        },
        TransportInfo = new GoogleNative.BeyondCorp.V1Alpha.Inputs.GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfoArgs
        {
            ServerCaCertPem = "string",
            SslDecryptCaCertPem = "string",
        },
        DisplayName = "string",
        EncryptionInfo = new GoogleNative.BeyondCorp.V1Alpha.Inputs.GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfoArgs
        {
            EncryptionSaEmail = "string",
            Jwk = "string",
        },
        RequestId = "string",
    });
    
    example, err := beyondcorpv1alpha.NewProxyConfig(ctx, "proxyConfigResource", &beyondcorpv1alpha.ProxyConfigArgs{
    OrganizationId: pulumi.String("string"),
    PartnerTenantId: pulumi.String("string"),
    ProxyUri: pulumi.String("string"),
    RoutingInfo: &beyondcorp.GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfoArgs{
    PacUri: pulumi.String("string"),
    },
    TransportInfo: &beyondcorp.GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfoArgs{
    ServerCaCertPem: pulumi.String("string"),
    SslDecryptCaCertPem: pulumi.String("string"),
    },
    DisplayName: pulumi.String("string"),
    EncryptionInfo: &beyondcorp.GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfoArgs{
    EncryptionSaEmail: pulumi.String("string"),
    Jwk: pulumi.String("string"),
    },
    RequestId: pulumi.String("string"),
    })
    
    var proxyConfigResource = new ProxyConfig("proxyConfigResource", ProxyConfigArgs.builder()        
        .organizationId("string")
        .partnerTenantId("string")
        .proxyUri("string")
        .routingInfo(GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfoArgs.builder()
            .pacUri("string")
            .build())
        .transportInfo(GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfoArgs.builder()
            .serverCaCertPem("string")
            .sslDecryptCaCertPem("string")
            .build())
        .displayName("string")
        .encryptionInfo(GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfoArgs.builder()
            .encryptionSaEmail("string")
            .jwk("string")
            .build())
        .requestId("string")
        .build());
    
    proxy_config_resource = google_native.beyondcorp.v1alpha.ProxyConfig("proxyConfigResource",
        organization_id="string",
        partner_tenant_id="string",
        proxy_uri="string",
        routing_info=google_native.beyondcorp.v1alpha.GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfoArgs(
            pac_uri="string",
        ),
        transport_info=google_native.beyondcorp.v1alpha.GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfoArgs(
            server_ca_cert_pem="string",
            ssl_decrypt_ca_cert_pem="string",
        ),
        display_name="string",
        encryption_info=google_native.beyondcorp.v1alpha.GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfoArgs(
            encryption_sa_email="string",
            jwk="string",
        ),
        request_id="string")
    
    const proxyConfigResource = new google_native.beyondcorp.v1alpha.ProxyConfig("proxyConfigResource", {
        organizationId: "string",
        partnerTenantId: "string",
        proxyUri: "string",
        routingInfo: {
            pacUri: "string",
        },
        transportInfo: {
            serverCaCertPem: "string",
            sslDecryptCaCertPem: "string",
        },
        displayName: "string",
        encryptionInfo: {
            encryptionSaEmail: "string",
            jwk: "string",
        },
        requestId: "string",
    });
    
    type: google-native:beyondcorp/v1alpha:ProxyConfig
    properties:
        displayName: string
        encryptionInfo:
            encryptionSaEmail: string
            jwk: string
        organizationId: string
        partnerTenantId: string
        proxyUri: string
        requestId: string
        routingInfo:
            pacUri: string
        transportInfo:
            serverCaCertPem: string
            sslDecryptCaCertPem: string
    

    ProxyConfig Resource Properties

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

    Inputs

    The ProxyConfig resource accepts the following input properties:

    OrganizationId string
    PartnerTenantId string
    ProxyUri string
    The URI of the proxy server.
    RoutingInfo Pulumi.GoogleNative.BeyondCorp.V1Alpha.Inputs.GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo
    Routing info to direct traffic to the proxy server.
    TransportInfo Pulumi.GoogleNative.BeyondCorp.V1Alpha.Inputs.GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo
    Transport layer information to verify for the proxy server.
    DisplayName string
    Optional. An arbitrary caller-provided name for the ProxyConfig. Cannot exceed 64 characters.
    EncryptionInfo Pulumi.GoogleNative.BeyondCorp.V1Alpha.Inputs.GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo
    Optional. Information to encrypt JWT for the proxy server.
    RequestId string
    Optional. 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. The server will guarantee that for at least 60 minutes since the first request. 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).
    OrganizationId string
    PartnerTenantId string
    ProxyUri string
    The URI of the proxy server.
    RoutingInfo GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfoArgs
    Routing info to direct traffic to the proxy server.
    TransportInfo GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfoArgs
    Transport layer information to verify for the proxy server.
    DisplayName string
    Optional. An arbitrary caller-provided name for the ProxyConfig. Cannot exceed 64 characters.
    EncryptionInfo GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfoArgs
    Optional. Information to encrypt JWT for the proxy server.
    RequestId string
    Optional. 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. The server will guarantee that for at least 60 minutes since the first request. 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).
    organizationId String
    partnerTenantId String
    proxyUri String
    The URI of the proxy server.
    routingInfo GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo
    Routing info to direct traffic to the proxy server.
    transportInfo GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo
    Transport layer information to verify for the proxy server.
    displayName String
    Optional. An arbitrary caller-provided name for the ProxyConfig. Cannot exceed 64 characters.
    encryptionInfo GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo
    Optional. Information to encrypt JWT for the proxy server.
    requestId String
    Optional. 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. The server will guarantee that for at least 60 minutes since the first request. 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).
    organizationId string
    partnerTenantId string
    proxyUri string
    The URI of the proxy server.
    routingInfo GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo
    Routing info to direct traffic to the proxy server.
    transportInfo GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo
    Transport layer information to verify for the proxy server.
    displayName string
    Optional. An arbitrary caller-provided name for the ProxyConfig. Cannot exceed 64 characters.
    encryptionInfo GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo
    Optional. Information to encrypt JWT for the proxy server.
    requestId string
    Optional. 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. The server will guarantee that for at least 60 minutes since the first request. 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).
    organization_id str
    partner_tenant_id str
    proxy_uri str
    The URI of the proxy server.
    routing_info GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfoArgs
    Routing info to direct traffic to the proxy server.
    transport_info GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfoArgs
    Transport layer information to verify for the proxy server.
    display_name str
    Optional. An arbitrary caller-provided name for the ProxyConfig. Cannot exceed 64 characters.
    encryption_info GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfoArgs
    Optional. Information to encrypt JWT for the proxy server.
    request_id str
    Optional. 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. The server will guarantee that for at least 60 minutes since the first request. 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).
    organizationId String
    partnerTenantId String
    proxyUri String
    The URI of the proxy server.
    routingInfo Property Map
    Routing info to direct traffic to the proxy server.
    transportInfo Property Map
    Transport layer information to verify for the proxy server.
    displayName String
    Optional. An arbitrary caller-provided name for the ProxyConfig. Cannot exceed 64 characters.
    encryptionInfo Property Map
    Optional. Information to encrypt JWT for the proxy server.
    requestId String
    Optional. 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. The server will guarantee that for at least 60 minutes since the first request. 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).

    Outputs

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

    CreateTime string
    Timestamp when the resource was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    ProxyConfig resource name.
    UpdateTime string
    Timestamp when the resource was last modified.
    CreateTime string
    Timestamp when the resource was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    ProxyConfig resource name.
    UpdateTime string
    Timestamp when the resource was last modified.
    createTime String
    Timestamp when the resource was created.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    ProxyConfig resource name.
    updateTime String
    Timestamp when the resource was last modified.
    createTime string
    Timestamp when the resource was created.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    ProxyConfig resource name.
    updateTime string
    Timestamp when the resource was last modified.
    create_time str
    Timestamp when the resource was created.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    ProxyConfig resource name.
    update_time str
    Timestamp when the resource was last modified.
    createTime String
    Timestamp when the resource was created.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    ProxyConfig resource name.
    updateTime String
    Timestamp when the resource was last modified.

    Supporting Types

    GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo, GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfoArgs

    EncryptionSaEmail string
    Optional. Service Account for encryption key.
    Jwk string
    Optional. JWK in string.
    EncryptionSaEmail string
    Optional. Service Account for encryption key.
    Jwk string
    Optional. JWK in string.
    encryptionSaEmail String
    Optional. Service Account for encryption key.
    jwk String
    Optional. JWK in string.
    encryptionSaEmail string
    Optional. Service Account for encryption key.
    jwk string
    Optional. JWK in string.
    encryption_sa_email str
    Optional. Service Account for encryption key.
    jwk str
    Optional. JWK in string.
    encryptionSaEmail String
    Optional. Service Account for encryption key.
    jwk String
    Optional. JWK in string.

    GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfoResponse, GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfoResponseArgs

    EncryptionSaEmail string
    Optional. Service Account for encryption key.
    Jwk string
    Optional. JWK in string.
    EncryptionSaEmail string
    Optional. Service Account for encryption key.
    Jwk string
    Optional. JWK in string.
    encryptionSaEmail String
    Optional. Service Account for encryption key.
    jwk String
    Optional. JWK in string.
    encryptionSaEmail string
    Optional. Service Account for encryption key.
    jwk string
    Optional. JWK in string.
    encryption_sa_email str
    Optional. Service Account for encryption key.
    jwk str
    Optional. JWK in string.
    encryptionSaEmail String
    Optional. Service Account for encryption key.
    jwk String
    Optional. JWK in string.

    GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo, GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfoArgs

    PacUri string
    Proxy Auto-Configuration (PAC) URI.
    PacUri string
    Proxy Auto-Configuration (PAC) URI.
    pacUri String
    Proxy Auto-Configuration (PAC) URI.
    pacUri string
    Proxy Auto-Configuration (PAC) URI.
    pac_uri str
    Proxy Auto-Configuration (PAC) URI.
    pacUri String
    Proxy Auto-Configuration (PAC) URI.

    GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfoResponse, GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfoResponseArgs

    PacUri string
    Proxy Auto-Configuration (PAC) URI.
    PacUri string
    Proxy Auto-Configuration (PAC) URI.
    pacUri String
    Proxy Auto-Configuration (PAC) URI.
    pacUri string
    Proxy Auto-Configuration (PAC) URI.
    pac_uri str
    Proxy Auto-Configuration (PAC) URI.
    pacUri String
    Proxy Auto-Configuration (PAC) URI.

    GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo, GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfoArgs

    ServerCaCertPem string
    PEM encoded CA certificate associated with the proxy server certificate.
    SslDecryptCaCertPem string
    Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
    ServerCaCertPem string
    PEM encoded CA certificate associated with the proxy server certificate.
    SslDecryptCaCertPem string
    Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
    serverCaCertPem String
    PEM encoded CA certificate associated with the proxy server certificate.
    sslDecryptCaCertPem String
    Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
    serverCaCertPem string
    PEM encoded CA certificate associated with the proxy server certificate.
    sslDecryptCaCertPem string
    Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
    server_ca_cert_pem str
    PEM encoded CA certificate associated with the proxy server certificate.
    ssl_decrypt_ca_cert_pem str
    Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
    serverCaCertPem String
    PEM encoded CA certificate associated with the proxy server certificate.
    sslDecryptCaCertPem String
    Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.

    GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfoResponse, GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfoResponseArgs

    ServerCaCertPem string
    PEM encoded CA certificate associated with the proxy server certificate.
    SslDecryptCaCertPem string
    Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
    ServerCaCertPem string
    PEM encoded CA certificate associated with the proxy server certificate.
    SslDecryptCaCertPem string
    Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
    serverCaCertPem String
    PEM encoded CA certificate associated with the proxy server certificate.
    sslDecryptCaCertPem String
    Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
    serverCaCertPem string
    PEM encoded CA certificate associated with the proxy server certificate.
    sslDecryptCaCertPem string
    Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
    server_ca_cert_pem str
    PEM encoded CA certificate associated with the proxy server certificate.
    ssl_decrypt_ca_cert_pem str
    Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
    serverCaCertPem String
    PEM encoded CA certificate associated with the proxy server certificate.
    sslDecryptCaCertPem String
    Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.

    Package Details

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

    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