google-apis-servicenetworking_v1beta 0.15.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: 437f22ced8bde1c56ab76c1aeb769f088a42d8f5a8f2420a78208bb385986448
|
4
|
+
data.tar.gz: e3e3c02bc83bd94f00b3a852d1acc498d4e6ecd381ae5269b1e1cb53de949c7b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 740d1eecfcfd9dd682ee43810fed789b5684e310477641bd2ab1fd378e699c00b70ec2855fe586621cc2ff0260e259adf83bf46fd7b8fc94a2492d5859393690
|
7
|
+
data.tar.gz: 553a87250f98779726e718d19fb7964de5dc770357f5481f11e0cdeb8d4f46a0756f3a3ffb1a0f164e219b46491166e4d4c207a47f8c284438ffd2aa736086b5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-servicenetworking_v1beta
|
2
2
|
|
3
|
+
### v0.18.0 (2022-04-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220425
|
6
|
+
|
7
|
+
### v0.17.0 (2022-04-12)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220406
|
10
|
+
* Regenerated using generator version 0.4.1
|
11
|
+
|
12
|
+
### v0.16.0 (2021-12-16)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20211210
|
15
|
+
|
3
16
|
### v0.15.0 (2021-10-20)
|
4
17
|
|
5
18
|
* Unspecified changes
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/servicenetworking_v1beta"
|
|
51
51
|
client = Google::Apis::ServicenetworkingV1beta::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.
|
@@ -314,14 +314,15 @@ module Google
|
|
314
314
|
# @return [String]
|
315
315
|
attr_accessor :jwks_uri
|
316
316
|
|
317
|
-
# Defines the locations to extract the JWT.
|
318
|
-
#
|
319
|
-
#
|
320
|
-
#
|
321
|
-
#
|
322
|
-
#
|
323
|
-
#
|
324
|
-
#
|
317
|
+
# Defines the locations to extract the JWT. For now it is only used by the Cloud
|
318
|
+
# Endpoints to store the OpenAPI extension [x-google-jwt-locations] (https://
|
319
|
+
# cloud.google.com/endpoints/docs/openapi/openapi-extensions#x-google-jwt-
|
320
|
+
# locations) JWT locations can be one of HTTP headers, URL query parameters or
|
321
|
+
# cookies. The rule is that the first match wins. If not specified, default to
|
322
|
+
# use following 3 locations: 1) Authorization: Bearer 2) x-goog-iap-jwt-
|
323
|
+
# assertion 3) access_token query parameter Default locations can be specified
|
324
|
+
# as followings: jwt_locations: - header: Authorization value_prefix: "Bearer " -
|
325
|
+
# header: x-goog-iap-jwt-assertion - query: access_token
|
325
326
|
# Corresponds to the JSON property `jwtLocations`
|
326
327
|
# @return [Array<Google::Apis::ServicenetworkingV1beta::JwtLocation>]
|
327
328
|
attr_accessor :jwt_locations
|
@@ -752,6 +753,11 @@ module Google
|
|
752
753
|
# @return [Array<Google::Apis::ServicenetworkingV1beta::GoogleCloudServicenetworkingV1ConsumerConfigReservedRange>]
|
753
754
|
attr_accessor :reserved_ranges
|
754
755
|
|
756
|
+
# Output only. The IP ranges already in use by consumer or producer
|
757
|
+
# Corresponds to the JSON property `usedIpRanges`
|
758
|
+
# @return [Array<String>]
|
759
|
+
attr_accessor :used_ip_ranges
|
760
|
+
|
755
761
|
# Output only. Indicates whether the VPC Service Controls reference architecture
|
756
762
|
# is configured for the producer VPC host network.
|
757
763
|
# Corresponds to the JSON property `vpcScReferenceArchitectureEnabled`
|
@@ -775,6 +781,7 @@ module Google
|
|
775
781
|
@producer_import_subnet_routes_with_public_ip = args[:producer_import_subnet_routes_with_public_ip] if args.key?(:producer_import_subnet_routes_with_public_ip)
|
776
782
|
@producer_network = args[:producer_network] if args.key?(:producer_network)
|
777
783
|
@reserved_ranges = args[:reserved_ranges] if args.key?(:reserved_ranges)
|
784
|
+
@used_ip_ranges = args[:used_ip_ranges] if args.key?(:used_ip_ranges)
|
778
785
|
@vpc_sc_reference_architecture_enabled = args[:vpc_sc_reference_architecture_enabled] if args.key?(:vpc_sc_reference_architecture_enabled)
|
779
786
|
end
|
780
787
|
end
|
@@ -873,13 +880,20 @@ module Google
|
|
873
880
|
end
|
874
881
|
|
875
882
|
# Selects and configures the service controller used by the service. The service
|
876
|
-
# controller handles
|
877
|
-
#
|
883
|
+
# controller handles two things: - **What is allowed:** for each API request,
|
884
|
+
# Chemist checks the project status, activation status, abuse status, billing
|
885
|
+
# status, service status, location restrictions, VPC Service Controls,
|
886
|
+
# SuperQuota, and other policies. - **What has happened:** for each API response,
|
887
|
+
# Chemist reports the telemetry data to analytics, auditing, billing, eventing,
|
888
|
+
# logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
|
889
|
+
# not associated with API traffic, such as billing metrics. Example: control:
|
890
|
+
# environment: servicecontrol.googleapis.com
|
878
891
|
class Control
|
879
892
|
include Google::Apis::Core::Hashable
|
880
893
|
|
881
|
-
# The service
|
882
|
-
# like quota and billing) will be enabled.
|
894
|
+
# The service controller environment to use. If empty, no control plane feature (
|
895
|
+
# like quota and billing) will be enabled. The recommended value for most
|
896
|
+
# services is servicecontrol.googleapis.com
|
883
897
|
# Corresponds to the JSON property `environment`
|
884
898
|
# @return [String]
|
885
899
|
attr_accessor :environment
|
@@ -1762,6 +1776,11 @@ module Google
|
|
1762
1776
|
class JwtLocation
|
1763
1777
|
include Google::Apis::Core::Hashable
|
1764
1778
|
|
1779
|
+
# Specifies cookie name to extract JWT token.
|
1780
|
+
# Corresponds to the JSON property `cookie`
|
1781
|
+
# @return [String]
|
1782
|
+
attr_accessor :cookie
|
1783
|
+
|
1765
1784
|
# Specifies HTTP header name to extract JWT token.
|
1766
1785
|
# Corresponds to the JSON property `header`
|
1767
1786
|
# @return [String]
|
@@ -1788,6 +1807,7 @@ module Google
|
|
1788
1807
|
|
1789
1808
|
# Update properties of this object
|
1790
1809
|
def update!(**args)
|
1810
|
+
@cookie = args[:cookie] if args.key?(:cookie)
|
1791
1811
|
@header = args[:header] if args.key?(:header)
|
1792
1812
|
@query = args[:query] if args.key?(:query)
|
1793
1813
|
@value_prefix = args[:value_prefix] if args.key?(:value_prefix)
|
@@ -3101,8 +3121,14 @@ module Google
|
|
3101
3121
|
attr_accessor :context
|
3102
3122
|
|
3103
3123
|
# Selects and configures the service controller used by the service. The service
|
3104
|
-
# controller handles
|
3105
|
-
#
|
3124
|
+
# controller handles two things: - **What is allowed:** for each API request,
|
3125
|
+
# Chemist checks the project status, activation status, abuse status, billing
|
3126
|
+
# status, service status, location restrictions, VPC Service Controls,
|
3127
|
+
# SuperQuota, and other policies. - **What has happened:** for each API response,
|
3128
|
+
# Chemist reports the telemetry data to analytics, auditing, billing, eventing,
|
3129
|
+
# logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
|
3130
|
+
# not associated with API traffic, such as billing metrics. Example: control:
|
3131
|
+
# environment: servicecontrol.googleapis.com
|
3106
3132
|
# Corresponds to the JSON property `control`
|
3107
3133
|
# @return [Google::Apis::ServicenetworkingV1beta::Control]
|
3108
3134
|
attr_accessor :control
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServicenetworkingV1beta
|
18
18
|
# Version of the google-apis-servicenetworking_v1beta 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
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220425"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -692,6 +692,7 @@ module Google
|
|
692
692
|
property :producer_network, as: 'producerNetwork'
|
693
693
|
collection :reserved_ranges, as: 'reservedRanges', class: Google::Apis::ServicenetworkingV1beta::GoogleCloudServicenetworkingV1ConsumerConfigReservedRange, decorator: Google::Apis::ServicenetworkingV1beta::GoogleCloudServicenetworkingV1ConsumerConfigReservedRange::Representation
|
694
694
|
|
695
|
+
collection :used_ip_ranges, as: 'usedIpRanges'
|
695
696
|
property :vpc_sc_reference_architecture_enabled, as: 'vpcScReferenceArchitectureEnabled'
|
696
697
|
end
|
697
698
|
end
|
@@ -915,6 +916,7 @@ module Google
|
|
915
916
|
class JwtLocation
|
916
917
|
# @private
|
917
918
|
class Representation < Google::Apis::Core::JsonRepresentation
|
919
|
+
property :cookie, as: 'cookie'
|
918
920
|
property :header, as: 'header'
|
919
921
|
property :query, as: 'query'
|
920
922
|
property :value_prefix, as: 'valuePrefix'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-servicenetworking_v1beta
|
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-05-02 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_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.18.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1beta
|
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.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Service Networking API V1beta
|