Class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpAppconnectorsV1alphaContainerHealthDetails

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

Overview

ContainerHealthDetails reflects the health details of a container.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudBeyondcorpAppconnectorsV1alphaContainerHealthDetails

Returns a new instance of GoogleCloudBeyondcorpAppconnectorsV1alphaContainerHealthDetails.



1278
1279
1280
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1278

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

Instance Attribute Details

#current_config_versionString

The version of the current config. Corresponds to the JSON property currentConfigVersion

Returns:

  • (String)


1261
1262
1263
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1261

def current_config_version
  @current_config_version
end

#error_msgString

The latest error message. Corresponds to the JSON property errorMsg

Returns:

  • (String)


1266
1267
1268
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1266

def error_msg
  @error_msg
end

#expected_config_versionString

The version of the expected config. Corresponds to the JSON property expectedConfigVersion

Returns:

  • (String)


1271
1272
1273
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1271

def expected_config_version
  @expected_config_version
end

#extended_statusHash<String,String>

The extended status. Such as ExitCode, StartedAt, FinishedAt, etc. Corresponds to the JSON property extendedStatus

Returns:

  • (Hash<String,String>)


1276
1277
1278
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1276

def extended_status
  @extended_status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1283
1284
1285
1286
1287
1288
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1283

def update!(**args)
  @current_config_version = args[:current_config_version] if args.key?(:current_config_version)
  @error_msg = args[:error_msg] if args.key?(:error_msg)
  @expected_config_version = args[:expected_config_version] if args.key?(:expected_config_version)
  @extended_status = args[:extended_status] if args.key?(:extended_status)
end