Class: Google::Apis::ProdTtSasportalV1alpha1::SasPortalValidateInstallerRequest
- Inherits:
-
Object
- Object
- Google::Apis::ProdTtSasportalV1alpha1::SasPortalValidateInstallerRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb,
lib/google/apis/prod_tt_sasportal_v1alpha1/representations.rb,
lib/google/apis/prod_tt_sasportal_v1alpha1/representations.rb
Overview
Request for ValidateInstaller.
Instance Attribute Summary collapse
-
#encoded_secret ⇒ String
Required.
-
#installer_id ⇒ String
Required.
-
#secret ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SasPortalValidateInstallerRequest
constructor
A new instance of SasPortalValidateInstallerRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SasPortalValidateInstallerRequest
Returns a new instance of SasPortalValidateInstallerRequest.
1464 1465 1466 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 1464 def initialize(**args) update!(**args) end |
Instance Attribute Details
#encoded_secret ⇒ String
Required. JSON Web Token signed using a CPI private key. Payload must include
a "secret" claim whose value is the secret.
Corresponds to the JSON property encodedSecret
1451 1452 1453 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 1451 def encoded_secret @encoded_secret end |
#installer_id ⇒ String
Required. Unique installer id (CPI ID) from the Certified Professional
Installers database.
Corresponds to the JSON property installerId
1457 1458 1459 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 1457 def installer_id @installer_id end |
#secret ⇒ String
Required. Secret returned by the GenerateSecret.
Corresponds to the JSON property secret
1462 1463 1464 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 1462 def secret @secret end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1469 1470 1471 1472 1473 |
# File 'lib/google/apis/prod_tt_sasportal_v1alpha1/classes.rb', line 1469 def update!(**args) @encoded_secret = args[:encoded_secret] if args.key?(:encoded_secret) @installer_id = args[:installer_id] if args.key?(:installer_id) @secret = args[:secret] if args.key?(:secret) end |