Class ListSecretVersionsResponse
Response message for SecretManagerService.ListSecretVersions.
Implements
Inherited Members
Namespace: Google.Apis.SecretManager.v1beta2.Data
Assembly: Google.Apis.SecretManager.v1beta2.dll
Syntax
public class ListSecretVersionsResponse : 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 ListSecretVersionsRequest.page_token to retrieve the next page.
Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
TotalSize
The total number of SecretVersions but 0 when the ListSecretsRequest.filter field is set.
Declaration
[JsonProperty("totalSize")]
public virtual int? TotalSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
Versions
The list of SecretVersions sorted in reverse by create_time (newest first).
Declaration
[JsonProperty("versions")]
public virtual IList<SecretVersion> Versions { get; set; }
Property Value
Type | Description |
---|---|
IList<SecretVersion> |