Show / Hide Table of Contents

Class ServicesResource.ServiceLevelObjectivesResource.GetRequest

Get a ServiceLevelObjective by name.

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

Constructors

GetRequest(IClientService, String)

Constructs a new Get request.

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

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.Monitoring.v3.Data.ServiceLevelObjective>.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.Monitoring.v3.Data.ServiceLevelObjective>.MethodName

Name

Required. Resource name of the ServiceLevelObjective to get. The format is: projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]/serviceLevelObjectives/[SLO_NAME]

Declaration
[RequestParameter("name", RequestParameterType.Path)]
public virtual string Name { get; }
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.Monitoring.v3.Data.ServiceLevelObjective>.RestPath

View

View of the ServiceLevelObjective to return. If DEFAULT, return the ServiceLevelObjective as originally defined. If EXPLICIT and the ServiceLevelObjective is defined in terms of a BasicSli, replace the BasicSli with a RequestBasedSli spelling out how the SLI is computed.

Declaration
[RequestParameter("view", RequestParameterType.Query)]
public virtual ServicesResource.ServiceLevelObjectivesResource.GetRequest.ViewEnum? View { get; set; }
Property Value
Type Description
System.Nullable<ServicesResource.ServiceLevelObjectivesResource.GetRequest.ViewEnum>

Methods

InitParameters()

Initializes Get parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Monitoring.v3.MonitoringBaseServiceRequest<Google.Apis.Monitoring.v3.Data.ServiceLevelObjective>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top