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.



1380
1381
1382
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 1380

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

Instance Attribute Details

#cnameGoogle::Apis::CertificatemanagerV1::Cname

CNAME troubleshooting information. Corresponds to the JSON property cname



1368
1369
1370
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 1368

def cname
  @cname
end

#ipsGoogle::Apis::CertificatemanagerV1::IPs

IPs troubleshooting information. Corresponds to the JSON property ips



1373
1374
1375
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 1373

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>)


1378
1379
1380
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 1378

def issues
  @issues
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1385
1386
1387
1388
1389
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 1385

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