Show / Hide Table of Contents

Class ListSecretsResponse

Response message for SecretManagerService.ListSecrets.

Inheritance
object
ListSecretsResponse
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.SecretManager.v1.Data
Assembly: Google.Apis.SecretManager.v1.dll
Syntax
public class ListSecretsResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

NextPageToken

A token to retrieve the next page of results. Pass this value in ListSecretsRequest.page_token to retrieve the next page.

Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type Description
string

Secrets

The list of Secrets sorted in reverse by create_time (newest first).

Declaration
[JsonProperty("secrets")]
public virtual IList<Secret> Secrets { get; set; }
Property Value
Type Description
IList<Secret>

TotalSize

The total number of Secrets but 0 when the ListSecretsRequest.filter field is set.

Declaration
[JsonProperty("totalSize")]
public virtual int? TotalSize { get; set; }
Property Value
Type Description
int?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX