Class: Google::Apis::CertificatemanagerV1::Troubleshooting
- Inherits:
-
Object
- Object
- Google::Apis::CertificatemanagerV1::Troubleshooting
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/certificatemanager_v1/classes.rb,
lib/google/apis/certificatemanager_v1/representations.rb,
lib/google/apis/certificatemanager_v1/representations.rb
Overview
Troubleshooting information for the authorization attempt.
Instance Attribute Summary collapse
-
#cname ⇒ Google::Apis::CertificatemanagerV1::Cname
CNAME troubleshooting information.
-
#ips ⇒ Google::Apis::CertificatemanagerV1::IPs
IPs troubleshooting information.
-
#issues ⇒ Array<String>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Troubleshooting
constructor
A new instance of Troubleshooting.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Troubleshooting
Returns a new instance of Troubleshooting.
1348 1349 1350 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 1348 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cname ⇒ Google::Apis::CertificatemanagerV1::Cname
CNAME troubleshooting information.
Corresponds to the JSON property cname
1336 1337 1338 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 1336 def cname @cname end |
#ips ⇒ Google::Apis::CertificatemanagerV1::IPs
IPs troubleshooting information.
Corresponds to the JSON property ips
1341 1342 1343 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 1341 def ips @ips end |
#issues ⇒ Array<String>
Output only. The list of issues discovered during the authorization attempt.
Corresponds to the JSON property issues
1346 1347 1348 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 1346 def issues @issues end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1353 1354 1355 1356 1357 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 1353 def update!(**args) @cname = args[:cname] if args.key?(:cname) @ips = args[:ips] if args.key?(:ips) @issues = args[:issues] if args.key?(:issues) end |