class Google::Apis::ServicecontrolV1::CheckRequest
Request
message for the Check method.
Attributes
Represents information regarding an operation. Corresponds to the JSON property `operation` @return [Google::Apis::ServicecontrolV1::Operation]
Requests the project settings to be returned as part of the check response. Corresponds to the JSON property `requestProjectSettings` @return [Boolean]
Requests the project settings to be returned as part of the check response. Corresponds to the JSON property `requestProjectSettings` @return [Boolean]
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]
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]
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
# File lib/google/apis/servicecontrol_v1/classes.rb, line 590 def initialize(**args) update!(**args) end
Public Instance Methods
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