Class: Google::Apis::CloudsearchV1::Settings

Inherits:
Object
  • Object
show all
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

Settings of a meeting space that can be edited by users with corresponding manage privilege. These settings are always populated in responses.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Settings

Returns a new instance of Settings.



18042
18043
18044
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18042

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#access_lockBoolean Also known as: access_lock?

The access lock of the meeting space that lets hosts control who can join the meeting. Corresponds to the JSON property accessLock

Returns:

  • (Boolean)


17977
17978
17979
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17977

def access_lock
  @access_lock
end

#access_typeString

The access type of the meeting space. Corresponds to the JSON property accessType

Returns:

  • (String)


17983
17984
17985
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17983

def access_type
  @access_type
end

#allow_joining_before_hostBoolean Also known as: allow_joining_before_host?

Whether users can join before host in the conferences of this meeting space. Corresponds to the JSON property allowJoiningBeforeHost

Returns:

  • (Boolean)


17988
17989
17990
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17988

def allow_joining_before_host
  @allow_joining_before_host
end

#attendance_report_enabledBoolean Also known as: attendance_report_enabled?

Whether attendance report is enabled for the meeting space. Corresponds to the JSON property attendanceReportEnabled

Returns:

  • (Boolean)


17994
17995
17996
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17994

def attendance_report_enabled
  @attendance_report_enabled
end

#chat_lockBoolean Also known as: chat_lock?

The chat lock of the meeting space that lets owner control whether the participants can send chat messages. Corresponds to the JSON property chatLock

Returns:

  • (Boolean)


18001
18002
18003
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18001

def chat_lock
  @chat_lock
end

#cohost_artifact_sharing_enabledBoolean Also known as: cohost_artifact_sharing_enabled?

Whether meeting artifacts will be shared with cohosts. Corresponds to the JSON property cohostArtifactSharingEnabled

Returns:

  • (Boolean)


18007
18008
18009
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18007

def cohost_artifact_sharing_enabled
  @cohost_artifact_sharing_enabled
end

#cse_enabledBoolean Also known as: cse_enabled?

Whether Client-side Encryption is enabled for the meeting space. Corresponds to the JSON property cseEnabled

Returns:

  • (Boolean)


18013
18014
18015
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18013

def cse_enabled
  @cse_enabled
end

#default_as_viewerBoolean Also known as: default_as_viewer?

Whether the default role is viewer or not. Corresponds to the JSON property defaultAsViewer

Returns:

  • (Boolean)


18019
18020
18021
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18019

def default_as_viewer
  @default_as_viewer
end

#moderation_enabledBoolean Also known as: moderation_enabled?

Indicates whether the meeting space is moderated. Corresponds to the JSON property moderationEnabled

Returns:

  • (Boolean)


18025
18026
18027
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18025

def moderation_enabled
  @moderation_enabled
end

#present_lockBoolean Also known as: present_lock?

The present lock of the meeting space that lets owner control whether the participants can present their screen. Corresponds to the JSON property presentLock

Returns:

  • (Boolean)


18032
18033
18034
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18032

def present_lock
  @present_lock
end

#reactions_lockBoolean Also known as: reactions_lock?

The reactions lock of the meeting space that lets owner control whether the participants can send reactions. Corresponds to the JSON property reactionsLock

Returns:

  • (Boolean)


18039
18040
18041
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18039

def reactions_lock
  @reactions_lock
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



18047
18048
18049
18050
18051
18052
18053
18054
18055
18056
18057
18058
18059
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18047

def update!(**args)
  @access_lock = args[:access_lock] if args.key?(:access_lock)
  @access_type = args[:access_type] if args.key?(:access_type)
  @allow_joining_before_host = args[:allow_joining_before_host] if args.key?(:allow_joining_before_host)
  @attendance_report_enabled = args[:attendance_report_enabled] if args.key?(:attendance_report_enabled)
  @chat_lock = args[:chat_lock] if args.key?(:chat_lock)
  @cohost_artifact_sharing_enabled = args[:cohost_artifact_sharing_enabled] if args.key?(:cohost_artifact_sharing_enabled)
  @cse_enabled = args[:cse_enabled] if args.key?(:cse_enabled)
  @default_as_viewer = args[:default_as_viewer] if args.key?(:default_as_viewer)
  @moderation_enabled = args[:moderation_enabled] if args.key?(:moderation_enabled)
  @present_lock = args[:present_lock] if args.key?(:present_lock)
  @reactions_lock = args[:reactions_lock] if args.key?(:reactions_lock)
end