Class: Google::Apis::DeploymentmanagerV2::ResourceUpdate

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

Defined Under Namespace

Classes: Error, Warning

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ResourceUpdate

Returns a new instance of ResourceUpdate.



922
923
924
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 922

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

Instance Attribute Details

#errorGoogle::Apis::DeploymentmanagerV2::ResourceUpdate::Error

[Output Only] If errors are generated during update of the resource, this field will be populated. Corresponds to the JSON property error



886
887
888
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 886

def error
  @error
end

#final_propertiesString

[Output Only] The expanded properties of the resource with reference values expanded. Returned as serialized YAML. Corresponds to the JSON property finalProperties

Returns:

  • (String)


892
893
894
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 892

def final_properties
  @final_properties
end

#intentString

[Output Only] The intent of the resource: PREVIEW, UPDATE, or CANCEL. Corresponds to the JSON property intent

Returns:

  • (String)


897
898
899
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 897

def intent
  @intent
end

#manifestString

[Output Only] URL of the manifest representing the update configuration of this resource. Corresponds to the JSON property manifest

Returns:

  • (String)


903
904
905
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 903

def manifest
  @manifest
end

#propertiesString

[Output Only] The set of updated properties for this resource, before references are expanded. Returned as serialized YAML. Corresponds to the JSON property properties

Returns:

  • (String)


909
910
911
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 909

def properties
  @properties
end

#stateString

[Output Only] The state of the resource. Corresponds to the JSON property state

Returns:

  • (String)


914
915
916
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 914

def state
  @state
end

#warningsArray<Google::Apis::DeploymentmanagerV2::ResourceUpdate::Warning>

[Output Only] If warning messages are generated during processing of this resource, this field will be populated. Corresponds to the JSON property warnings



920
921
922
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 920

def warnings
  @warnings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



927
928
929
930
931
932
933
934
935
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 927

def update!(**args)
  @error = args[:error] if args.key?(:error)
  @final_properties = args[:final_properties] if args.key?(:final_properties)
  @intent = args[:intent] if args.key?(:intent)
  @manifest = args[:manifest] if args.key?(:manifest)
  @properties = args[:properties] if args.key?(:properties)
  @state = args[:state] if args.key?(:state)
  @warnings = args[:warnings] if args.key?(:warnings)
end