Class: Google::Apis::OracledatabaseV1::DeploymentDiagnosticData

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DeploymentDiagnosticData

Returns a new instance of DeploymentDiagnosticData.



3158
3159
3160
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3158

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

Instance Attribute Details

#bucketString

Output only. The bucket name. Corresponds to the JSON property bucket

Returns:

  • (String)


3131
3132
3133
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3131

def bucket
  @bucket
end

#diagnostic_end_timeString

Output only. The time diagnostic end. Corresponds to the JSON property diagnosticEndTime

Returns:

  • (String)


3136
3137
3138
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3136

def diagnostic_end_time
  @diagnostic_end_time
end

#diagnostic_start_timeString

Output only. The time diagnostic start. Corresponds to the JSON property diagnosticStartTime

Returns:

  • (String)


3141
3142
3143
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3141

def diagnostic_start_time
  @diagnostic_start_time
end

#diagnostic_stateString

Output only. The diagnostic state. Corresponds to the JSON property diagnosticState

Returns:

  • (String)


3146
3147
3148
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3146

def diagnostic_state
  @diagnostic_state
end

#namespaceString

Output only. The namespace name. Corresponds to the JSON property namespace

Returns:

  • (String)


3151
3152
3153
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3151

def namespace
  @namespace
end

#objectString

Output only. The object name. Corresponds to the JSON property object

Returns:

  • (String)


3156
3157
3158
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3156

def object
  @object
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3163
3164
3165
3166
3167
3168
3169
3170
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3163

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