fortimanager.ObjectUserSamlDynamicMapping
Explore with Pulumi AI
SAML server entry configuration.
This resource is a sub resource for variable
dynamic_mapping
of resourcefortimanager.ObjectUserSaml
. Conflict and overwrite may occur if use both of them.
Create ObjectUserSamlDynamicMapping Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectUserSamlDynamicMapping(name: string, args: ObjectUserSamlDynamicMappingArgs, opts?: CustomResourceOptions);
@overload
def ObjectUserSamlDynamicMapping(resource_name: str,
args: ObjectUserSamlDynamicMappingInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectUserSamlDynamicMapping(resource_name: str,
opts: Optional[ResourceOptions] = None,
saml: Optional[str] = None,
digest_method: Optional[str] = None,
single_sign_on_url: Optional[str] = None,
auth_url: Optional[str] = None,
cert: Optional[str] = None,
clock_tolerance: Optional[float] = None,
_scopes: Optional[Sequence[ObjectUserSamlDynamicMapping_ScopeArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
entity_id: Optional[str] = None,
group_claim_type: Optional[str] = None,
group_name: Optional[str] = None,
user_name: Optional[str] = None,
adom: Optional[str] = None,
limit_relaystate: Optional[str] = None,
idp_single_sign_on_url: Optional[str] = None,
idp_single_logout_url: Optional[str] = None,
object_user_saml_dynamic_mapping_id: Optional[str] = None,
reauth: Optional[str] = None,
adfs_claim: Optional[str] = None,
scim_clients: Optional[Sequence[str]] = None,
scopetype: Optional[str] = None,
single_logout_url: Optional[str] = None,
idp_entity_id: Optional[str] = None,
user_claim_type: Optional[str] = None,
idp_cert: Optional[str] = None)
func NewObjectUserSamlDynamicMapping(ctx *Context, name string, args ObjectUserSamlDynamicMappingArgs, opts ...ResourceOption) (*ObjectUserSamlDynamicMapping, error)
public ObjectUserSamlDynamicMapping(string name, ObjectUserSamlDynamicMappingArgs args, CustomResourceOptions? opts = null)
public ObjectUserSamlDynamicMapping(String name, ObjectUserSamlDynamicMappingArgs args)
public ObjectUserSamlDynamicMapping(String name, ObjectUserSamlDynamicMappingArgs args, CustomResourceOptions options)
type: fortimanager:ObjectUserSamlDynamicMapping
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 ObjectUserSamlDynamicMappingArgs
- 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 ObjectUserSamlDynamicMappingInitArgs
- 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 ObjectUserSamlDynamicMappingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectUserSamlDynamicMappingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectUserSamlDynamicMappingArgs
- 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 objectUserSamlDynamicMappingResource = new Fortimanager.ObjectUserSamlDynamicMapping("objectUserSamlDynamicMappingResource", new()
{
Saml = "string",
DigestMethod = "string",
SingleSignOnUrl = "string",
AuthUrl = "string",
Cert = "string",
ClockTolerance = 0,
_scopes = new[]
{
new Fortimanager.Inputs.ObjectUserSamlDynamicMapping_ScopeArgs
{
Name = "string",
Vdom = "string",
},
},
DynamicSortSubtable = "string",
EntityId = "string",
GroupClaimType = "string",
GroupName = "string",
UserName = "string",
Adom = "string",
LimitRelaystate = "string",
IdpSingleSignOnUrl = "string",
IdpSingleLogoutUrl = "string",
ObjectUserSamlDynamicMappingId = "string",
Reauth = "string",
AdfsClaim = "string",
ScimClients = new[]
{
"string",
},
Scopetype = "string",
SingleLogoutUrl = "string",
IdpEntityId = "string",
UserClaimType = "string",
IdpCert = "string",
});
example, err := fortimanager.NewObjectUserSamlDynamicMapping(ctx, "objectUserSamlDynamicMappingResource", &fortimanager.ObjectUserSamlDynamicMappingArgs{
Saml: pulumi.String("string"),
DigestMethod: pulumi.String("string"),
SingleSignOnUrl: pulumi.String("string"),
AuthUrl: pulumi.String("string"),
Cert: pulumi.String("string"),
ClockTolerance: pulumi.Float64(0),
_scopes: .ObjectUserSamlDynamicMapping_ScopeArray{
&.ObjectUserSamlDynamicMapping_ScopeArgs{
Name: pulumi.String("string"),
Vdom: pulumi.String("string"),
},
},
DynamicSortSubtable: pulumi.String("string"),
EntityId: pulumi.String("string"),
GroupClaimType: pulumi.String("string"),
GroupName: pulumi.String("string"),
UserName: pulumi.String("string"),
Adom: pulumi.String("string"),
LimitRelaystate: pulumi.String("string"),
IdpSingleSignOnUrl: pulumi.String("string"),
IdpSingleLogoutUrl: pulumi.String("string"),
ObjectUserSamlDynamicMappingId: pulumi.String("string"),
Reauth: pulumi.String("string"),
AdfsClaim: pulumi.String("string"),
ScimClients: pulumi.StringArray{
pulumi.String("string"),
},
Scopetype: pulumi.String("string"),
SingleLogoutUrl: pulumi.String("string"),
IdpEntityId: pulumi.String("string"),
UserClaimType: pulumi.String("string"),
IdpCert: pulumi.String("string"),
})
var objectUserSamlDynamicMappingResource = new ObjectUserSamlDynamicMapping("objectUserSamlDynamicMappingResource", ObjectUserSamlDynamicMappingArgs.builder()
.saml("string")
.digestMethod("string")
.singleSignOnUrl("string")
.authUrl("string")
.cert("string")
.clockTolerance(0)
._scopes(ObjectUserSamlDynamicMapping_ScopeArgs.builder()
.name("string")
.vdom("string")
.build())
.dynamicSortSubtable("string")
.entityId("string")
.groupClaimType("string")
.groupName("string")
.userName("string")
.adom("string")
.limitRelaystate("string")
.idpSingleSignOnUrl("string")
.idpSingleLogoutUrl("string")
.objectUserSamlDynamicMappingId("string")
.reauth("string")
.adfsClaim("string")
.scimClients("string")
.scopetype("string")
.singleLogoutUrl("string")
.idpEntityId("string")
.userClaimType("string")
.idpCert("string")
.build());
object_user_saml_dynamic_mapping_resource = fortimanager.ObjectUserSamlDynamicMapping("objectUserSamlDynamicMappingResource",
saml="string",
digest_method="string",
single_sign_on_url="string",
auth_url="string",
cert="string",
clock_tolerance=0,
_scopes=[{
"name": "string",
"vdom": "string",
}],
dynamic_sort_subtable="string",
entity_id="string",
group_claim_type="string",
group_name="string",
user_name="string",
adom="string",
limit_relaystate="string",
idp_single_sign_on_url="string",
idp_single_logout_url="string",
object_user_saml_dynamic_mapping_id="string",
reauth="string",
adfs_claim="string",
scim_clients=["string"],
scopetype="string",
single_logout_url="string",
idp_entity_id="string",
user_claim_type="string",
idp_cert="string")
const objectUserSamlDynamicMappingResource = new fortimanager.ObjectUserSamlDynamicMapping("objectUserSamlDynamicMappingResource", {
saml: "string",
digestMethod: "string",
singleSignOnUrl: "string",
authUrl: "string",
cert: "string",
clockTolerance: 0,
_scopes: [{
name: "string",
vdom: "string",
}],
dynamicSortSubtable: "string",
entityId: "string",
groupClaimType: "string",
groupName: "string",
userName: "string",
adom: "string",
limitRelaystate: "string",
idpSingleSignOnUrl: "string",
idpSingleLogoutUrl: "string",
objectUserSamlDynamicMappingId: "string",
reauth: "string",
adfsClaim: "string",
scimClients: ["string"],
scopetype: "string",
singleLogoutUrl: "string",
idpEntityId: "string",
userClaimType: "string",
idpCert: "string",
});
type: fortimanager:ObjectUserSamlDynamicMapping
properties:
_scopes:
- name: string
vdom: string
adfsClaim: string
adom: string
authUrl: string
cert: string
clockTolerance: 0
digestMethod: string
dynamicSortSubtable: string
entityId: string
groupClaimType: string
groupName: string
idpCert: string
idpEntityId: string
idpSingleLogoutUrl: string
idpSingleSignOnUrl: string
limitRelaystate: string
objectUserSamlDynamicMappingId: string
reauth: string
saml: string
scimClients:
- string
scopetype: string
singleLogoutUrl: string
singleSignOnUrl: string
userClaimType: string
userName: string
ObjectUserSamlDynamicMapping 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 ObjectUserSamlDynamicMapping resource accepts the following input properties:
- Saml string
- Saml.
- Adfs
Claim string - Enable/disable ADFS Claim for user/group attribute in assertion statement (default = disable). Valid values:
disable
,enable
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auth
Url string - URL to verify authentication.
- Cert string
- Certificate to sign SAML messages.
- Clock
Tolerance double - Clock skew tolerance in seconds (0 - 300, default = 15, 0 = no tolerance).
- Digest
Method string - Digest method algorithm (default = sha1). Valid values:
sha1
,sha256
. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Entity
Id string - SP entity ID.
- Group
Claim stringType - Group claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - Group
Name string - Group name in assertion statement.
- Idp
Cert string - IDP Certificate name.
- Idp
Entity stringId - IDP entity ID.
- Idp
Single stringLogout Url - IDP single logout url.
- Idp
Single stringSign On Url - IDP single sign-on URL.
- Limit
Relaystate string - Enable/disable limiting of relay-state parameter when it exceeds SAML 2.0 specification limits (80 bytes). Valid values:
disable
,enable
. - Object
User stringSaml Dynamic Mapping Id - an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
- Reauth string
- Enable/disable signalling of IDP to force user re-authentication (default = disable). Valid values:
disable
,enable
. - Scim
Clients List<string> - SCIM client name.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Single
Logout stringUrl - SP single logout URL.
- Single
Sign stringOn Url - SP single sign-on URL.
- User
Claim stringType - User name claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - User
Name string - User name in assertion statement.
- _
scopes List<ObjectUser Saml Dynamic Mapping_Scope> - _Scope. The structure of
_scope
block is documented below.
- Saml string
- Saml.
- Adfs
Claim string - Enable/disable ADFS Claim for user/group attribute in assertion statement (default = disable). Valid values:
disable
,enable
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auth
Url string - URL to verify authentication.
- Cert string
- Certificate to sign SAML messages.
- Clock
Tolerance float64 - Clock skew tolerance in seconds (0 - 300, default = 15, 0 = no tolerance).
- Digest
Method string - Digest method algorithm (default = sha1). Valid values:
sha1
,sha256
. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Entity
Id string - SP entity ID.
- Group
Claim stringType - Group claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - Group
Name string - Group name in assertion statement.
- Idp
Cert string - IDP Certificate name.
- Idp
Entity stringId - IDP entity ID.
- Idp
Single stringLogout Url - IDP single logout url.
- Idp
Single stringSign On Url - IDP single sign-on URL.
- Limit
Relaystate string - Enable/disable limiting of relay-state parameter when it exceeds SAML 2.0 specification limits (80 bytes). Valid values:
disable
,enable
. - Object
User stringSaml Dynamic Mapping Id - an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
- Reauth string
- Enable/disable signalling of IDP to force user re-authentication (default = disable). Valid values:
disable
,enable
. - Scim
Clients []string - SCIM client name.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Single
Logout stringUrl - SP single logout URL.
- Single
Sign stringOn Url - SP single sign-on URL.
- User
Claim stringType - User name claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - User
Name string - User name in assertion statement.
- _
scopes []ObjectUser Saml Dynamic Mapping_Scope Args - _Scope. The structure of
_scope
block is documented below.
- saml String
- Saml.
- _
scopes List<ObjectUser Saml Dynamic Mapping_Scope> - _Scope. The structure of
_scope
block is documented below. - adfs
Claim String - Enable/disable ADFS Claim for user/group attribute in assertion statement (default = disable). Valid values:
disable
,enable
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Url String - URL to verify authentication.
- cert String
- Certificate to sign SAML messages.
- clock
Tolerance Double - Clock skew tolerance in seconds (0 - 300, default = 15, 0 = no tolerance).
- digest
Method String - Digest method algorithm (default = sha1). Valid values:
sha1
,sha256
. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- entity
Id String - SP entity ID.
- group
Claim StringType - Group claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - group
Name String - Group name in assertion statement.
- idp
Cert String - IDP Certificate name.
- idp
Entity StringId - IDP entity ID.
- idp
Single StringLogout Url - IDP single logout url.
- idp
Single StringSign On Url - IDP single sign-on URL.
- limit
Relaystate String - Enable/disable limiting of relay-state parameter when it exceeds SAML 2.0 specification limits (80 bytes). Valid values:
disable
,enable
. - object
User StringSaml Dynamic Mapping Id - an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
- reauth String
- Enable/disable signalling of IDP to force user re-authentication (default = disable). Valid values:
disable
,enable
. - scim
Clients List<String> - SCIM client name.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - single
Logout StringUrl - SP single logout URL.
- single
Sign StringOn Url - SP single sign-on URL.
- user
Claim StringType - User name claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - user
Name String - User name in assertion statement.
- saml string
- Saml.
- _
scopes ObjectUser Saml Dynamic Mapping_Scope[] - _Scope. The structure of
_scope
block is documented below. - adfs
Claim string - Enable/disable ADFS Claim for user/group attribute in assertion statement (default = disable). Valid values:
disable
,enable
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Url string - URL to verify authentication.
- cert string
- Certificate to sign SAML messages.
- clock
Tolerance number - Clock skew tolerance in seconds (0 - 300, default = 15, 0 = no tolerance).
- digest
Method string - Digest method algorithm (default = sha1). Valid values:
sha1
,sha256
. - dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- entity
Id string - SP entity ID.
- group
Claim stringType - Group claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - group
Name string - Group name in assertion statement.
- idp
Cert string - IDP Certificate name.
- idp
Entity stringId - IDP entity ID.
- idp
Single stringLogout Url - IDP single logout url.
- idp
Single stringSign On Url - IDP single sign-on URL.
- limit
Relaystate string - Enable/disable limiting of relay-state parameter when it exceeds SAML 2.0 specification limits (80 bytes). Valid values:
disable
,enable
. - object
User stringSaml Dynamic Mapping Id - an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
- reauth string
- Enable/disable signalling of IDP to force user re-authentication (default = disable). Valid values:
disable
,enable
. - scim
Clients string[] - SCIM client name.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - single
Logout stringUrl - SP single logout URL.
- single
Sign stringOn Url - SP single sign-on URL.
- user
Claim stringType - User name claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - user
Name string - User name in assertion statement.
- saml str
- Saml.
- _
scopes Sequence[ObjectUser Saml Dynamic Mapping_Scope Args] - _Scope. The structure of
_scope
block is documented below. - adfs_
claim str - Enable/disable ADFS Claim for user/group attribute in assertion statement (default = disable). Valid values:
disable
,enable
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth_
url str - URL to verify authentication.
- cert str
- Certificate to sign SAML messages.
- clock_
tolerance float - Clock skew tolerance in seconds (0 - 300, default = 15, 0 = no tolerance).
- digest_
method str - Digest method algorithm (default = sha1). Valid values:
sha1
,sha256
. - dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- entity_
id str - SP entity ID.
- group_
claim_ strtype - Group claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - group_
name str - Group name in assertion statement.
- idp_
cert str - IDP Certificate name.
- idp_
entity_ strid - IDP entity ID.
- idp_
single_ strlogout_ url - IDP single logout url.
- idp_
single_ strsign_ on_ url - IDP single sign-on URL.
- limit_
relaystate str - Enable/disable limiting of relay-state parameter when it exceeds SAML 2.0 specification limits (80 bytes). Valid values:
disable
,enable
. - object_
user_ strsaml_ dynamic_ mapping_ id - an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
- reauth str
- Enable/disable signalling of IDP to force user re-authentication (default = disable). Valid values:
disable
,enable
. - scim_
clients Sequence[str] - SCIM client name.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - single_
logout_ strurl - SP single logout URL.
- single_
sign_ stron_ url - SP single sign-on URL.
- user_
claim_ strtype - User name claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - user_
name str - User name in assertion statement.
- saml String
- Saml.
- _
scopes List<Property Map> - _Scope. The structure of
_scope
block is documented below. - adfs
Claim String - Enable/disable ADFS Claim for user/group attribute in assertion statement (default = disable). Valid values:
disable
,enable
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Url String - URL to verify authentication.
- cert String
- Certificate to sign SAML messages.
- clock
Tolerance Number - Clock skew tolerance in seconds (0 - 300, default = 15, 0 = no tolerance).
- digest
Method String - Digest method algorithm (default = sha1). Valid values:
sha1
,sha256
. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- entity
Id String - SP entity ID.
- group
Claim StringType - Group claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - group
Name String - Group name in assertion statement.
- idp
Cert String - IDP Certificate name.
- idp
Entity StringId - IDP entity ID.
- idp
Single StringLogout Url - IDP single logout url.
- idp
Single StringSign On Url - IDP single sign-on URL.
- limit
Relaystate String - Enable/disable limiting of relay-state parameter when it exceeds SAML 2.0 specification limits (80 bytes). Valid values:
disable
,enable
. - object
User StringSaml Dynamic Mapping Id - an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
- reauth String
- Enable/disable signalling of IDP to force user re-authentication (default = disable). Valid values:
disable
,enable
. - scim
Clients List<String> - SCIM client name.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - single
Logout StringUrl - SP single logout URL.
- single
Sign StringOn Url - SP single sign-on URL.
- user
Claim StringType - User name claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - user
Name String - User name in assertion statement.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectUserSamlDynamicMapping resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ObjectUserSamlDynamicMapping Resource
Get an existing ObjectUserSamlDynamicMapping 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?: ObjectUserSamlDynamicMappingState, opts?: CustomResourceOptions): ObjectUserSamlDynamicMapping
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
_scopes: Optional[Sequence[ObjectUserSamlDynamicMapping_ScopeArgs]] = None,
adfs_claim: Optional[str] = None,
adom: Optional[str] = None,
auth_url: Optional[str] = None,
cert: Optional[str] = None,
clock_tolerance: Optional[float] = None,
digest_method: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
entity_id: Optional[str] = None,
group_claim_type: Optional[str] = None,
group_name: Optional[str] = None,
idp_cert: Optional[str] = None,
idp_entity_id: Optional[str] = None,
idp_single_logout_url: Optional[str] = None,
idp_single_sign_on_url: Optional[str] = None,
limit_relaystate: Optional[str] = None,
object_user_saml_dynamic_mapping_id: Optional[str] = None,
reauth: Optional[str] = None,
saml: Optional[str] = None,
scim_clients: Optional[Sequence[str]] = None,
scopetype: Optional[str] = None,
single_logout_url: Optional[str] = None,
single_sign_on_url: Optional[str] = None,
user_claim_type: Optional[str] = None,
user_name: Optional[str] = None) -> ObjectUserSamlDynamicMapping
func GetObjectUserSamlDynamicMapping(ctx *Context, name string, id IDInput, state *ObjectUserSamlDynamicMappingState, opts ...ResourceOption) (*ObjectUserSamlDynamicMapping, error)
public static ObjectUserSamlDynamicMapping Get(string name, Input<string> id, ObjectUserSamlDynamicMappingState? state, CustomResourceOptions? opts = null)
public static ObjectUserSamlDynamicMapping get(String name, Output<String> id, ObjectUserSamlDynamicMappingState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectUserSamlDynamicMapping 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.
- Adfs
Claim string - Enable/disable ADFS Claim for user/group attribute in assertion statement (default = disable). Valid values:
disable
,enable
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auth
Url string - URL to verify authentication.
- Cert string
- Certificate to sign SAML messages.
- Clock
Tolerance double - Clock skew tolerance in seconds (0 - 300, default = 15, 0 = no tolerance).
- Digest
Method string - Digest method algorithm (default = sha1). Valid values:
sha1
,sha256
. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Entity
Id string - SP entity ID.
- Group
Claim stringType - Group claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - Group
Name string - Group name in assertion statement.
- Idp
Cert string - IDP Certificate name.
- Idp
Entity stringId - IDP entity ID.
- Idp
Single stringLogout Url - IDP single logout url.
- Idp
Single stringSign On Url - IDP single sign-on URL.
- Limit
Relaystate string - Enable/disable limiting of relay-state parameter when it exceeds SAML 2.0 specification limits (80 bytes). Valid values:
disable
,enable
. - Object
User stringSaml Dynamic Mapping Id - an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
- Reauth string
- Enable/disable signalling of IDP to force user re-authentication (default = disable). Valid values:
disable
,enable
. - Saml string
- Saml.
- Scim
Clients List<string> - SCIM client name.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Single
Logout stringUrl - SP single logout URL.
- Single
Sign stringOn Url - SP single sign-on URL.
- User
Claim stringType - User name claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - User
Name string - User name in assertion statement.
- _
scopes List<ObjectUser Saml Dynamic Mapping_Scope> - _Scope. The structure of
_scope
block is documented below.
- Adfs
Claim string - Enable/disable ADFS Claim for user/group attribute in assertion statement (default = disable). Valid values:
disable
,enable
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auth
Url string - URL to verify authentication.
- Cert string
- Certificate to sign SAML messages.
- Clock
Tolerance float64 - Clock skew tolerance in seconds (0 - 300, default = 15, 0 = no tolerance).
- Digest
Method string - Digest method algorithm (default = sha1). Valid values:
sha1
,sha256
. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Entity
Id string - SP entity ID.
- Group
Claim stringType - Group claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - Group
Name string - Group name in assertion statement.
- Idp
Cert string - IDP Certificate name.
- Idp
Entity stringId - IDP entity ID.
- Idp
Single stringLogout Url - IDP single logout url.
- Idp
Single stringSign On Url - IDP single sign-on URL.
- Limit
Relaystate string - Enable/disable limiting of relay-state parameter when it exceeds SAML 2.0 specification limits (80 bytes). Valid values:
disable
,enable
. - Object
User stringSaml Dynamic Mapping Id - an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
- Reauth string
- Enable/disable signalling of IDP to force user re-authentication (default = disable). Valid values:
disable
,enable
. - Saml string
- Saml.
- Scim
Clients []string - SCIM client name.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Single
Logout stringUrl - SP single logout URL.
- Single
Sign stringOn Url - SP single sign-on URL.
- User
Claim stringType - User name claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - User
Name string - User name in assertion statement.
- _
scopes []ObjectUser Saml Dynamic Mapping_Scope Args - _Scope. The structure of
_scope
block is documented below.
- _
scopes List<ObjectUser Saml Dynamic Mapping_Scope> - _Scope. The structure of
_scope
block is documented below. - adfs
Claim String - Enable/disable ADFS Claim for user/group attribute in assertion statement (default = disable). Valid values:
disable
,enable
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Url String - URL to verify authentication.
- cert String
- Certificate to sign SAML messages.
- clock
Tolerance Double - Clock skew tolerance in seconds (0 - 300, default = 15, 0 = no tolerance).
- digest
Method String - Digest method algorithm (default = sha1). Valid values:
sha1
,sha256
. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- entity
Id String - SP entity ID.
- group
Claim StringType - Group claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - group
Name String - Group name in assertion statement.
- idp
Cert String - IDP Certificate name.
- idp
Entity StringId - IDP entity ID.
- idp
Single StringLogout Url - IDP single logout url.
- idp
Single StringSign On Url - IDP single sign-on URL.
- limit
Relaystate String - Enable/disable limiting of relay-state parameter when it exceeds SAML 2.0 specification limits (80 bytes). Valid values:
disable
,enable
. - object
User StringSaml Dynamic Mapping Id - an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
- reauth String
- Enable/disable signalling of IDP to force user re-authentication (default = disable). Valid values:
disable
,enable
. - saml String
- Saml.
- scim
Clients List<String> - SCIM client name.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - single
Logout StringUrl - SP single logout URL.
- single
Sign StringOn Url - SP single sign-on URL.
- user
Claim StringType - User name claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - user
Name String - User name in assertion statement.
- _
scopes ObjectUser Saml Dynamic Mapping_Scope[] - _Scope. The structure of
_scope
block is documented below. - adfs
Claim string - Enable/disable ADFS Claim for user/group attribute in assertion statement (default = disable). Valid values:
disable
,enable
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Url string - URL to verify authentication.
- cert string
- Certificate to sign SAML messages.
- clock
Tolerance number - Clock skew tolerance in seconds (0 - 300, default = 15, 0 = no tolerance).
- digest
Method string - Digest method algorithm (default = sha1). Valid values:
sha1
,sha256
. - dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- entity
Id string - SP entity ID.
- group
Claim stringType - Group claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - group
Name string - Group name in assertion statement.
- idp
Cert string - IDP Certificate name.
- idp
Entity stringId - IDP entity ID.
- idp
Single stringLogout Url - IDP single logout url.
- idp
Single stringSign On Url - IDP single sign-on URL.
- limit
Relaystate string - Enable/disable limiting of relay-state parameter when it exceeds SAML 2.0 specification limits (80 bytes). Valid values:
disable
,enable
. - object
User stringSaml Dynamic Mapping Id - an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
- reauth string
- Enable/disable signalling of IDP to force user re-authentication (default = disable). Valid values:
disable
,enable
. - saml string
- Saml.
- scim
Clients string[] - SCIM client name.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - single
Logout stringUrl - SP single logout URL.
- single
Sign stringOn Url - SP single sign-on URL.
- user
Claim stringType - User name claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - user
Name string - User name in assertion statement.
- _
scopes Sequence[ObjectUser Saml Dynamic Mapping_Scope Args] - _Scope. The structure of
_scope
block is documented below. - adfs_
claim str - Enable/disable ADFS Claim for user/group attribute in assertion statement (default = disable). Valid values:
disable
,enable
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth_
url str - URL to verify authentication.
- cert str
- Certificate to sign SAML messages.
- clock_
tolerance float - Clock skew tolerance in seconds (0 - 300, default = 15, 0 = no tolerance).
- digest_
method str - Digest method algorithm (default = sha1). Valid values:
sha1
,sha256
. - dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- entity_
id str - SP entity ID.
- group_
claim_ strtype - Group claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - group_
name str - Group name in assertion statement.
- idp_
cert str - IDP Certificate name.
- idp_
entity_ strid - IDP entity ID.
- idp_
single_ strlogout_ url - IDP single logout url.
- idp_
single_ strsign_ on_ url - IDP single sign-on URL.
- limit_
relaystate str - Enable/disable limiting of relay-state parameter when it exceeds SAML 2.0 specification limits (80 bytes). Valid values:
disable
,enable
. - object_
user_ strsaml_ dynamic_ mapping_ id - an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
- reauth str
- Enable/disable signalling of IDP to force user re-authentication (default = disable). Valid values:
disable
,enable
. - saml str
- Saml.
- scim_
clients Sequence[str] - SCIM client name.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - single_
logout_ strurl - SP single logout URL.
- single_
sign_ stron_ url - SP single sign-on URL.
- user_
claim_ strtype - User name claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - user_
name str - User name in assertion statement.
- _
scopes List<Property Map> - _Scope. The structure of
_scope
block is documented below. - adfs
Claim String - Enable/disable ADFS Claim for user/group attribute in assertion statement (default = disable). Valid values:
disable
,enable
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Url String - URL to verify authentication.
- cert String
- Certificate to sign SAML messages.
- clock
Tolerance Number - Clock skew tolerance in seconds (0 - 300, default = 15, 0 = no tolerance).
- digest
Method String - Digest method algorithm (default = sha1). Valid values:
sha1
,sha256
. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- entity
Id String - SP entity ID.
- group
Claim StringType - Group claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - group
Name String - Group name in assertion statement.
- idp
Cert String - IDP Certificate name.
- idp
Entity StringId - IDP entity ID.
- idp
Single StringLogout Url - IDP single logout url.
- idp
Single StringSign On Url - IDP single sign-on URL.
- limit
Relaystate String - Enable/disable limiting of relay-state parameter when it exceeds SAML 2.0 specification limits (80 bytes). Valid values:
disable
,enable
. - object
User StringSaml Dynamic Mapping Id - an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
- reauth String
- Enable/disable signalling of IDP to force user re-authentication (default = disable). Valid values:
disable
,enable
. - saml String
- Saml.
- scim
Clients List<String> - SCIM client name.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - single
Logout StringUrl - SP single logout URL.
- single
Sign StringOn Url - SP single sign-on URL.
- user
Claim StringType - User name claim in assertion statement. Valid values:
email
,given-name
,name
,upn
,common-name
,email-adfs-1x
,group
,upn-adfs-1x
,role
,sur-name
,ppid
,name-identifier
,authentication-method
,deny-only-group-sid
,deny-only-primary-sid
,deny-only-primary-group-sid
,group-sid
,primary-group-sid
,primary-sid
,windows-account-name
. - user
Name String - User name in assertion statement.
Supporting Types
ObjectUserSamlDynamicMapping_Scope, ObjectUserSamlDynamicMapping_ScopeArgs
Import
ObjectUser SamlDynamicMapping can be imported using any of these accepted formats:
Set import_options = [“saml=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectUserSamlDynamicMapping:ObjectUserSamlDynamicMapping labelname {{_scope.name}}.{{_scope.vdom}}
$ unset “FORTIMANAGER_IMPORT_TABLE”
-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.