class Google::Apis::ServicecontrolV1::CheckRequest

Request message for the Check method.

Attributes

operation[RW]

Represents information regarding an operation. Corresponds to the JSON property `operation` @return [Google::Apis::ServicecontrolV1::Operation]

request_project_settings[RW]

Requests the project settings to be returned as part of the check response. Corresponds to the JSON property `requestProjectSettings` @return [Boolean]

request_project_settings?[RW]

Requests the project settings to be returned as part of the check response. Corresponds to the JSON property `requestProjectSettings` @return [Boolean]

service_config_id[RW]

Specifies which version of service configuration should be used to process the request. If unspecified or no matching version can be found, the latest one will be used. Corresponds to the JSON property `serviceConfigId` @return [String]

skip_activation_check[RW]

Indicates if service activation check should be skipped for this request. Default behavior is to perform the check and apply relevant quota. WARNING: Setting this flag to “true” will disable quota enforcement. Corresponds to the JSON property `skipActivationCheck` @return [Boolean]

skip_activation_check?[RW]

Indicates if service activation check should be skipped for this request. Default behavior is to perform the check and apply relevant quota. WARNING: Setting this flag to “true” will disable quota enforcement. Corresponds to the JSON property `skipActivationCheck` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/servicecontrol_v1/classes.rb, line 590
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/servicecontrol_v1/classes.rb, line 595
def update!(**args)
  @operation = args[:operation] if args.key?(:operation)
  @request_project_settings = args[:request_project_settings] if args.key?(:request_project_settings)
  @service_config_id = args[:service_config_id] if args.key?(:service_config_id)
  @skip_activation_check = args[:skip_activation_check] if args.key?(:skip_activation_check)
end