Class ListSecretsResponse
Response message for SecretManagerService.ListSecrets.
Implements
Inherited Members
Namespace: Google.Apis.SecretManager.v1beta2.Data
Assembly: Google.Apis.SecretManager.v1beta2.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? |