Class: Google::Apis::WorkloadmanagerV1::SapDiscovery

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

Overview

The schema of SAP system discovery data.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SapDiscovery

Returns a new instance of SapDiscovery.



906
907
908
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 906

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

Instance Attribute Details

#application_layerGoogle::Apis::WorkloadmanagerV1::SapDiscoveryComponent

Message describing the system component. Corresponds to the JSON property applicationLayer



883
884
885
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 883

def application_layer
  @application_layer
end

#database_layerGoogle::Apis::WorkloadmanagerV1::SapDiscoveryComponent

Message describing the system component. Corresponds to the JSON property databaseLayer



888
889
890
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 888

def database_layer
  @database_layer
end

#metadataGoogle::Apis::WorkloadmanagerV1::SapDiscoveryMetadata

Message describing SAP discovery system metadata Corresponds to the JSON property metadata



893
894
895
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 893

def 
  @metadata
end

#system_idString

Output only. A combination of database SID, database instance URI and tenant DB name to make a unique identifier per-system. Corresponds to the JSON property systemId

Returns:

  • (String)


899
900
901
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 899

def system_id
  @system_id
end

#update_timeString

Required. Unix timestamp this system has been updated last. Corresponds to the JSON property updateTime

Returns:

  • (String)


904
905
906
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 904

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



911
912
913
914
915
916
917
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 911

def update!(**args)
  @application_layer = args[:application_layer] if args.key?(:application_layer)
  @database_layer = args[:database_layer] if args.key?(:database_layer)
  @metadata = args[:metadata] if args.key?(:metadata)
  @system_id = args[:system_id] if args.key?(:system_id)
  @update_time = args[:update_time] if args.key?(:update_time)
end