google-apis-serviceusage_v1beta1 0.16.0 → 0.17.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: f2e7ee201c729d8599dc09866f7d2ad3b6d48c201fa7c2d0c2cb13472f4a4acf
4
- data.tar.gz: 1269938319bc3bb2f31fb56924f86bab181b9246ce55ee8c298ca5c1c51c6b17
3
+ metadata.gz: 7c6f5494ce65a70337396eda02466c2d86b03b7029c67f7bd23e07df172120d5
4
+ data.tar.gz: a1f22d9c15d27215adfe1c1b97299a7f9d64bc49091d2105fc62b7c60a8889c7
5
5
  SHA512:
6
- metadata.gz: 6d1bfa315ae9802a84cb7f1e21b180a5cb14742a2dfafc069e78d9dac07d76c66a0d7c3207949c27fd4b107500c09d5626c8fd63a0524a31d86c9cfbe81297ad
7
- data.tar.gz: 60ccc664d5ca9f72a822d003ce5b75738c7308a8fffee156695e5614284f8084999bcbb60b3547aa6cd4bd960c28a60e5d16df1522090e365d50193912b7192f
6
+ metadata.gz: ab1185adceeda8dd5921d3314c6508195f79009cb569d7e191f81d4b066e7e637d9ddc4bc1b2e8a581b858ca48c7efda3df37e148ae750cb1eb00a84e68d46bf
7
+ data.tar.gz: 01f2589d89f02469b489ec38d7862f4ac5cee99cb3a993acc311bae7fcb543ea74c654289c8793f26a356615ada3a859528be245e7b6ff6af80ec755e86b9162
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-serviceusage_v1beta1
2
2
 
3
+ ### v0.17.0 (2021-12-17)
4
+
5
+ * Regenerated from discovery document revision 20211214
6
+ * Unspecified changes
7
+
3
8
  ### v0.16.0 (2021-10-20)
4
9
 
5
10
  * Unspecified changes
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/serviceusage_v1beta1"
51
51
  client = Google::Apis::ServiceusageV1beta1::ServiceUsageService.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.
@@ -658,6 +658,12 @@ module Google
658
658
  # @return [Array<Google::Apis::ServiceusageV1beta1::QuotaBucket>]
659
659
  attr_accessor :quota_buckets
660
660
 
661
+ # List of all supported locations. This field is present only if the limit has a
662
+ # `region` or `zone` dimension.
663
+ # Corresponds to the JSON property `supportedLocations`
664
+ # @return [Array<String>]
665
+ attr_accessor :supported_locations
666
+
661
667
  # The limit unit. An example unit would be `1/`project`/`region`` Note that ``
662
668
  # project`` and ``region`` are not placeholders in this example; the literal
663
669
  # characters ``` and ``` occur in the string.
@@ -676,6 +682,7 @@ module Google
676
682
  @metric = args[:metric] if args.key?(:metric)
677
683
  @name = args[:name] if args.key?(:name)
678
684
  @quota_buckets = args[:quota_buckets] if args.key?(:quota_buckets)
685
+ @supported_locations = args[:supported_locations] if args.key?(:supported_locations)
679
686
  @unit = args[:unit] if args.key?(:unit)
680
687
  end
681
688
  end
@@ -817,13 +824,20 @@ module Google
817
824
  end
818
825
 
819
826
  # Selects and configures the service controller used by the service. The service
820
- # controller handles features like abuse, quota, billing, logging, monitoring,
821
- # etc.
827
+ # controller handles two things: - **What is allowed:** for each API request,
828
+ # Chemist checks the project status, activation status, abuse status, billing
829
+ # status, service status, location restrictions, VPC Service Controls,
830
+ # SuperQuota, and other policies. - **What has happened:** for each API response,
831
+ # Chemist reports the telemetry data to analytics, auditing, billing, eventing,
832
+ # logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
833
+ # not associated with API traffic, such as billing metrics. Example: control:
834
+ # environment: servicecontrol.googleapis.com
822
835
  class Control
823
836
  include Google::Apis::Core::Hashable
824
837
 
825
- # The service control environment to use. If empty, no control plane feature (
826
- # like quota and billing) will be enabled.
838
+ # The service controller environment to use. If empty, no control plane feature (
839
+ # like quota and billing) will be enabled. The recommended value for most
840
+ # services is servicecontrol.googleapis.com
827
841
  # Corresponds to the JSON property `environment`
828
842
  # @return [String]
829
843
  attr_accessor :environment
@@ -1507,8 +1521,14 @@ module Google
1507
1521
  attr_accessor :context
1508
1522
 
1509
1523
  # Selects and configures the service controller used by the service. The service
1510
- # controller handles features like abuse, quota, billing, logging, monitoring,
1511
- # etc.
1524
+ # controller handles two things: - **What is allowed:** for each API request,
1525
+ # Chemist checks the project status, activation status, abuse status, billing
1526
+ # status, service status, location restrictions, VPC Service Controls,
1527
+ # SuperQuota, and other policies. - **What has happened:** for each API response,
1528
+ # Chemist reports the telemetry data to analytics, auditing, billing, eventing,
1529
+ # logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
1530
+ # not associated with API traffic, such as billing metrics. Example: control:
1531
+ # environment: servicecontrol.googleapis.com
1512
1532
  # Corresponds to the JSON property `control`
1513
1533
  # @return [Google::Apis::ServiceusageV1beta1::Control]
1514
1534
  attr_accessor :control
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServiceusageV1beta1
18
18
  # Version of the google-apis-serviceusage_v1beta1 gem
19
- GEM_VERSION = "0.16.0"
19
+ GEM_VERSION = "0.17.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 = "20210806"
25
+ REVISION = "20211214"
26
26
  end
27
27
  end
28
28
  end
@@ -744,6 +744,7 @@ module Google
744
744
  property :name, as: 'name'
745
745
  collection :quota_buckets, as: 'quotaBuckets', class: Google::Apis::ServiceusageV1beta1::QuotaBucket, decorator: Google::Apis::ServiceusageV1beta1::QuotaBucket::Representation
746
746
 
747
+ collection :supported_locations, as: 'supportedLocations'
747
748
  property :unit, as: 'unit'
748
749
  end
749
750
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-serviceusage_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.17.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-27 00:00:00.000000000 Z
11
+ date: 2022-01-10 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-serviceusage_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.16.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.17.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -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.4
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Service Usage API V1beta1