Class: Google::Apis::CertificatemanagerV1::Troubleshooting

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#cnameGoogle::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

#ipsGoogle::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

#issuesArray<String>

Output only. The list of issues discovered during the authorization attempt. Corresponds to the JSON property issues

Returns:

  • (Array<String>)


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