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.
1897 1898 1899 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1897 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
1890 1891 1892 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1890 def encryption_sa_email @encryption_sa_email end |
#jwk ⇒ String
Optional. JWK in string.
Corresponds to the JSON property jwk
1895 1896 1897 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1895 def jwk @jwk end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1902 1903 1904 1905 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 1902 def update!(**args) @encryption_sa_email = args[:encryption_sa_email] if args.key?(:encryption_sa_email) @jwk = args[:jwk] if args.key?(:jwk) end |