Show / Hide Table of Contents

Class ProjectsResource.NotificationChannelsResource.ListRequest

Lists the notification channels that have been created for the project.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ListNotificationChannelsResponse>
MonitoringBaseServiceRequest<ListNotificationChannelsResponse>
ProjectsResource.NotificationChannelsResource.ListRequest
Implements
IClientServiceRequest<ListNotificationChannelsResponse>
IClientServiceRequest
Inherited Members
MonitoringBaseServiceRequest<ListNotificationChannelsResponse>.Xgafv
MonitoringBaseServiceRequest<ListNotificationChannelsResponse>.AccessToken
MonitoringBaseServiceRequest<ListNotificationChannelsResponse>.Alt
MonitoringBaseServiceRequest<ListNotificationChannelsResponse>.Callback
MonitoringBaseServiceRequest<ListNotificationChannelsResponse>.Fields
MonitoringBaseServiceRequest<ListNotificationChannelsResponse>.Key
MonitoringBaseServiceRequest<ListNotificationChannelsResponse>.OauthToken
MonitoringBaseServiceRequest<ListNotificationChannelsResponse>.PrettyPrint
MonitoringBaseServiceRequest<ListNotificationChannelsResponse>.QuotaUser
MonitoringBaseServiceRequest<ListNotificationChannelsResponse>.UploadType
MonitoringBaseServiceRequest<ListNotificationChannelsResponse>.UploadProtocol
ClientServiceRequest<ListNotificationChannelsResponse>.Execute()
ClientServiceRequest<ListNotificationChannelsResponse>.ExecuteAsStream()
ClientServiceRequest<ListNotificationChannelsResponse>.ExecuteAsync()
ClientServiceRequest<ListNotificationChannelsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListNotificationChannelsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListNotificationChannelsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListNotificationChannelsResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ListNotificationChannelsResponse>.GenerateRequestUri()
ClientServiceRequest<ListNotificationChannelsResponse>.GetBody()
ClientServiceRequest<ListNotificationChannelsResponse>.GetDefaultETagAction(String)
ClientServiceRequest<ListNotificationChannelsResponse>.ETagAction
ClientServiceRequest<ListNotificationChannelsResponse>.ModifyRequest
ClientServiceRequest<ListNotificationChannelsResponse>.RequestParameters
ClientServiceRequest<ListNotificationChannelsResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
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
Assembly: Google.Apis.Monitoring.v3.dll
Syntax
public class ListRequest : MonitoringBaseServiceRequest<ListNotificationChannelsResponse>, IClientServiceRequest<ListNotificationChannelsResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, string name)
Parameters
Type Name Description
IClientService service
System.String name

Properties

Filter

If provided, this field specifies the criteria that must be met by notification channels to be included in the response.For more details, see sorting and filtering (https://cloud.google.com/monitoring/api/v3/sorting-and-filtering).

Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type Description
System.String

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Monitoring.v3.Data.ListNotificationChannelsResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Monitoring.v3.Data.ListNotificationChannelsResponse>.MethodName

Name

Required. The project on which to execute the request. The format is: projects/[PROJECT_ID_OR_NUMBER] This names the container in which to look for the notification channels; it does not name a specific channel. To query a specific channel by REST resource name, use the GetNotificationChannel operation.

Declaration
[RequestParameter("name", RequestParameterType.Path)]
public virtual string Name { get; }
Property Value
Type Description
System.String

OrderBy

A comma-separated list of fields by which to sort the result. Supports the same set of fields as in filter. Entries can be prefixed with a minus sign to sort in descending rather than ascending order.For more details, see sorting and filtering (https://cloud.google.com/monitoring/api/v3/sorting-and-filtering).

Declaration
[RequestParameter("orderBy", RequestParameterType.Query)]
public virtual string OrderBy { get; set; }
Property Value
Type Description
System.String

PageSize

The maximum number of results to return in a single response. If not set to a positive number, a reasonable value will be chosen by the service.

Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PageToken

If non-empty, page_token must contain a value returned as the next_page_token in a previous response to request the next set of results.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Monitoring.v3.Data.ListNotificationChannelsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Monitoring.v3.MonitoringBaseServiceRequest<Google.Apis.Monitoring.v3.Data.ListNotificationChannelsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top