google-apis-serviceusage_v1 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9a116f532a4e17ec859224084081c13dc764877dc26dcf194e1d3fd66411cb5f
4
- data.tar.gz: 6f85d7a6a260fb72fc14334790127c01fd12dafb0e8b212f308841aa6f1f24c7
3
+ metadata.gz: 9d6499b4d116b9f4a070e8b21bd8a7cb25e548eb10c1bc32afee4563c7389b2e
4
+ data.tar.gz: a912466cc29884c8ec5038780e5804c826f2813090dfc2806d3923dae52f48b2
5
5
  SHA512:
6
- metadata.gz: a7b5de7511cf91838805aa52ca8d9da5fbfa79c2b8e7041182e04fe40677dc65ab039ce3dbbebc04547e847a4ffd53781f97d5944d4a18cb94c4b9774ae0eeaa
7
- data.tar.gz: e2c86f133113feb22896037d608f9de184d0849d1ab550075fac7d07a9483a41baf3d44a9071c161b2b9c500f560655a531d7b06d76f951f080e547d8970a1f7
6
+ metadata.gz: 67e0075dbec73d2ccb8d37fe5d357235eb9272daf9f55afc358d9155576f8d571e606021bb283b140c81a1e723544e7c3ac40c97dda7e683810f97f87ce56460
7
+ data.tar.gz: 4be0218875d4168e7e63c4d4c8364938f009022b428bc8d6ce0d100835e981d777a390c900994e666a843e76ddffac1f4af2321cff07684354ff3ec34b9cec4a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-serviceusage_v1
2
2
 
3
+ ### v0.2.0 (2021-01-26)
4
+
5
+ * Regenerated from discovery document revision 20210124
6
+ * Regenerated using generator version 0.1.2
7
+
3
8
  ### v0.1.0 (2021-01-07)
4
9
 
5
10
  * Regenerated using generator version 0.1.1
@@ -2547,11 +2547,11 @@ module Google
2547
2547
 
2548
2548
  # The units in which the metric value is reported. It is only applicable if the `
2549
2549
  # value_type` is `INT64`, `DOUBLE`, or `DISTRIBUTION`. The `unit` defines the
2550
- # representation of the stored metric values. Different systems may scale the
2551
- # values to be more easily displayed (so a value of `0.02KBy` _might_ be
2552
- # displayed as `20By`, and a value of `3523KBy` _might_ be displayed as `3.5MBy`)
2553
- # . However, if the `unit` is `KBy`, then the value of the metric is always in
2554
- # thousands of bytes, no matter how it may be displayed.. If you want a custom
2550
+ # representation of the stored metric values. Different systems might scale the
2551
+ # values to be more easily displayed (so a value of `0.02kBy` _might_ be
2552
+ # displayed as `20By`, and a value of `3523kBy` _might_ be displayed as `3.5MBy`)
2553
+ # . However, if the `unit` is `kBy`, then the value of the metric is always in
2554
+ # thousands of bytes, no matter how it might be displayed. If you want a custom
2555
2555
  # metric to record the exact number of CPU-seconds used by a job, you can create
2556
2556
  # an `INT64 CUMULATIVE` metric whose `unit` is `s`CPU`` (or equivalently `1s`CPU`
2557
2557
  # ` or just `s`). If the job uses 12,005 CPU-seconds, then the value is written
@@ -2559,7 +2559,7 @@ module Google
2559
2559
  # more granular way, you can create a `DOUBLE CUMULATIVE` metric whose `unit` is
2560
2560
  # `ks`CPU``, and then write the value `12.005` (which is `12005/1000`), or use `
2561
2561
  # Kis`CPU`` and write `11.723` (which is `12005/1024`). The supported units are
2562
- # a subset of [The Unified Code for Units of Measure](http://unitsofmeasure.org/
2562
+ # a subset of [The Unified Code for Units of Measure](https://unitsofmeasure.org/
2563
2563
  # ucum.html) standard: **Basic units (UNIT)** * `bit` bit * `By` byte * `s`
2564
2564
  # second * `min` minute * `h` hour * `d` day * `1` dimensionless **Prefixes (
2565
2565
  # PREFIX)** * `k` kilo (10^3) * `M` mega (10^6) * `G` giga (10^9) * `T` tera (10^
@@ -3570,7 +3570,11 @@ module Google
3570
3570
 
3571
3571
  # Requirements that must be satisfied before a consumer project can use the
3572
3572
  # service. Each requirement is of the form /; for example 'serviceusage.
3573
- # googleapis.com/billing-enabled'.
3573
+ # googleapis.com/billing-enabled'. For Google APIs, a Terms of Service
3574
+ # requirement must be included here. Google Cloud APIs must include "
3575
+ # serviceusage.googleapis.com/tos/cloud". Other Google APIs should include "
3576
+ # serviceusage.googleapis.com/tos/universal". Additional ToS can be included
3577
+ # based on the business needs.
3574
3578
  # Corresponds to the JSON property `requirements`
3575
3579
  # @return [Array<String>]
3576
3580
  attr_accessor :requirements
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServiceusageV1
18
18
  # Version of the google-apis-serviceusage_v1 gem
19
- GEM_VERSION = "0.1.0"
19
+ GEM_VERSION = "0.2.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.1"
22
+ GENERATOR_VERSION = "0.1.2"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20201208"
25
+ REVISION = "20210124"
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-serviceusage_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.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-01-08 00:00:00.000000000 Z
11
+ date: 2021-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-serviceusage_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.1.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.2.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-serviceusage_v1
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.1.4
72
+ rubygems_version: 3.2.6
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Service Usage API V1