nutanix.SamlIdentityProvidersV2
Explore with Pulumi AI
Create SamlIdentityProvidersV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SamlIdentityProvidersV2(name: string, args?: SamlIdentityProvidersV2Args, opts?: CustomResourceOptions);@overload
def SamlIdentityProvidersV2(resource_name: str,
                            args: Optional[SamlIdentityProvidersV2Args] = None,
                            opts: Optional[ResourceOptions] = None)
@overload
def SamlIdentityProvidersV2(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            custom_attributes: Optional[Sequence[str]] = None,
                            email_attribute: Optional[str] = None,
                            entity_issuer: Optional[str] = None,
                            ext_id: Optional[str] = None,
                            groups_attribute: Optional[str] = None,
                            groups_delim: Optional[str] = None,
                            idp_metadata_url: Optional[str] = None,
                            idp_metadata_xml: Optional[str] = None,
                            idp_metadatas: Optional[Sequence[SamlIdentityProvidersV2IdpMetadataArgs]] = None,
                            is_signed_authn_req_enabled: Optional[bool] = None,
                            name: Optional[str] = None,
                            username_attribute: Optional[str] = None)func NewSamlIdentityProvidersV2(ctx *Context, name string, args *SamlIdentityProvidersV2Args, opts ...ResourceOption) (*SamlIdentityProvidersV2, error)public SamlIdentityProvidersV2(string name, SamlIdentityProvidersV2Args? args = null, CustomResourceOptions? opts = null)
public SamlIdentityProvidersV2(String name, SamlIdentityProvidersV2Args args)
public SamlIdentityProvidersV2(String name, SamlIdentityProvidersV2Args args, CustomResourceOptions options)
type: nutanix:SamlIdentityProvidersV2
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 SamlIdentityProvidersV2Args
- 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 SamlIdentityProvidersV2Args
- 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 SamlIdentityProvidersV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SamlIdentityProvidersV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SamlIdentityProvidersV2Args
- 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 samlIdentityProvidersV2Resource = new Nutanix.SamlIdentityProvidersV2("samlIdentityProvidersV2Resource", new()
{
    CustomAttributes = new[]
    {
        "string",
    },
    EmailAttribute = "string",
    EntityIssuer = "string",
    ExtId = "string",
    GroupsAttribute = "string",
    GroupsDelim = "string",
    IdpMetadataUrl = "string",
    IdpMetadataXml = "string",
    IdpMetadatas = new[]
    {
        new Nutanix.Inputs.SamlIdentityProvidersV2IdpMetadataArgs
        {
            Certificate = "string",
            EntityId = "string",
            LoginUrl = "string",
            ErrorUrl = "string",
            LogoutUrl = "string",
            NameIdPolicyFormat = "string",
        },
    },
    IsSignedAuthnReqEnabled = false,
    Name = "string",
    UsernameAttribute = "string",
});
example, err := nutanix.NewSamlIdentityProvidersV2(ctx, "samlIdentityProvidersV2Resource", &nutanix.SamlIdentityProvidersV2Args{
	CustomAttributes: pulumi.StringArray{
		pulumi.String("string"),
	},
	EmailAttribute:  pulumi.String("string"),
	EntityIssuer:    pulumi.String("string"),
	ExtId:           pulumi.String("string"),
	GroupsAttribute: pulumi.String("string"),
	GroupsDelim:     pulumi.String("string"),
	IdpMetadataUrl:  pulumi.String("string"),
	IdpMetadataXml:  pulumi.String("string"),
	IdpMetadatas: nutanix.SamlIdentityProvidersV2IdpMetadataArray{
		&nutanix.SamlIdentityProvidersV2IdpMetadataArgs{
			Certificate:        pulumi.String("string"),
			EntityId:           pulumi.String("string"),
			LoginUrl:           pulumi.String("string"),
			ErrorUrl:           pulumi.String("string"),
			LogoutUrl:          pulumi.String("string"),
			NameIdPolicyFormat: pulumi.String("string"),
		},
	},
	IsSignedAuthnReqEnabled: pulumi.Bool(false),
	Name:                    pulumi.String("string"),
	UsernameAttribute:       pulumi.String("string"),
})
var samlIdentityProvidersV2Resource = new SamlIdentityProvidersV2("samlIdentityProvidersV2Resource", SamlIdentityProvidersV2Args.builder()
    .customAttributes("string")
    .emailAttribute("string")
    .entityIssuer("string")
    .extId("string")
    .groupsAttribute("string")
    .groupsDelim("string")
    .idpMetadataUrl("string")
    .idpMetadataXml("string")
    .idpMetadatas(SamlIdentityProvidersV2IdpMetadataArgs.builder()
        .certificate("string")
        .entityId("string")
        .loginUrl("string")
        .errorUrl("string")
        .logoutUrl("string")
        .nameIdPolicyFormat("string")
        .build())
    .isSignedAuthnReqEnabled(false)
    .name("string")
    .usernameAttribute("string")
    .build());
saml_identity_providers_v2_resource = nutanix.SamlIdentityProvidersV2("samlIdentityProvidersV2Resource",
    custom_attributes=["string"],
    email_attribute="string",
    entity_issuer="string",
    ext_id="string",
    groups_attribute="string",
    groups_delim="string",
    idp_metadata_url="string",
    idp_metadata_xml="string",
    idp_metadatas=[{
        "certificate": "string",
        "entity_id": "string",
        "login_url": "string",
        "error_url": "string",
        "logout_url": "string",
        "name_id_policy_format": "string",
    }],
    is_signed_authn_req_enabled=False,
    name="string",
    username_attribute="string")
const samlIdentityProvidersV2Resource = new nutanix.SamlIdentityProvidersV2("samlIdentityProvidersV2Resource", {
    customAttributes: ["string"],
    emailAttribute: "string",
    entityIssuer: "string",
    extId: "string",
    groupsAttribute: "string",
    groupsDelim: "string",
    idpMetadataUrl: "string",
    idpMetadataXml: "string",
    idpMetadatas: [{
        certificate: "string",
        entityId: "string",
        loginUrl: "string",
        errorUrl: "string",
        logoutUrl: "string",
        nameIdPolicyFormat: "string",
    }],
    isSignedAuthnReqEnabled: false,
    name: "string",
    usernameAttribute: "string",
});
type: nutanix:SamlIdentityProvidersV2
properties:
    customAttributes:
        - string
    emailAttribute: string
    entityIssuer: string
    extId: string
    groupsAttribute: string
    groupsDelim: string
    idpMetadataUrl: string
    idpMetadataXml: string
    idpMetadatas:
        - certificate: string
          entityId: string
          errorUrl: string
          loginUrl: string
          logoutUrl: string
          nameIdPolicyFormat: string
    isSignedAuthnReqEnabled: false
    name: string
    usernameAttribute: string
SamlIdentityProvidersV2 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 SamlIdentityProvidersV2 resource accepts the following input properties:
- CustomAttributes List<string>
- EmailAttribute string
- EntityIssuer string
- ExtId string
- GroupsAttribute string
- GroupsDelim string
- IdpMetadata stringUrl 
- IdpMetadata stringXml 
- IdpMetadatas List<PiersKarsenbarg. Nutanix. Inputs. Saml Identity Providers V2Idp Metadata> 
- IsSigned boolAuthn Req Enabled 
- Name string
- UsernameAttribute string
- CustomAttributes []string
- EmailAttribute string
- EntityIssuer string
- ExtId string
- GroupsAttribute string
- GroupsDelim string
- IdpMetadata stringUrl 
- IdpMetadata stringXml 
- IdpMetadatas []SamlIdentity Providers V2Idp Metadata Args 
- IsSigned boolAuthn Req Enabled 
- Name string
- UsernameAttribute string
- customAttributes List<String>
- emailAttribute String
- entityIssuer String
- extId String
- groupsAttribute String
- groupsDelim String
- idpMetadata StringUrl 
- idpMetadata StringXml 
- idpMetadatas List<SamlIdentity Providers V2Idp Metadata> 
- isSigned BooleanAuthn Req Enabled 
- name String
- usernameAttribute String
- customAttributes string[]
- emailAttribute string
- entityIssuer string
- extId string
- groupsAttribute string
- groupsDelim string
- idpMetadata stringUrl 
- idpMetadata stringXml 
- idpMetadatas SamlIdentity Providers V2Idp Metadata[] 
- isSigned booleanAuthn Req Enabled 
- name string
- usernameAttribute string
- custom_attributes Sequence[str]
- email_attribute str
- entity_issuer str
- ext_id str
- groups_attribute str
- groups_delim str
- idp_metadata_ strurl 
- idp_metadata_ strxml 
- idp_metadatas Sequence[SamlIdentity Providers V2Idp Metadata Args] 
- is_signed_ boolauthn_ req_ enabled 
- name str
- username_attribute str
- customAttributes List<String>
- emailAttribute String
- entityIssuer String
- extId String
- groupsAttribute String
- groupsDelim String
- idpMetadata StringUrl 
- idpMetadata StringXml 
- idpMetadatas List<Property Map>
- isSigned BooleanAuthn Req Enabled 
- name String
- usernameAttribute String
Outputs
All input properties are implicitly available as output properties. Additionally, the SamlIdentityProvidersV2 resource produces the following output properties:
- CreatedBy string
- CreatedTime string
- Id string
- The provider-assigned unique ID for this managed resource.
- LastUpdated stringTime 
- CreatedBy string
- CreatedTime string
- Id string
- The provider-assigned unique ID for this managed resource.
- LastUpdated stringTime 
- createdBy String
- createdTime String
- id String
- The provider-assigned unique ID for this managed resource.
- lastUpdated StringTime 
- createdBy string
- createdTime string
- id string
- The provider-assigned unique ID for this managed resource.
- lastUpdated stringTime 
- created_by str
- created_time str
- id str
- The provider-assigned unique ID for this managed resource.
- last_updated_ strtime 
- createdBy String
- createdTime String
- id String
- The provider-assigned unique ID for this managed resource.
- lastUpdated StringTime 
Look up Existing SamlIdentityProvidersV2 Resource
Get an existing SamlIdentityProvidersV2 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?: SamlIdentityProvidersV2State, opts?: CustomResourceOptions): SamlIdentityProvidersV2@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        created_by: Optional[str] = None,
        created_time: Optional[str] = None,
        custom_attributes: Optional[Sequence[str]] = None,
        email_attribute: Optional[str] = None,
        entity_issuer: Optional[str] = None,
        ext_id: Optional[str] = None,
        groups_attribute: Optional[str] = None,
        groups_delim: Optional[str] = None,
        idp_metadata_url: Optional[str] = None,
        idp_metadata_xml: Optional[str] = None,
        idp_metadatas: Optional[Sequence[SamlIdentityProvidersV2IdpMetadataArgs]] = None,
        is_signed_authn_req_enabled: Optional[bool] = None,
        last_updated_time: Optional[str] = None,
        name: Optional[str] = None,
        username_attribute: Optional[str] = None) -> SamlIdentityProvidersV2func GetSamlIdentityProvidersV2(ctx *Context, name string, id IDInput, state *SamlIdentityProvidersV2State, opts ...ResourceOption) (*SamlIdentityProvidersV2, error)public static SamlIdentityProvidersV2 Get(string name, Input<string> id, SamlIdentityProvidersV2State? state, CustomResourceOptions? opts = null)public static SamlIdentityProvidersV2 get(String name, Output<String> id, SamlIdentityProvidersV2State state, CustomResourceOptions options)resources:  _:    type: nutanix:SamlIdentityProvidersV2    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.
- CreatedBy string
- CreatedTime string
- CustomAttributes List<string>
- EmailAttribute string
- EntityIssuer string
- ExtId string
- GroupsAttribute string
- GroupsDelim string
- IdpMetadata stringUrl 
- IdpMetadata stringXml 
- IdpMetadatas List<PiersKarsenbarg. Nutanix. Inputs. Saml Identity Providers V2Idp Metadata> 
- IsSigned boolAuthn Req Enabled 
- LastUpdated stringTime 
- Name string
- UsernameAttribute string
- CreatedBy string
- CreatedTime string
- CustomAttributes []string
- EmailAttribute string
- EntityIssuer string
- ExtId string
- GroupsAttribute string
- GroupsDelim string
- IdpMetadata stringUrl 
- IdpMetadata stringXml 
- IdpMetadatas []SamlIdentity Providers V2Idp Metadata Args 
- IsSigned boolAuthn Req Enabled 
- LastUpdated stringTime 
- Name string
- UsernameAttribute string
- createdBy String
- createdTime String
- customAttributes List<String>
- emailAttribute String
- entityIssuer String
- extId String
- groupsAttribute String
- groupsDelim String
- idpMetadata StringUrl 
- idpMetadata StringXml 
- idpMetadatas List<SamlIdentity Providers V2Idp Metadata> 
- isSigned BooleanAuthn Req Enabled 
- lastUpdated StringTime 
- name String
- usernameAttribute String
- createdBy string
- createdTime string
- customAttributes string[]
- emailAttribute string
- entityIssuer string
- extId string
- groupsAttribute string
- groupsDelim string
- idpMetadata stringUrl 
- idpMetadata stringXml 
- idpMetadatas SamlIdentity Providers V2Idp Metadata[] 
- isSigned booleanAuthn Req Enabled 
- lastUpdated stringTime 
- name string
- usernameAttribute string
- created_by str
- created_time str
- custom_attributes Sequence[str]
- email_attribute str
- entity_issuer str
- ext_id str
- groups_attribute str
- groups_delim str
- idp_metadata_ strurl 
- idp_metadata_ strxml 
- idp_metadatas Sequence[SamlIdentity Providers V2Idp Metadata Args] 
- is_signed_ boolauthn_ req_ enabled 
- last_updated_ strtime 
- name str
- username_attribute str
- createdBy String
- createdTime String
- customAttributes List<String>
- emailAttribute String
- entityIssuer String
- extId String
- groupsAttribute String
- groupsDelim String
- idpMetadata StringUrl 
- idpMetadata StringXml 
- idpMetadatas List<Property Map>
- isSigned BooleanAuthn Req Enabled 
- lastUpdated StringTime 
- name String
- usernameAttribute String
Supporting Types
SamlIdentityProvidersV2IdpMetadata, SamlIdentityProvidersV2IdpMetadataArgs          
- Certificate string
- EntityId string
- LoginUrl string
- ErrorUrl string
- LogoutUrl string
- NameId stringPolicy Format 
- Certificate string
- EntityId string
- LoginUrl string
- ErrorUrl string
- LogoutUrl string
- NameId stringPolicy Format 
- certificate String
- entityId String
- loginUrl String
- errorUrl String
- logoutUrl String
- nameId StringPolicy Format 
- certificate string
- entityId string
- loginUrl string
- errorUrl string
- logoutUrl string
- nameId stringPolicy Format 
- certificate str
- entity_id str
- login_url str
- error_url str
- logout_url str
- name_id_ strpolicy_ format 
- certificate String
- entityId String
- loginUrl String
- errorUrl String
- logoutUrl String
- nameId StringPolicy Format 
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the nutanixTerraform Provider.
