Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.beyondcorp/v1alpha.ProxyConfig
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
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.
Constructor 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={
        "pac_uri": "string",
    },
    transport_info={
        "server_ca_cert_pem": "string",
        "ssl_decrypt_ca_cert_pem": "string",
    },
    display_name="string",
    encryption_info={
        "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ProxyConfig resource accepts the following input properties:
- OrganizationId string
- PartnerTenant stringId 
- ProxyUri string
- The URI of the proxy server.
- RoutingInfo Pulumi.Google Native. Beyond Corp. V1Alpha. Inputs. Google Cloud Beyondcorp Partnerservices V1alpha Routing Info 
- Routing info to direct traffic to the proxy server.
- TransportInfo Pulumi.Google Native. Beyond Corp. V1Alpha. Inputs. Google Cloud Beyondcorp Partnerservices V1alpha Transport Info 
- 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.Google Native. Beyond Corp. V1Alpha. Inputs. Google Cloud Beyondcorp Partnerservices V1alpha Encryption Info 
- 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
- PartnerTenant stringId 
- ProxyUri string
- The URI of the proxy server.
- RoutingInfo GoogleCloud Beyondcorp Partnerservices V1alpha Routing Info Args 
- Routing info to direct traffic to the proxy server.
- TransportInfo GoogleCloud Beyondcorp Partnerservices V1alpha Transport Info Args 
- 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 GoogleCloud Beyondcorp Partnerservices V1alpha Encryption Info Args 
- 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
- partnerTenant StringId 
- proxyUri String
- The URI of the proxy server.
- routingInfo GoogleCloud Beyondcorp Partnerservices V1alpha Routing Info 
- Routing info to direct traffic to the proxy server.
- transportInfo GoogleCloud Beyondcorp Partnerservices V1alpha Transport Info 
- 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 GoogleCloud Beyondcorp Partnerservices V1alpha Encryption Info 
- 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
- partnerTenant stringId 
- proxyUri string
- The URI of the proxy server.
- routingInfo GoogleCloud Beyondcorp Partnerservices V1alpha Routing Info 
- Routing info to direct traffic to the proxy server.
- transportInfo GoogleCloud Beyondcorp Partnerservices V1alpha Transport Info 
- 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 GoogleCloud Beyondcorp Partnerservices V1alpha Encryption Info 
- 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_ strid 
- proxy_uri str
- The URI of the proxy server.
- routing_info GoogleCloud Beyondcorp Partnerservices V1alpha Routing Info Args 
- Routing info to direct traffic to the proxy server.
- transport_info GoogleCloud Beyondcorp Partnerservices V1alpha Transport Info Args 
- 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 GoogleCloud Beyondcorp Partnerservices V1alpha Encryption Info Args 
- 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
- partnerTenant StringId 
- 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              
- EncryptionSa stringEmail 
- Optional. Service Account for encryption key.
- Jwk string
- Optional. JWK in string.
- EncryptionSa stringEmail 
- Optional. Service Account for encryption key.
- Jwk string
- Optional. JWK in string.
- encryptionSa StringEmail 
- Optional. Service Account for encryption key.
- jwk String
- Optional. JWK in string.
- encryptionSa stringEmail 
- Optional. Service Account for encryption key.
- jwk string
- Optional. JWK in string.
- encryption_sa_ stremail 
- Optional. Service Account for encryption key.
- jwk str
- Optional. JWK in string.
- encryptionSa StringEmail 
- Optional. Service Account for encryption key.
- jwk String
- Optional. JWK in string.
GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfoResponse, GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfoResponseArgs                
- EncryptionSa stringEmail 
- Optional. Service Account for encryption key.
- Jwk string
- Optional. JWK in string.
- EncryptionSa stringEmail 
- Optional. Service Account for encryption key.
- Jwk string
- Optional. JWK in string.
- encryptionSa StringEmail 
- Optional. Service Account for encryption key.
- jwk String
- Optional. JWK in string.
- encryptionSa stringEmail 
- Optional. Service Account for encryption key.
- jwk string
- Optional. JWK in string.
- encryption_sa_ stremail 
- Optional. Service Account for encryption key.
- jwk str
- Optional. JWK in string.
- encryptionSa StringEmail 
- 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              
- ServerCa stringCert Pem 
- PEM encoded CA certificate associated with the proxy server certificate.
- SslDecrypt stringCa Cert Pem 
- Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
- ServerCa stringCert Pem 
- PEM encoded CA certificate associated with the proxy server certificate.
- SslDecrypt stringCa Cert Pem 
- Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
- serverCa StringCert Pem 
- PEM encoded CA certificate associated with the proxy server certificate.
- sslDecrypt StringCa Cert Pem 
- Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
- serverCa stringCert Pem 
- PEM encoded CA certificate associated with the proxy server certificate.
- sslDecrypt stringCa Cert Pem 
- Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
- server_ca_ strcert_ pem 
- PEM encoded CA certificate associated with the proxy server certificate.
- ssl_decrypt_ strca_ cert_ pem 
- Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
- serverCa StringCert Pem 
- PEM encoded CA certificate associated with the proxy server certificate.
- sslDecrypt StringCa Cert Pem 
- Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfoResponse, GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfoResponseArgs                
- ServerCa stringCert Pem 
- PEM encoded CA certificate associated with the proxy server certificate.
- SslDecrypt stringCa Cert Pem 
- Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
- ServerCa stringCert Pem 
- PEM encoded CA certificate associated with the proxy server certificate.
- SslDecrypt stringCa Cert Pem 
- Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
- serverCa StringCert Pem 
- PEM encoded CA certificate associated with the proxy server certificate.
- sslDecrypt StringCa Cert Pem 
- Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
- serverCa stringCert Pem 
- PEM encoded CA certificate associated with the proxy server certificate.
- sslDecrypt stringCa Cert Pem 
- Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
- server_ca_ strcert_ pem 
- PEM encoded CA certificate associated with the proxy server certificate.
- ssl_decrypt_ strca_ cert_ pem 
- Optional. PEM encoded CA certificate associated with the certificate used by proxy server for SSL decryption.
- serverCa StringCert Pem 
- PEM encoded CA certificate associated with the proxy server certificate.
- sslDecrypt StringCa Cert Pem 
- 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 Cloud Native is in preview. Google Cloud Classic is fully supported.