google-apis-cloudchannel_v1 0.27.0 → 0.28.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: 180447d49d0f1b98587e5c6513eca3d68253b9c590057d77f5d7f0113504edfa
4
- data.tar.gz: 783c53f44401e94d5697292e20db19014de91403252a83f28e54692d882eb4a0
3
+ metadata.gz: 512fc13807020b9a6ddbe0d4067ff64f7873c6bd3e753505a0ed3f7d2b377ac4
4
+ data.tar.gz: 3f67e1818132094dd5be9a9c6626837a32e99aef8a4809a30b90d3a68af525b0
5
5
  SHA512:
6
- metadata.gz: 9f0e05ddcce1769d1f160daf89c7246172c7173c7d382e07626871fec5d4a245d6ea1bae217f66905c6647e555ac15bda78494123f6e85bfed166e05d9f63519
7
- data.tar.gz: 740afa89a1b7e0861a2c38edcac7a5ad45e83a08f51694fb37628a4c9189d46914ce73a324d86a944a2a1bb0214013df08c48dbd487033b93c67d67a9969bbb3
6
+ metadata.gz: 41be687f3df6d0018a740a90ac1c59b230c34aec93fafd816cff101e6879910f7e308a4d04aea78e014b08d11177a991c29ab18d53f26141cfe51f6158d0ce76
7
+ data.tar.gz: 7d0e4ceeae813b63e3fcf76708272e847c39631d53a271d4589e411d76a606ba6b250d0b3af37b283ffbe3487642916a3f4b61597ef5a853ac5bce46b2d8d05d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudchannel_v1
2
2
 
3
+ ### v0.28.0 (2022-10-27)
4
+
5
+ * Regenerated from discovery document revision 20221023
6
+
3
7
  ### v0.27.0 (2022-10-20)
4
8
 
5
9
  * Regenerated using generator version 0.11.0
@@ -3475,34 +3475,35 @@ module Google
3475
3475
  # The decimal value, as a string. The string representation consists of an
3476
3476
  # optional sign, `+` (`U+002B`) or `-` (`U+002D`), followed by a sequence of
3477
3477
  # zero or more decimal digits ("the integer"), optionally followed by a fraction,
3478
- # optionally followed by an exponent. The fraction consists of a decimal point
3479
- # followed by zero or more decimal digits. The string must contain at least one
3480
- # digit in either the integer or the fraction. The number formed by the sign,
3481
- # the integer and the fraction is referred to as the significand. The exponent
3482
- # consists of the character `e` (`U+0065`) or `E` (`U+0045`) followed by one or
3483
- # more decimal digits. Services **should** normalize decimal values before
3484
- # storing them by: - Removing an explicitly-provided `+` sign (`+2.5` -> `2.5`).
3485
- # - Replacing a zero-length integer value with `0` (`.5` -> `0.5`). - Coercing
3486
- # the exponent character to lower-case (`2.5E8` -> `2.5e8`). - Removing an
3487
- # explicitly-provided zero exponent (`2.5e0` -> `2.5`). Services **may** perform
3488
- # additional normalization based on its own needs and the internal decimal
3489
- # implementation selected, such as shifting the decimal point and exponent value
3490
- # together (example: `2.5e-1` <-> `0.25`). Additionally, services **may**
3491
- # preserve trailing zeroes in the fraction to indicate increased precision, but
3492
- # are not required to do so. Note that only the `.` character is supported to
3493
- # divide the integer and the fraction; `,` **should not** be supported
3494
- # regardless of locale. Additionally, thousand separators **should not** be
3495
- # supported. If a service does support them, values **must** be normalized. The
3496
- # ENBF grammar is: DecimalString = [Sign] Significand [Exponent]; Sign = '+' | '-
3497
- # '; Significand = Digits '.' | [Digits] '.' Digits; Exponent = ('e' | 'E') [
3498
- # Sign] Digits; Digits = ` '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' |
3499
- # '9' `; Services **should** clearly document the range of supported values, the
3500
- # maximum supported precision (total number of digits), and, if applicable, the
3501
- # scale (number of digits after the decimal point), as well as how it behaves
3502
- # when receiving out-of-bounds values. Services **may** choose to accept values
3503
- # passed as input even when the value has a higher precision or scale than the
3504
- # service supports, and **should** round the value to fit the supported scale.
3505
- # Alternatively, the service **may** error with `400 Bad Request` (`
3478
+ # optionally followed by an exponent. An empty string **should** be interpreted
3479
+ # as `0`. The fraction consists of a decimal point followed by zero or more
3480
+ # decimal digits. The string must contain at least one digit in either the
3481
+ # integer or the fraction. The number formed by the sign, the integer and the
3482
+ # fraction is referred to as the significand. The exponent consists of the
3483
+ # character `e` (`U+0065`) or `E` (`U+0045`) followed by one or more decimal
3484
+ # digits. Services **should** normalize decimal values before storing them by: -
3485
+ # Removing an explicitly-provided `+` sign (`+2.5` -> `2.5`). - Replacing a zero-
3486
+ # length integer value with `0` (`.5` -> `0.5`). - Coercing the exponent
3487
+ # character to upper-case, with explicit sign (`2.5e8` -> `2.5E+8`). - Removing
3488
+ # an explicitly-provided zero exponent (`2.5E0` -> `2.5`). Services **may**
3489
+ # perform additional normalization based on its own needs and the internal
3490
+ # decimal implementation selected, such as shifting the decimal point and
3491
+ # exponent value together (example: `2.5E-1` <-> `0.25`). Additionally, services
3492
+ # **may** preserve trailing zeroes in the fraction to indicate increased
3493
+ # precision, but are not required to do so. Note that only the `.` character is
3494
+ # supported to divide the integer and the fraction; `,` **should not** be
3495
+ # supported regardless of locale. Additionally, thousand separators **should not*
3496
+ # * be supported. If a service does support them, values **must** be normalized.
3497
+ # The ENBF grammar is: DecimalString = '' | [Sign] Significand [Exponent]; Sign =
3498
+ # '+' | '-'; Significand = Digits '.' | [Digits] '.' Digits; Exponent = ('e' | '
3499
+ # E') [Sign] Digits; Digits = ` '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '
3500
+ # 8' | '9' `; Services **should** clearly document the range of supported values,
3501
+ # the maximum supported precision (total number of digits), and, if applicable,
3502
+ # the scale (number of digits after the decimal point), as well as how it
3503
+ # behaves when receiving out-of-bounds values. Services **may** choose to accept
3504
+ # values passed as input even when the value has a higher precision or scale
3505
+ # than the service supports, and **should** round the value to fit the supported
3506
+ # scale. Alternatively, the service **may** error with `400 Bad Request` (`
3506
3507
  # INVALID_ARGUMENT` in gRPC) if precision would be lost. Services **should**
3507
3508
  # error with `400 Bad Request` (`INVALID_ARGUMENT` in gRPC) if the service
3508
3509
  # receives a value outside of the supported range.
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudchannelV1
18
18
  # Version of the google-apis-cloudchannel_v1 gem
19
- GEM_VERSION = "0.27.0"
19
+ GEM_VERSION = "0.28.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220910"
25
+ REVISION = "20221023"
26
26
  end
27
27
  end
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudchannel_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.0
4
+ version: 0.28.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: 2022-10-21 00:00:00.000000000 Z
11
+ date: 2022-10-31 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/main/generated/google-apis-cloudchannel_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudchannel_v1/v0.27.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudchannel_v1/v0.28.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudchannel_v1
63
63
  post_install_message:
64
64
  rdoc_options: []