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:
- Custom
Attributes List<string> - Email
Attribute string - Entity
Issuer string - Ext
Id string - Groups
Attribute string - Groups
Delim string - Idp
Metadata stringUrl - Idp
Metadata stringXml - Idp
Metadatas List<PiersKarsenbarg. Nutanix. Inputs. Saml Identity Providers V2Idp Metadata> - Is
Signed boolAuthn Req Enabled - Name string
- Username
Attribute string
- Custom
Attributes []string - Email
Attribute string - Entity
Issuer string - Ext
Id string - Groups
Attribute string - Groups
Delim string - Idp
Metadata stringUrl - Idp
Metadata stringXml - Idp
Metadatas []SamlIdentity Providers V2Idp Metadata Args - Is
Signed boolAuthn Req Enabled - Name string
- Username
Attribute string
- custom
Attributes List<String> - email
Attribute String - entity
Issuer String - ext
Id String - groups
Attribute String - groups
Delim String - idp
Metadata StringUrl - idp
Metadata StringXml - idp
Metadatas List<SamlIdentity Providers V2Idp Metadata> - is
Signed BooleanAuthn Req Enabled - name String
- username
Attribute String
- custom
Attributes string[] - email
Attribute string - entity
Issuer string - ext
Id string - groups
Attribute string - groups
Delim string - idp
Metadata stringUrl - idp
Metadata stringXml - idp
Metadatas SamlIdentity Providers V2Idp Metadata[] - is
Signed booleanAuthn Req Enabled - name string
- username
Attribute 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
- custom
Attributes List<String> - email
Attribute String - entity
Issuer String - ext
Id String - groups
Attribute String - groups
Delim String - idp
Metadata StringUrl - idp
Metadata StringXml - idp
Metadatas List<Property Map> - is
Signed BooleanAuthn Req Enabled - name String
- username
Attribute String
Outputs
All input properties are implicitly available as output properties. Additionally, the SamlIdentityProvidersV2 resource produces the following output properties:
- Created
By string - Created
Time string - Id string
- The provider-assigned unique ID for this managed resource.
- Last
Updated stringTime
- Created
By string - Created
Time string - Id string
- The provider-assigned unique ID for this managed resource.
- Last
Updated stringTime
- created
By String - created
Time String - id String
- The provider-assigned unique ID for this managed resource.
- last
Updated StringTime
- created
By string - created
Time string - id string
- The provider-assigned unique ID for this managed resource.
- last
Updated stringTime
- created_
by str - created_
time str - id str
- The provider-assigned unique ID for this managed resource.
- last_
updated_ strtime
- created
By String - created
Time String - id String
- The provider-assigned unique ID for this managed resource.
- last
Updated 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) -> SamlIdentityProvidersV2
func 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.
- Created
By string - Created
Time string - Custom
Attributes List<string> - Email
Attribute string - Entity
Issuer string - Ext
Id string - Groups
Attribute string - Groups
Delim string - Idp
Metadata stringUrl - Idp
Metadata stringXml - Idp
Metadatas List<PiersKarsenbarg. Nutanix. Inputs. Saml Identity Providers V2Idp Metadata> - Is
Signed boolAuthn Req Enabled - Last
Updated stringTime - Name string
- Username
Attribute string
- Created
By string - Created
Time string - Custom
Attributes []string - Email
Attribute string - Entity
Issuer string - Ext
Id string - Groups
Attribute string - Groups
Delim string - Idp
Metadata stringUrl - Idp
Metadata stringXml - Idp
Metadatas []SamlIdentity Providers V2Idp Metadata Args - Is
Signed boolAuthn Req Enabled - Last
Updated stringTime - Name string
- Username
Attribute string
- created
By String - created
Time String - custom
Attributes List<String> - email
Attribute String - entity
Issuer String - ext
Id String - groups
Attribute String - groups
Delim String - idp
Metadata StringUrl - idp
Metadata StringXml - idp
Metadatas List<SamlIdentity Providers V2Idp Metadata> - is
Signed BooleanAuthn Req Enabled - last
Updated StringTime - name String
- username
Attribute String
- created
By string - created
Time string - custom
Attributes string[] - email
Attribute string - entity
Issuer string - ext
Id string - groups
Attribute string - groups
Delim string - idp
Metadata stringUrl - idp
Metadata stringXml - idp
Metadatas SamlIdentity Providers V2Idp Metadata[] - is
Signed booleanAuthn Req Enabled - last
Updated stringTime - name string
- username
Attribute 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
- created
By String - created
Time String - custom
Attributes List<String> - email
Attribute String - entity
Issuer String - ext
Id String - groups
Attribute String - groups
Delim String - idp
Metadata StringUrl - idp
Metadata StringXml - idp
Metadatas List<Property Map> - is
Signed BooleanAuthn Req Enabled - last
Updated StringTime - name String
- username
Attribute String
Supporting Types
SamlIdentityProvidersV2IdpMetadata, SamlIdentityProvidersV2IdpMetadataArgs
- Certificate string
- Entity
Id string - Login
Url string - Error
Url string - Logout
Url string - Name
Id stringPolicy Format
- Certificate string
- Entity
Id string - Login
Url string - Error
Url string - Logout
Url string - Name
Id stringPolicy Format
- certificate String
- entity
Id String - login
Url String - error
Url String - logout
Url String - name
Id StringPolicy Format
- certificate string
- entity
Id string - login
Url string - error
Url string - logout
Url string - name
Id stringPolicy Format
- certificate str
- entity_
id str - login_
url str - error_
url str - logout_
url str - name_
id_ strpolicy_ format
- certificate String
- entity
Id String - login
Url String - error
Url String - logout
Url String - name
Id StringPolicy Format
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.