Show / Hide Table of Contents

Class ListUptimeCheckConfigsResponse

The protocol for the ListUptimeCheckConfigs response.

Inheritance
System.Object
ListUptimeCheckConfigsResponse
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Monitoring.v3.Data
Assembly: Google.Apis.Monitoring.v3.dll
Syntax
public class ListUptimeCheckConfigsResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

NextPageToken

This field represents the pagination token to retrieve the next page of results. If the value is empty, it means no further results for the request. To retrieve the next page of results, the value of the next_page_token is passed to the subsequent List method call (in the request message's page_token field).

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

TotalSize

The total number of Uptime check configurations for the project, irrespective of any pagination.

Declaration
[JsonProperty("totalSize")]
public virtual int? TotalSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

UptimeCheckConfigs

The returned Uptime check configurations.

Declaration
[JsonProperty("uptimeCheckConfigs")]
public virtual IList<UptimeCheckConfig> UptimeCheckConfigs { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<UptimeCheckConfig>

Implements

IDirectResponseSchema
Back to top