Class: Google::Apis::VaultV1::Query

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/vault_v1/classes.rb,
generated/google/apis/vault_v1/representations.rb,
generated/google/apis/vault_v1/representations.rb

Overview

A query definition relevant for search & export.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Query

Returns a new instance of Query



1178
1179
1180
# File 'generated/google/apis/vault_v1/classes.rb', line 1178

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

Instance Attribute Details

#account_infoGoogle::Apis::VaultV1::AccountInfo

Accounts to search Corresponds to the JSON property accountInfo



1103
1104
1105
# File 'generated/google/apis/vault_v1/classes.rb', line 1103

def 
  @account_info
end

#corpusString

The corpus to search. Corresponds to the JSON property corpus

Returns:

  • (String)


1108
1109
1110
# File 'generated/google/apis/vault_v1/classes.rb', line 1108

def corpus
  @corpus
end

#data_scopeString

The data source to search from. Corresponds to the JSON property dataScope

Returns:

  • (String)


1113
1114
1115
# File 'generated/google/apis/vault_v1/classes.rb', line 1113

def data_scope
  @data_scope
end

#drive_optionsGoogle::Apis::VaultV1::DriveOptions

Drive search advanced options Corresponds to the JSON property driveOptions



1118
1119
1120
# File 'generated/google/apis/vault_v1/classes.rb', line 1118

def drive_options
  @drive_options
end

#end_timeString

The end time range for the search query. These timestamps are in GMT and rounded down to the start of the given date. Corresponds to the JSON property endTime

Returns:

  • (String)


1124
1125
1126
# File 'generated/google/apis/vault_v1/classes.rb', line 1124

def end_time
  @end_time
end

#hangouts_chat_infoGoogle::Apis::VaultV1::HangoutsChatInfo

Accounts to search Corresponds to the JSON property hangoutsChatInfo



1129
1130
1131
# File 'generated/google/apis/vault_v1/classes.rb', line 1129

def hangouts_chat_info
  @hangouts_chat_info
end

#hangouts_chat_optionsGoogle::Apis::VaultV1::HangoutsChatOptions

Hangouts chat search advanced options Corresponds to the JSON property hangoutsChatOptions



1134
1135
1136
# File 'generated/google/apis/vault_v1/classes.rb', line 1134

def hangouts_chat_options
  @hangouts_chat_options
end

#mail_optionsGoogle::Apis::VaultV1::MailOptions

Mail search advanced options Corresponds to the JSON property mailOptions



1139
1140
1141
# File 'generated/google/apis/vault_v1/classes.rb', line 1139

def mail_options
  @mail_options
end

#org_unit_infoGoogle::Apis::VaultV1::OrgUnitInfo

Org Unit to search Corresponds to the JSON property orgUnitInfo



1144
1145
1146
# File 'generated/google/apis/vault_v1/classes.rb', line 1144

def org_unit_info
  @org_unit_info
end

#search_methodString

The search method to use. Corresponds to the JSON property searchMethod

Returns:

  • (String)


1149
1150
1151
# File 'generated/google/apis/vault_v1/classes.rb', line 1149

def search_method
  @search_method
end

#start_timeString

The start time range for the search query. These timestamps are in GMT and rounded down to the start of the given date. Corresponds to the JSON property startTime

Returns:

  • (String)


1155
1156
1157
# File 'generated/google/apis/vault_v1/classes.rb', line 1155

def start_time
  @start_time
end

#team_drive_infoGoogle::Apis::VaultV1::TeamDriveInfo

Team Drives to search Corresponds to the JSON property teamDriveInfo



1160
1161
1162
# File 'generated/google/apis/vault_v1/classes.rb', line 1160

def team_drive_info
  @team_drive_info
end

#termsString

The corpus-specific search operators used to generate search results. Corresponds to the JSON property terms

Returns:

  • (String)


1167
1168
1169
# File 'generated/google/apis/vault_v1/classes.rb', line 1167

def terms
  @terms
end

#time_zoneString

The time zone name. It should be an IANA TZ name, such as "America/Los_Angeles". For more information, see Time Zone. Corresponds to the JSON property timeZone

Returns:

  • (String)


1176
1177
1178
# File 'generated/google/apis/vault_v1/classes.rb', line 1176

def time_zone
  @time_zone
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
# File 'generated/google/apis/vault_v1/classes.rb', line 1183

def update!(**args)
  @account_info = args[:account_info] if args.key?(:account_info)
  @corpus = args[:corpus] if args.key?(:corpus)
  @data_scope = args[:data_scope] if args.key?(:data_scope)
  @drive_options = args[:drive_options] if args.key?(:drive_options)
  @end_time = args[:end_time] if args.key?(:end_time)
  @hangouts_chat_info = args[:hangouts_chat_info] if args.key?(:hangouts_chat_info)
  @hangouts_chat_options = args[:hangouts_chat_options] if args.key?(:hangouts_chat_options)
  @mail_options = args[:mail_options] if args.key?(:mail_options)
  @org_unit_info = args[:org_unit_info] if args.key?(:org_unit_info)
  @search_method = args[:search_method] if args.key?(:search_method)
  @start_time = args[:start_time] if args.key?(:start_time)
  @team_drive_info = args[:team_drive_info] if args.key?(:team_drive_info)
  @terms = args[:terms] if args.key?(:terms)
  @time_zone = args[:time_zone] if args.key?(:time_zone)
end