google-apis-servicenetworking_v1beta 0.4.0 → 0.9.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 +4 -4
- data/CHANGELOG.md +22 -0
- data/lib/google/apis/servicenetworking_v1beta.rb +1 -1
- data/lib/google/apis/servicenetworking_v1beta/classes.rb +48 -39
- data/lib/google/apis/servicenetworking_v1beta/gem_version.rb +3 -3
- data/lib/google/apis/servicenetworking_v1beta/representations.rb +12 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c9ed11a0d023ef41dfdd085253a50f8c850e93db06b83b68393eec9e76775ff6
|
4
|
+
data.tar.gz: a74f7fdfd0091eee40ea8b8a85bbaf0ac9d81dd3f355d301ddcf10530bab388d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a8e04bbe8640b77503b5accc8265ae180ea08c1fc58bf202c724d879fda701d8d1ecda202eb0ff4d71dec5dca3be46c63c1967e6c4fb3ebb4b444d86acda7ca
|
7
|
+
data.tar.gz: c71e84078bcdb6f9d73e41d63231a7648f89e76da18a144aa75d110886e7f67513605b59cfc539f2e08b42ea48c328e72ed8fc0eba12150c68c933e75d819bb9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Release history for google-apis-servicenetworking_v1beta
|
2
2
|
|
3
|
+
### v0.9.0 (2021-05-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210525
|
6
|
+
|
7
|
+
### v0.8.0 (2021-05-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210519
|
10
|
+
* Unspecified changes
|
11
|
+
|
12
|
+
### v0.7.0 (2021-05-08)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20210505
|
15
|
+
|
16
|
+
### v0.6.0 (2021-03-30)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210326
|
19
|
+
|
20
|
+
### v0.5.0 (2021-03-23)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20210319
|
23
|
+
* Regenerated using generator version 0.2.0
|
24
|
+
|
3
25
|
### v0.4.0 (2021-03-04)
|
4
26
|
|
5
27
|
* Unspecified changes
|
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# This is NOT the gem version.
|
31
31
|
VERSION = 'V1beta'
|
32
32
|
|
33
|
-
#
|
33
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
34
34
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
35
35
|
|
36
36
|
# Manage your Google API service configuration
|
@@ -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
|
|
@@ -519,12 +521,6 @@ module Google
|
|
519
521
|
# @return [String]
|
520
522
|
attr_accessor :jwt_audience
|
521
523
|
|
522
|
-
# Minimum deadline in seconds needed for this method. Calls having deadline
|
523
|
-
# value lower than this will be rejected.
|
524
|
-
# Corresponds to the JSON property `minDeadline`
|
525
|
-
# @return [Float]
|
526
|
-
attr_accessor :min_deadline
|
527
|
-
|
528
524
|
# The number of seconds to wait for the completion of a long running operation.
|
529
525
|
# The default is no deadline.
|
530
526
|
# Corresponds to the JSON property `operationDeadline`
|
@@ -565,7 +561,6 @@ module Google
|
|
565
561
|
@deadline = args[:deadline] if args.key?(:deadline)
|
566
562
|
@disable_auth = args[:disable_auth] if args.key?(:disable_auth)
|
567
563
|
@jwt_audience = args[:jwt_audience] if args.key?(:jwt_audience)
|
568
|
-
@min_deadline = args[:min_deadline] if args.key?(:min_deadline)
|
569
564
|
@operation_deadline = args[:operation_deadline] if args.key?(:operation_deadline)
|
570
565
|
@path_translation = args[:path_translation] if args.key?(:path_translation)
|
571
566
|
@protocol = args[:protocol] if args.key?(:protocol)
|
@@ -1193,26 +1188,21 @@ module Google
|
|
1193
1188
|
end
|
1194
1189
|
end
|
1195
1190
|
|
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
|
-
#
|
1191
|
+
# `Endpoint` describes a network address of a service that serves a set of APIs.
|
1192
|
+
# It is commonly known as a service endpoint. A service may expose any number of
|
1193
|
+
# service endpoints, and all service endpoints share the same service definition,
|
1194
|
+
# such as quota limits and monitoring metrics. Example: type: google.api.
|
1195
|
+
# Service name: library-example.googleapis.com endpoints: # Declares network
|
1196
|
+
# address `https://library-example.googleapis.com` # for service `library-
|
1197
|
+
# example.googleapis.com`. The `https` scheme # is implicit for all service
|
1198
|
+
# endpoints. Other schemes may be # supported in the future. - name: library-
|
1199
|
+
# example.googleapis.com allow_cors: false - name: content-staging-library-
|
1200
|
+
# example.googleapis.com # Allows HTTP OPTIONS calls to be passed to the API
|
1201
|
+
# frontend, for it # to decide whether the subsequent cross-origin request is
|
1202
|
+
# allowed # to proceed. allow_cors: true
|
1206
1203
|
class Endpoint
|
1207
1204
|
include Google::Apis::Core::Hashable
|
1208
1205
|
|
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
1206
|
# Allowing [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing),
|
1217
1207
|
# aka cross-domain traffic, would allow the backends served from this endpoint
|
1218
1208
|
# to receive and respond to HTTP OPTIONS requests. The response will be used by
|
@@ -1242,7 +1232,6 @@ module Google
|
|
1242
1232
|
|
1243
1233
|
# Update properties of this object
|
1244
1234
|
def update!(**args)
|
1245
|
-
@aliases = args[:aliases] if args.key?(:aliases)
|
1246
1235
|
@allow_cors = args[:allow_cors] if args.key?(:allow_cors)
|
1247
1236
|
@name = args[:name] if args.key?(:name)
|
1248
1237
|
@target = args[:target] if args.key?(:target)
|
@@ -2602,6 +2591,20 @@ module Google
|
|
2602
2591
|
end
|
2603
2592
|
end
|
2604
2593
|
|
2594
|
+
# Metadata provided through GetOperation request for the LRO generated by
|
2595
|
+
# Partial Delete Connection API
|
2596
|
+
class PartialDeleteConnectionMetadata
|
2597
|
+
include Google::Apis::Core::Hashable
|
2598
|
+
|
2599
|
+
def initialize(**args)
|
2600
|
+
update!(**args)
|
2601
|
+
end
|
2602
|
+
|
2603
|
+
# Update properties of this object
|
2604
|
+
def update!(**args)
|
2605
|
+
end
|
2606
|
+
end
|
2607
|
+
|
2605
2608
|
# DNS domain suffix for which requests originating in the producer VPC network
|
2606
2609
|
# are resolved in the associated consumer VPC network.
|
2607
2610
|
class PeeredDnsDomain
|
@@ -3004,13 +3007,16 @@ module Google
|
|
3004
3007
|
end
|
3005
3008
|
end
|
3006
3009
|
|
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
|
-
#
|
3010
|
+
# `Service` is the root object of Google API service configuration (service
|
3011
|
+
# config). It describes the basic information about a logical service, such as
|
3012
|
+
# the service name and the user-facing title, and delegates other aspects to sub-
|
3013
|
+
# sections. Each sub-section is either a proto message or a repeated proto
|
3014
|
+
# message that configures a specific aspect, such as auth. For more information,
|
3015
|
+
# see each proto message definition. Example: type: google.api.Service name:
|
3016
|
+
# calendar.googleapis.com title: Google Calendar API apis: - name: google.
|
3017
|
+
# calendar.v3.Calendar visibility: rules: - selector: "google.calendar.v3.*"
|
3018
|
+
# restriction: PREVIEW backend: rules: - selector: "google.calendar.v3.*"
|
3019
|
+
# address: calendar.example.com authentication: providers: - id:
|
3014
3020
|
# google_calendar_auth jwks_uri: https://www.googleapis.com/oauth2/v1/certs
|
3015
3021
|
# issuer: https://securetoken.google.com rules: - selector: "*" requirements:
|
3016
3022
|
# provider_id: google_calendar_auth
|
@@ -3026,11 +3032,13 @@ module Google
|
|
3026
3032
|
# @return [Array<Google::Apis::ServicenetworkingV1beta::Api>]
|
3027
3033
|
attr_accessor :apis
|
3028
3034
|
|
3029
|
-
# `Authentication` defines the authentication configuration for
|
3030
|
-
#
|
3035
|
+
# `Authentication` defines the authentication configuration for API methods
|
3036
|
+
# provided by an API service. Example: name: calendar.googleapis.com
|
3031
3037
|
# authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
|
3032
3038
|
# googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: -
|
3033
|
-
# selector: "*" requirements: provider_id: google_calendar_auth
|
3039
|
+
# selector: "*" requirements: provider_id: google_calendar_auth - selector:
|
3040
|
+
# google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/
|
3041
|
+
# auth/calendar.read
|
3034
3042
|
# Corresponds to the JSON property `authentication`
|
3035
3043
|
# @return [Google::Apis::ServicenetworkingV1beta::Authentication]
|
3036
3044
|
attr_accessor :authentication
|
@@ -3059,7 +3067,8 @@ module Google
|
|
3059
3067
|
# @return [Google::Apis::ServicenetworkingV1beta::Billing]
|
3060
3068
|
attr_accessor :billing
|
3061
3069
|
|
3062
|
-
#
|
3070
|
+
# Obsolete. Do not use. This field has no semantic meaning. The service config
|
3071
|
+
# compiler always sets this field to `3`.
|
3063
3072
|
# Corresponds to the JSON property `configVersion`
|
3064
3073
|
# @return [Fixnum]
|
3065
3074
|
attr_accessor :config_version
|
@@ -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.9.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210525"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -364,6 +364,12 @@ module Google
|
|
364
364
|
include Google::Apis::Core::JsonObjectSupport
|
365
365
|
end
|
366
366
|
|
367
|
+
class PartialDeleteConnectionMetadata
|
368
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
|
+
|
370
|
+
include Google::Apis::Core::JsonObjectSupport
|
371
|
+
end
|
372
|
+
|
367
373
|
class PeeredDnsDomain
|
368
374
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
375
|
|
@@ -639,7 +645,6 @@ module Google
|
|
639
645
|
property :deadline, as: 'deadline'
|
640
646
|
property :disable_auth, as: 'disableAuth'
|
641
647
|
property :jwt_audience, as: 'jwtAudience'
|
642
|
-
property :min_deadline, as: 'minDeadline'
|
643
648
|
property :operation_deadline, as: 'operationDeadline'
|
644
649
|
property :path_translation, as: 'pathTranslation'
|
645
650
|
property :protocol, as: 'protocol'
|
@@ -804,7 +809,6 @@ module Google
|
|
804
809
|
class Endpoint
|
805
810
|
# @private
|
806
811
|
class Representation < Google::Apis::Core::JsonRepresentation
|
807
|
-
collection :aliases, as: 'aliases'
|
808
812
|
property :allow_cors, as: 'allowCors'
|
809
813
|
property :name, as: 'name'
|
810
814
|
property :target, as: 'target'
|
@@ -1089,6 +1093,12 @@ module Google
|
|
1089
1093
|
end
|
1090
1094
|
end
|
1091
1095
|
|
1096
|
+
class PartialDeleteConnectionMetadata
|
1097
|
+
# @private
|
1098
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1099
|
+
end
|
1100
|
+
end
|
1101
|
+
|
1092
1102
|
class PeeredDnsDomain
|
1093
1103
|
# @private
|
1094
1104
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.9.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-31 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.9.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
|