class Google::Apis::ApigeeV1::GoogleCloudApigeeV1ConfigVersion

Version of the API proxy configuration schema. Currently, only 4.0 is supported.

Attributes

major_version[RW]

Major version of the API proxy configuration schema. Corresponds to the JSON property `majorVersion` @return [Fixnum]

minor_version[RW]

Minor version of the API proxy configuration schema. Corresponds to the JSON property `minorVersion` @return [Fixnum]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 1477
def update!(**args)
  @major_version = args[:major_version] if args.key?(:major_version)
  @minor_version = args[:minor_version] if args.key?(:minor_version)
end