class Google::Apis::ServicemanagementV1::SubmitConfigSourceRequest

Request message for SubmitConfigSource method.

Attributes

config_source[RW]

Represents a source file which is used to generate the service configuration defined by `google.api.Service`. Corresponds to the JSON property `configSource` @return [Google::Apis::ServicemanagementV1::ConfigSource]

validate_only[RW]

Optional. If set, this will result in the generation of a `google.api.Service` configuration based on the `ConfigSource` provided, but the generated config and the sources will NOT be persisted. Corresponds to the JSON property `validateOnly` @return [Boolean]

validate_only?[RW]

Optional. If set, this will result in the generation of a `google.api.Service` configuration based on the `ConfigSource` provided, but the generated config and the sources will NOT be persisted. Corresponds to the JSON property `validateOnly` @return [Boolean]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/servicemanagement_v1/classes.rb, line 3669
def update!(**args)
  @config_source = args[:config_source] if args.key?(:config_source)
  @validate_only = args[:validate_only] if args.key?(:validate_only)
end