google-apis-cloudsearch_v1 0.9.0 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7cbfd5a37fe5475b015922dc0a34516a52c5e9a1ac88dbaad84e8200bc9dda2f
4
- data.tar.gz: 1070b4bbf0e6f45e8cd8d077fbac1bdd977e2949b84ecb694ee6da3b026997db
3
+ metadata.gz: f6e4971b298c181fe77e4412f680bdcf93bfd1d83044131bb8afcc42f059c0a9
4
+ data.tar.gz: d1e3d86652bfc80ba4a34b917ebb9d4da94969e46444bb5dcbee83b8ab5dca04
5
5
  SHA512:
6
- metadata.gz: 28cf72bc86f833692e5ba5f137dba0e3fe3afe561522994bcc86b693e11f969a2e026e9e8ed88edda2a6022d0d2952f9766b64588b35c83289f2686a82f0c4e8
7
- data.tar.gz: b9b6309166aa38c38bc86d4bf8279d1e355c6375f6c7130c49e7e65a0cca6f3778badca2a5c23cdba29cf16d2f1f8892e2c68832cede44f384b1890192a73eaa
6
+ metadata.gz: 72396de94c2fddc345d3382ef282c90cb27f3aa38cefba805c72e87825d661fc356445b964516d456b1853fc89e1d755eef87253395fbcd110b49963bf103325
7
+ data.tar.gz: 61658198fbf32ae67e8899caca54c8762a062347418cec42e756a267c261911a42b440dfe826670d7e191d7f942996d5ce5e80790aff5149dfea5d42763d7e9e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-cloudsearch_v1
2
2
 
3
+ ### v0.13.0 (2021-10-18)
4
+
5
+ * Regenerated from discovery document revision 20211012
6
+
7
+ ### v0.12.0 (2021-10-11)
8
+
9
+ * Regenerated from discovery document revision 20211005
10
+
11
+ ### v0.11.0 (2021-10-05)
12
+
13
+ * Regenerated from discovery document revision 20210927
14
+
15
+ ### v0.10.0 (2021-09-29)
16
+
17
+ * Regenerated from discovery document revision 20210920
18
+
3
19
  ### v0.9.0 (2021-07-14)
4
20
 
5
21
  * Regenerated from discovery document revision 20210706
@@ -1410,11 +1410,12 @@ module Google
1410
1410
  end
1411
1411
  end
1412
1412
 
1413
- #
1413
+ # Response format for getting query stats for a search application between given
1414
+ # dates.
1414
1415
  class GetSearchApplicationQueryStatsResponse
1415
1416
  include Google::Apis::Core::Hashable
1416
1417
 
1417
- #
1418
+ # Query stats per date for a search application.
1418
1419
  # Corresponds to the JSON property `stats`
1419
1420
  # @return [Array<Google::Apis::CloudsearchV1::SearchApplicationQueryStats>]
1420
1421
  attr_accessor :stats
@@ -1608,6 +1609,19 @@ module Google
1608
1609
  end
1609
1610
  end
1610
1611
 
1612
+ # Request message for `InitializeCustomer` method.
1613
+ class InitializeCustomerRequest
1614
+ include Google::Apis::Core::Hashable
1615
+
1616
+ def initialize(**args)
1617
+ update!(**args)
1618
+ end
1619
+
1620
+ # Update properties of this object
1621
+ def update!(**args)
1622
+ end
1623
+ end
1624
+
1611
1625
  # Used to provide a search operator for integer properties. This is optional.
1612
1626
  # Search operators let users restrict the query to specific fields relevant to
1613
1627
  # the type of item being searched.
@@ -3049,8 +3063,8 @@ module Google
3049
3063
 
3050
3064
  # Indicates that the property can be used for sorting. Cannot be true for
3051
3065
  # properties that are repeatable. Cannot be true for properties whose type is
3052
- # object or user identifier. IsReturnable must be true to set this option. Only
3053
- # supported for Boolean, Date, Double, Integer, and Timestamp properties.
3066
+ # object. IsReturnable must be true to set this option. Only supported for
3067
+ # Boolean, Date, Double, Integer, and Timestamp properties.
3054
3068
  # Corresponds to the JSON property `isSortable`
3055
3069
  # @return [Boolean]
3056
3070
  attr_accessor :is_sortable
@@ -3985,7 +3999,7 @@ module Google
3985
3999
  end
3986
4000
  end
3987
4001
 
3988
- #
4002
+ # Search application level query stats per date
3989
4003
  class SearchApplicationQueryStats
3990
4004
  include Google::Apis::Core::Hashable
3991
4005
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudsearchV1
18
18
  # Version of the google-apis-cloudsearch_v1 gem
19
- GEM_VERSION = "0.9.0"
19
+ GEM_VERSION = "0.13.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210706"
25
+ REVISION = "20211012"
26
26
  end
27
27
  end
28
28
  end
@@ -358,6 +358,12 @@ module Google
358
358
  include Google::Apis::Core::JsonObjectSupport
359
359
  end
360
360
 
361
+ class InitializeCustomerRequest
362
+ class Representation < Google::Apis::Core::JsonRepresentation; end
363
+
364
+ include Google::Apis::Core::JsonObjectSupport
365
+ end
366
+
361
367
  class IntegerOperatorOptions
362
368
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
369
 
@@ -1447,6 +1453,12 @@ module Google
1447
1453
  end
1448
1454
  end
1449
1455
 
1456
+ class InitializeCustomerRequest
1457
+ # @private
1458
+ class Representation < Google::Apis::Core::JsonRepresentation
1459
+ end
1460
+ end
1461
+
1450
1462
  class IntegerOperatorOptions
1451
1463
  # @private
1452
1464
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1830,6 +1830,37 @@ module Google
1830
1830
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1831
1831
  execute_or_queue_command(command, &block)
1832
1832
  end
1833
+
1834
+ # Initializes the customer. **Note:** This API requires an admin account to
1835
+ # execute.
1836
+ # @param [Google::Apis::CloudsearchV1::InitializeCustomerRequest] initialize_customer_request_object
1837
+ # @param [String] fields
1838
+ # Selector specifying which fields to include in a partial response.
1839
+ # @param [String] quota_user
1840
+ # Available to use for quota purposes for server-side applications. Can be any
1841
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1842
+ # @param [Google::Apis::RequestOptions] options
1843
+ # Request-specific options
1844
+ #
1845
+ # @yield [result, err] Result & error if block supplied
1846
+ # @yieldparam result [Google::Apis::CloudsearchV1::Operation] parsed result object
1847
+ # @yieldparam err [StandardError] error object if request failed
1848
+ #
1849
+ # @return [Google::Apis::CloudsearchV1::Operation]
1850
+ #
1851
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1852
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1853
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1854
+ def initialize_customer(initialize_customer_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1855
+ command = make_simple_command(:post, 'v1:initializeCustomer', options)
1856
+ command.request_representation = Google::Apis::CloudsearchV1::InitializeCustomerRequest::Representation
1857
+ command.request_object = initialize_customer_request_object
1858
+ command.response_representation = Google::Apis::CloudsearchV1::Operation::Representation
1859
+ command.response_class = Google::Apis::CloudsearchV1::Operation
1860
+ command.query['fields'] = fields unless fields.nil?
1861
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1862
+ execute_or_queue_command(command, &block)
1863
+ end
1833
1864
 
1834
1865
  protected
1835
1866
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudsearch_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-19 00:00:00.000000000 Z
11
+ date: 2021-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudsearch_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.13.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudsearch_v1
63
63
  post_install_message:
64
64
  rdoc_options: []