Class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo
- Inherits:
-
Object
- Object
- Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/beyondcorp_v1alpha/classes.rb,
lib/google/apis/beyondcorp_v1alpha/representations.rb,
lib/google/apis/beyondcorp_v1alpha/representations.rb
Overview
Message contains the JWT encryption information for the proxy server.
Instance Attribute Summary collapse
-
#encryption_sa_email ⇒ String
Optional.
-
#jwk ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo
constructor
A new instance of GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo
Returns a new instance of GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo.
1869 1870 1871 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1869 def initialize(**args) update!(**args) end |
Instance Attribute Details
#encryption_sa_email ⇒ String
Optional. Service Account for encryption key.
Corresponds to the JSON property encryptionSaEmail
1862 1863 1864 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1862 def encryption_sa_email @encryption_sa_email end |
#jwk ⇒ String
Optional. JWK in string.
Corresponds to the JSON property jwk
1867 1868 1869 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1867 def jwk @jwk end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1874 1875 1876 1877 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1874 def update!(**args) @encryption_sa_email = args[:encryption_sa_email] if args.key?(:encryption_sa_email) @jwk = args[:jwk] if args.key?(:jwk) end |