Show / Hide Table of Contents

Class AlertsResource.GetRequest

Gets the specified alert. Attempting to get a nonexistent alert returns NOT_FOUND error.

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

Constructors

GetRequest(IClientService, String)

Constructs a new Get request.

Declaration
public GetRequest(IClientService service, string alertId)
Parameters
Type Name Description
IClientService service
System.String alertId

Properties

AlertId

Required. The identifier of the alert to retrieve.

Declaration
[RequestParameter("alertId", RequestParameterType.Path)]
public virtual string AlertId { get; }
Property Value
Type Description
System.String

CustomerId

Optional. The unique identifier of the Google Workspace organization account of the customer the alert is associated with. Inferred from the caller identity if not provided.

Declaration
[RequestParameter("customerId", RequestParameterType.Query)]
public virtual string CustomerId { 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.AlertCenter.v1beta1.Data.Alert>.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.AlertCenter.v1beta1.Data.Alert>.MethodName

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.AlertCenter.v1beta1.Data.Alert>.RestPath

Methods

InitParameters()

Initializes Get parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.AlertCenter.v1beta1.AlertCenterBaseServiceRequest<Google.Apis.AlertCenter.v1beta1.Data.Alert>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top