Show / Hide Table of Contents

Class LiensResource.ListRequest

List all Liens applied to the parent resource. Callers of this method will require permission on the parent resource. For example, a Lien with a parent of projects/1234 requires permission resourcemanager.projects.get.

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

Constructors

ListRequest(IClientService)

Constructs a new List request.

Declaration
public ListRequest(IClientService service)
Parameters
Type Name Description
IClientService service

Properties

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudResourceManager.v3.Data.ListLiensResponse>.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.CloudResourceManager.v3.Data.ListLiensResponse>.MethodName

PageSize

The maximum number of items to return. This is a suggestion for the server.

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

PageToken

The next_page_token value returned from a previous List request, if any.

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

Parent

Required. The name of the resource to list all attached Liens. For example, projects/1234. (google.api.field_policy).resource_type annotation is not set since the parent depends on the meta api implementation. This field could be a project or other sub project resources.

Declaration
[RequestParameter("parent", RequestParameterType.Query)]
public virtual string Parent { 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.CloudResourceManager.v3.Data.ListLiensResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.CloudResourceManager.v3.CloudResourceManagerBaseServiceRequest<Google.Apis.CloudResourceManager.v3.Data.ListLiensResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top