google-apis-servicenetworking_v1 0.17.0 → 0.18.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: 4e3f7be32644c2ef9c6a370259533ad8984b153c9b1f690e4023b3a6e6f1ff91
4
- data.tar.gz: a2b0cc5168b13d906c3c72f01e2440dca9b7398aaa979c2395927cb07e31d5cf
3
+ metadata.gz: a6f10986f53c9bf823df50fe5f2fed7c863cb5db8e1ba6a8fe90ca64ec2d6617
4
+ data.tar.gz: e63605577738a816dc9f11767728e7456b638b85dd01fd60574fa977d4790ae7
5
5
  SHA512:
6
- metadata.gz: 0f61f47154521917d3bbf6d1e9acbe61311d8bd6a131ab09fef00fe416cb9c47082f837ea38c0147f6ab20163708ec07483249f62978b8efa3b6ab27a1a07a4a
7
- data.tar.gz: 0454b09cf2d9359a882f813cd6445822ddc3d23b5fcbf895d66c5c72a95d59f50516e7e47af74e420c2290447e6ce92d480758adadfa3878e9670bd95a1515b8
6
+ metadata.gz: b17fe8600a370cd98007d6aec49c78435827127315a4ed599a6aa531fd56d21fb3ea997e5c3b5b5b93b61afc7a25b794d10ee6d13213a652526951ad41fa5df3
7
+ data.tar.gz: 90314f96d788bbeca5b3ba619072bb005974895e7b081285bda9a653d2c3737a750bbba8a9b801a247d4e71a920126e4d2d0f5ece3a5400dcf164a0c6b3f113a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-servicenetworking_v1
2
2
 
3
+ ### v0.18.0 (2022-01-07)
4
+
5
+ * Regenerated from discovery document revision 20211222
6
+
3
7
  ### v0.17.0 (2021-10-20)
4
8
 
5
9
  * Unspecified changes
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/servicenetworking_v1"
51
51
  client = Google::Apis::ServicenetworkingV1::ServiceNetworkingService.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.
@@ -1051,13 +1051,20 @@ module Google
1051
1051
  end
1052
1052
 
1053
1053
  # Selects and configures the service controller used by the service. The service
1054
- # controller handles features like abuse, quota, billing, logging, monitoring,
1055
- # etc.
1054
+ # controller handles two things: - **What is allowed:** for each API request,
1055
+ # Chemist checks the project status, activation status, abuse status, billing
1056
+ # status, service status, location restrictions, VPC Service Controls,
1057
+ # SuperQuota, and other policies. - **What has happened:** for each API response,
1058
+ # Chemist reports the telemetry data to analytics, auditing, billing, eventing,
1059
+ # logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
1060
+ # not associated with API traffic, such as billing metrics. Example: control:
1061
+ # environment: servicecontrol.googleapis.com
1056
1062
  class Control
1057
1063
  include Google::Apis::Core::Hashable
1058
1064
 
1059
- # The service control environment to use. If empty, no control plane feature (
1060
- # like quota and billing) will be enabled.
1065
+ # The service controller environment to use. If empty, no control plane feature (
1066
+ # like quota and billing) will be enabled. The recommended value for most
1067
+ # services is servicecontrol.googleapis.com
1061
1068
  # Corresponds to the JSON property `environment`
1062
1069
  # @return [String]
1063
1070
  attr_accessor :environment
@@ -3566,8 +3573,14 @@ module Google
3566
3573
  attr_accessor :context
3567
3574
 
3568
3575
  # Selects and configures the service controller used by the service. The service
3569
- # controller handles features like abuse, quota, billing, logging, monitoring,
3570
- # etc.
3576
+ # controller handles two things: - **What is allowed:** for each API request,
3577
+ # Chemist checks the project status, activation status, abuse status, billing
3578
+ # status, service status, location restrictions, VPC Service Controls,
3579
+ # SuperQuota, and other policies. - **What has happened:** for each API response,
3580
+ # Chemist reports the telemetry data to analytics, auditing, billing, eventing,
3581
+ # logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
3582
+ # not associated with API traffic, such as billing metrics. Example: control:
3583
+ # environment: servicecontrol.googleapis.com
3571
3584
  # Corresponds to the JSON property `control`
3572
3585
  # @return [Google::Apis::ServicenetworkingV1::Control]
3573
3586
  attr_accessor :control
@@ -4256,6 +4269,13 @@ module Google
4256
4269
  class ValidateConsumerConfigRequest
4257
4270
  include Google::Apis::Core::Hashable
4258
4271
 
4272
+ # Optional. The IAM permission check determines whether the consumer project has
4273
+ # 'servicenetworking.services.use' permission or not.
4274
+ # Corresponds to the JSON property `checkServiceNetworkingUsePermission`
4275
+ # @return [Boolean]
4276
+ attr_accessor :check_service_networking_use_permission
4277
+ alias_method :check_service_networking_use_permission?, :check_service_networking_use_permission
4278
+
4259
4279
  # Required. The network that the consumer is using to connect with services.
4260
4280
  # Must be in the form of projects/`project`/global/networks/`network` `project`
4261
4281
  # is a project number, as in '12345' `network` is network name.
@@ -4290,6 +4310,7 @@ module Google
4290
4310
 
4291
4311
  # Update properties of this object
4292
4312
  def update!(**args)
4313
+ @check_service_networking_use_permission = args[:check_service_networking_use_permission] if args.key?(:check_service_networking_use_permission)
4293
4314
  @consumer_network = args[:consumer_network] if args.key?(:consumer_network)
4294
4315
  @consumer_project = args[:consumer_project] if args.key?(:consumer_project)
4295
4316
  @range_reservation = args[:range_reservation] if args.key?(:range_reservation)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicenetworkingV1
18
18
  # Version of the google-apis-servicenetworking_v1 gem
19
- GEM_VERSION = "0.17.0"
19
+ GEM_VERSION = "0.18.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 = "20211008"
25
+ REVISION = "20211222"
26
26
  end
27
27
  end
28
28
  end
@@ -1629,6 +1629,7 @@ module Google
1629
1629
  class ValidateConsumerConfigRequest
1630
1630
  # @private
1631
1631
  class Representation < Google::Apis::Core::JsonRepresentation
1632
+ property :check_service_networking_use_permission, as: 'checkServiceNetworkingUsePermission'
1632
1633
  property :consumer_network, as: 'consumerNetwork'
1633
1634
  property :consumer_project, as: 'consumerProject', class: Google::Apis::ServicenetworkingV1::ConsumerProject, decorator: Google::Apis::ServicenetworkingV1::ConsumerProject::Representation
1634
1635
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicenetworking_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.18.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-servicenetworking_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.17.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.18.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1
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 Networking API V1