Show / Hide Table of Contents

Class ResourcesResource.CalendarsResource.ListRequest

Retrieves a list of calendar resources for an account.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<CalendarResources>
DirectoryBaseServiceRequest<CalendarResources>
ResourcesResource.CalendarsResource.ListRequest
Implements
IClientServiceRequest<CalendarResources>
IClientServiceRequest
Inherited Members
DirectoryBaseServiceRequest<CalendarResources>.Xgafv
DirectoryBaseServiceRequest<CalendarResources>.AccessToken
DirectoryBaseServiceRequest<CalendarResources>.Alt
DirectoryBaseServiceRequest<CalendarResources>.Callback
DirectoryBaseServiceRequest<CalendarResources>.Fields
DirectoryBaseServiceRequest<CalendarResources>.Key
DirectoryBaseServiceRequest<CalendarResources>.OauthToken
DirectoryBaseServiceRequest<CalendarResources>.PrettyPrint
DirectoryBaseServiceRequest<CalendarResources>.QuotaUser
DirectoryBaseServiceRequest<CalendarResources>.UploadType
DirectoryBaseServiceRequest<CalendarResources>.UploadProtocol
ClientServiceRequest<CalendarResources>.Execute()
ClientServiceRequest<CalendarResources>.ExecuteAsStream()
ClientServiceRequest<CalendarResources>.ExecuteAsync()
ClientServiceRequest<CalendarResources>.ExecuteAsync(CancellationToken)
ClientServiceRequest<CalendarResources>.ExecuteAsStreamAsync()
ClientServiceRequest<CalendarResources>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<CalendarResources>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<CalendarResources>.GenerateRequestUri()
ClientServiceRequest<CalendarResources>.GetBody()
ClientServiceRequest<CalendarResources>.GetDefaultETagAction(String)
ClientServiceRequest<CalendarResources>.ETagAction
ClientServiceRequest<CalendarResources>.ModifyRequest
ClientServiceRequest<CalendarResources>.RequestParameters
ClientServiceRequest<CalendarResources>.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.Admin.Directory.directory_v1
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class ListRequest : DirectoryBaseServiceRequest<CalendarResources>, IClientServiceRequest<CalendarResources>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

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

Properties

Customer

The unique ID for the customer's G Suite account. As an account administrator, you can also use the my_customer alias to represent your account's customer ID.

Declaration
[RequestParameter("customer", RequestParameterType.Path)]
public virtual string Customer { get; }
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.Admin.Directory.directory_v1.Data.CalendarResources>.HttpMethod

MaxResults

Maximum number of results to return.

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

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Admin.Directory.directory_v1.Data.CalendarResources>.MethodName

OrderBy

Field(s) to sort results by in either ascending or descending order. Supported fields include resourceId, resourceName, capacity, buildingId, and floorName. If no order is specified, defaults to ascending. Should be of the form "field [asc|desc], field [asc|desc], ...". For example buildingId, capacity desc would return results sorted first by buildingId in ascending order then by capacity in descending order.

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

PageToken

Token to specify the next page in the list.

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

Query

String query used to filter results. Should be of the form "field operator value" where field can be any of supported fields and operators can be any of supported operations. Operators include '=' for exact match, '!=' for mismatch and ':' for prefix match or HAS match where applicable. For prefix match, the value should always be followed by a *. Logical operators NOT and AND are supported (in this order of precedence). Supported fields include generatedResourceName, name, buildingId, floor_name, capacity, featureInstances.feature.name, resourceEmail, resourceCategory. For example buildingId=US-NYC-9TH AND featureInstances.feature.name:Phone.

Declaration
[RequestParameter("query", RequestParameterType.Query)]
public virtual string Query { 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.Admin.Directory.directory_v1.Data.CalendarResources>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Admin.Directory.directory_v1.DirectoryBaseServiceRequest<Google.Apis.Admin.Directory.directory_v1.Data.CalendarResources>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top