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.
6262 6263 6264 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6262 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
6254 6255 6256 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6254 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.
6260 6261 6262 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6260 def wrapped_key @wrapped_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6267 6268 6269 6270 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6267 def update!(**args) @cse_domain = args[:cse_domain] if args.key?(:cse_domain) @wrapped_key = args[:wrapped_key] if args.key?(:wrapped_key) end |