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

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.PartnerTenant

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

    Create PartnerTenant Resource

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

    Constructor syntax

    new PartnerTenant(name: string, args: PartnerTenantArgs, opts?: CustomResourceOptions);
    @overload
    def PartnerTenant(resource_name: str,
                      args: PartnerTenantArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def PartnerTenant(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      organization_id: Optional[str] = None,
                      display_name: Optional[str] = None,
                      group: Optional[GoogleCloudBeyondcorpPartnerservicesV1alphaGroupArgs] = None,
                      partner_metadata: Optional[GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadataArgs] = None,
                      request_id: Optional[str] = None)
    func NewPartnerTenant(ctx *Context, name string, args PartnerTenantArgs, opts ...ResourceOption) (*PartnerTenant, error)
    public PartnerTenant(string name, PartnerTenantArgs args, CustomResourceOptions? opts = null)
    public PartnerTenant(String name, PartnerTenantArgs args)
    public PartnerTenant(String name, PartnerTenantArgs args, CustomResourceOptions options)
    
    type: google-native:beyondcorp/v1alpha:PartnerTenant
    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 PartnerTenantArgs
    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 PartnerTenantArgs
    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 PartnerTenantArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PartnerTenantArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PartnerTenantArgs
    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 partnerTenantResource = new GoogleNative.BeyondCorp.V1Alpha.PartnerTenant("partnerTenantResource", new()
    {
        OrganizationId = "string",
        DisplayName = "string",
        Group = new GoogleNative.BeyondCorp.V1Alpha.Inputs.GoogleCloudBeyondcorpPartnerservicesV1alphaGroupArgs
        {
            Email = "string",
            Id = "string",
        },
        PartnerMetadata = new GoogleNative.BeyondCorp.V1Alpha.Inputs.GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadataArgs
        {
            InternalTenantId = "string",
            PartnerTenantId = "string",
        },
        RequestId = "string",
    });
    
    example, err := beyondcorpv1alpha.NewPartnerTenant(ctx, "partnerTenantResource", &beyondcorpv1alpha.PartnerTenantArgs{
    OrganizationId: pulumi.String("string"),
    DisplayName: pulumi.String("string"),
    Group: &beyondcorp.GoogleCloudBeyondcorpPartnerservicesV1alphaGroupArgs{
    Email: pulumi.String("string"),
    Id: pulumi.String("string"),
    },
    PartnerMetadata: &beyondcorp.GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadataArgs{
    InternalTenantId: pulumi.String("string"),
    PartnerTenantId: pulumi.String("string"),
    },
    RequestId: pulumi.String("string"),
    })
    
    var partnerTenantResource = new PartnerTenant("partnerTenantResource", PartnerTenantArgs.builder()        
        .organizationId("string")
        .displayName("string")
        .group(GoogleCloudBeyondcorpPartnerservicesV1alphaGroupArgs.builder()
            .email("string")
            .id("string")
            .build())
        .partnerMetadata(GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadataArgs.builder()
            .internalTenantId("string")
            .partnerTenantId("string")
            .build())
        .requestId("string")
        .build());
    
    partner_tenant_resource = google_native.beyondcorp.v1alpha.PartnerTenant("partnerTenantResource",
        organization_id="string",
        display_name="string",
        group=google_native.beyondcorp.v1alpha.GoogleCloudBeyondcorpPartnerservicesV1alphaGroupArgs(
            email="string",
            id="string",
        ),
        partner_metadata=google_native.beyondcorp.v1alpha.GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadataArgs(
            internal_tenant_id="string",
            partner_tenant_id="string",
        ),
        request_id="string")
    
    const partnerTenantResource = new google_native.beyondcorp.v1alpha.PartnerTenant("partnerTenantResource", {
        organizationId: "string",
        displayName: "string",
        group: {
            email: "string",
            id: "string",
        },
        partnerMetadata: {
            internalTenantId: "string",
            partnerTenantId: "string",
        },
        requestId: "string",
    });
    
    type: google-native:beyondcorp/v1alpha:PartnerTenant
    properties:
        displayName: string
        group:
            email: string
            id: string
        organizationId: string
        partnerMetadata:
            internalTenantId: string
            partnerTenantId: string
        requestId: string
    

    PartnerTenant 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 PartnerTenant resource accepts the following input properties:

    OrganizationId string
    DisplayName string
    Optional. An arbitrary caller-provided name for the PartnerTenant. Cannot exceed 64 characters.
    Group Pulumi.GoogleNative.BeyondCorp.V1Alpha.Inputs.GoogleCloudBeyondcorpPartnerservicesV1alphaGroup
    Optional. Group information for the users enabled to use the partnerTenant. If the group information is not provided then the partnerTenant will be enabled for all users.
    PartnerMetadata Pulumi.GoogleNative.BeyondCorp.V1Alpha.Inputs.GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata
    Optional. Metadata provided by the Partner associated with PartnerTenant.
    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
    DisplayName string
    Optional. An arbitrary caller-provided name for the PartnerTenant. Cannot exceed 64 characters.
    Group GoogleCloudBeyondcorpPartnerservicesV1alphaGroupArgs
    Optional. Group information for the users enabled to use the partnerTenant. If the group information is not provided then the partnerTenant will be enabled for all users.
    PartnerMetadata GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadataArgs
    Optional. Metadata provided by the Partner associated with PartnerTenant.
    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
    displayName String
    Optional. An arbitrary caller-provided name for the PartnerTenant. Cannot exceed 64 characters.
    group GoogleCloudBeyondcorpPartnerservicesV1alphaGroup
    Optional. Group information for the users enabled to use the partnerTenant. If the group information is not provided then the partnerTenant will be enabled for all users.
    partnerMetadata GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata
    Optional. Metadata provided by the Partner associated with PartnerTenant.
    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
    displayName string
    Optional. An arbitrary caller-provided name for the PartnerTenant. Cannot exceed 64 characters.
    group GoogleCloudBeyondcorpPartnerservicesV1alphaGroup
    Optional. Group information for the users enabled to use the partnerTenant. If the group information is not provided then the partnerTenant will be enabled for all users.
    partnerMetadata GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata
    Optional. Metadata provided by the Partner associated with PartnerTenant.
    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
    display_name str
    Optional. An arbitrary caller-provided name for the PartnerTenant. Cannot exceed 64 characters.
    group GoogleCloudBeyondcorpPartnerservicesV1alphaGroupArgs
    Optional. Group information for the users enabled to use the partnerTenant. If the group information is not provided then the partnerTenant will be enabled for all users.
    partner_metadata GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadataArgs
    Optional. Metadata provided by the Partner associated with PartnerTenant.
    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
    displayName String
    Optional. An arbitrary caller-provided name for the PartnerTenant. Cannot exceed 64 characters.
    group Property Map
    Optional. Group information for the users enabled to use the partnerTenant. If the group information is not provided then the partnerTenant will be enabled for all users.
    partnerMetadata Property Map
    Optional. Metadata provided by the Partner associated with PartnerTenant.
    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 PartnerTenant 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
    Unique resource name of the PartnerTenant. The name is ignored when creating PartnerTenant.
    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
    Unique resource name of the PartnerTenant. The name is ignored when creating PartnerTenant.
    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
    Unique resource name of the PartnerTenant. The name is ignored when creating PartnerTenant.
    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
    Unique resource name of the PartnerTenant. The name is ignored when creating PartnerTenant.
    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
    Unique resource name of the PartnerTenant. The name is ignored when creating PartnerTenant.
    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
    Unique resource name of the PartnerTenant. The name is ignored when creating PartnerTenant.
    updateTime String
    Timestamp when the resource was last modified.

    Supporting Types

    GoogleCloudBeyondcorpPartnerservicesV1alphaGroup, GoogleCloudBeyondcorpPartnerservicesV1alphaGroupArgs

    Email string
    The group email id
    Id string
    Google group id
    Email string
    The group email id
    Id string
    Google group id
    email String
    The group email id
    id String
    Google group id
    email string
    The group email id
    id string
    Google group id
    email str
    The group email id
    id str
    Google group id
    email String
    The group email id
    id String
    Google group id

    GoogleCloudBeyondcorpPartnerservicesV1alphaGroupResponse, GoogleCloudBeyondcorpPartnerservicesV1alphaGroupResponseArgs

    Email string
    The group email id
    Email string
    The group email id
    email String
    The group email id
    email string
    The group email id
    email str
    The group email id
    email String
    The group email id

    GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadata, GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadataArgs

    InternalTenantId string
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    PartnerTenantId string
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    InternalTenantId string
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    PartnerTenantId string
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    internalTenantId String
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    partnerTenantId String
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    internalTenantId string
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    partnerTenantId string
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    internal_tenant_id str
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    partner_tenant_id str
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    internalTenantId String
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    partnerTenantId String
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.

    GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadataResponse, GoogleCloudBeyondcorpPartnerservicesV1alphaPartnerMetadataResponseArgs

    InternalTenantId string
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    PartnerTenantId string
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    InternalTenantId string
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    PartnerTenantId string
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    internalTenantId String
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    partnerTenantId String
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    internalTenantId string
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    partnerTenantId string
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    internal_tenant_id str
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    partner_tenant_id str
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    internalTenantId String
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.
    partnerTenantId String
    Optional. UUID used by the Partner to refer to the PartnerTenant in their internal systems.

    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