parent
4efe498900
commit
5b85c49a25
|
@ -69272,6 +69272,7 @@
|
||||||
"/vault:v1/CorpusQuery": corpus_query
|
"/vault:v1/CorpusQuery": corpus_query
|
||||||
"/vault:v1/CorpusQuery/driveQuery": drive_query
|
"/vault:v1/CorpusQuery/driveQuery": drive_query
|
||||||
"/vault:v1/CorpusQuery/groupsQuery": groups_query
|
"/vault:v1/CorpusQuery/groupsQuery": groups_query
|
||||||
|
"/vault:v1/CorpusQuery/hangoutsChatQuery": hangouts_chat_query
|
||||||
"/vault:v1/CorpusQuery/mailQuery": mail_query
|
"/vault:v1/CorpusQuery/mailQuery": mail_query
|
||||||
"/vault:v1/Empty": empty
|
"/vault:v1/Empty": empty
|
||||||
"/vault:v1/HeldAccount": held_account
|
"/vault:v1/HeldAccount": held_account
|
||||||
|
@ -69283,6 +69284,8 @@
|
||||||
"/vault:v1/HeldGroupsQuery/endTime": end_time
|
"/vault:v1/HeldGroupsQuery/endTime": end_time
|
||||||
"/vault:v1/HeldGroupsQuery/startTime": start_time
|
"/vault:v1/HeldGroupsQuery/startTime": start_time
|
||||||
"/vault:v1/HeldGroupsQuery/terms": terms
|
"/vault:v1/HeldGroupsQuery/terms": terms
|
||||||
|
"/vault:v1/HeldHangoutsChatQuery": held_hangouts_chat_query
|
||||||
|
"/vault:v1/HeldHangoutsChatQuery/includeRooms": include_rooms
|
||||||
"/vault:v1/HeldMailQuery": held_mail_query
|
"/vault:v1/HeldMailQuery": held_mail_query
|
||||||
"/vault:v1/HeldMailQuery/endTime": end_time
|
"/vault:v1/HeldMailQuery/endTime": end_time
|
||||||
"/vault:v1/HeldMailQuery/startTime": start_time
|
"/vault:v1/HeldMailQuery/startTime": start_time
|
||||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
||||||
# @see https://developers.google.com/vault
|
# @see https://developers.google.com/vault
|
||||||
module VaultV1
|
module VaultV1
|
||||||
VERSION = 'V1'
|
VERSION = 'V1'
|
||||||
REVISION = '20180217'
|
REVISION = '20180303'
|
||||||
|
|
||||||
# Manage your eDiscovery data
|
# Manage your eDiscovery data
|
||||||
AUTH_EDISCOVERY = 'https://www.googleapis.com/auth/ediscovery'
|
AUTH_EDISCOVERY = 'https://www.googleapis.com/auth/ediscovery'
|
||||||
|
|
|
@ -108,6 +108,11 @@ module Google
|
||||||
# @return [Google::Apis::VaultV1::HeldGroupsQuery]
|
# @return [Google::Apis::VaultV1::HeldGroupsQuery]
|
||||||
attr_accessor :groups_query
|
attr_accessor :groups_query
|
||||||
|
|
||||||
|
# Query options for hangouts chat holds.
|
||||||
|
# Corresponds to the JSON property `hangoutsChatQuery`
|
||||||
|
# @return [Google::Apis::VaultV1::HeldHangoutsChatQuery]
|
||||||
|
attr_accessor :hangouts_chat_query
|
||||||
|
|
||||||
# Query options for mail holds.
|
# Query options for mail holds.
|
||||||
# Corresponds to the JSON property `mailQuery`
|
# Corresponds to the JSON property `mailQuery`
|
||||||
# @return [Google::Apis::VaultV1::HeldMailQuery]
|
# @return [Google::Apis::VaultV1::HeldMailQuery]
|
||||||
|
@ -121,6 +126,7 @@ module Google
|
||||||
def update!(**args)
|
def update!(**args)
|
||||||
@drive_query = args[:drive_query] if args.key?(:drive_query)
|
@drive_query = args[:drive_query] if args.key?(:drive_query)
|
||||||
@groups_query = args[:groups_query] if args.key?(:groups_query)
|
@groups_query = args[:groups_query] if args.key?(:groups_query)
|
||||||
|
@hangouts_chat_query = args[:hangouts_chat_query] if args.key?(:hangouts_chat_query)
|
||||||
@mail_query = args[:mail_query] if args.key?(:mail_query)
|
@mail_query = args[:mail_query] if args.key?(:mail_query)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -224,6 +230,26 @@ module Google
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Query options for hangouts chat holds.
|
||||||
|
class HeldHangoutsChatQuery
|
||||||
|
include Google::Apis::Core::Hashable
|
||||||
|
|
||||||
|
# If true, include rooms the user has participated in.
|
||||||
|
# Corresponds to the JSON property `includeRooms`
|
||||||
|
# @return [Boolean]
|
||||||
|
attr_accessor :include_rooms
|
||||||
|
alias_method :include_rooms?, :include_rooms
|
||||||
|
|
||||||
|
def initialize(**args)
|
||||||
|
update!(**args)
|
||||||
|
end
|
||||||
|
|
||||||
|
# Update properties of this object
|
||||||
|
def update!(**args)
|
||||||
|
@include_rooms = args[:include_rooms] if args.key?(:include_rooms)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
# Query options for mail holds.
|
# Query options for mail holds.
|
||||||
class HeldMailQuery
|
class HeldMailQuery
|
||||||
include Google::Apis::Core::Hashable
|
include Google::Apis::Core::Hashable
|
||||||
|
|
|
@ -70,6 +70,12 @@ module Google
|
||||||
include Google::Apis::Core::JsonObjectSupport
|
include Google::Apis::Core::JsonObjectSupport
|
||||||
end
|
end
|
||||||
|
|
||||||
|
class HeldHangoutsChatQuery
|
||||||
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
||||||
|
|
||||||
|
include Google::Apis::Core::JsonObjectSupport
|
||||||
|
end
|
||||||
|
|
||||||
class HeldMailQuery
|
class HeldMailQuery
|
||||||
class Representation < Google::Apis::Core::JsonRepresentation; end
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
||||||
|
|
||||||
|
@ -173,6 +179,8 @@ module Google
|
||||||
|
|
||||||
property :groups_query, as: 'groupsQuery', class: Google::Apis::VaultV1::HeldGroupsQuery, decorator: Google::Apis::VaultV1::HeldGroupsQuery::Representation
|
property :groups_query, as: 'groupsQuery', class: Google::Apis::VaultV1::HeldGroupsQuery, decorator: Google::Apis::VaultV1::HeldGroupsQuery::Representation
|
||||||
|
|
||||||
|
property :hangouts_chat_query, as: 'hangoutsChatQuery', class: Google::Apis::VaultV1::HeldHangoutsChatQuery, decorator: Google::Apis::VaultV1::HeldHangoutsChatQuery::Representation
|
||||||
|
|
||||||
property :mail_query, as: 'mailQuery', class: Google::Apis::VaultV1::HeldMailQuery, decorator: Google::Apis::VaultV1::HeldMailQuery::Representation
|
property :mail_query, as: 'mailQuery', class: Google::Apis::VaultV1::HeldMailQuery, decorator: Google::Apis::VaultV1::HeldMailQuery::Representation
|
||||||
|
|
||||||
end
|
end
|
||||||
|
@ -208,6 +216,13 @@ module Google
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
class HeldHangoutsChatQuery
|
||||||
|
# @private
|
||||||
|
class Representation < Google::Apis::Core::JsonRepresentation
|
||||||
|
property :include_rooms, as: 'includeRooms'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
class HeldMailQuery
|
class HeldMailQuery
|
||||||
# @private
|
# @private
|
||||||
class Representation < Google::Apis::Core::JsonRepresentation
|
class Representation < Google::Apis::Core::JsonRepresentation
|
||||||
|
|
Loading…
Reference in New Issue