1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. SamlServerProfile
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm logo
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi

    SamlServerProfile resource

    Create SamlServerProfile Resource

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

    Constructor syntax

    new SamlServerProfile(name: string, args: SamlServerProfileArgs, opts?: CustomResourceOptions);
    @overload
    def SamlServerProfile(resource_name: str,
                          args: SamlServerProfileArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def SamlServerProfile(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          certificate: Optional[str] = None,
                          entity_id: Optional[str] = None,
                          sso_bindings: Optional[str] = None,
                          sso_url: Optional[str] = None,
                          device: Optional[str] = None,
                          folder: Optional[str] = None,
                          max_clock_skew: Optional[int] = None,
                          name: Optional[str] = None,
                          slo_bindings: Optional[str] = None,
                          snippet: Optional[str] = None,
                          validate_idp_certificate: Optional[bool] = None,
                          want_auth_requests_signed: Optional[bool] = None)
    func NewSamlServerProfile(ctx *Context, name string, args SamlServerProfileArgs, opts ...ResourceOption) (*SamlServerProfile, error)
    public SamlServerProfile(string name, SamlServerProfileArgs args, CustomResourceOptions? opts = null)
    public SamlServerProfile(String name, SamlServerProfileArgs args)
    public SamlServerProfile(String name, SamlServerProfileArgs args, CustomResourceOptions options)
    
    type: scm:SamlServerProfile
    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 SamlServerProfileArgs
    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 SamlServerProfileArgs
    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 SamlServerProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SamlServerProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SamlServerProfileArgs
    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 samlServerProfileResource = new Scm.SamlServerProfile("samlServerProfileResource", new()
    {
        Certificate = "string",
        EntityId = "string",
        SsoBindings = "string",
        SsoUrl = "string",
        Device = "string",
        Folder = "string",
        MaxClockSkew = 0,
        Name = "string",
        SloBindings = "string",
        Snippet = "string",
        ValidateIdpCertificate = false,
        WantAuthRequestsSigned = false,
    });
    
    example, err := scm.NewSamlServerProfile(ctx, "samlServerProfileResource", &scm.SamlServerProfileArgs{
    	Certificate:            pulumi.String("string"),
    	EntityId:               pulumi.String("string"),
    	SsoBindings:            pulumi.String("string"),
    	SsoUrl:                 pulumi.String("string"),
    	Device:                 pulumi.String("string"),
    	Folder:                 pulumi.String("string"),
    	MaxClockSkew:           pulumi.Int(0),
    	Name:                   pulumi.String("string"),
    	SloBindings:            pulumi.String("string"),
    	Snippet:                pulumi.String("string"),
    	ValidateIdpCertificate: pulumi.Bool(false),
    	WantAuthRequestsSigned: pulumi.Bool(false),
    })
    
    var samlServerProfileResource = new SamlServerProfile("samlServerProfileResource", SamlServerProfileArgs.builder()
        .certificate("string")
        .entityId("string")
        .ssoBindings("string")
        .ssoUrl("string")
        .device("string")
        .folder("string")
        .maxClockSkew(0)
        .name("string")
        .sloBindings("string")
        .snippet("string")
        .validateIdpCertificate(false)
        .wantAuthRequestsSigned(false)
        .build());
    
    saml_server_profile_resource = scm.SamlServerProfile("samlServerProfileResource",
        certificate="string",
        entity_id="string",
        sso_bindings="string",
        sso_url="string",
        device="string",
        folder="string",
        max_clock_skew=0,
        name="string",
        slo_bindings="string",
        snippet="string",
        validate_idp_certificate=False,
        want_auth_requests_signed=False)
    
    const samlServerProfileResource = new scm.SamlServerProfile("samlServerProfileResource", {
        certificate: "string",
        entityId: "string",
        ssoBindings: "string",
        ssoUrl: "string",
        device: "string",
        folder: "string",
        maxClockSkew: 0,
        name: "string",
        sloBindings: "string",
        snippet: "string",
        validateIdpCertificate: false,
        wantAuthRequestsSigned: false,
    });
    
    type: scm:SamlServerProfile
    properties:
        certificate: string
        device: string
        entityId: string
        folder: string
        maxClockSkew: 0
        name: string
        sloBindings: string
        snippet: string
        ssoBindings: string
        ssoUrl: string
        validateIdpCertificate: false
        wantAuthRequestsSigned: false
    

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

    Certificate string
    The identity provider certificate
    EntityId string
    The identity provider ID
    SsoBindings string
    SAML HTTP binding for SSO requests to the identity provider
    SsoUrl string
    Identity provider SSO URL
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    MaxClockSkew int
    Maxiumum clock skew
    Name string
    The name of the SAML server profile
    SloBindings string
    SAML HTTP binding for SLO requests to the identity provider
    Snippet string
    The snippet in which the resource is defined
    ValidateIdpCertificate bool
    Validate the identity provider certificate?
    WantAuthRequestsSigned bool
    Sign SAML message to the identity provider?
    Certificate string
    The identity provider certificate
    EntityId string
    The identity provider ID
    SsoBindings string
    SAML HTTP binding for SSO requests to the identity provider
    SsoUrl string
    Identity provider SSO URL
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    MaxClockSkew int
    Maxiumum clock skew
    Name string
    The name of the SAML server profile
    SloBindings string
    SAML HTTP binding for SLO requests to the identity provider
    Snippet string
    The snippet in which the resource is defined
    ValidateIdpCertificate bool
    Validate the identity provider certificate?
    WantAuthRequestsSigned bool
    Sign SAML message to the identity provider?
    certificate String
    The identity provider certificate
    entityId String
    The identity provider ID
    ssoBindings String
    SAML HTTP binding for SSO requests to the identity provider
    ssoUrl String
    Identity provider SSO URL
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    maxClockSkew Integer
    Maxiumum clock skew
    name String
    The name of the SAML server profile
    sloBindings String
    SAML HTTP binding for SLO requests to the identity provider
    snippet String
    The snippet in which the resource is defined
    validateIdpCertificate Boolean
    Validate the identity provider certificate?
    wantAuthRequestsSigned Boolean
    Sign SAML message to the identity provider?
    certificate string
    The identity provider certificate
    entityId string
    The identity provider ID
    ssoBindings string
    SAML HTTP binding for SSO requests to the identity provider
    ssoUrl string
    Identity provider SSO URL
    device string
    The device in which the resource is defined
    folder string
    The folder in which the resource is defined
    maxClockSkew number
    Maxiumum clock skew
    name string
    The name of the SAML server profile
    sloBindings string
    SAML HTTP binding for SLO requests to the identity provider
    snippet string
    The snippet in which the resource is defined
    validateIdpCertificate boolean
    Validate the identity provider certificate?
    wantAuthRequestsSigned boolean
    Sign SAML message to the identity provider?
    certificate str
    The identity provider certificate
    entity_id str
    The identity provider ID
    sso_bindings str
    SAML HTTP binding for SSO requests to the identity provider
    sso_url str
    Identity provider SSO URL
    device str
    The device in which the resource is defined
    folder str
    The folder in which the resource is defined
    max_clock_skew int
    Maxiumum clock skew
    name str
    The name of the SAML server profile
    slo_bindings str
    SAML HTTP binding for SLO requests to the identity provider
    snippet str
    The snippet in which the resource is defined
    validate_idp_certificate bool
    Validate the identity provider certificate?
    want_auth_requests_signed bool
    Sign SAML message to the identity provider?
    certificate String
    The identity provider certificate
    entityId String
    The identity provider ID
    ssoBindings String
    SAML HTTP binding for SSO requests to the identity provider
    ssoUrl String
    Identity provider SSO URL
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    maxClockSkew Number
    Maxiumum clock skew
    name String
    The name of the SAML server profile
    sloBindings String
    SAML HTTP binding for SLO requests to the identity provider
    snippet String
    The snippet in which the resource is defined
    validateIdpCertificate Boolean
    Validate the identity provider certificate?
    wantAuthRequestsSigned Boolean
    Sign SAML message to the identity provider?

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String

    Look up Existing SamlServerProfile Resource

    Get an existing SamlServerProfile 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?: SamlServerProfileState, opts?: CustomResourceOptions): SamlServerProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            certificate: Optional[str] = None,
            device: Optional[str] = None,
            entity_id: Optional[str] = None,
            folder: Optional[str] = None,
            max_clock_skew: Optional[int] = None,
            name: Optional[str] = None,
            slo_bindings: Optional[str] = None,
            snippet: Optional[str] = None,
            sso_bindings: Optional[str] = None,
            sso_url: Optional[str] = None,
            tfid: Optional[str] = None,
            validate_idp_certificate: Optional[bool] = None,
            want_auth_requests_signed: Optional[bool] = None) -> SamlServerProfile
    func GetSamlServerProfile(ctx *Context, name string, id IDInput, state *SamlServerProfileState, opts ...ResourceOption) (*SamlServerProfile, error)
    public static SamlServerProfile Get(string name, Input<string> id, SamlServerProfileState? state, CustomResourceOptions? opts = null)
    public static SamlServerProfile get(String name, Output<String> id, SamlServerProfileState state, CustomResourceOptions options)
    resources:  _:    type: scm:SamlServerProfile    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:
    Certificate string
    The identity provider certificate
    Device string
    The device in which the resource is defined
    EntityId string
    The identity provider ID
    Folder string
    The folder in which the resource is defined
    MaxClockSkew int
    Maxiumum clock skew
    Name string
    The name of the SAML server profile
    SloBindings string
    SAML HTTP binding for SLO requests to the identity provider
    Snippet string
    The snippet in which the resource is defined
    SsoBindings string
    SAML HTTP binding for SSO requests to the identity provider
    SsoUrl string
    Identity provider SSO URL
    Tfid string
    ValidateIdpCertificate bool
    Validate the identity provider certificate?
    WantAuthRequestsSigned bool
    Sign SAML message to the identity provider?
    Certificate string
    The identity provider certificate
    Device string
    The device in which the resource is defined
    EntityId string
    The identity provider ID
    Folder string
    The folder in which the resource is defined
    MaxClockSkew int
    Maxiumum clock skew
    Name string
    The name of the SAML server profile
    SloBindings string
    SAML HTTP binding for SLO requests to the identity provider
    Snippet string
    The snippet in which the resource is defined
    SsoBindings string
    SAML HTTP binding for SSO requests to the identity provider
    SsoUrl string
    Identity provider SSO URL
    Tfid string
    ValidateIdpCertificate bool
    Validate the identity provider certificate?
    WantAuthRequestsSigned bool
    Sign SAML message to the identity provider?
    certificate String
    The identity provider certificate
    device String
    The device in which the resource is defined
    entityId String
    The identity provider ID
    folder String
    The folder in which the resource is defined
    maxClockSkew Integer
    Maxiumum clock skew
    name String
    The name of the SAML server profile
    sloBindings String
    SAML HTTP binding for SLO requests to the identity provider
    snippet String
    The snippet in which the resource is defined
    ssoBindings String
    SAML HTTP binding for SSO requests to the identity provider
    ssoUrl String
    Identity provider SSO URL
    tfid String
    validateIdpCertificate Boolean
    Validate the identity provider certificate?
    wantAuthRequestsSigned Boolean
    Sign SAML message to the identity provider?
    certificate string
    The identity provider certificate
    device string
    The device in which the resource is defined
    entityId string
    The identity provider ID
    folder string
    The folder in which the resource is defined
    maxClockSkew number
    Maxiumum clock skew
    name string
    The name of the SAML server profile
    sloBindings string
    SAML HTTP binding for SLO requests to the identity provider
    snippet string
    The snippet in which the resource is defined
    ssoBindings string
    SAML HTTP binding for SSO requests to the identity provider
    ssoUrl string
    Identity provider SSO URL
    tfid string
    validateIdpCertificate boolean
    Validate the identity provider certificate?
    wantAuthRequestsSigned boolean
    Sign SAML message to the identity provider?
    certificate str
    The identity provider certificate
    device str
    The device in which the resource is defined
    entity_id str
    The identity provider ID
    folder str
    The folder in which the resource is defined
    max_clock_skew int
    Maxiumum clock skew
    name str
    The name of the SAML server profile
    slo_bindings str
    SAML HTTP binding for SLO requests to the identity provider
    snippet str
    The snippet in which the resource is defined
    sso_bindings str
    SAML HTTP binding for SSO requests to the identity provider
    sso_url str
    Identity provider SSO URL
    tfid str
    validate_idp_certificate bool
    Validate the identity provider certificate?
    want_auth_requests_signed bool
    Sign SAML message to the identity provider?
    certificate String
    The identity provider certificate
    device String
    The device in which the resource is defined
    entityId String
    The identity provider ID
    folder String
    The folder in which the resource is defined
    maxClockSkew Number
    Maxiumum clock skew
    name String
    The name of the SAML server profile
    sloBindings String
    SAML HTTP binding for SLO requests to the identity provider
    snippet String
    The snippet in which the resource is defined
    ssoBindings String
    SAML HTTP binding for SSO requests to the identity provider
    ssoUrl String
    Identity provider SSO URL
    tfid String
    validateIdpCertificate Boolean
    Validate the identity provider certificate?
    wantAuthRequestsSigned Boolean
    Sign SAML message to the identity provider?

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate