Class: Google::Apis::DeploymentmanagerV2beta2::Operation::Warning

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable
Defined in:
generated/google/apis/deploymentmanager_v2beta2/classes.rb,
generated/google/apis/deploymentmanager_v2beta2/representations.rb,
generated/google/apis/deploymentmanager_v2beta2/representations.rb

Defined Under Namespace

Classes: Datum

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Warning

Returns a new instance of Warning.



532
533
534
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 532

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

Instance Attribute Details

#codeString

[Output Only] The warning type identifier for this warning. Corresponds to the JSON property code

Returns:

  • (String)


520
521
522
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 520

def code
  @code
end

#dataArray<Google::Apis::DeploymentmanagerV2beta2::Operation::Warning::Datum>

[Output Only] Metadata for this warning in key: value format. Corresponds to the JSON property data



525
526
527
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 525

def data
  @data
end

#messageString

[Output Only] Optional human-readable details for this warning. Corresponds to the JSON property message

Returns:

  • (String)


530
531
532
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 530

def message
  @message
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



537
538
539
540
541
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 537

def update!(**args)
  @code = args[:code] unless args[:code].nil?
  @data = args[:data] unless args[:data].nil?
  @message = args[:message] unless args[:message].nil?
end