Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaSuspensionAudit

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

Overview

Contains when and by whom the suspension was resolved.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaSuspensionAudit

Returns a new instance of GoogleCloudIntegrationsV1alphaSuspensionAudit.



8233
8234
8235
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8233

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

Instance Attribute Details

#resolve_timeString

Time at which this suspension was resolved. Corresponds to the JSON property resolveTime

Returns:

  • (String)


8226
8227
8228
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8226

def resolve_time
  @resolve_time
end

#resolverString

Email address of the person who resolved this suspension. Corresponds to the JSON property resolver

Returns:

  • (String)


8231
8232
8233
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8231

def resolver
  @resolver
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8238
8239
8240
8241
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8238

def update!(**args)
  @resolve_time = args[:resolve_time] if args.key?(:resolve_time)
  @resolver = args[:resolver] if args.key?(:resolver)
end