Class: Google::Apis::ComposerV1beta1::ConfigConflict

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/composer_v1beta1/classes.rb,
lib/google/apis/composer_v1beta1/representations.rb,
lib/google/apis/composer_v1beta1/representations.rb

Overview

Environment configuration conflict.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ConfigConflict

Returns a new instance of ConfigConflict.



288
289
290
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 288

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#messageString

Conflict message. Corresponds to the JSON property message

Returns:

  • (String)


281
282
283
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 281

def message
  @message
end

#typeString

Conflict type. It can be blocking or non-blocking. Corresponds to the JSON property type

Returns:

  • (String)


286
287
288
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 286

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



293
294
295
296
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 293

def update!(**args)
  @message = args[:message] if args.key?(:message)
  @type = args[:type] if args.key?(:type)
end