google-apis-serviceconsumermanagement_v1 0.14.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: bc176dfff2aaa1e555546be6575fd49abe70b52cd41c3343e49f7e9fc0440a9c
4
- data.tar.gz: c0337058ba6e52f5f8e7429dd0c6f7fba34b2dab69c22620bf1cedf77223af0a
3
+ metadata.gz: ec9867d2ca2839be7844711c113d5a10b562f20c23bd8be50d0f1af1d495a57a
4
+ data.tar.gz: e4af3e6b52c2b1649a983aab52809fff1c689677021eb77f29cdab8e9b7aaa40
5
5
  SHA512:
6
- metadata.gz: e1ae0b12dd881d7ceb50414667ff70d9a83df2fade7f36223daf5c282e4401722f319843cf2bedaddeac443bb5af0d767e8d9a78c139b6c2cf9c4916ee308fde
7
- data.tar.gz: fc784b8d7ab67827989e4c1da86cd058320cfcdd9d2ea3d633debc225ac5491b1c99b705c92a9d95af7cfa434a09f220a67d2000519587f5d49292f11e4f6374
6
+ metadata.gz: 7e369b1e3417ea8b8a1476364327b96e7f08ab1c14d7fac69ec2bef26074b063da60bc3ff6310b4e5f65246fbce3d19d094ddbc86cee32a1e42f4c50e4daa154
7
+ data.tar.gz: 1600746a64d53879a959648c31313496e6879ba6d32c040462f703bf5ab374ea80dcd5749ffb5667448fa248e054dc1fd863c8fb14adcbcc03e19e753d2effaa
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Release history for google-apis-serviceconsumermanagement_v1
2
2
 
3
+ ### v0.17.0 (2022-03-22)
4
+
5
+ * Regenerated from discovery document revision 20220319
6
+ * Regenerated using generator version 0.4.1
7
+
8
+ ### v0.16.0 (2021-12-17)
9
+
10
+ * Regenerated from discovery document revision 20211214
11
+ * Unspecified changes
12
+
13
+ ### v0.15.0 (2021-10-20)
14
+
15
+ * Unspecified changes
16
+
3
17
  ### v0.14.0 (2021-09-01)
4
18
 
5
19
  * Regenerated from discovery document revision 20210806
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/serviceconsumermanagement_v1"
51
51
  client = Google::Apis::ServiceconsumermanagementV1::ServiceConsumerManagementService.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 Serviceconsumermanagement service in particular.)
67
67
 
@@ -669,13 +669,20 @@ module Google
669
669
  end
670
670
 
671
671
  # Selects and configures the service controller used by the service. The service
672
- # controller handles features like abuse, quota, billing, logging, monitoring,
673
- # etc.
672
+ # controller handles two things: - **What is allowed:** for each API request,
673
+ # Chemist checks the project status, activation status, abuse status, billing
674
+ # status, service status, location restrictions, VPC Service Controls,
675
+ # SuperQuota, and other policies. - **What has happened:** for each API response,
676
+ # Chemist reports the telemetry data to analytics, auditing, billing, eventing,
677
+ # logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
678
+ # not associated with API traffic, such as billing metrics. Example: control:
679
+ # environment: servicecontrol.googleapis.com
674
680
  class Control
675
681
  include Google::Apis::Core::Hashable
676
682
 
677
- # The service control environment to use. If empty, no control plane feature (
678
- # like quota and billing) will be enabled.
683
+ # The service controller environment to use. If empty, no control plane feature (
684
+ # like quota and billing) will be enabled. The recommended value for most
685
+ # services is servicecontrol.googleapis.com
679
686
  # Corresponds to the JSON property `environment`
680
687
  # @return [String]
681
688
  attr_accessor :environment
@@ -942,8 +949,7 @@ module Google
942
949
  # A generic empty message that you can re-use to avoid defining duplicated empty
943
950
  # messages in your APIs. A typical example is to use it as the request or the
944
951
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
945
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
946
- # `Empty` is empty JSON object ````.
952
+ # protobuf.Empty) returns (google.protobuf.Empty); `
947
953
  class Empty
948
954
  include Google::Apis::Core::Hashable
949
955
 
@@ -2578,8 +2584,14 @@ module Google
2578
2584
  attr_accessor :context
2579
2585
 
2580
2586
  # Selects and configures the service controller used by the service. The service
2581
- # controller handles features like abuse, quota, billing, logging, monitoring,
2582
- # etc.
2587
+ # controller handles two things: - **What is allowed:** for each API request,
2588
+ # Chemist checks the project status, activation status, abuse status, billing
2589
+ # status, service status, location restrictions, VPC Service Controls,
2590
+ # SuperQuota, and other policies. - **What has happened:** for each API response,
2591
+ # Chemist reports the telemetry data to analytics, auditing, billing, eventing,
2592
+ # logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
2593
+ # not associated with API traffic, such as billing metrics. Example: control:
2594
+ # environment: servicecontrol.googleapis.com
2583
2595
  # Corresponds to the JSON property `control`
2584
2596
  # @return [Google::Apis::ServiceconsumermanagementV1::Control]
2585
2597
  attr_accessor :control
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServiceconsumermanagementV1
18
18
  # Version of the google-apis-serviceconsumermanagement_v1 gem
19
- GEM_VERSION = "0.14.0"
19
+ GEM_VERSION = "0.17.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 = "20210806"
25
+ REVISION = "20220319"
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-serviceconsumermanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.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-09-06 00:00:00.000000000 Z
11
+ date: 2022-03-28 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-serviceconsumermanagement_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.14.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-serviceconsumermanagement_v1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.17.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_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 Service Consumer Management API V1