Class: Google::Apis::DeploymentmanagerV2beta::Diagnostic

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Diagnostic

Returns a new instance of Diagnostic.



842
843
844
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 842

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

Instance Attribute Details

#fieldString

JsonPath expression on the resource that if non empty, indicates that this field needs to be extracted as a diagnostic. Corresponds to the JSON property field

Returns:

  • (String)


835
836
837
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 835

def field
  @field
end

#levelString

Level to record this diagnostic. Corresponds to the JSON property level

Returns:

  • (String)


840
841
842
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 840

def level
  @level
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



847
848
849
850
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 847

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