Show / Hide Table of Contents

Class ListHmacKeysOptions

Options for ListHmacKey operations.

Inheritance
System.Object
ListHmacKeysOptions
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.Storage.V1
Assembly: Google.Cloud.Storage.V1.dll
Syntax
public sealed class ListHmacKeysOptions

Properties

PageSize

The number of results to return per page. (This modifies the per-request page size; it does not affect the total number of results returned.)

Declaration
public int? PageSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PageToken

If set, this token is used to indicate a continued list operation. The value should be taken from the NextPageToken property of either a Page<TResource> or a raw response from AsRawResponses().

Declaration
public string PageToken { get; set; }
Property Value
Type Description
System.String

ShowDeletedKeys

If set, this determines whether deleted keys are included in the results.

Declaration
public bool? ShowDeletedKeys { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
Back to top