Show / Hide Table of Contents

Class ServicesResource.ListRequest

List Services for this workspace.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ListServicesResponse>
MonitoringBaseServiceRequest<ListServicesResponse>
ServicesResource.ListRequest
Implements
IClientServiceRequest<ListServicesResponse>
IClientServiceRequest
Inherited Members
MonitoringBaseServiceRequest<ListServicesResponse>.Xgafv
MonitoringBaseServiceRequest<ListServicesResponse>.AccessToken
MonitoringBaseServiceRequest<ListServicesResponse>.Alt
MonitoringBaseServiceRequest<ListServicesResponse>.Callback
MonitoringBaseServiceRequest<ListServicesResponse>.Fields
MonitoringBaseServiceRequest<ListServicesResponse>.Key
MonitoringBaseServiceRequest<ListServicesResponse>.OauthToken
MonitoringBaseServiceRequest<ListServicesResponse>.PrettyPrint
MonitoringBaseServiceRequest<ListServicesResponse>.QuotaUser
MonitoringBaseServiceRequest<ListServicesResponse>.UploadType
MonitoringBaseServiceRequest<ListServicesResponse>.UploadProtocol
ClientServiceRequest<ListServicesResponse>.Execute()
ClientServiceRequest<ListServicesResponse>.ExecuteAsStream()
ClientServiceRequest<ListServicesResponse>.ExecuteAsync()
ClientServiceRequest<ListServicesResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListServicesResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListServicesResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListServicesResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ListServicesResponse>.GenerateRequestUri()
ClientServiceRequest<ListServicesResponse>.GetBody()
ClientServiceRequest<ListServicesResponse>.GetDefaultETagAction(String)
ClientServiceRequest<ListServicesResponse>.ETagAction
ClientServiceRequest<ListServicesResponse>.ModifyRequest
ClientServiceRequest<ListServicesResponse>.RequestParameters
ClientServiceRequest<ListServicesResponse>.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<ListServicesResponse>, IClientServiceRequest<ListServicesResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

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

Properties

Filter

A filter specifying what Services to return. The filter currently supports the following fields: - identifier_case - app_engine.module_id - cloud_endpoints.service - mesh_istio.mesh_uid

  • mesh_istio.service_namespace - mesh_istio.service_name - cluster_istio.location (deprecated) - cluster_istio.cluster_name (deprecated) - cluster_istio.service_namespace (deprecated) - cluster_istio.service_name (deprecated) identifier_case refers to which option in the identifier oneof is populated. For example, the filter identifier_case = "CUSTOM" would match all services with a value for the custom field. Valid options are "CUSTOM", "APP_ENGINE", "CLOUD_ENDPOINTS", "MESH_ISTIO", and "CLUSTER_ISTIO" (deprecated),
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.ListServicesResponse>.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.ListServicesResponse>.MethodName

PageSize

A non-negative number that is the maximum number of results to return. When 0, use default page size.

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

PageToken

If this field is not empty then it must contain the nextPageToken value returned by a previous call to this method. Using this field causes the method to return additional results from the previous method call.

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

Parent

Required. Resource name of the parent containing the listed services, either a project or a Monitoring Workspace. The formats are: projects/[PROJECT_ID_OR_NUMBER] workspaces/[HOST_PROJECT_ID_OR_NUMBER]

Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
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.ListServicesResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top