Show / Hide Table of Contents

Class ConsumerGroupPrivilegeSummary

A summary of consumer group privileges.

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

Properties

GrantOption

Declaration
[JsonProperty(PropertyName = "grantOption")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ConsumerGroupPrivilegeSummary.GrantOptionEnum? GrantOption { get; set; }
Property Value
Type Description
ConsumerGroupPrivilegeSummary.GrantOptionEnum?

Indicates whether the privilege is granted with the GRANT option (YES) or not (NO).

InitialGroup

Declaration
[JsonProperty(PropertyName = "initialGroup")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ConsumerGroupPrivilegeSummary.InitialGroupEnum? InitialGroup { get; set; }
Property Value
Type Description
ConsumerGroupPrivilegeSummary.InitialGroupEnum?

Indicates whether the consumer group is designated as the default for this user or role (YES) or not (NO).

Name

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

The name of the granted consumer group privilege.

In this article
Back to top