Show / Hide Table of Contents

Class AppsResource.FirewallResource.IngressRulesResource.ListRequest

Lists the firewall rules of an application.

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

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

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

Properties

AppsId

Part of parent. Name of the Firewall collection to retrieve. Example: apps/myapp/firewall/ingressRules.

Declaration
[RequestParameter("appsId", RequestParameterType.Path)]
public virtual string AppsId { 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.Appengine.v1beta.Data.ListIngressRulesResponse>.HttpMethod

MatchingAddress

A valid IP Address. If set, only rules matching this address will be returned. The first returned rule will be the rule that fires on requests from this IP.

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

MethodName

Gets the method name.

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

PageSize

Maximum results to return per page.

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

PageToken

Continuation token for fetching the next page 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.Appengine.v1beta.Data.ListIngressRulesResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Appengine.v1beta.AppengineBaseServiceRequest<Google.Apis.Appengine.v1beta.Data.ListIngressRulesResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top