Class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpAppconnectorsV1alphaContainerHealthDetails
- Inherits:
-
Object
- Object
- Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpAppconnectorsV1alphaContainerHealthDetails
- 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
-
#current_config_version ⇒ String
The version of the current config.
-
#error_msg ⇒ String
The latest error message.
-
#expected_config_version ⇒ String
The version of the expected config.
-
#extended_status ⇒ Hash<String,String>
The extended status.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudBeyondcorpAppconnectorsV1alphaContainerHealthDetails
constructor
A new instance of GoogleCloudBeyondcorpAppconnectorsV1alphaContainerHealthDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudBeyondcorpAppconnectorsV1alphaContainerHealthDetails
Returns a new instance of GoogleCloudBeyondcorpAppconnectorsV1alphaContainerHealthDetails.
1306 1307 1308 |
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1306 def initialize(**args) update!(**args) end |
Instance Attribute Details
#current_config_version ⇒ String
The version of the current config.
Corresponds to the JSON property currentConfigVersion
1289 1290 1291 |
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1289 def current_config_version @current_config_version end |
#error_msg ⇒ String
The latest error message.
Corresponds to the JSON property errorMsg
1294 1295 1296 |
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1294 def error_msg @error_msg end |
#expected_config_version ⇒ String
The version of the expected config.
Corresponds to the JSON property expectedConfigVersion
1299 1300 1301 |
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1299 def expected_config_version @expected_config_version end |
#extended_status ⇒ Hash<String,String>
The extended status. Such as ExitCode, StartedAt, FinishedAt, etc.
Corresponds to the JSON property extendedStatus
1304 1305 1306 |
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1304 def extended_status @extended_status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1311 1312 1313 1314 1315 1316 |
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 1311 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 |