1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. IdentityCenterExternalSamlIdentityProvider
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.IdentityCenterExternalSamlIdentityProvider

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Provides a resource to create a organization identity_center_external_saml_identity_provider

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const identityCenterExternalSamlIdentityProvider = new tencentcloud.IdentityCenterExternalSamlIdentityProvider("identityCenterExternalSamlIdentityProvider", {
        ssoStatus: "Enabled",
        zoneId: "z-xxxxxx",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    identity_center_external_saml_identity_provider = tencentcloud.IdentityCenterExternalSamlIdentityProvider("identityCenterExternalSamlIdentityProvider",
        sso_status="Enabled",
        zone_id="z-xxxxxx")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.NewIdentityCenterExternalSamlIdentityProvider(ctx, "identityCenterExternalSamlIdentityProvider", &tencentcloud.IdentityCenterExternalSamlIdentityProviderArgs{
    			SsoStatus: pulumi.String("Enabled"),
    			ZoneId:    pulumi.String("z-xxxxxx"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var identityCenterExternalSamlIdentityProvider = new Tencentcloud.IdentityCenterExternalSamlIdentityProvider("identityCenterExternalSamlIdentityProvider", new()
        {
            SsoStatus = "Enabled",
            ZoneId = "z-xxxxxx",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.IdentityCenterExternalSamlIdentityProvider;
    import com.pulumi.tencentcloud.IdentityCenterExternalSamlIdentityProviderArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var identityCenterExternalSamlIdentityProvider = new IdentityCenterExternalSamlIdentityProvider("identityCenterExternalSamlIdentityProvider", IdentityCenterExternalSamlIdentityProviderArgs.builder()
                .ssoStatus("Enabled")
                .zoneId("z-xxxxxx")
                .build());
    
        }
    }
    
    resources:
      identityCenterExternalSamlIdentityProvider:
        type: tencentcloud:IdentityCenterExternalSamlIdentityProvider
        properties:
          ssoStatus: Enabled
          zoneId: z-xxxxxx
    

    Create IdentityCenterExternalSamlIdentityProvider Resource

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

    Constructor syntax

    new IdentityCenterExternalSamlIdentityProvider(name: string, args: IdentityCenterExternalSamlIdentityProviderArgs, opts?: CustomResourceOptions);
    @overload
    def IdentityCenterExternalSamlIdentityProvider(resource_name: str,
                                                   args: IdentityCenterExternalSamlIdentityProviderArgs,
                                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def IdentityCenterExternalSamlIdentityProvider(resource_name: str,
                                                   opts: Optional[ResourceOptions] = None,
                                                   zone_id: Optional[str] = None,
                                                   encoded_metadata_document: Optional[str] = None,
                                                   entity_id: Optional[str] = None,
                                                   identity_center_external_saml_identity_provider_id: Optional[str] = None,
                                                   login_url: Optional[str] = None,
                                                   sso_status: Optional[str] = None,
                                                   x509_certificate: Optional[str] = None)
    func NewIdentityCenterExternalSamlIdentityProvider(ctx *Context, name string, args IdentityCenterExternalSamlIdentityProviderArgs, opts ...ResourceOption) (*IdentityCenterExternalSamlIdentityProvider, error)
    public IdentityCenterExternalSamlIdentityProvider(string name, IdentityCenterExternalSamlIdentityProviderArgs args, CustomResourceOptions? opts = null)
    public IdentityCenterExternalSamlIdentityProvider(String name, IdentityCenterExternalSamlIdentityProviderArgs args)
    public IdentityCenterExternalSamlIdentityProvider(String name, IdentityCenterExternalSamlIdentityProviderArgs args, CustomResourceOptions options)
    
    type: tencentcloud:IdentityCenterExternalSamlIdentityProvider
    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 IdentityCenterExternalSamlIdentityProviderArgs
    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 IdentityCenterExternalSamlIdentityProviderArgs
    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 IdentityCenterExternalSamlIdentityProviderArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IdentityCenterExternalSamlIdentityProviderArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IdentityCenterExternalSamlIdentityProviderArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    ZoneId string
    Space ID.
    EncodedMetadataDocument string
    IdP metadata document (Base64 encoded). Provided by an IdP that supports the SAML 2.0 protocol.
    EntityId string
    IdP identifier.
    IdentityCenterExternalSamlIdentityProviderId string
    ID of the resource.
    LoginUrl string
    IdP login URL.
    SsoStatus string
    SSO enabling status. Valid values: Enabled, Disabled (default).
    X509Certificate string
    X509 certificate in PEM format. If this parameter is specified, all existing certificates will be replaced.
    ZoneId string
    Space ID.
    EncodedMetadataDocument string
    IdP metadata document (Base64 encoded). Provided by an IdP that supports the SAML 2.0 protocol.
    EntityId string
    IdP identifier.
    IdentityCenterExternalSamlIdentityProviderId string
    ID of the resource.
    LoginUrl string
    IdP login URL.
    SsoStatus string
    SSO enabling status. Valid values: Enabled, Disabled (default).
    X509Certificate string
    X509 certificate in PEM format. If this parameter is specified, all existing certificates will be replaced.
    zoneId String
    Space ID.
    encodedMetadataDocument String
    IdP metadata document (Base64 encoded). Provided by an IdP that supports the SAML 2.0 protocol.
    entityId String
    IdP identifier.
    identityCenterExternalSamlIdentityProviderId String
    ID of the resource.
    loginUrl String
    IdP login URL.
    ssoStatus String
    SSO enabling status. Valid values: Enabled, Disabled (default).
    x509Certificate String
    X509 certificate in PEM format. If this parameter is specified, all existing certificates will be replaced.
    zoneId string
    Space ID.
    encodedMetadataDocument string
    IdP metadata document (Base64 encoded). Provided by an IdP that supports the SAML 2.0 protocol.
    entityId string
    IdP identifier.
    identityCenterExternalSamlIdentityProviderId string
    ID of the resource.
    loginUrl string
    IdP login URL.
    ssoStatus string
    SSO enabling status. Valid values: Enabled, Disabled (default).
    x509Certificate string
    X509 certificate in PEM format. If this parameter is specified, all existing certificates will be replaced.
    zone_id str
    Space ID.
    encoded_metadata_document str
    IdP metadata document (Base64 encoded). Provided by an IdP that supports the SAML 2.0 protocol.
    entity_id str
    IdP identifier.
    identity_center_external_saml_identity_provider_id str
    ID of the resource.
    login_url str
    IdP login URL.
    sso_status str
    SSO enabling status. Valid values: Enabled, Disabled (default).
    x509_certificate str
    X509 certificate in PEM format. If this parameter is specified, all existing certificates will be replaced.
    zoneId String
    Space ID.
    encodedMetadataDocument String
    IdP metadata document (Base64 encoded). Provided by an IdP that supports the SAML 2.0 protocol.
    entityId String
    IdP identifier.
    identityCenterExternalSamlIdentityProviderId String
    ID of the resource.
    loginUrl String
    IdP login URL.
    ssoStatus String
    SSO enabling status. Valid values: Enabled, Disabled (default).
    x509Certificate String
    X509 certificate in PEM format. If this parameter is specified, all existing certificates will be replaced.

    Outputs

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

    AcsUrl string
    Acs url.
    CertificateIds List<string>
    Certificate ids.
    CreateTime string
    Create time.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdateTime string
    Update time.
    AcsUrl string
    Acs url.
    CertificateIds []string
    Certificate ids.
    CreateTime string
    Create time.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdateTime string
    Update time.
    acsUrl String
    Acs url.
    certificateIds List<String>
    Certificate ids.
    createTime String
    Create time.
    id String
    The provider-assigned unique ID for this managed resource.
    updateTime String
    Update time.
    acsUrl string
    Acs url.
    certificateIds string[]
    Certificate ids.
    createTime string
    Create time.
    id string
    The provider-assigned unique ID for this managed resource.
    updateTime string
    Update time.
    acs_url str
    Acs url.
    certificate_ids Sequence[str]
    Certificate ids.
    create_time str
    Create time.
    id str
    The provider-assigned unique ID for this managed resource.
    update_time str
    Update time.
    acsUrl String
    Acs url.
    certificateIds List<String>
    Certificate ids.
    createTime String
    Create time.
    id String
    The provider-assigned unique ID for this managed resource.
    updateTime String
    Update time.

    Look up Existing IdentityCenterExternalSamlIdentityProvider Resource

    Get an existing IdentityCenterExternalSamlIdentityProvider resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: IdentityCenterExternalSamlIdentityProviderState, opts?: CustomResourceOptions): IdentityCenterExternalSamlIdentityProvider
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            acs_url: Optional[str] = None,
            certificate_ids: Optional[Sequence[str]] = None,
            create_time: Optional[str] = None,
            encoded_metadata_document: Optional[str] = None,
            entity_id: Optional[str] = None,
            identity_center_external_saml_identity_provider_id: Optional[str] = None,
            login_url: Optional[str] = None,
            sso_status: Optional[str] = None,
            update_time: Optional[str] = None,
            x509_certificate: Optional[str] = None,
            zone_id: Optional[str] = None) -> IdentityCenterExternalSamlIdentityProvider
    func GetIdentityCenterExternalSamlIdentityProvider(ctx *Context, name string, id IDInput, state *IdentityCenterExternalSamlIdentityProviderState, opts ...ResourceOption) (*IdentityCenterExternalSamlIdentityProvider, error)
    public static IdentityCenterExternalSamlIdentityProvider Get(string name, Input<string> id, IdentityCenterExternalSamlIdentityProviderState? state, CustomResourceOptions? opts = null)
    public static IdentityCenterExternalSamlIdentityProvider get(String name, Output<String> id, IdentityCenterExternalSamlIdentityProviderState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:IdentityCenterExternalSamlIdentityProvider    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AcsUrl string
    Acs url.
    CertificateIds List<string>
    Certificate ids.
    CreateTime string
    Create time.
    EncodedMetadataDocument string
    IdP metadata document (Base64 encoded). Provided by an IdP that supports the SAML 2.0 protocol.
    EntityId string
    IdP identifier.
    IdentityCenterExternalSamlIdentityProviderId string
    ID of the resource.
    LoginUrl string
    IdP login URL.
    SsoStatus string
    SSO enabling status. Valid values: Enabled, Disabled (default).
    UpdateTime string
    Update time.
    X509Certificate string
    X509 certificate in PEM format. If this parameter is specified, all existing certificates will be replaced.
    ZoneId string
    Space ID.
    AcsUrl string
    Acs url.
    CertificateIds []string
    Certificate ids.
    CreateTime string
    Create time.
    EncodedMetadataDocument string
    IdP metadata document (Base64 encoded). Provided by an IdP that supports the SAML 2.0 protocol.
    EntityId string
    IdP identifier.
    IdentityCenterExternalSamlIdentityProviderId string
    ID of the resource.
    LoginUrl string
    IdP login URL.
    SsoStatus string
    SSO enabling status. Valid values: Enabled, Disabled (default).
    UpdateTime string
    Update time.
    X509Certificate string
    X509 certificate in PEM format. If this parameter is specified, all existing certificates will be replaced.
    ZoneId string
    Space ID.
    acsUrl String
    Acs url.
    certificateIds List<String>
    Certificate ids.
    createTime String
    Create time.
    encodedMetadataDocument String
    IdP metadata document (Base64 encoded). Provided by an IdP that supports the SAML 2.0 protocol.
    entityId String
    IdP identifier.
    identityCenterExternalSamlIdentityProviderId String
    ID of the resource.
    loginUrl String
    IdP login URL.
    ssoStatus String
    SSO enabling status. Valid values: Enabled, Disabled (default).
    updateTime String
    Update time.
    x509Certificate String
    X509 certificate in PEM format. If this parameter is specified, all existing certificates will be replaced.
    zoneId String
    Space ID.
    acsUrl string
    Acs url.
    certificateIds string[]
    Certificate ids.
    createTime string
    Create time.
    encodedMetadataDocument string
    IdP metadata document (Base64 encoded). Provided by an IdP that supports the SAML 2.0 protocol.
    entityId string
    IdP identifier.
    identityCenterExternalSamlIdentityProviderId string
    ID of the resource.
    loginUrl string
    IdP login URL.
    ssoStatus string
    SSO enabling status. Valid values: Enabled, Disabled (default).
    updateTime string
    Update time.
    x509Certificate string
    X509 certificate in PEM format. If this parameter is specified, all existing certificates will be replaced.
    zoneId string
    Space ID.
    acs_url str
    Acs url.
    certificate_ids Sequence[str]
    Certificate ids.
    create_time str
    Create time.
    encoded_metadata_document str
    IdP metadata document (Base64 encoded). Provided by an IdP that supports the SAML 2.0 protocol.
    entity_id str
    IdP identifier.
    identity_center_external_saml_identity_provider_id str
    ID of the resource.
    login_url str
    IdP login URL.
    sso_status str
    SSO enabling status. Valid values: Enabled, Disabled (default).
    update_time str
    Update time.
    x509_certificate str
    X509 certificate in PEM format. If this parameter is specified, all existing certificates will be replaced.
    zone_id str
    Space ID.
    acsUrl String
    Acs url.
    certificateIds List<String>
    Certificate ids.
    createTime String
    Create time.
    encodedMetadataDocument String
    IdP metadata document (Base64 encoded). Provided by an IdP that supports the SAML 2.0 protocol.
    entityId String
    IdP identifier.
    identityCenterExternalSamlIdentityProviderId String
    ID of the resource.
    loginUrl String
    IdP login URL.
    ssoStatus String
    SSO enabling status. Valid values: Enabled, Disabled (default).
    updateTime String
    Update time.
    x509Certificate String
    X509 certificate in PEM format. If this parameter is specified, all existing certificates will be replaced.
    zoneId String
    Space ID.

    Import

    organization identity_center_external_saml_identity_provider can be imported using the id, e.g.

    $ pulumi import tencentcloud:index/identityCenterExternalSamlIdentityProvider:IdentityCenterExternalSamlIdentityProvider identity_center_external_saml_identity_provider ${zoneId}
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack