google-apis-versionhistory_v1 0.1.0 → 0.4.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: 8ab3a5f4e66725357ed986cca256da9bb1d193286d1b8cd341b772916c09466d
4
- data.tar.gz: 38168a9a371a00f83d47906d7b9748a3515001f704780bcc654cb9074fbde44b
3
+ metadata.gz: 98571c57365ee6e3c6fbcb5c1e30bf01847c837003ed86e8d984992a9f9fac21
4
+ data.tar.gz: 6b08e7ba9ed54c333fdd27e5e3a28ee5ef587f6c131e3780eae3a1dae29916a9
5
5
  SHA512:
6
- metadata.gz: bead99d123cffd85d97407030be4bdf5001b55af58cb43f6fd1312f18dd08128b419e44b37d9195cc06e9b7a1e687a55c3895e4ac40d2173755e7db6a3199617
7
- data.tar.gz: c86a0e675bfcafc486231cb1b1f00283137067f36e1e9f4ed490b2f5927698f9ded06f30123f38cf0c52fd81b410c6f5c2701d803019565455d5593d3741e236
6
+ metadata.gz: 21b662ebf25a043141aa092c9710efeb74f853524031a5320a82e0f3bdd1d9d65aeccf416e05824ec6dd203e41312a4ee2ba43e588299880770ffc9c5536e495
7
+ data.tar.gz: d404c9ff2f4502665ce013c1f6ebdcd21763bc2f9f4e2fb477e06e6d65efe5e85c671d08e7f216a055921865e6a25ea09083f30862336bff7f16a6872df69a19
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-versionhistory_v1
2
2
 
3
+ ### v0.4.0 (2022-03-15)
4
+
5
+ * Regenerated from discovery document revision 20220314
6
+ * Regenerated using generator version 0.4.1
7
+
8
+ ### v0.3.0 (2021-12-14)
9
+
10
+ * Regenerated from discovery document revision 20211028
11
+
12
+ ### v0.2.0 (2021-10-21)
13
+
14
+ * Unspecified changes
15
+
3
16
  ### v0.1.0 (2021-10-16)
4
17
 
5
18
  * Regenerated from discovery document revision 20211011
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/versionhistory_v1"
51
51
  client = Google::Apis::VersionhistoryV1::VersionHistoryService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Versionhistory service in particular.)
67
67
 
@@ -225,6 +225,13 @@ module Google
225
225
  # @return [Float]
226
226
  attr_accessor :fraction
227
227
 
228
+ # Rollout fraction group. Only fractions with the same fraction_group are
229
+ # statistically comparable: there may be non-fractional differences between
230
+ # different fraction groups.
231
+ # Corresponds to the JSON property `fractionGroup`
232
+ # @return [Fixnum]
233
+ attr_accessor :fraction_group
234
+
228
235
  # Release name. Format is "`product`/platforms/`platform`/channels/`channel`/
229
236
  # versions/`version`/releases/`release`"
230
237
  # Corresponds to the JSON property `name`
@@ -251,6 +258,7 @@ module Google
251
258
  # Update properties of this object
252
259
  def update!(**args)
253
260
  @fraction = args[:fraction] if args.key?(:fraction)
261
+ @fraction_group = args[:fraction_group] if args.key?(:fraction_group)
254
262
  @name = args[:name] if args.key?(:name)
255
263
  @serving = args[:serving] if args.key?(:serving)
256
264
  @version = args[:version] if args.key?(:version)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module VersionhistoryV1
18
18
  # Version of the google-apis-versionhistory_v1 gem
19
- GEM_VERSION = "0.1.0"
19
+ GEM_VERSION = "0.4.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211011"
25
+ REVISION = "20220314"
26
26
  end
27
27
  end
28
28
  end
@@ -140,6 +140,7 @@ module Google
140
140
  # @private
141
141
  class Representation < Google::Apis::Core::JsonRepresentation
142
142
  property :fraction, as: 'fraction'
143
+ property :fraction_group, :numeric_string => true, as: 'fractionGroup'
143
144
  property :name, as: 'name'
144
145
  property :serving, as: 'serving', class: Google::Apis::VersionhistoryV1::Interval, decorator: Google::Apis::VersionhistoryV1::Interval::Representation
145
146
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-versionhistory_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.4.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-10-18 00:00:00.000000000 Z
11
+ date: 2022-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-versionhistory_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-versionhistory_v1/v0.1.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-versionhistory_v1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-versionhistory_v1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-versionhistory_v1/v0.4.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-versionhistory_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths:
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Version History API V1