class Google::Apis::GkehubV1alpha::ConfigManagementSyncError
An ACM created error representing a problem syncing configurations
Attributes
code[RW]
An ACM defined error code Corresponds to the JSON property `code` @return [String]
error_message[RW]
A description of the error Corresponds to the JSON property `errorMessage` @return [String]
error_resources[RW]
A list of config(s) associated with the error, if any Corresponds to the JSON property `errorResources` @return [Array<Google::Apis::GkehubV1alpha::ConfigManagementErrorResource>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/gkehub_v1alpha/classes.rb, line 1028 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/gkehub_v1alpha/classes.rb, line 1033 def update!(**args) @code = args[:code] if args.key?(:code) @error_message = args[:error_message] if args.key?(:error_message) @error_resources = args[:error_resources] if args.key?(:error_resources) end