Class: Google::Apis::WorkloadmanagerV1::SapDiscovery
- Inherits:
-
Object
- Object
- Google::Apis::WorkloadmanagerV1::SapDiscovery
- 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
-
#application_layer ⇒ Google::Apis::WorkloadmanagerV1::SapDiscoveryComponent
Message describing the system component.
-
#database_layer ⇒ Google::Apis::WorkloadmanagerV1::SapDiscoveryComponent
Message describing the system component.
-
#metadata ⇒ Google::Apis::WorkloadmanagerV1::SapDiscoveryMetadata
Message describing SAP discovery system metadata Corresponds to the JSON property
metadata. -
#system_id ⇒ String
A combination of database SID, database instance URI and tenant DB name to make a unique identifier per-system.
-
#update_time ⇒ String
Unix timestamp this system has been updated last.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SapDiscovery
constructor
A new instance of SapDiscovery.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SapDiscovery
Returns a new instance of SapDiscovery.
514 515 516 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 514 def initialize(**args) update!(**args) end |
Instance Attribute Details
#application_layer ⇒ Google::Apis::WorkloadmanagerV1::SapDiscoveryComponent
Message describing the system component.
Corresponds to the JSON property applicationLayer
491 492 493 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 491 def application_layer @application_layer end |
#database_layer ⇒ Google::Apis::WorkloadmanagerV1::SapDiscoveryComponent
Message describing the system component.
Corresponds to the JSON property databaseLayer
496 497 498 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 496 def database_layer @database_layer end |
#metadata ⇒ Google::Apis::WorkloadmanagerV1::SapDiscoveryMetadata
Message describing SAP discovery system metadata
Corresponds to the JSON property metadata
501 502 503 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 501 def @metadata end |
#system_id ⇒ String
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
507 508 509 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 507 def system_id @system_id end |
#update_time ⇒ String
Unix timestamp this system has been updated last.
Corresponds to the JSON property updateTime
512 513 514 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 512 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
519 520 521 522 523 524 525 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 519 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 |