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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a6f10986f53c9bf823df50fe5f2fed7c863cb5db8e1ba6a8fe90ca64ec2d6617
|
4
|
+
data.tar.gz: e63605577738a816dc9f11767728e7456b638b85dd01fd60574fa977d4790ae7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b17fe8600a370cd98007d6aec49c78435827127315a4ed599a6aa531fd56d21fb3ea997e5c3b5b5b93b61afc7a25b794d10ee6d13213a652526951ad41fa5df3
|
7
|
+
data.tar.gz: 90314f96d788bbeca5b3ba619072bb005974895e7b081285bda9a653d2c3737a750bbba8a9b801a247d4e71a920126e4d2d0f5ece3a5400dcf164a0c6b3f113a
|
data/CHANGELOG.md
CHANGED
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.
|
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
|
1055
|
-
#
|
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
|
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
|
3570
|
-
#
|
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.
|
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 = "
|
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.
|
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:
|
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.
|
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.
|
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
|