class Google::Apis::CloudassetV1::GoogleCloudAssetV1IdentityList

The identities and group edges.

Attributes

group_edges[RW]

Group identity edges of the graph starting from the binding's group members to any node of the identities. The Edge.source_node contains a group, such as ` group:parent@google.com`. The Edge.target_node contains a member of the group, such as `group:child@google.com` or `user:foo@google.com`. This field is present only if the output_group_edges option is enabled in request. Corresponds to the JSON property `groupEdges` @return [Array<Google::Apis::CloudassetV1::GoogleCloudAssetV1Edge>]

identities[RW]

Only the identities that match one of the following conditions will be presented: - The identity_selector, if it is specified in request; - Otherwise, identities reachable from the policy binding's members. Corresponds to the JSON property `identities` @return [Array<Google::Apis::CloudassetV1::GoogleCloudAssetV1Identity>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudasset_v1/classes.rb, line 1243
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudasset_v1/classes.rb, line 1248
def update!(**args)
  @group_edges = args[:group_edges] if args.key?(:group_edges)
  @identities = args[:identities] if args.key?(:identities)
end