class Google::Apis::ServiceusageV1beta1::ImportConsumerOverridesRequest

Request message for ImportConsumerOverrides

Attributes

force[RW]

Whether to force the creation of the quota overrides. Setting the force parameter to 'true' ignores all quota safety checks that would fail the request. QuotaSafetyCheck lists all such validations. Corresponds to the JSON property `force` @return [Boolean]

force?[RW]

Whether to force the creation of the quota overrides. Setting the force parameter to 'true' ignores all quota safety checks that would fail the request. QuotaSafetyCheck lists all such validations. Corresponds to the JSON property `force` @return [Boolean]

force_only[RW]

The list of quota safety checks to ignore before the override mutation. Unlike 'force' field that ignores all the quota safety checks, the 'force_only' field ignores only the specified checks; other checks are still enforced. The 'force' and 'force_only' fields cannot both be set. Corresponds to the JSON property `forceOnly` @return [Array<String>]

inline_source[RW]

Import data embedded in the request message Corresponds to the JSON property `inlineSource` @return [Google::Apis::ServiceusageV1beta1::OverrideInlineSource]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/serviceusage_v1beta1/classes.rb, line 2403
def update!(**args)
  @force = args[:force] if args.key?(:force)
  @force_only = args[:force_only] if args.key?(:force_only)
  @inline_source = args[:inline_source] if args.key?(:inline_source)
end