Class: Google::Apis::DeploymentmanagerV2beta::Manifest

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

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) ⇒ Manifest

Returns a new instance of Manifest



1094
1095
1096
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1094

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

Instance Attribute Details

#configGoogle::Apis::DeploymentmanagerV2beta::ConfigFile

Corresponds to the JSON property config



1055
1056
1057
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1055

def config
  @config
end

#expanded_configString

Output only. The fully-expanded configuration file, including any templates and references. Corresponds to the JSON property expandedConfig

Returns:

  • (String)


1061
1062
1063
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1061

def expanded_config
  @expanded_config
end

#idFixnum

Output only. Unique identifier for the resource; defined by the server. Corresponds to the JSON property id

Returns:

  • (Fixnum)


1066
1067
1068
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1066

def id
  @id
end

#importsArray<Google::Apis::DeploymentmanagerV2beta::ImportFile>

Output only. The imported files for this manifest. Corresponds to the JSON property imports



1071
1072
1073
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1071

def imports
  @imports
end

#insert_timeString

Output only. Timestamp when the manifest was created, in RFC3339 text format. Corresponds to the JSON property insertTime

Returns:

  • (String)


1076
1077
1078
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1076

def insert_time
  @insert_time
end

#layoutString

Output only. The YAML layout for this manifest. Corresponds to the JSON property layout

Returns:

  • (String)


1081
1082
1083
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1081

def layout
  @layout
end

#nameString

Output only. The name of the manifest. Corresponds to the JSON property name

Returns:

  • (String)


1087
1088
1089
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1087

def name
  @name
end

Output only. Self link for the manifest. Corresponds to the JSON property selfLink

Returns:

  • (String)


1092
1093
1094
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1092

def self_link
  @self_link
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1099

def update!(**args)
  @config = args[:config] if args.key?(:config)
  @expanded_config = args[:expanded_config] if args.key?(:expanded_config)
  @id = args[:id] if args.key?(:id)
  @imports = args[:imports] if args.key?(:imports)
  @insert_time = args[:insert_time] if args.key?(:insert_time)
  @layout = args[:layout] if args.key?(:layout)
  @name = args[:name] if args.key?(:name)
  @self_link = args[:self_link] if args.key?(:self_link)
end