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

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

Returns a new instance of Manifest.



1014
1015
1016
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 1014

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

Instance Attribute Details

#configGoogle::Apis::DeploymentmanagerV2beta::ConfigFile

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



966
967
968
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 966

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)


972
973
974
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 972

def expanded_config
  @expanded_config
end

#idFixnum

Corresponds to the JSON property id

Returns:

  • (Fixnum)


977
978
979
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 977

def id
  @id
end

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

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



982
983
984
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 982

def imports
  @imports
end

#insert_timeString

Output only. Creation timestamp in RFC3339 text format. Corresponds to the JSON property insertTime

Returns:

  • (String)


987
988
989
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 987

def insert_time
  @insert_time
end

#layoutString

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

Returns:

  • (String)


992
993
994
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 992

def layout
  @layout
end

#manifest_size_bytesFixnum

Output only. The computed size of the fully expanded manifest. Corresponds to the JSON property manifestSizeBytes

Returns:

  • (Fixnum)


997
998
999
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 997

def manifest_size_bytes
  @manifest_size_bytes
end

#manifest_size_limit_bytesFixnum

Output only. The size limit for expanded manifests in the project. Corresponds to the JSON property manifestSizeLimitBytes

Returns:

  • (Fixnum)


1002
1003
1004
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 1002

def manifest_size_limit_bytes
  @manifest_size_limit_bytes
end

#nameString

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

Returns:

  • (String)


1007
1008
1009
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 1007

def name
  @name
end

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

Returns:

  • (String)


1012
1013
1014
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 1012

def self_link
  @self_link
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 1019

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)
  @manifest_size_bytes = args[:manifest_size_bytes] if args.key?(:manifest_size_bytes)
  @manifest_size_limit_bytes = args[:manifest_size_limit_bytes] if args.key?(:manifest_size_limit_bytes)
  @name = args[:name] if args.key?(:name)
  @self_link = args[:self_link] if args.key?(:self_link)
end