class Google::Apis::ServicemanagementV1::SubmitConfigSourceRequest
Request message for SubmitConfigSource method.
Attributes
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]
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]
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
# File lib/google/apis/servicemanagement_v1/classes.rb, line 3664 def initialize(**args) update!(**args) end
Public Instance Methods
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