Show / Hide Table of Contents

Class IdentityProviderGroupSummary

A group created in an identity provider that can be mapped to a group in OCI

Inheritance
object
IdentityProviderGroupSummary
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 IdentityProviderGroupSummary

Properties

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

Display name of the group

ExternalIdentifier

Declaration
[JsonProperty(PropertyName = "externalIdentifier")]
public string ExternalIdentifier { get; set; }
Property Value
Type Description
string

Identifier of the group in the identity provider

Id

Declaration
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

The OCID of the IdentityProviderGroup.

IdentityProviderId

Declaration
[JsonProperty(PropertyName = "identityProviderId")]
public string IdentityProviderId { get; set; }
Property Value
Type Description
string

The OCID of the IdentityProvider this group belongs to.

Name

Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

Display name of the group

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

Date and time the IdentityProviderGroup was created, in the format defined by RFC3339.
Example: 2016-08-25T21:10:29.600Z

TimeModified

Declaration
[JsonProperty(PropertyName = "timeModified")]
public DateTime? TimeModified { get; set; }
Property Value
Type Description
DateTime?

Date and time the IdentityProviderGroup was last modified, in the format defined by RFC3339.
Example: 2016-08-25T21:10:29.600Z

In this article
Back to top