#[non_exhaustive]
pub struct BatchReadOperation {
Show 14 fields pub list_object_attributes: Option<BatchListObjectAttributes>, pub list_object_children: Option<BatchListObjectChildren>, pub list_attached_indices: Option<BatchListAttachedIndices>, pub list_object_parent_paths: Option<BatchListObjectParentPaths>, pub get_object_information: Option<BatchGetObjectInformation>, pub get_object_attributes: Option<BatchGetObjectAttributes>, pub list_object_parents: Option<BatchListObjectParents>, pub list_object_policies: Option<BatchListObjectPolicies>, pub list_policy_attachments: Option<BatchListPolicyAttachments>, pub lookup_policy: Option<BatchLookupPolicy>, pub list_index: Option<BatchListIndex>, pub list_outgoing_typed_links: Option<BatchListOutgoingTypedLinks>, pub list_incoming_typed_links: Option<BatchListIncomingTypedLinks>, pub get_link_attributes: Option<BatchGetLinkAttributes>,
}
Expand description

Represents the output of a BatchRead operation.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
list_object_attributes: Option<BatchListObjectAttributes>

Lists all attributes that are associated with an object.

list_object_children: Option<BatchListObjectChildren>

Returns a paginated list of child objects that are associated with a given object.

list_attached_indices: Option<BatchListAttachedIndices>

Lists indices attached to an object.

list_object_parent_paths: Option<BatchListObjectParentPaths>

Retrieves all available parent paths for any object type such as node, leaf node, policy node, and index node objects. For more information about objects, see Directory Structure.

get_object_information: Option<BatchGetObjectInformation>

Retrieves metadata about an object.

get_object_attributes: Option<BatchGetObjectAttributes>

Retrieves attributes within a facet that are associated with an object.

list_object_parents: Option<BatchListObjectParents>

Lists parent objects that are associated with a given object in pagination fashion.

list_object_policies: Option<BatchListObjectPolicies>

Returns policies attached to an object in pagination fashion.

list_policy_attachments: Option<BatchListPolicyAttachments>

Returns all of the ObjectIdentifiers to which a given policy is attached.

lookup_policy: Option<BatchLookupPolicy>

Lists all policies from the root of the Directory to the object specified. If there are no policies present, an empty list is returned. If policies are present, and if some objects don't have the policies attached, it returns the ObjectIdentifier for such objects. If policies are present, it returns ObjectIdentifier, policyId, and policyType. Paths that don't lead to the root from the target object are ignored. For more information, see Policies.

list_index: Option<BatchListIndex>

Lists objects attached to the specified index.

list_outgoing_typed_links: Option<BatchListOutgoingTypedLinks>

Returns a paginated list of all the outgoing TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed Links.

list_incoming_typed_links: Option<BatchListIncomingTypedLinks>

Returns a paginated list of all the incoming TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed Links.

get_link_attributes: Option<BatchGetLinkAttributes>

Retrieves attributes that are associated with a typed link.

Implementations

Lists all attributes that are associated with an object.

Returns a paginated list of child objects that are associated with a given object.

Lists indices attached to an object.

Retrieves all available parent paths for any object type such as node, leaf node, policy node, and index node objects. For more information about objects, see Directory Structure.

Retrieves metadata about an object.

Retrieves attributes within a facet that are associated with an object.

Lists parent objects that are associated with a given object in pagination fashion.

Returns policies attached to an object in pagination fashion.

Returns all of the ObjectIdentifiers to which a given policy is attached.

Lists all policies from the root of the Directory to the object specified. If there are no policies present, an empty list is returned. If policies are present, and if some objects don't have the policies attached, it returns the ObjectIdentifier for such objects. If policies are present, it returns ObjectIdentifier, policyId, and policyType. Paths that don't lead to the root from the target object are ignored. For more information, see Policies.

Lists objects attached to the specified index.

Returns a paginated list of all the outgoing TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed Links.

Returns a paginated list of all the incoming TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed Links.

Retrieves attributes that are associated with a typed link.

Creates a new builder-style object to manufacture BatchReadOperation

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more