Class ProjectsResource.LocationsResource.MembershipsResource.FeaturesResource.ListRequest
Lists MembershipFeatures in a given project and location.
Inheritance
Inherited Members
Namespace: Google.Apis.GKEHub.v2beta
Assembly: Google.Apis.GKEHub.v2beta.dll
Syntax
public class ProjectsResource.LocationsResource.MembershipsResource.FeaturesResource.ListRequest : GKEHubBaseServiceRequest<ListMembershipFeaturesResponse>, IClientServiceRequest<ListMembershipFeaturesResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService, string)
Constructs a new List request.
Declaration
public ListRequest(IClientService service, string parent)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
string | parent |
Properties
Filter
Lists MembershipFeatures that match the filter expression, following the syntax outlined in
https://google.aip.dev/160. Examples: - Feature with the name "helloworld" in project
"foo-proj" and membership "member-bar": name =
"projects/foo-proj/locations/global/memberships/member-bar/features/helloworld" - Features
that have a label called foo
: labels.foo:* - Features that have a label called foo
whose
value is bar
: labels.foo = bar
Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type | Description |
---|---|
string |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
OrderBy
One or more fields to compare and use to sort the output. See https://google.aip.dev/132#ordering.
Declaration
[RequestParameter("orderBy", RequestParameterType.Query)]
public virtual string OrderBy { get; set; }
Property Value
Type | Description |
---|---|
string |
PageSize
When requesting a 'page' of resources, page_size
specifies number of resources to return.
If unspecified or set to 0, all resources will be returned.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
PageToken
Token returned by previous call to ListFeatures
which specifies the position in the list
from where to continue listing the resources.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Parent
Required. The parent where the MembershipFeature will be listed. In the format:
projects/*/locations/*/memberships/*
.
Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
Type | Description |
---|---|
string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()