UpdateIdentityProviderDetails¶
- 
class oci.identity.models.UpdateIdentityProviderDetails(**kwargs)¶
- Bases: - object- UpdateIdentityProviderDetails model. - Attributes - PROTOCOL_SAML2- A constant which can be used with the protocol property of a UpdateIdentityProviderDetails. - defined_tags- Gets the defined_tags of this UpdateIdentityProviderDetails. - description- Gets the description of this UpdateIdentityProviderDetails. - freeform_tags- Gets the freeform_tags of this UpdateIdentityProviderDetails. - protocol- [Required] Gets the protocol of this UpdateIdentityProviderDetails. - Methods - __init__(**kwargs)- Initializes a new UpdateIdentityProviderDetails object with values from keyword arguments. - get_subtype(object_dictionary)- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. - 
PROTOCOL_SAML2= 'SAML2'¶
- A constant which can be used with the protocol property of a UpdateIdentityProviderDetails. This constant has a value of “SAML2” 
 - 
__init__(**kwargs)¶
- Initializes a new UpdateIdentityProviderDetails object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class: - The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - protocol (str) – The value to assign to the protocol property of this UpdateIdentityProviderDetails. Allowed values for this property are: “SAML2”
- description (str) – The value to assign to the description property of this UpdateIdentityProviderDetails.
- freeform_tags (dict(str, str)) – The value to assign to the freeform_tags property of this UpdateIdentityProviderDetails.
- defined_tags (dict(str, dict(str, object))) – The value to assign to the defined_tags property of this UpdateIdentityProviderDetails.
 
 - Gets the defined_tags of this UpdateIdentityProviderDetails. Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {“Operations”: {“CostCenter”: “42”}} - Returns: - The defined_tags of this UpdateIdentityProviderDetails. - Return type: - dict(str, dict(str, object)) 
 - 
description¶
- Gets the description of this UpdateIdentityProviderDetails. The description you assign to the IdentityProvider. Does not have to be unique, and it’s changeable. - Returns: - The description of this UpdateIdentityProviderDetails. - Return type: - str 
 - Gets the freeform_tags of this UpdateIdentityProviderDetails. Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {“Department”: “Finance”} - Returns: - The freeform_tags of this UpdateIdentityProviderDetails. - Return type: - dict(str, str) 
 - 
static get_subtype(object_dictionary)¶
- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. 
 - 
protocol¶
- [Required] Gets the protocol of this UpdateIdentityProviderDetails. The protocol used for federation. - Example: SAML2 - Allowed values for this property are: “SAML2” - Returns: - The protocol of this UpdateIdentityProviderDetails. - Return type: - str 
 
-