Class: Google::Apis::OracledatabaseV1::DeploymentDiagnosticData
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::DeploymentDiagnosticData
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/oracledatabase_v1/classes.rb,
lib/google/apis/oracledatabase_v1/representations.rb,
lib/google/apis/oracledatabase_v1/representations.rb
Overview
The deployment diagnostic data.
Instance Attribute Summary collapse
-
#bucket ⇒ String
Output only.
-
#diagnostic_end_time ⇒ String
Output only.
-
#diagnostic_start_time ⇒ String
Output only.
-
#diagnostic_state ⇒ String
Output only.
-
#namespace ⇒ String
Output only.
-
#object ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeploymentDiagnosticData
constructor
A new instance of DeploymentDiagnosticData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeploymentDiagnosticData
Returns a new instance of DeploymentDiagnosticData.
3113 3114 3115 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3113 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bucket ⇒ String
Output only. The bucket name.
Corresponds to the JSON property bucket
3086 3087 3088 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3086 def bucket @bucket end |
#diagnostic_end_time ⇒ String
Output only. The time diagnostic end.
Corresponds to the JSON property diagnosticEndTime
3091 3092 3093 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3091 def diagnostic_end_time @diagnostic_end_time end |
#diagnostic_start_time ⇒ String
Output only. The time diagnostic start.
Corresponds to the JSON property diagnosticStartTime
3096 3097 3098 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3096 def diagnostic_start_time @diagnostic_start_time end |
#diagnostic_state ⇒ String
Output only. The diagnostic state.
Corresponds to the JSON property diagnosticState
3101 3102 3103 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3101 def diagnostic_state @diagnostic_state end |
#namespace ⇒ String
Output only. The namespace name.
Corresponds to the JSON property namespace
3106 3107 3108 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3106 def namespace @namespace end |
#object ⇒ String
Output only. The object name.
Corresponds to the JSON property object
3111 3112 3113 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3111 def object @object end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3118 3119 3120 3121 3122 3123 3124 3125 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3118 def update!(**args) @bucket = args[:bucket] if args.key?(:bucket) @diagnostic_end_time = args[:diagnostic_end_time] if args.key?(:diagnostic_end_time) @diagnostic_start_time = args[:diagnostic_start_time] if args.key?(:diagnostic_start_time) @diagnostic_state = args[:diagnostic_state] if args.key?(:diagnostic_state) @namespace = args[:namespace] if args.key?(:namespace) @object = args[:object] if args.key?(:object) end |