Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaSuspensionAudit
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaSuspensionAudit
- 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
-
#resolve_time ⇒ String
Time at which this suspension was resolved.
-
#resolver ⇒ String
Email address of the person who resolved this suspension.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaSuspensionAudit
constructor
A new instance of GoogleCloudIntegrationsV1alphaSuspensionAudit.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaSuspensionAudit
Returns a new instance of GoogleCloudIntegrationsV1alphaSuspensionAudit.
8503 8504 8505 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8503 def initialize(**args) update!(**args) end |
Instance Attribute Details
#resolve_time ⇒ String
Time at which this suspension was resolved.
Corresponds to the JSON property resolveTime
8496 8497 8498 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8496 def resolve_time @resolve_time end |
#resolver ⇒ String
Email address of the person who resolved this suspension.
Corresponds to the JSON property resolver
8501 8502 8503 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8501 def resolver @resolver end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8508 8509 8510 8511 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8508 def update!(**args) @resolve_time = args[:resolve_time] if args.key?(:resolve_time) @resolver = args[:resolver] if args.key?(:resolver) end |