Class: Google::Apis::MonitoringV3::GetNotificationChannelVerificationCodeResponse
- Inherits:
-
Object
- Object
- Google::Apis::MonitoringV3::GetNotificationChannelVerificationCodeResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/monitoring_v3/classes.rb,
generated/google/apis/monitoring_v3/representations.rb,
generated/google/apis/monitoring_v3/representations.rb
Overview
The GetNotificationChannelVerificationCode request.
Instance Attribute Summary collapse
-
#code ⇒ String
The verification code, which may be used to verify other channels that have an equivalent identity (i.e. other channels of the same type with the same fingerprint such as other email channels with the same email address or other sms channels with the same number).
-
#expire_time ⇒ String
The expiration time associated with the code that was returned.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GetNotificationChannelVerificationCodeResponse
constructor
A new instance of GetNotificationChannelVerificationCodeResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GetNotificationChannelVerificationCodeResponse
Returns a new instance of GetNotificationChannelVerificationCodeResponse
1056 1057 1058 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1056 def initialize(**args) update!(**args) end |
Instance Attribute Details
#code ⇒ String
The verification code, which may be used to verify other channels that have an
equivalent identity (i.e. other channels of the same type with the same
fingerprint such as other email channels with the same email address or other
sms channels with the same number).
Corresponds to the JSON property code
1047 1048 1049 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1047 def code @code end |
#expire_time ⇒ String
The expiration time associated with the code that was returned. If an
expiration was provided in the request, this is the minimum of the requested
expiration in the request and the max permitted expiration.
Corresponds to the JSON property expireTime
1054 1055 1056 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1054 def expire_time @expire_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1061 1062 1063 1064 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1061 def update!(**args) @code = args[:code] if args.key?(:code) @expire_time = args[:expire_time] if args.key?(:expire_time) end |