Class: Google::Apis::SasportalV1alpha1::SasPortalValidateInstallerRequest
- Inherits:
-
Object
- Object
- Google::Apis::SasportalV1alpha1::SasPortalValidateInstallerRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sasportal_v1alpha1/classes.rb,
generated/google/apis/sasportal_v1alpha1/representations.rb,
generated/google/apis/sasportal_v1alpha1/representations.rb
Overview
Request for ValidateInstaller method.
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.
1131 1132 1133 |
# File 'generated/google/apis/sasportal_v1alpha1/classes.rb', line 1131 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
1118 1119 1120 |
# File 'generated/google/apis/sasportal_v1alpha1/classes.rb', line 1118 def encoded_secret @encoded_secret end |
#installer_id ⇒ String
Required. Unique installer id (cpiId) from the Certified Professional
Installers database.
Corresponds to the JSON property installerId
1124 1125 1126 |
# File 'generated/google/apis/sasportal_v1alpha1/classes.rb', line 1124 def installer_id @installer_id end |
#secret ⇒ String
Required. Secret returned by the GenerateSecret method.
Corresponds to the JSON property secret
1129 1130 1131 |
# File 'generated/google/apis/sasportal_v1alpha1/classes.rb', line 1129 def secret @secret end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1136 1137 1138 1139 1140 |
# File 'generated/google/apis/sasportal_v1alpha1/classes.rb', line 1136 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 |