google-apis-servicenetworking_v1beta 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1bcffea9d296d1b2e81e83d7df312fd27ace72f59b3e7307ee2adf53e35a9524
|
4
|
+
data.tar.gz: f9d7ab3edbcf29fca0cd97f0410d6736957fd43d2a57715496057c323e18f147
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f29ff04eaf76a0c33d75ba320e3d49508a6d239254e6d25b47a8f0cfe6510182ee672ed387f45d47a2d24236a4e06890d0f94ee9b961802253b3923025b54d0
|
7
|
+
data.tar.gz: 135fc6d739e91b350cf6ee10f1ee69d0603a88bdc6617f0554f0184d8364513cd321a53591832fac36bda489141690d234049c3c0df10e6e580f348b71e8ca3c
|
data/CHANGELOG.md
CHANGED
@@ -376,11 +376,13 @@ module Google
|
|
376
376
|
end
|
377
377
|
end
|
378
378
|
|
379
|
-
# `Authentication` defines the authentication configuration for
|
380
|
-
#
|
379
|
+
# `Authentication` defines the authentication configuration for API methods
|
380
|
+
# provided by an API service. Example: name: calendar.googleapis.com
|
381
381
|
# authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
|
382
382
|
# googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: -
|
383
|
-
# selector: "*" requirements: provider_id: google_calendar_auth
|
383
|
+
# selector: "*" requirements: provider_id: google_calendar_auth - selector:
|
384
|
+
# google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/
|
385
|
+
# auth/calendar.read
|
384
386
|
class Authentication
|
385
387
|
include Google::Apis::Core::Hashable
|
386
388
|
|
@@ -1193,26 +1195,21 @@ module Google
|
|
1193
1195
|
end
|
1194
1196
|
end
|
1195
1197
|
|
1196
|
-
# `Endpoint` describes a network
|
1197
|
-
# It is commonly known as a service endpoint. A service may expose any number
|
1198
|
-
#
|
1199
|
-
#
|
1200
|
-
#
|
1201
|
-
#
|
1202
|
-
#
|
1203
|
-
#
|
1204
|
-
#
|
1205
|
-
#
|
1198
|
+
# `Endpoint` describes a network address of a service that serves a set of APIs.
|
1199
|
+
# It is commonly known as a service endpoint. A service may expose any number of
|
1200
|
+
# service endpoints, and all service endpoints share the same service definition,
|
1201
|
+
# such as quota limits and monitoring metrics. Example: type: google.api.
|
1202
|
+
# Service name: library-example.googleapis.com endpoints: # Declares network
|
1203
|
+
# address `https://library-example.googleapis.com` # for service `library-
|
1204
|
+
# example.googleapis.com`. The `https` scheme # is implicit for all service
|
1205
|
+
# endpoints. Other schemes may be # supported in the future. - name: library-
|
1206
|
+
# example.googleapis.com allow_cors: false - name: content-staging-library-
|
1207
|
+
# example.googleapis.com # Allows HTTP OPTIONS calls to be passed to the API
|
1208
|
+
# frontend, for it # to decide whether the subsequent cross-origin request is
|
1209
|
+
# allowed # to proceed. allow_cors: true
|
1206
1210
|
class Endpoint
|
1207
1211
|
include Google::Apis::Core::Hashable
|
1208
1212
|
|
1209
|
-
# DEPRECATED: This field is no longer supported. Instead of using aliases,
|
1210
|
-
# please specify multiple google.api.Endpoint for each of the intended aliases.
|
1211
|
-
# Additional names that this endpoint will be hosted on.
|
1212
|
-
# Corresponds to the JSON property `aliases`
|
1213
|
-
# @return [Array<String>]
|
1214
|
-
attr_accessor :aliases
|
1215
|
-
|
1216
1213
|
# Allowing [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing),
|
1217
1214
|
# aka cross-domain traffic, would allow the backends served from this endpoint
|
1218
1215
|
# to receive and respond to HTTP OPTIONS requests. The response will be used by
|
@@ -1242,7 +1239,6 @@ module Google
|
|
1242
1239
|
|
1243
1240
|
# Update properties of this object
|
1244
1241
|
def update!(**args)
|
1245
|
-
@aliases = args[:aliases] if args.key?(:aliases)
|
1246
1242
|
@allow_cors = args[:allow_cors] if args.key?(:allow_cors)
|
1247
1243
|
@name = args[:name] if args.key?(:name)
|
1248
1244
|
@target = args[:target] if args.key?(:target)
|
@@ -3004,13 +3000,16 @@ module Google
|
|
3004
3000
|
end
|
3005
3001
|
end
|
3006
3002
|
|
3007
|
-
# `Service` is the root object of Google service configuration
|
3008
|
-
# describes basic information about a service, such as
|
3009
|
-
# and delegates other aspects to sub-
|
3010
|
-
#
|
3011
|
-
#
|
3012
|
-
# google.api.Service name:
|
3013
|
-
#
|
3003
|
+
# `Service` is the root object of Google API service configuration (service
|
3004
|
+
# config). It describes the basic information about a logical service, such as
|
3005
|
+
# the service name and the user-facing title, and delegates other aspects to sub-
|
3006
|
+
# sections. Each sub-section is either a proto message or a repeated proto
|
3007
|
+
# message that configures a specific aspect, such as auth. For more information,
|
3008
|
+
# see each proto message definition. Example: type: google.api.Service name:
|
3009
|
+
# calendar.googleapis.com title: Google Calendar API apis: - name: google.
|
3010
|
+
# calendar.v3.Calendar visibility: rules: - selector: "google.calendar.v3.*"
|
3011
|
+
# restriction: PREVIEW backend: rules: - selector: "google.calendar.v3.*"
|
3012
|
+
# address: calendar.example.com authentication: providers: - id:
|
3014
3013
|
# google_calendar_auth jwks_uri: https://www.googleapis.com/oauth2/v1/certs
|
3015
3014
|
# issuer: https://securetoken.google.com rules: - selector: "*" requirements:
|
3016
3015
|
# provider_id: google_calendar_auth
|
@@ -3026,11 +3025,13 @@ module Google
|
|
3026
3025
|
# @return [Array<Google::Apis::ServicenetworkingV1beta::Api>]
|
3027
3026
|
attr_accessor :apis
|
3028
3027
|
|
3029
|
-
# `Authentication` defines the authentication configuration for
|
3030
|
-
#
|
3028
|
+
# `Authentication` defines the authentication configuration for API methods
|
3029
|
+
# provided by an API service. Example: name: calendar.googleapis.com
|
3031
3030
|
# authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
|
3032
3031
|
# googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: -
|
3033
|
-
# selector: "*" requirements: provider_id: google_calendar_auth
|
3032
|
+
# selector: "*" requirements: provider_id: google_calendar_auth - selector:
|
3033
|
+
# google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/
|
3034
|
+
# auth/calendar.read
|
3034
3035
|
# Corresponds to the JSON property `authentication`
|
3035
3036
|
# @return [Google::Apis::ServicenetworkingV1beta::Authentication]
|
3036
3037
|
attr_accessor :authentication
|
@@ -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.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210505"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -804,7 +804,6 @@ module Google
|
|
804
804
|
class Endpoint
|
805
805
|
# @private
|
806
806
|
class Representation < Google::Apis::Core::JsonRepresentation
|
807
|
-
collection :aliases, as: 'aliases'
|
808
807
|
property :allow_cors, as: 'allowCors'
|
809
808
|
property :name, as: 'name'
|
810
809
|
property :target, as: 'target'
|
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.7.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-
|
11
|
+
date: 2021-05-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-servicenetworking_v1beta/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.7.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-servicenetworking_v1beta
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
72
|
+
rubygems_version: 3.2.17
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Service Networking API V1beta
|