2017-08-25 19:54:22 +00:00
|
|
|
# Copyright 2015 Google Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
require 'date'
|
|
|
|
require 'google/apis/core/base_service'
|
|
|
|
require 'google/apis/core/json_representation'
|
|
|
|
require 'google/apis/core/hashable'
|
|
|
|
require 'google/apis/errors'
|
|
|
|
|
|
|
|
module Google
|
|
|
|
module Apis
|
|
|
|
module VaultV1
|
|
|
|
|
2020-10-14 00:38:44 +00:00
|
|
|
# Count number for each account.
|
|
|
|
class AccountCount
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# User's information.
|
|
|
|
# Corresponds to the JSON property `account`
|
|
|
|
# @return [Google::Apis::VaultV1::UserInfo]
|
|
|
|
attr_accessor :account
|
|
|
|
|
|
|
|
# The number of artifacts found for this account.
|
|
|
|
# Corresponds to the JSON property `count`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :count
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@account = args[:account] if args.key?(:account)
|
|
|
|
@count = args[:count] if args.key?(:count)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# An error that occurred when querying a specific account
|
|
|
|
class AccountCountError
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# User's information.
|
|
|
|
# Corresponds to the JSON property `account`
|
|
|
|
# @return [Google::Apis::VaultV1::UserInfo]
|
|
|
|
attr_accessor :account
|
|
|
|
|
|
|
|
# Account query error.
|
|
|
|
# Corresponds to the JSON property `errorType`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :error_type
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@account = args[:account] if args.key?(:account)
|
|
|
|
@error_type = args[:error_type] if args.key?(:error_type)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-22 21:14:52 +00:00
|
|
|
# Accounts to search
|
|
|
|
class AccountInfo
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# A set of accounts to search.
|
|
|
|
# Corresponds to the JSON property `emails`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :emails
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@emails = args[:emails] if args.key?(:emails)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# A status detailing the status of each account creation, and the HeldAccount,
|
|
|
|
# if successful.
|
2018-08-22 21:14:52 +00:00
|
|
|
class AddHeldAccountResult
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# An account being held in a particular hold. This structure is immutable. This
|
|
|
|
# can be either a single user or a google group, depending on the corpus.
|
2018-08-22 21:14:52 +00:00
|
|
|
# Corresponds to the JSON property `account`
|
|
|
|
# @return [Google::Apis::VaultV1::HeldAccount]
|
|
|
|
attr_accessor :account
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# The `Status` type defines a logical error model that is suitable for different
|
|
|
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
|
|
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
|
|
|
# data: error code, error message, and error details. You can find out more
|
|
|
|
# about this error model and how to work with it in the [API Design Guide](https:
|
|
|
|
# //cloud.google.com/apis/design/errors).
|
2018-08-22 21:14:52 +00:00
|
|
|
# Corresponds to the JSON property `status`
|
|
|
|
# @return [Google::Apis::VaultV1::Status]
|
|
|
|
attr_accessor :status
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@account = args[:account] if args.key?(:account)
|
|
|
|
@status = args[:status] if args.key?(:status)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Add a list of accounts to a hold.
|
|
|
|
class AddHeldAccountsRequest
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# Account IDs to identify which accounts to add. Only account_ids or only emails
|
|
|
|
# should be specified, but not both.
|
2018-08-22 21:14:52 +00:00
|
|
|
# Corresponds to the JSON property `accountIds`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :account_ids
|
|
|
|
|
|
|
|
# Emails to identify which accounts to add. Only emails or only account_ids
|
|
|
|
# should be specified, but not both.
|
|
|
|
# Corresponds to the JSON property `emails`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :emails
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@account_ids = args[:account_ids] if args.key?(:account_ids)
|
|
|
|
@emails = args[:emails] if args.key?(:emails)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Response for batch create held accounts.
|
|
|
|
class AddHeldAccountsResponse
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The list of responses, in the same order as the batch request.
|
|
|
|
# Corresponds to the JSON property `responses`
|
|
|
|
# @return [Array<Google::Apis::VaultV1::AddHeldAccountResult>]
|
|
|
|
attr_accessor :responses
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@responses = args[:responses] if args.key?(:responses)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# Add an account with the permission specified. The role cannot be owner. If an
|
|
|
|
# account already has a role in the matter, it will be overwritten.
|
2017-08-25 19:54:22 +00:00
|
|
|
class AddMatterPermissionsRequest
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# Only relevant if send_emails is true. True to CC requestor in the email
|
|
|
|
# message. False to not CC requestor.
|
2017-08-25 19:54:22 +00:00
|
|
|
# Corresponds to the JSON property `ccMe`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :cc_me
|
|
|
|
alias_method :cc_me?, :cc_me
|
|
|
|
|
|
|
|
# Currently each matter only has one owner, and all others are collaborators.
|
2020-09-14 23:21:28 +00:00
|
|
|
# When an account is purged, its corresponding MatterPermission resources cease
|
|
|
|
# to exist.
|
2017-08-25 19:54:22 +00:00
|
|
|
# Corresponds to the JSON property `matterPermission`
|
|
|
|
# @return [Google::Apis::VaultV1::MatterPermission]
|
|
|
|
attr_accessor :matter_permission
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# True to send notification email to the added account. False to not send
|
|
|
|
# notification email.
|
2017-08-25 19:54:22 +00:00
|
|
|
# Corresponds to the JSON property `sendEmails`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :send_emails
|
|
|
|
alias_method :send_emails?, :send_emails
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@cc_me = args[:cc_me] if args.key?(:cc_me)
|
|
|
|
@matter_permission = args[:matter_permission] if args.key?(:matter_permission)
|
|
|
|
@send_emails = args[:send_emails] if args.key?(:send_emails)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-10-14 00:38:44 +00:00
|
|
|
# The request message for Operations.CancelOperation.
|
|
|
|
class CancelOperationRequest
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-25 19:54:22 +00:00
|
|
|
# Close a matter by ID.
|
|
|
|
class CloseMatterRequest
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Response to a CloseMatterRequest.
|
|
|
|
class CloseMatterResponse
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Represents a matter.
|
|
|
|
# Corresponds to the JSON property `matter`
|
|
|
|
# @return [Google::Apis::VaultV1::Matter]
|
|
|
|
attr_accessor :matter
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@matter = args[:matter] if args.key?(:matter)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-22 21:14:52 +00:00
|
|
|
# An export file on cloud storage
|
|
|
|
class CloudStorageFile
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# The cloud storage bucket name of this export file. Can be used in cloud
|
|
|
|
# storage JSON/XML API, but not to list the bucket contents. Instead, you can
|
|
|
|
# get individual export files by object name.
|
2018-08-22 21:14:52 +00:00
|
|
|
# Corresponds to the JSON property `bucketName`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :bucket_name
|
|
|
|
|
|
|
|
# The md5 hash of the file.
|
|
|
|
# Corresponds to the JSON property `md5Hash`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :md5_hash
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# The cloud storage object name of this export file. Can be used in cloud
|
|
|
|
# storage JSON/XML API.
|
2018-08-22 21:14:52 +00:00
|
|
|
# Corresponds to the JSON property `objectName`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :object_name
|
|
|
|
|
|
|
|
# The size of the export file.
|
|
|
|
# Corresponds to the JSON property `size`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :size
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@bucket_name = args[:bucket_name] if args.key?(:bucket_name)
|
|
|
|
@md5_hash = args[:md5_hash] if args.key?(:md5_hash)
|
|
|
|
@object_name = args[:object_name] if args.key?(:object_name)
|
|
|
|
@size = args[:size] if args.key?(:size)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Export sink for cloud storage files.
|
|
|
|
class CloudStorageSink
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Output only. The exported files on cloud storage.
|
|
|
|
# Corresponds to the JSON property `files`
|
|
|
|
# @return [Array<Google::Apis::VaultV1::CloudStorageFile>]
|
|
|
|
attr_accessor :files
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@files = args[:files] if args.key?(:files)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-25 19:54:22 +00:00
|
|
|
# Corpus specific queries.
|
|
|
|
class CorpusQuery
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2018-03-02 00:35:48 +00:00
|
|
|
# Query options for Drive holds.
|
2017-08-25 19:54:22 +00:00
|
|
|
# Corresponds to the JSON property `driveQuery`
|
|
|
|
# @return [Google::Apis::VaultV1::HeldDriveQuery]
|
|
|
|
attr_accessor :drive_query
|
|
|
|
|
|
|
|
# Query options for group holds.
|
|
|
|
# Corresponds to the JSON property `groupsQuery`
|
|
|
|
# @return [Google::Apis::VaultV1::HeldGroupsQuery]
|
|
|
|
attr_accessor :groups_query
|
|
|
|
|
2018-03-04 00:36:08 +00:00
|
|
|
# Query options for hangouts chat holds.
|
|
|
|
# Corresponds to the JSON property `hangoutsChatQuery`
|
|
|
|
# @return [Google::Apis::VaultV1::HeldHangoutsChatQuery]
|
|
|
|
attr_accessor :hangouts_chat_query
|
|
|
|
|
2017-08-25 19:54:22 +00:00
|
|
|
# Query options for mail holds.
|
|
|
|
# Corresponds to the JSON property `mailQuery`
|
|
|
|
# @return [Google::Apis::VaultV1::HeldMailQuery]
|
|
|
|
attr_accessor :mail_query
|
|
|
|
|
feat: Automated regeneration of vault v1 client (#1597)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-25 03:29:40,335 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-vault-v1
nothing to commit, working tree clean
2020-11-25 03:29:40,378 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth vault v1
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth vault v1
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.8
Installing tzinfo 1.2.8
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.50.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.20.1
Installing parallel 1.20.1
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.3
Installing powerpack 0.1.3
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=vault.v1 --names-out=/workspace/api_names_out.yaml
Loading vault, version v1 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/vault.v1.json
W, [2020-11-25T11:30:06.649768 #239] WARN -- : Found reserved property 'method'
W, [2020-11-25T11:30:06.649843 #239] WARN -- : Changed to 'method_prop'
conflict google/apis/vault_v1.rb
<e/apis/vault_v1.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/vault_v1.rb
identical google/apis/vault_v1/service.rb
conflict google/apis/vault_v1/classes.rb
force google/apis/vault_v1/classes.rb
conflict google/apis/vault_v1/representations.rb
force google/apis/vault_v1/representations.rb
conflict /workspace/api_names_out.yaml
force /workspace/api_names_out.yaml
2020-11-25 03:30:10,804 synthtool [DEBUG] > Wrote metadata to generated/google/apis/vault_v1/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/vault_v1/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/6316d1f2-c6ea-4bb4-b0b4-cfe228d0b44b/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-25 11:44:01 +00:00
|
|
|
# Query options for Voice holds.
|
|
|
|
# Corresponds to the JSON property `voiceQuery`
|
|
|
|
# @return [Google::Apis::VaultV1::HeldVoiceQuery]
|
|
|
|
attr_accessor :voice_query
|
|
|
|
|
2017-08-25 19:54:22 +00:00
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@drive_query = args[:drive_query] if args.key?(:drive_query)
|
|
|
|
@groups_query = args[:groups_query] if args.key?(:groups_query)
|
2018-03-04 00:36:08 +00:00
|
|
|
@hangouts_chat_query = args[:hangouts_chat_query] if args.key?(:hangouts_chat_query)
|
2017-08-25 19:54:22 +00:00
|
|
|
@mail_query = args[:mail_query] if args.key?(:mail_query)
|
feat: Automated regeneration of vault v1 client (#1597)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-25 03:29:40,335 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-vault-v1
nothing to commit, working tree clean
2020-11-25 03:29:40,378 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth vault v1
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth vault v1
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.8
Installing tzinfo 1.2.8
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.50.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.20.1
Installing parallel 1.20.1
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.3
Installing powerpack 0.1.3
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=vault.v1 --names-out=/workspace/api_names_out.yaml
Loading vault, version v1 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/vault.v1.json
W, [2020-11-25T11:30:06.649768 #239] WARN -- : Found reserved property 'method'
W, [2020-11-25T11:30:06.649843 #239] WARN -- : Changed to 'method_prop'
conflict google/apis/vault_v1.rb
<e/apis/vault_v1.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/vault_v1.rb
identical google/apis/vault_v1/service.rb
conflict google/apis/vault_v1/classes.rb
force google/apis/vault_v1/classes.rb
conflict google/apis/vault_v1/representations.rb
force google/apis/vault_v1/representations.rb
conflict /workspace/api_names_out.yaml
force /workspace/api_names_out.yaml
2020-11-25 03:30:10,804 synthtool [DEBUG] > Wrote metadata to generated/google/apis/vault_v1/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/vault_v1/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/6316d1f2-c6ea-4bb4-b0b4-cfe228d0b44b/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-25 11:44:01 +00:00
|
|
|
@voice_query = args[:voice_query] if args.key?(:voice_query)
|
2017-08-25 19:54:22 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-10-14 00:38:44 +00:00
|
|
|
# Long running operation metadata for CountArtifacts.
|
|
|
|
class CountArtifactsMetadata
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# End time of count operation. Available when operation is done.
|
|
|
|
# Corresponds to the JSON property `endTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :end_time
|
|
|
|
|
|
|
|
# The matter ID of the associated matter.
|
|
|
|
# Corresponds to the JSON property `matterId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :matter_id
|
|
|
|
|
|
|
|
# A query definition relevant for search & export.
|
|
|
|
# Corresponds to the JSON property `query`
|
|
|
|
# @return [Google::Apis::VaultV1::Query]
|
|
|
|
attr_accessor :query
|
|
|
|
|
|
|
|
# Creation time of count operation.
|
|
|
|
# Corresponds to the JSON property `startTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :start_time
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
|
|
@matter_id = args[:matter_id] if args.key?(:matter_id)
|
|
|
|
@query = args[:query] if args.key?(:query)
|
|
|
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Count artifacts request.
|
|
|
|
class CountArtifactsRequest
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# A query definition relevant for search & export.
|
|
|
|
# Corresponds to the JSON property `query`
|
|
|
|
# @return [Google::Apis::VaultV1::Query]
|
|
|
|
attr_accessor :query
|
|
|
|
|
|
|
|
# Specifies the granularity of the count result returned in response.
|
|
|
|
# Corresponds to the JSON property `view`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :view
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@query = args[:query] if args.key?(:query)
|
|
|
|
@view = args[:view] if args.key?(:view)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Definition of the response for method CountArtifacts.
|
|
|
|
class CountArtifactsResponse
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Groups specific count metrics.
|
|
|
|
# Corresponds to the JSON property `groupsCountResult`
|
|
|
|
# @return [Google::Apis::VaultV1::GroupsCountResult]
|
|
|
|
attr_accessor :groups_count_result
|
|
|
|
|
|
|
|
# Mail specific count metrics.
|
|
|
|
# Corresponds to the JSON property `mailCountResult`
|
|
|
|
# @return [Google::Apis::VaultV1::MailCountResult]
|
|
|
|
attr_accessor :mail_count_result
|
|
|
|
|
|
|
|
# Total count of artifacts. For mail and groups, artifacts refers to messages.
|
|
|
|
# Corresponds to the JSON property `totalCount`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :total_count
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@groups_count_result = args[:groups_count_result] if args.key?(:groups_count_result)
|
|
|
|
@mail_count_result = args[:mail_count_result] if args.key?(:mail_count_result)
|
|
|
|
@total_count = args[:total_count] if args.key?(:total_count)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-22 21:14:52 +00:00
|
|
|
# The options for Drive export.
|
|
|
|
class DriveExportOptions
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# Set to true to include access level information for users with indirect access
|
|
|
|
# to files.
|
2018-08-22 21:14:52 +00:00
|
|
|
# Corresponds to the JSON property `includeAccessInfo`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :include_access_info
|
|
|
|
alias_method :include_access_info?, :include_access_info
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@include_access_info = args[:include_access_info] if args.key?(:include_access_info)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Drive search advanced options
|
|
|
|
class DriveOptions
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2019-06-11 00:37:36 +00:00
|
|
|
# Set to true to include shared drive.
|
|
|
|
# Corresponds to the JSON property `includeSharedDrives`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :include_shared_drives
|
|
|
|
alias_method :include_shared_drives?, :include_shared_drives
|
|
|
|
|
2018-08-22 21:14:52 +00:00
|
|
|
# Set to true to include Team Drive.
|
|
|
|
# Corresponds to the JSON property `includeTeamDrives`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :include_team_drives
|
|
|
|
alias_method :include_team_drives?, :include_team_drives
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# Search the versions of the Drive file as of the reference date. These
|
|
|
|
# timestamps are in GMT and rounded down to the given date.
|
2018-08-22 21:14:52 +00:00
|
|
|
# Corresponds to the JSON property `versionDate`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :version_date
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2019-06-11 00:37:36 +00:00
|
|
|
@include_shared_drives = args[:include_shared_drives] if args.key?(:include_shared_drives)
|
2018-08-22 21:14:52 +00:00
|
|
|
@include_team_drives = args[:include_team_drives] if args.key?(:include_team_drives)
|
|
|
|
@version_date = args[:version_date] if args.key?(:version_date)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
|
|
|
# messages in your APIs. A typical example is to use it as the request or the
|
|
|
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
|
|
|
# protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
|
|
|
|
# `Empty` is empty JSON object ````.
|
2017-08-25 19:54:22 +00:00
|
|
|
class Empty
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-22 21:14:52 +00:00
|
|
|
# An export
|
|
|
|
class Export
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Export sink for cloud storage files.
|
|
|
|
# Corresponds to the JSON property `cloudStorageSink`
|
|
|
|
# @return [Google::Apis::VaultV1::CloudStorageSink]
|
|
|
|
attr_accessor :cloud_storage_sink
|
|
|
|
|
|
|
|
# Output only. The time when the export was created.
|
|
|
|
# Corresponds to the JSON property `createTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :create_time
|
|
|
|
|
|
|
|
# Export advanced options
|
|
|
|
# Corresponds to the JSON property `exportOptions`
|
|
|
|
# @return [Google::Apis::VaultV1::ExportOptions]
|
|
|
|
attr_accessor :export_options
|
|
|
|
|
|
|
|
# Output only. The generated export ID.
|
|
|
|
# Corresponds to the JSON property `id`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :id
|
|
|
|
|
|
|
|
# Output only. The matter ID.
|
|
|
|
# Corresponds to the JSON property `matterId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :matter_id
|
|
|
|
|
|
|
|
# The export name.
|
|
|
|
# Corresponds to the JSON property `name`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :name
|
|
|
|
|
|
|
|
# A query definition relevant for search & export.
|
|
|
|
# Corresponds to the JSON property `query`
|
|
|
|
# @return [Google::Apis::VaultV1::Query]
|
|
|
|
attr_accessor :query
|
|
|
|
|
|
|
|
# User's information.
|
|
|
|
# Corresponds to the JSON property `requester`
|
|
|
|
# @return [Google::Apis::VaultV1::UserInfo]
|
|
|
|
attr_accessor :requester
|
|
|
|
|
|
|
|
# Stats of an export.
|
|
|
|
# Corresponds to the JSON property `stats`
|
|
|
|
# @return [Google::Apis::VaultV1::ExportStats]
|
|
|
|
attr_accessor :stats
|
|
|
|
|
|
|
|
# Output only. The export status.
|
|
|
|
# Corresponds to the JSON property `status`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :status
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@cloud_storage_sink = args[:cloud_storage_sink] if args.key?(:cloud_storage_sink)
|
|
|
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
|
|
@export_options = args[:export_options] if args.key?(:export_options)
|
|
|
|
@id = args[:id] if args.key?(:id)
|
|
|
|
@matter_id = args[:matter_id] if args.key?(:matter_id)
|
|
|
|
@name = args[:name] if args.key?(:name)
|
|
|
|
@query = args[:query] if args.key?(:query)
|
|
|
|
@requester = args[:requester] if args.key?(:requester)
|
|
|
|
@stats = args[:stats] if args.key?(:stats)
|
|
|
|
@status = args[:status] if args.key?(:status)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Export advanced options
|
|
|
|
class ExportOptions
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The options for Drive export.
|
|
|
|
# Corresponds to the JSON property `driveOptions`
|
|
|
|
# @return [Google::Apis::VaultV1::DriveExportOptions]
|
|
|
|
attr_accessor :drive_options
|
|
|
|
|
|
|
|
# The options for groups export.
|
|
|
|
# Corresponds to the JSON property `groupsOptions`
|
|
|
|
# @return [Google::Apis::VaultV1::GroupsExportOptions]
|
|
|
|
attr_accessor :groups_options
|
|
|
|
|
|
|
|
# The options for hangouts chat export.
|
|
|
|
# Corresponds to the JSON property `hangoutsChatOptions`
|
|
|
|
# @return [Google::Apis::VaultV1::HangoutsChatExportOptions]
|
|
|
|
attr_accessor :hangouts_chat_options
|
|
|
|
|
|
|
|
# The options for mail export.
|
|
|
|
# Corresponds to the JSON property `mailOptions`
|
|
|
|
# @return [Google::Apis::VaultV1::MailExportOptions]
|
|
|
|
attr_accessor :mail_options
|
|
|
|
|
2018-11-29 00:36:25 +00:00
|
|
|
# The requested export location.
|
|
|
|
# Corresponds to the JSON property `region`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :region
|
|
|
|
|
feat: Automated regeneration of vault v1 client (#1597)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-25 03:29:40,335 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-vault-v1
nothing to commit, working tree clean
2020-11-25 03:29:40,378 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth vault v1
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth vault v1
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.8
Installing tzinfo 1.2.8
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.50.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.20.1
Installing parallel 1.20.1
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.3
Installing powerpack 0.1.3
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=vault.v1 --names-out=/workspace/api_names_out.yaml
Loading vault, version v1 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/vault.v1.json
W, [2020-11-25T11:30:06.649768 #239] WARN -- : Found reserved property 'method'
W, [2020-11-25T11:30:06.649843 #239] WARN -- : Changed to 'method_prop'
conflict google/apis/vault_v1.rb
<e/apis/vault_v1.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/vault_v1.rb
identical google/apis/vault_v1/service.rb
conflict google/apis/vault_v1/classes.rb
force google/apis/vault_v1/classes.rb
conflict google/apis/vault_v1/representations.rb
force google/apis/vault_v1/representations.rb
conflict /workspace/api_names_out.yaml
force /workspace/api_names_out.yaml
2020-11-25 03:30:10,804 synthtool [DEBUG] > Wrote metadata to generated/google/apis/vault_v1/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/vault_v1/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/6316d1f2-c6ea-4bb4-b0b4-cfe228d0b44b/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-25 11:44:01 +00:00
|
|
|
# The options for voice export.
|
|
|
|
# Corresponds to the JSON property `voiceOptions`
|
|
|
|
# @return [Google::Apis::VaultV1::VoiceExportOptions]
|
|
|
|
attr_accessor :voice_options
|
|
|
|
|
2018-08-22 21:14:52 +00:00
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@drive_options = args[:drive_options] if args.key?(:drive_options)
|
|
|
|
@groups_options = args[:groups_options] if args.key?(:groups_options)
|
|
|
|
@hangouts_chat_options = args[:hangouts_chat_options] if args.key?(:hangouts_chat_options)
|
|
|
|
@mail_options = args[:mail_options] if args.key?(:mail_options)
|
2018-11-29 00:36:25 +00:00
|
|
|
@region = args[:region] if args.key?(:region)
|
feat: Automated regeneration of vault v1 client (#1597)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-25 03:29:40,335 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-vault-v1
nothing to commit, working tree clean
2020-11-25 03:29:40,378 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth vault v1
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth vault v1
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.8
Installing tzinfo 1.2.8
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.50.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.20.1
Installing parallel 1.20.1
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.3
Installing powerpack 0.1.3
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=vault.v1 --names-out=/workspace/api_names_out.yaml
Loading vault, version v1 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/vault.v1.json
W, [2020-11-25T11:30:06.649768 #239] WARN -- : Found reserved property 'method'
W, [2020-11-25T11:30:06.649843 #239] WARN -- : Changed to 'method_prop'
conflict google/apis/vault_v1.rb
<e/apis/vault_v1.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/vault_v1.rb
identical google/apis/vault_v1/service.rb
conflict google/apis/vault_v1/classes.rb
force google/apis/vault_v1/classes.rb
conflict google/apis/vault_v1/representations.rb
force google/apis/vault_v1/representations.rb
conflict /workspace/api_names_out.yaml
force /workspace/api_names_out.yaml
2020-11-25 03:30:10,804 synthtool [DEBUG] > Wrote metadata to generated/google/apis/vault_v1/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/vault_v1/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/6316d1f2-c6ea-4bb4-b0b4-cfe228d0b44b/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-25 11:44:01 +00:00
|
|
|
@voice_options = args[:voice_options] if args.key?(:voice_options)
|
2018-08-22 21:14:52 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Stats of an export.
|
|
|
|
class ExportStats
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The number of documents already processed by the export.
|
|
|
|
# Corresponds to the JSON property `exportedArtifactCount`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :exported_artifact_count
|
|
|
|
|
|
|
|
# The size of export in bytes.
|
|
|
|
# Corresponds to the JSON property `sizeInBytes`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :size_in_bytes
|
|
|
|
|
|
|
|
# The number of documents to be exported.
|
|
|
|
# Corresponds to the JSON property `totalArtifactCount`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :total_artifact_count
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@exported_artifact_count = args[:exported_artifact_count] if args.key?(:exported_artifact_count)
|
|
|
|
@size_in_bytes = args[:size_in_bytes] if args.key?(:size_in_bytes)
|
|
|
|
@total_artifact_count = args[:total_artifact_count] if args.key?(:total_artifact_count)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-10-14 00:38:44 +00:00
|
|
|
# Groups specific count metrics.
|
|
|
|
class GroupsCountResult
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Error occurred when querying these accounts.
|
|
|
|
# Corresponds to the JSON property `accountCountErrors`
|
|
|
|
# @return [Array<Google::Apis::VaultV1::AccountCountError>]
|
|
|
|
attr_accessor :account_count_errors
|
|
|
|
|
|
|
|
# Subtotal count per matching account that have more than zero messages.
|
|
|
|
# Corresponds to the JSON property `accountCounts`
|
|
|
|
# @return [Array<Google::Apis::VaultV1::AccountCount>]
|
|
|
|
attr_accessor :account_counts
|
|
|
|
|
|
|
|
# Total number of accounts that can be queried and have more than zero messages.
|
|
|
|
# Corresponds to the JSON property `matchingAccountsCount`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :matching_accounts_count
|
|
|
|
|
|
|
|
# When data scope is HELD_DATA in the request Query, these accounts in the
|
|
|
|
# request are not queried because they are not on hold. For other data scope,
|
|
|
|
# this field is not set.
|
|
|
|
# Corresponds to the JSON property `nonQueryableAccounts`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :non_queryable_accounts
|
|
|
|
|
|
|
|
# Total number of accounts involved in this count operation.
|
|
|
|
# Corresponds to the JSON property `queriedAccountsCount`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :queried_accounts_count
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@account_count_errors = args[:account_count_errors] if args.key?(:account_count_errors)
|
|
|
|
@account_counts = args[:account_counts] if args.key?(:account_counts)
|
|
|
|
@matching_accounts_count = args[:matching_accounts_count] if args.key?(:matching_accounts_count)
|
|
|
|
@non_queryable_accounts = args[:non_queryable_accounts] if args.key?(:non_queryable_accounts)
|
|
|
|
@queried_accounts_count = args[:queried_accounts_count] if args.key?(:queried_accounts_count)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-22 21:14:52 +00:00
|
|
|
# The options for groups export.
|
|
|
|
class GroupsExportOptions
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The export format for groups export.
|
|
|
|
# Corresponds to the JSON property `exportFormat`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :export_format
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@export_format = args[:export_format] if args.key?(:export_format)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# The options for hangouts chat export.
|
|
|
|
class HangoutsChatExportOptions
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The export format for hangouts chat export.
|
|
|
|
# Corresponds to the JSON property `exportFormat`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :export_format
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@export_format = args[:export_format] if args.key?(:export_format)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Accounts to search
|
|
|
|
class HangoutsChatInfo
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# A set of rooms to search.
|
|
|
|
# Corresponds to the JSON property `roomId`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :room_id
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@room_id = args[:room_id] if args.key?(:room_id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Hangouts chat search advanced options
|
|
|
|
class HangoutsChatOptions
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Set to true to include rooms.
|
|
|
|
# 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
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# An account being held in a particular hold. This structure is immutable. This
|
|
|
|
# can be either a single user or a google group, depending on the corpus.
|
2017-08-25 19:54:22 +00:00
|
|
|
class HeldAccount
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# The account's ID as provided by the Admin SDK.
|
2017-08-25 19:54:22 +00:00
|
|
|
# Corresponds to the JSON property `accountId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :account_id
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# The primary email address of the account. If used as an input, this takes
|
|
|
|
# precedence over account ID.
|
|
|
|
# Corresponds to the JSON property `email`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :email
|
|
|
|
|
|
|
|
# Output only. The first name of the account holder.
|
|
|
|
# Corresponds to the JSON property `firstName`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :first_name
|
|
|
|
|
|
|
|
# Output only. When the account was put on hold.
|
2017-08-25 19:54:22 +00:00
|
|
|
# Corresponds to the JSON property `holdTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :hold_time
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Output only. The last name of the account holder.
|
|
|
|
# Corresponds to the JSON property `lastName`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :last_name
|
|
|
|
|
2017-08-25 19:54:22 +00:00
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@account_id = args[:account_id] if args.key?(:account_id)
|
2019-04-25 00:37:02 +00:00
|
|
|
@email = args[:email] if args.key?(:email)
|
|
|
|
@first_name = args[:first_name] if args.key?(:first_name)
|
2017-08-25 19:54:22 +00:00
|
|
|
@hold_time = args[:hold_time] if args.key?(:hold_time)
|
2019-04-25 00:37:02 +00:00
|
|
|
@last_name = args[:last_name] if args.key?(:last_name)
|
2017-08-25 19:54:22 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-02 00:35:48 +00:00
|
|
|
# Query options for Drive holds.
|
2017-08-25 19:54:22 +00:00
|
|
|
class HeldDriveQuery
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2019-06-11 00:37:36 +00:00
|
|
|
# If true, include files in shared drives in the hold.
|
|
|
|
# Corresponds to the JSON property `includeSharedDriveFiles`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :include_shared_drive_files
|
|
|
|
alias_method :include_shared_drive_files?, :include_shared_drive_files
|
|
|
|
|
2017-08-25 19:54:22 +00:00
|
|
|
# If true, include files in Team Drives in the hold.
|
|
|
|
# Corresponds to the JSON property `includeTeamDriveFiles`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :include_team_drive_files
|
|
|
|
alias_method :include_team_drive_files?, :include_team_drive_files
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2019-06-11 00:37:36 +00:00
|
|
|
@include_shared_drive_files = args[:include_shared_drive_files] if args.key?(:include_shared_drive_files)
|
2017-08-25 19:54:22 +00:00
|
|
|
@include_team_drive_files = args[:include_team_drive_files] if args.key?(:include_team_drive_files)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Query options for group holds.
|
|
|
|
class HeldGroupsQuery
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2017-11-22 00:35:46 +00:00
|
|
|
# The end time range for the search query. These timestamps are in GMT and
|
2017-08-25 19:54:22 +00:00
|
|
|
# rounded down to the start of the given date.
|
|
|
|
# Corresponds to the JSON property `endTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :end_time
|
|
|
|
|
2017-11-22 00:35:46 +00:00
|
|
|
# The start time range for the search query. These timestamps are in GMT and
|
2017-08-25 19:54:22 +00:00
|
|
|
# rounded down to the start of the given date.
|
|
|
|
# Corresponds to the JSON property `startTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :start_time
|
|
|
|
|
|
|
|
# The search terms for the hold.
|
|
|
|
# Corresponds to the JSON property `terms`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :terms
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
|
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
|
|
@terms = args[:terms] if args.key?(:terms)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-04 00:36:08 +00:00
|
|
|
# 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
|
|
|
|
|
2017-08-25 19:54:22 +00:00
|
|
|
# Query options for mail holds.
|
|
|
|
class HeldMailQuery
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2017-11-22 00:35:46 +00:00
|
|
|
# The end time range for the search query. These timestamps are in GMT and
|
2017-08-25 19:54:22 +00:00
|
|
|
# rounded down to the start of the given date.
|
|
|
|
# Corresponds to the JSON property `endTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :end_time
|
|
|
|
|
2017-11-22 00:35:46 +00:00
|
|
|
# The start time range for the search query. These timestamps are in GMT and
|
2017-08-25 19:54:22 +00:00
|
|
|
# rounded down to the start of the given date.
|
|
|
|
# Corresponds to the JSON property `startTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :start_time
|
|
|
|
|
|
|
|
# The search terms for the hold.
|
|
|
|
# Corresponds to the JSON property `terms`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :terms
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
|
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
|
|
@terms = args[:terms] if args.key?(:terms)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# A organizational unit being held in a particular hold. This structure is
|
|
|
|
# immutable.
|
2017-08-25 19:54:22 +00:00
|
|
|
class HeldOrgUnit
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# When the org unit was put on hold. This property is immutable.
|
|
|
|
# Corresponds to the JSON property `holdTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :hold_time
|
|
|
|
|
2018-03-02 00:35:48 +00:00
|
|
|
# The org unit's immutable ID as provided by the Admin SDK.
|
2017-08-25 19:54:22 +00:00
|
|
|
# Corresponds to the JSON property `orgUnitId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :org_unit_id
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@hold_time = args[:hold_time] if args.key?(:hold_time)
|
|
|
|
@org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
feat: Automated regeneration of vault v1 client (#1597)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-25 03:29:40,335 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-vault-v1
nothing to commit, working tree clean
2020-11-25 03:29:40,378 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth vault v1
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth vault v1
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.8
Installing tzinfo 1.2.8
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.50.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.20.1
Installing parallel 1.20.1
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.3
Installing powerpack 0.1.3
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=vault.v1 --names-out=/workspace/api_names_out.yaml
Loading vault, version v1 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/vault.v1.json
W, [2020-11-25T11:30:06.649768 #239] WARN -- : Found reserved property 'method'
W, [2020-11-25T11:30:06.649843 #239] WARN -- : Changed to 'method_prop'
conflict google/apis/vault_v1.rb
<e/apis/vault_v1.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/vault_v1.rb
identical google/apis/vault_v1/service.rb
conflict google/apis/vault_v1/classes.rb
force google/apis/vault_v1/classes.rb
conflict google/apis/vault_v1/representations.rb
force google/apis/vault_v1/representations.rb
conflict /workspace/api_names_out.yaml
force /workspace/api_names_out.yaml
2020-11-25 03:30:10,804 synthtool [DEBUG] > Wrote metadata to generated/google/apis/vault_v1/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/vault_v1/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/6316d1f2-c6ea-4bb4-b0b4-cfe228d0b44b/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-25 11:44:01 +00:00
|
|
|
# Query options for Voice holds.
|
|
|
|
class HeldVoiceQuery
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Data covered by this rule. Should be non-empty. Order does not matter and
|
|
|
|
# duplicates will be ignored.
|
|
|
|
# Corresponds to the JSON property `coveredData`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :covered_data
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@covered_data = args[:covered_data] if args.key?(:covered_data)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# Represents a hold within Vault. A hold restricts purging of artifacts based on
|
|
|
|
# the combination of the query and accounts restrictions. A hold can be
|
|
|
|
# configured to either apply to an explicitly configured set of accounts, or can
|
|
|
|
# be applied to all members of an organizational unit.
|
2017-08-25 19:54:22 +00:00
|
|
|
class Hold
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# If set, the hold applies to the enumerated accounts and org_unit must be empty.
|
2017-08-25 19:54:22 +00:00
|
|
|
# Corresponds to the JSON property `accounts`
|
|
|
|
# @return [Array<Google::Apis::VaultV1::HeldAccount>]
|
|
|
|
attr_accessor :accounts
|
|
|
|
|
|
|
|
# The corpus to be searched.
|
|
|
|
# Corresponds to the JSON property `corpus`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :corpus
|
|
|
|
|
|
|
|
# The unique immutable ID of the hold. Assigned during creation.
|
|
|
|
# Corresponds to the JSON property `holdId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :hold_id
|
|
|
|
|
|
|
|
# The name of the hold.
|
|
|
|
# Corresponds to the JSON property `name`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :name
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# A organizational unit being held in a particular hold. This structure is
|
|
|
|
# immutable.
|
2017-08-25 19:54:22 +00:00
|
|
|
# Corresponds to the JSON property `orgUnit`
|
|
|
|
# @return [Google::Apis::VaultV1::HeldOrgUnit]
|
|
|
|
attr_accessor :org_unit
|
|
|
|
|
|
|
|
# Corpus specific queries.
|
|
|
|
# Corresponds to the JSON property `query`
|
|
|
|
# @return [Google::Apis::VaultV1::CorpusQuery]
|
|
|
|
attr_accessor :query
|
|
|
|
|
|
|
|
# The last time this hold was modified.
|
|
|
|
# Corresponds to the JSON property `updateTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :update_time
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@accounts = args[:accounts] if args.key?(:accounts)
|
|
|
|
@corpus = args[:corpus] if args.key?(:corpus)
|
|
|
|
@hold_id = args[:hold_id] if args.key?(:hold_id)
|
|
|
|
@name = args[:name] if args.key?(:name)
|
|
|
|
@org_unit = args[:org_unit] if args.key?(:org_unit)
|
|
|
|
@query = args[:query] if args.key?(:query)
|
|
|
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-22 21:14:52 +00:00
|
|
|
# The holds for a matter.
|
|
|
|
class ListExportsResponse
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The list of exports.
|
|
|
|
# Corresponds to the JSON property `exports`
|
|
|
|
# @return [Array<Google::Apis::VaultV1::Export>]
|
|
|
|
attr_accessor :exports
|
|
|
|
|
|
|
|
# Page token to retrieve the next page of results in the list.
|
|
|
|
# Corresponds to the JSON property `nextPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_page_token
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@exports = args[:exports] if args.key?(:exports)
|
|
|
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-25 19:54:22 +00:00
|
|
|
# Returns a list of held accounts for a hold.
|
|
|
|
class ListHeldAccountsResponse
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The held accounts on a hold.
|
|
|
|
# Corresponds to the JSON property `accounts`
|
|
|
|
# @return [Array<Google::Apis::VaultV1::HeldAccount>]
|
|
|
|
attr_accessor :accounts
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@accounts = args[:accounts] if args.key?(:accounts)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# The holds for a matter.
|
|
|
|
class ListHoldsResponse
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The list of holds.
|
|
|
|
# Corresponds to the JSON property `holds`
|
|
|
|
# @return [Array<Google::Apis::VaultV1::Hold>]
|
|
|
|
attr_accessor :holds
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# Page token to retrieve the next page of results in the list. If this is empty,
|
|
|
|
# then there are no more holds to list.
|
2017-08-25 19:54:22 +00:00
|
|
|
# Corresponds to the JSON property `nextPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_page_token
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@holds = args[:holds] if args.key?(:holds)
|
|
|
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Provides the list of matters.
|
|
|
|
class ListMattersResponse
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# List of matters.
|
|
|
|
# Corresponds to the JSON property `matters`
|
|
|
|
# @return [Array<Google::Apis::VaultV1::Matter>]
|
|
|
|
attr_accessor :matters
|
|
|
|
|
|
|
|
# Page token to retrieve the next page of results in the list.
|
|
|
|
# Corresponds to the JSON property `nextPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_page_token
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@matters = args[:matters] if args.key?(:matters)
|
|
|
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-10-14 00:38:44 +00:00
|
|
|
# The response message for Operations.ListOperations.
|
|
|
|
class ListOperationsResponse
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The standard List next-page token.
|
|
|
|
# Corresponds to the JSON property `nextPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_page_token
|
|
|
|
|
|
|
|
# A list of operations that matches the specified filter in the request.
|
|
|
|
# Corresponds to the JSON property `operations`
|
|
|
|
# @return [Array<Google::Apis::VaultV1::Operation>]
|
|
|
|
attr_accessor :operations
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
|
|
@operations = args[:operations] if args.key?(:operations)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-07 00:36:14 +00:00
|
|
|
# Definition of the response for method ListSaveQuery.
|
|
|
|
class ListSavedQueriesResponse
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# Page token to retrieve the next page of results in the list. If this is empty,
|
|
|
|
# then there are no more saved queries to list.
|
2018-11-07 00:36:14 +00:00
|
|
|
# Corresponds to the JSON property `nextPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_page_token
|
|
|
|
|
|
|
|
# List of output saved queries.
|
|
|
|
# Corresponds to the JSON property `savedQueries`
|
|
|
|
# @return [Array<Google::Apis::VaultV1::SavedQuery>]
|
|
|
|
attr_accessor :saved_queries
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
|
|
@saved_queries = args[:saved_queries] if args.key?(:saved_queries)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-10-14 00:38:44 +00:00
|
|
|
# Mail specific count metrics.
|
|
|
|
class MailCountResult
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Error occurred when querying these accounts.
|
|
|
|
# Corresponds to the JSON property `accountCountErrors`
|
|
|
|
# @return [Array<Google::Apis::VaultV1::AccountCountError>]
|
|
|
|
attr_accessor :account_count_errors
|
|
|
|
|
|
|
|
# Subtotal count per matching account that have more than zero messages.
|
|
|
|
# Corresponds to the JSON property `accountCounts`
|
|
|
|
# @return [Array<Google::Apis::VaultV1::AccountCount>]
|
|
|
|
attr_accessor :account_counts
|
|
|
|
|
|
|
|
# Total number of accounts that can be queried and have more than zero messages.
|
|
|
|
# Corresponds to the JSON property `matchingAccountsCount`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :matching_accounts_count
|
|
|
|
|
|
|
|
# When data scope is HELD_DATA in the request Query, these accounts in the
|
|
|
|
# request are not queried because they are not on hold. For other data scope,
|
|
|
|
# this field is not set.
|
|
|
|
# Corresponds to the JSON property `nonQueryableAccounts`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :non_queryable_accounts
|
|
|
|
|
|
|
|
# Total number of accounts involved in this count operation.
|
|
|
|
# Corresponds to the JSON property `queriedAccountsCount`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :queried_accounts_count
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@account_count_errors = args[:account_count_errors] if args.key?(:account_count_errors)
|
|
|
|
@account_counts = args[:account_counts] if args.key?(:account_counts)
|
|
|
|
@matching_accounts_count = args[:matching_accounts_count] if args.key?(:matching_accounts_count)
|
|
|
|
@non_queryable_accounts = args[:non_queryable_accounts] if args.key?(:non_queryable_accounts)
|
|
|
|
@queried_accounts_count = args[:queried_accounts_count] if args.key?(:queried_accounts_count)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-22 21:14:52 +00:00
|
|
|
# The options for mail export.
|
|
|
|
class MailExportOptions
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The export file format.
|
|
|
|
# Corresponds to the JSON property `exportFormat`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :export_format
|
|
|
|
|
2019-03-14 00:37:43 +00:00
|
|
|
# Set to true to export confidential mode content.
|
|
|
|
# Corresponds to the JSON property `showConfidentialModeContent`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :show_confidential_mode_content
|
|
|
|
alias_method :show_confidential_mode_content?, :show_confidential_mode_content
|
|
|
|
|
2018-08-22 21:14:52 +00:00
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@export_format = args[:export_format] if args.key?(:export_format)
|
2019-03-14 00:37:43 +00:00
|
|
|
@show_confidential_mode_content = args[:show_confidential_mode_content] if args.key?(:show_confidential_mode_content)
|
2018-08-22 21:14:52 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Mail search advanced options
|
|
|
|
class MailOptions
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Set to true to exclude drafts.
|
|
|
|
# Corresponds to the JSON property `excludeDrafts`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :exclude_drafts
|
|
|
|
alias_method :exclude_drafts?, :exclude_drafts
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@exclude_drafts = args[:exclude_drafts] if args.key?(:exclude_drafts)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-25 19:54:22 +00:00
|
|
|
# Represents a matter.
|
|
|
|
class Matter
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The description of the matter.
|
|
|
|
# Corresponds to the JSON property `description`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :description
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# The matter ID which is generated by the server. Should be blank when creating
|
|
|
|
# a new matter.
|
2017-08-25 19:54:22 +00:00
|
|
|
# Corresponds to the JSON property `matterId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :matter_id
|
|
|
|
|
|
|
|
# List of users and access to the matter. Currently there is no programmer
|
|
|
|
# defined limit on the number of permissions a matter can have.
|
|
|
|
# Corresponds to the JSON property `matterPermissions`
|
|
|
|
# @return [Array<Google::Apis::VaultV1::MatterPermission>]
|
|
|
|
attr_accessor :matter_permissions
|
|
|
|
|
|
|
|
# The name of the matter.
|
|
|
|
# Corresponds to the JSON property `name`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :name
|
|
|
|
|
|
|
|
# The state of the matter.
|
|
|
|
# Corresponds to the JSON property `state`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :state
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@description = args[:description] if args.key?(:description)
|
|
|
|
@matter_id = args[:matter_id] if args.key?(:matter_id)
|
|
|
|
@matter_permissions = args[:matter_permissions] if args.key?(:matter_permissions)
|
|
|
|
@name = args[:name] if args.key?(:name)
|
|
|
|
@state = args[:state] if args.key?(:state)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Currently each matter only has one owner, and all others are collaborators.
|
2020-09-14 23:21:28 +00:00
|
|
|
# When an account is purged, its corresponding MatterPermission resources cease
|
|
|
|
# to exist.
|
2017-08-25 19:54:22 +00:00
|
|
|
class MatterPermission
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# The account ID, as provided by Admin SDK.
|
2017-08-25 19:54:22 +00:00
|
|
|
# Corresponds to the JSON property `accountId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :account_id
|
|
|
|
|
|
|
|
# The user's role in this matter.
|
|
|
|
# Corresponds to the JSON property `role`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :role
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@account_id = args[:account_id] if args.key?(:account_id)
|
|
|
|
@role = args[:role] if args.key?(:role)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-10-14 00:38:44 +00:00
|
|
|
# This resource represents a long-running operation that is the result of a
|
|
|
|
# network API call.
|
|
|
|
class Operation
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# If the value is `false`, it means the operation is still in progress. If `true`
|
|
|
|
# , the operation is completed, and either `error` or `response` is available.
|
|
|
|
# Corresponds to the JSON property `done`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :done
|
|
|
|
alias_method :done?, :done
|
|
|
|
|
|
|
|
# The `Status` type defines a logical error model that is suitable for different
|
|
|
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
|
|
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
|
|
|
# data: error code, error message, and error details. You can find out more
|
|
|
|
# about this error model and how to work with it in the [API Design Guide](https:
|
|
|
|
# //cloud.google.com/apis/design/errors).
|
|
|
|
# Corresponds to the JSON property `error`
|
|
|
|
# @return [Google::Apis::VaultV1::Status]
|
|
|
|
attr_accessor :error
|
|
|
|
|
|
|
|
# Service-specific metadata associated with the operation. It typically contains
|
|
|
|
# progress information and common metadata such as create time. Some services
|
|
|
|
# might not provide such metadata. Any method that returns a long-running
|
|
|
|
# operation should document the metadata type, if any.
|
|
|
|
# Corresponds to the JSON property `metadata`
|
|
|
|
# @return [Hash<String,Object>]
|
|
|
|
attr_accessor :metadata
|
|
|
|
|
|
|
|
# The server-assigned name, which is only unique within the same service that
|
|
|
|
# originally returns it. If you use the default HTTP mapping, the `name` should
|
|
|
|
# be a resource name ending with `operations/`unique_id``.
|
|
|
|
# Corresponds to the JSON property `name`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :name
|
|
|
|
|
|
|
|
# The normal response of the operation in case of success. If the original
|
|
|
|
# method returns no data on success, such as `Delete`, the response is `google.
|
|
|
|
# protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`,
|
|
|
|
# the response should be the resource. For other methods, the response should
|
|
|
|
# have the type `XxxResponse`, where `Xxx` is the original method name. For
|
|
|
|
# example, if the original method name is `TakeSnapshot()`, the inferred
|
|
|
|
# response type is `TakeSnapshotResponse`.
|
|
|
|
# Corresponds to the JSON property `response`
|
|
|
|
# @return [Hash<String,Object>]
|
|
|
|
attr_accessor :response
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@done = args[:done] if args.key?(:done)
|
|
|
|
@error = args[:error] if args.key?(:error)
|
|
|
|
@metadata = args[:metadata] if args.key?(:metadata)
|
|
|
|
@name = args[:name] if args.key?(:name)
|
|
|
|
@response = args[:response] if args.key?(:response)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-22 21:14:52 +00:00
|
|
|
# Org Unit to search
|
|
|
|
class OrgUnitInfo
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# Org unit to search, as provided by the Admin SDK Directory API.
|
2018-08-22 21:14:52 +00:00
|
|
|
# Corresponds to the JSON property `orgUnitId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :org_unit_id
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A query definition relevant for search & export.
|
|
|
|
class Query
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Accounts to search
|
|
|
|
# Corresponds to the JSON property `accountInfo`
|
|
|
|
# @return [Google::Apis::VaultV1::AccountInfo]
|
|
|
|
attr_accessor :account_info
|
|
|
|
|
|
|
|
# The corpus to search.
|
|
|
|
# Corresponds to the JSON property `corpus`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :corpus
|
|
|
|
|
|
|
|
# The data source to search from.
|
|
|
|
# Corresponds to the JSON property `dataScope`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :data_scope
|
|
|
|
|
|
|
|
# Drive search advanced options
|
|
|
|
# Corresponds to the JSON property `driveOptions`
|
|
|
|
# @return [Google::Apis::VaultV1::DriveOptions]
|
|
|
|
attr_accessor :drive_options
|
|
|
|
|
|
|
|
# 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`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :end_time
|
|
|
|
|
|
|
|
# Accounts to search
|
|
|
|
# Corresponds to the JSON property `hangoutsChatInfo`
|
|
|
|
# @return [Google::Apis::VaultV1::HangoutsChatInfo]
|
|
|
|
attr_accessor :hangouts_chat_info
|
|
|
|
|
|
|
|
# Hangouts chat search advanced options
|
|
|
|
# Corresponds to the JSON property `hangoutsChatOptions`
|
|
|
|
# @return [Google::Apis::VaultV1::HangoutsChatOptions]
|
|
|
|
attr_accessor :hangouts_chat_options
|
|
|
|
|
|
|
|
# Mail search advanced options
|
|
|
|
# Corresponds to the JSON property `mailOptions`
|
|
|
|
# @return [Google::Apis::VaultV1::MailOptions]
|
|
|
|
attr_accessor :mail_options
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# The search method to use. This field is similar to the search_method field but
|
|
|
|
# is introduced to support shared drives. It supports all search method types.
|
|
|
|
# In case the search_method is TEAM_DRIVE the response of this field will be
|
|
|
|
# SHARED_DRIVE only.
|
2019-06-11 00:37:36 +00:00
|
|
|
# Corresponds to the JSON property `method`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :method_prop
|
|
|
|
|
2018-08-22 21:14:52 +00:00
|
|
|
# Org Unit to search
|
|
|
|
# Corresponds to the JSON property `orgUnitInfo`
|
|
|
|
# @return [Google::Apis::VaultV1::OrgUnitInfo]
|
|
|
|
attr_accessor :org_unit_info
|
|
|
|
|
|
|
|
# The search method to use.
|
|
|
|
# Corresponds to the JSON property `searchMethod`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :search_method
|
|
|
|
|
2019-06-11 00:37:36 +00:00
|
|
|
# Shared drives to search
|
|
|
|
# Corresponds to the JSON property `sharedDriveInfo`
|
|
|
|
# @return [Google::Apis::VaultV1::SharedDriveInfo]
|
|
|
|
attr_accessor :shared_drive_info
|
|
|
|
|
2018-08-22 21:14:52 +00:00
|
|
|
# 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`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :start_time
|
|
|
|
|
|
|
|
# Team Drives to search
|
|
|
|
# Corresponds to the JSON property `teamDriveInfo`
|
|
|
|
# @return [Google::Apis::VaultV1::TeamDriveInfo]
|
|
|
|
attr_accessor :team_drive_info
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# The corpus-specific search operators used to generate search results.
|
2018-08-22 21:14:52 +00:00
|
|
|
# Corresponds to the JSON property `terms`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :terms
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# The time zone name. It should be an IANA TZ name, such as "America/Los_Angeles"
|
|
|
|
# . For more information, see Time Zone.
|
2018-08-22 21:14:52 +00:00
|
|
|
# Corresponds to the JSON property `timeZone`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :time_zone
|
|
|
|
|
feat: Automated regeneration of vault v1 client (#1597)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-25 03:29:40,335 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-vault-v1
nothing to commit, working tree clean
2020-11-25 03:29:40,378 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth vault v1
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth vault v1
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.8
Installing tzinfo 1.2.8
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.50.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.20.1
Installing parallel 1.20.1
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.3
Installing powerpack 0.1.3
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=vault.v1 --names-out=/workspace/api_names_out.yaml
Loading vault, version v1 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/vault.v1.json
W, [2020-11-25T11:30:06.649768 #239] WARN -- : Found reserved property 'method'
W, [2020-11-25T11:30:06.649843 #239] WARN -- : Changed to 'method_prop'
conflict google/apis/vault_v1.rb
<e/apis/vault_v1.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/vault_v1.rb
identical google/apis/vault_v1/service.rb
conflict google/apis/vault_v1/classes.rb
force google/apis/vault_v1/classes.rb
conflict google/apis/vault_v1/representations.rb
force google/apis/vault_v1/representations.rb
conflict /workspace/api_names_out.yaml
force /workspace/api_names_out.yaml
2020-11-25 03:30:10,804 synthtool [DEBUG] > Wrote metadata to generated/google/apis/vault_v1/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/vault_v1/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/6316d1f2-c6ea-4bb4-b0b4-cfe228d0b44b/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-25 11:44:01 +00:00
|
|
|
# Voice search options
|
|
|
|
# Corresponds to the JSON property `voiceOptions`
|
|
|
|
# @return [Google::Apis::VaultV1::VoiceOptions]
|
|
|
|
attr_accessor :voice_options
|
|
|
|
|
2018-08-22 21:14:52 +00:00
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
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)
|
2019-06-11 00:37:36 +00:00
|
|
|
@method_prop = args[:method_prop] if args.key?(:method_prop)
|
2018-08-22 21:14:52 +00:00
|
|
|
@org_unit_info = args[:org_unit_info] if args.key?(:org_unit_info)
|
|
|
|
@search_method = args[:search_method] if args.key?(:search_method)
|
2019-06-11 00:37:36 +00:00
|
|
|
@shared_drive_info = args[:shared_drive_info] if args.key?(:shared_drive_info)
|
2018-08-22 21:14:52 +00:00
|
|
|
@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)
|
feat: Automated regeneration of vault v1 client (#1597)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-25 03:29:40,335 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-vault-v1
nothing to commit, working tree clean
2020-11-25 03:29:40,378 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth vault v1
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth vault v1
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.8
Installing tzinfo 1.2.8
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.50.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.20.1
Installing parallel 1.20.1
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.3
Installing powerpack 0.1.3
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=vault.v1 --names-out=/workspace/api_names_out.yaml
Loading vault, version v1 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/vault.v1.json
W, [2020-11-25T11:30:06.649768 #239] WARN -- : Found reserved property 'method'
W, [2020-11-25T11:30:06.649843 #239] WARN -- : Changed to 'method_prop'
conflict google/apis/vault_v1.rb
<e/apis/vault_v1.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/vault_v1.rb
identical google/apis/vault_v1/service.rb
conflict google/apis/vault_v1/classes.rb
force google/apis/vault_v1/classes.rb
conflict google/apis/vault_v1/representations.rb
force google/apis/vault_v1/representations.rb
conflict /workspace/api_names_out.yaml
force /workspace/api_names_out.yaml
2020-11-25 03:30:10,804 synthtool [DEBUG] > Wrote metadata to generated/google/apis/vault_v1/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/vault_v1/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/6316d1f2-c6ea-4bb4-b0b4-cfe228d0b44b/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-25 11:44:01 +00:00
|
|
|
@voice_options = args[:voice_options] if args.key?(:voice_options)
|
2018-08-22 21:14:52 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Remove a list of accounts from a hold.
|
|
|
|
class RemoveHeldAccountsRequest
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-05-07 20:07:42 +00:00
|
|
|
# Account IDs to identify HeldAccounts to remove.
|
2018-08-22 21:14:52 +00:00
|
|
|
# Corresponds to the JSON property `accountIds`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :account_ids
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@account_ids = args[:account_ids] if args.key?(:account_ids)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Response for batch delete held accounts.
|
|
|
|
class RemoveHeldAccountsResponse
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# A list of statuses for deleted accounts. Results have the same order as the
|
|
|
|
# request.
|
2018-08-22 21:14:52 +00:00
|
|
|
# Corresponds to the JSON property `statuses`
|
|
|
|
# @return [Array<Google::Apis::VaultV1::Status>]
|
|
|
|
attr_accessor :statuses
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@statuses = args[:statuses] if args.key?(:statuses)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-25 19:54:22 +00:00
|
|
|
# Remove an account as a matter collaborator.
|
|
|
|
class RemoveMatterPermissionsRequest
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The account ID.
|
|
|
|
# Corresponds to the JSON property `accountId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :account_id
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@account_id = args[:account_id] if args.key?(:account_id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Reopen a matter by ID.
|
|
|
|
class ReopenMatterRequest
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Response to a ReopenMatterRequest.
|
|
|
|
class ReopenMatterResponse
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Represents a matter.
|
|
|
|
# Corresponds to the JSON property `matter`
|
|
|
|
# @return [Google::Apis::VaultV1::Matter]
|
|
|
|
attr_accessor :matter
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@matter = args[:matter] if args.key?(:matter)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-07 00:36:14 +00:00
|
|
|
# Definition of the saved query.
|
|
|
|
class SavedQuery
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# Output only. The server generated timestamp at which saved query was created.
|
2018-11-07 00:36:14 +00:00
|
|
|
# Corresponds to the JSON property `createTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :create_time
|
|
|
|
|
|
|
|
# Name of the saved query.
|
|
|
|
# Corresponds to the JSON property `displayName`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :display_name
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# Output only. The matter ID of the associated matter. The server does not look
|
|
|
|
# at this field during create and always uses matter id in the URL.
|
2018-11-07 00:36:14 +00:00
|
|
|
# Corresponds to the JSON property `matterId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :matter_id
|
|
|
|
|
|
|
|
# A query definition relevant for search & export.
|
|
|
|
# Corresponds to the JSON property `query`
|
|
|
|
# @return [Google::Apis::VaultV1::Query]
|
|
|
|
attr_accessor :query
|
|
|
|
|
|
|
|
# A unique identifier for the saved query.
|
|
|
|
# Corresponds to the JSON property `savedQueryId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :saved_query_id
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
|
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
|
|
@matter_id = args[:matter_id] if args.key?(:matter_id)
|
|
|
|
@query = args[:query] if args.key?(:query)
|
|
|
|
@saved_query_id = args[:saved_query_id] if args.key?(:saved_query_id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-11 00:37:36 +00:00
|
|
|
# Shared drives to search
|
|
|
|
class SharedDriveInfo
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# List of Shared drive IDs, as provided by Drive API.
|
2019-06-11 00:37:36 +00:00
|
|
|
# Corresponds to the JSON property `sharedDriveIds`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :shared_drive_ids
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@shared_drive_ids = args[:shared_drive_ids] if args.key?(:shared_drive_ids)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# The `Status` type defines a logical error model that is suitable for different
|
|
|
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
|
|
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
|
|
|
# data: error code, error message, and error details. You can find out more
|
|
|
|
# about this error model and how to work with it in the [API Design Guide](https:
|
|
|
|
# //cloud.google.com/apis/design/errors).
|
2018-08-22 21:14:52 +00:00
|
|
|
class Status
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The status code, which should be an enum value of google.rpc.Code.
|
|
|
|
# Corresponds to the JSON property `code`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :code
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# A list of messages that carry the error details. There is a common set of
|
2018-08-22 21:14:52 +00:00
|
|
|
# message types for APIs to use.
|
|
|
|
# Corresponds to the JSON property `details`
|
|
|
|
# @return [Array<Hash<String,Object>>]
|
|
|
|
attr_accessor :details
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# A developer-facing error message, which should be in English. Any user-facing
|
|
|
|
# error message should be localized and sent in the google.rpc.Status.details
|
|
|
|
# field, or localized by the client.
|
2018-08-22 21:14:52 +00:00
|
|
|
# Corresponds to the JSON property `message`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :message
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@code = args[:code] if args.key?(:code)
|
|
|
|
@details = args[:details] if args.key?(:details)
|
|
|
|
@message = args[:message] if args.key?(:message)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Team Drives to search
|
|
|
|
class TeamDriveInfo
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-09-14 23:21:28 +00:00
|
|
|
# List of Team Drive IDs, as provided by Drive API.
|
2018-08-22 21:14:52 +00:00
|
|
|
# Corresponds to the JSON property `teamDriveIds`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :team_drive_ids
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@team_drive_ids = args[:team_drive_ids] if args.key?(:team_drive_ids)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-25 19:54:22 +00:00
|
|
|
# Undelete a matter by ID.
|
|
|
|
class UndeleteMatterRequest
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
end
|
|
|
|
end
|
2018-08-22 21:14:52 +00:00
|
|
|
|
|
|
|
# User's information.
|
|
|
|
class UserInfo
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The displayed name of the user.
|
|
|
|
# Corresponds to the JSON property `displayName`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :display_name
|
|
|
|
|
|
|
|
# The email address of the user.
|
|
|
|
# Corresponds to the JSON property `email`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :email
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
|
|
@email = args[:email] if args.key?(:email)
|
|
|
|
end
|
|
|
|
end
|
feat: Automated regeneration of vault v1 client (#1597)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-25 03:29:40,335 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-vault-v1
nothing to commit, working tree clean
2020-11-25 03:29:40,378 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth vault v1
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth vault v1
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.8
Installing tzinfo 1.2.8
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.50.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.20.1
Installing parallel 1.20.1
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.3
Installing powerpack 0.1.3
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=vault.v1 --names-out=/workspace/api_names_out.yaml
Loading vault, version v1 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/vault.v1.json
W, [2020-11-25T11:30:06.649768 #239] WARN -- : Found reserved property 'method'
W, [2020-11-25T11:30:06.649843 #239] WARN -- : Changed to 'method_prop'
conflict google/apis/vault_v1.rb
<e/apis/vault_v1.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/vault_v1.rb
identical google/apis/vault_v1/service.rb
conflict google/apis/vault_v1/classes.rb
force google/apis/vault_v1/classes.rb
conflict google/apis/vault_v1/representations.rb
force google/apis/vault_v1/representations.rb
conflict /workspace/api_names_out.yaml
force /workspace/api_names_out.yaml
2020-11-25 03:30:10,804 synthtool [DEBUG] > Wrote metadata to generated/google/apis/vault_v1/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/vault_v1/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/6316d1f2-c6ea-4bb4-b0b4-cfe228d0b44b/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-25 11:44:01 +00:00
|
|
|
|
|
|
|
# The options for voice export.
|
|
|
|
class VoiceExportOptions
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The export format for voice export.
|
|
|
|
# Corresponds to the JSON property `exportFormat`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :export_format
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@export_format = args[:export_format] if args.key?(:export_format)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Voice search options
|
|
|
|
class VoiceOptions
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Datatypes to search
|
|
|
|
# Corresponds to the JSON property `coveredData`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :covered_data
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@covered_data = args[:covered_data] if args.key?(:covered_data)
|
|
|
|
end
|
|
|
|
end
|
2017-08-25 19:54:22 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|