Class: Google::Apis::CloudsearchV1::CseInfo
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::CseInfo
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
Information needed for Client-side Encryption.
Instance Attribute Summary collapse
-
#cse_domain ⇒ String
CSE domain name claimed by the meeting owner's company.
-
#wrapped_key ⇒ String
The wrapped CSE key used by this conference.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CseInfo
constructor
A new instance of CseInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CseInfo
Returns a new instance of CseInfo.
6835 6836 6837 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6835 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cse_domain ⇒ String
CSE domain name claimed by the meeting owner's company. This field is expected
to be used for display purposes only, i.e., "Extra encryption added by $
cse_domain". It can differ from the cse_domain
as defined elsewhere on the
User, in the case of cross-domain meetings.
Corresponds to the JSON property cseDomain
6827 6828 6829 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6827 def cse_domain @cse_domain end |
#wrapped_key ⇒ String
The wrapped CSE key used by this conference.
Corresponds to the JSON property wrappedKey
NOTE: Values are automatically base64 encoded/decoded in the client library.
6833 6834 6835 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6833 def wrapped_key @wrapped_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6840 6841 6842 6843 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6840 def update!(**args) @cse_domain = args[:cse_domain] if args.key?(:cse_domain) @wrapped_key = args[:wrapped_key] if args.key?(:wrapped_key) end |