Show / Hide Table of Contents

Class CreateIdpGroupMappingDetails

Inheritance
object
CreateIdpGroupMappingDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentityService.Models
Assembly: OCI.DotNetSDK.Identity.dll
Syntax
public class CreateIdpGroupMappingDetails

Properties

GroupId

Declaration
[Required(ErrorMessage = "GroupId is required.")]
[JsonProperty(PropertyName = "groupId")]
public string GroupId { get; set; }
Property Value
Type Description
string

The OCID of the IAM Service {@link Group} you want to map to the IdP group.

Remarks

Required

IdpGroupName

Declaration
[Required(ErrorMessage = "IdpGroupName is required.")]
[JsonProperty(PropertyName = "idpGroupName")]
public string IdpGroupName { get; set; }
Property Value
Type Description
string

The name of the IdP group you want to map.

Remarks

Required

In this article
Back to top