google-apis-servicenetworking_v1 0.7.0 → 0.12.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: 41d1b7fa46e02a8a9c8c0007d06b56de6f1b664c0de8cdf690f49849f408f963
|
4
|
+
data.tar.gz: 9d5d29ecaeafa906a7c8015854483174469ed39bff9d9596050c761f8878560b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 468ef7cac09ae47d7696dd1967e1f67461516b9d5b1c8c574ee3d371b936cc50451dedccff4521cc7052d6e2d1c738273ccab52670ca96a1518371cbc607179f
|
7
|
+
data.tar.gz: 3cbfa0099e0b75711d582246d7ad4f61abcb04e76953969123291ef78eabd79e249de559b316abf2b5a5cdc71e9cd92f8461a83f42c4ab1a46eacadbe6467c46
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-servicenetworking_v1
|
2
2
|
|
3
|
+
### v0.12.0 (2021-07-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210706
|
6
|
+
|
7
|
+
### v0.11.0 (2021-06-29)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.4.0
|
10
|
+
|
11
|
+
### v0.10.0 (2021-06-24)
|
12
|
+
|
13
|
+
* Regenerated using generator version 0.3.0
|
14
|
+
|
15
|
+
### v0.9.0 (2021-05-27)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210525
|
18
|
+
|
19
|
+
### v0.8.0 (2021-05-22)
|
20
|
+
|
21
|
+
* Regenerated from discovery document revision 20210519
|
22
|
+
* Unspecified changes
|
23
|
+
|
3
24
|
### v0.7.0 (2021-05-08)
|
4
25
|
|
5
26
|
* Regenerated from discovery document revision 20210505
|
@@ -639,12 +639,6 @@ module Google
|
|
639
639
|
# @return [String]
|
640
640
|
attr_accessor :jwt_audience
|
641
641
|
|
642
|
-
# Minimum deadline in seconds needed for this method. Calls having deadline
|
643
|
-
# value lower than this will be rejected.
|
644
|
-
# Corresponds to the JSON property `minDeadline`
|
645
|
-
# @return [Float]
|
646
|
-
attr_accessor :min_deadline
|
647
|
-
|
648
642
|
# The number of seconds to wait for the completion of a long running operation.
|
649
643
|
# The default is no deadline.
|
650
644
|
# Corresponds to the JSON property `operationDeadline`
|
@@ -685,7 +679,6 @@ module Google
|
|
685
679
|
@deadline = args[:deadline] if args.key?(:deadline)
|
686
680
|
@disable_auth = args[:disable_auth] if args.key?(:disable_auth)
|
687
681
|
@jwt_audience = args[:jwt_audience] if args.key?(:jwt_audience)
|
688
|
-
@min_deadline = args[:min_deadline] if args.key?(:min_deadline)
|
689
682
|
@operation_deadline = args[:operation_deadline] if args.key?(:operation_deadline)
|
690
683
|
@path_translation = args[:path_translation] if args.key?(:path_translation)
|
691
684
|
@protocol = args[:protocol] if args.key?(:protocol)
|
@@ -1333,7 +1326,9 @@ module Google
|
|
1333
1326
|
# @return [String]
|
1334
1327
|
attr_accessor :service_root_url
|
1335
1328
|
|
1336
|
-
# A short
|
1329
|
+
# A short description of what the service does. The summary must be plain text.
|
1330
|
+
# It becomes the overview of the service displayed in Google Cloud Console. NOTE:
|
1331
|
+
# This field is equivalent to the standard field `description`.
|
1337
1332
|
# Corresponds to the JSON property `summary`
|
1338
1333
|
# @return [String]
|
1339
1334
|
attr_accessor :summary
|
@@ -1363,17 +1358,19 @@ module Google
|
|
1363
1358
|
# @return [String]
|
1364
1359
|
attr_accessor :deprecation_description
|
1365
1360
|
|
1366
|
-
#
|
1361
|
+
# The description is the comment in front of the selected proto element, such as
|
1362
|
+
# a message, a method, a 'service' definition, or a field.
|
1367
1363
|
# Corresponds to the JSON property `description`
|
1368
1364
|
# @return [String]
|
1369
1365
|
attr_accessor :description
|
1370
1366
|
|
1371
|
-
# The selector is a comma-separated list of patterns
|
1372
|
-
#
|
1373
|
-
#
|
1374
|
-
# qualified name, i.e. "foo.*
|
1375
|
-
#
|
1376
|
-
# applicable elements, the whole
|
1367
|
+
# The selector is a comma-separated list of patterns for any element such as a
|
1368
|
+
# method, a field, an enum value. Each pattern is a qualified name of the
|
1369
|
+
# element which may end in "*", indicating a wildcard. Wildcards are only
|
1370
|
+
# allowed at the end and for a whole component of the qualified name, i.e. "foo.*
|
1371
|
+
# " is ok, but not "foo.b*" or "foo.*.bar". A wildcard will match one or more
|
1372
|
+
# components. To specify a default for all applicable elements, the whole
|
1373
|
+
# pattern "*" is used.
|
1377
1374
|
# Corresponds to the JSON property `selector`
|
1378
1375
|
# @return [String]
|
1379
1376
|
attr_accessor :selector
|
@@ -2841,7 +2838,8 @@ module Google
|
|
2841
2838
|
include Google::Apis::Core::Hashable
|
2842
2839
|
|
2843
2840
|
# The Markdown content of the page. You can use (== include `path` ==) to
|
2844
|
-
# include content from a Markdown file.
|
2841
|
+
# include content from a Markdown file. The content can be used to produce the
|
2842
|
+
# documentation page such as HTML format page.
|
2845
2843
|
# Corresponds to the JSON property `content`
|
2846
2844
|
# @return [String]
|
2847
2845
|
attr_accessor :content
|
@@ -2875,6 +2873,20 @@ module Google
|
|
2875
2873
|
end
|
2876
2874
|
end
|
2877
2875
|
|
2876
|
+
# Metadata provided through GetOperation request for the LRO generated by
|
2877
|
+
# Partial Delete Connection API
|
2878
|
+
class PartialDeleteConnectionMetadata
|
2879
|
+
include Google::Apis::Core::Hashable
|
2880
|
+
|
2881
|
+
def initialize(**args)
|
2882
|
+
update!(**args)
|
2883
|
+
end
|
2884
|
+
|
2885
|
+
# Update properties of this object
|
2886
|
+
def update!(**args)
|
2887
|
+
end
|
2888
|
+
end
|
2889
|
+
|
2878
2890
|
# DNS domain suffix for which requests originating in the producer VPC network
|
2879
2891
|
# are resolved in the associated consumer VPC network.
|
2880
2892
|
class PeeredDnsDomain
|
@@ -3568,8 +3580,8 @@ module Google
|
|
3568
3580
|
|
3569
3581
|
# A list of all enum types included in this API service. Enums referenced
|
3570
3582
|
# directly or indirectly by the `apis` are automatically included. Enums which
|
3571
|
-
# are not referenced but shall be included should be listed here by name
|
3572
|
-
# Example: enums: - name: google.someapi.v1.SomeEnum
|
3583
|
+
# are not referenced but shall be included should be listed here by name by the
|
3584
|
+
# configuration author. Example: enums: - name: google.someapi.v1.SomeEnum
|
3573
3585
|
# Corresponds to the JSON property `enums`
|
3574
3586
|
# @return [Array<Google::Apis::ServicenetworkingV1::Enum>]
|
3575
3587
|
attr_accessor :enums
|
@@ -3702,7 +3714,8 @@ module Google
|
|
3702
3714
|
# @return [Array<Google::Apis::ServicenetworkingV1::Type>]
|
3703
3715
|
attr_accessor :system_types
|
3704
3716
|
|
3705
|
-
# The product title for this service
|
3717
|
+
# The product title for this service, it is the name displayed in Google Cloud
|
3718
|
+
# Console.
|
3706
3719
|
# Corresponds to the JSON property `title`
|
3707
3720
|
# @return [String]
|
3708
3721
|
attr_accessor :title
|
@@ -3710,8 +3723,8 @@ module Google
|
|
3710
3723
|
# A list of all proto message types included in this API service. Types
|
3711
3724
|
# referenced directly or indirectly by the `apis` are automatically included.
|
3712
3725
|
# Messages which are not referenced but shall be included, such as types used by
|
3713
|
-
# the `google.protobuf.Any` type, should be listed here by name
|
3714
|
-
# - name: google.protobuf.Int32
|
3726
|
+
# the `google.protobuf.Any` type, should be listed here by name by the
|
3727
|
+
# configuration author. Example: types: - name: google.protobuf.Int32
|
3715
3728
|
# Corresponds to the JSON property `types`
|
3716
3729
|
# @return [Array<Google::Apis::ServicenetworkingV1::Type>]
|
3717
3730
|
attr_accessor :types
|
@@ -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.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210706"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -430,6 +430,12 @@ module Google
|
|
430
430
|
include Google::Apis::Core::JsonObjectSupport
|
431
431
|
end
|
432
432
|
|
433
|
+
class PartialDeleteConnectionMetadata
|
434
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
|
+
|
436
|
+
include Google::Apis::Core::JsonObjectSupport
|
437
|
+
end
|
438
|
+
|
433
439
|
class PeeredDnsDomain
|
434
440
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
441
|
|
@@ -784,7 +790,6 @@ module Google
|
|
784
790
|
property :deadline, as: 'deadline'
|
785
791
|
property :disable_auth, as: 'disableAuth'
|
786
792
|
property :jwt_audience, as: 'jwtAudience'
|
787
|
-
property :min_deadline, as: 'minDeadline'
|
788
793
|
property :operation_deadline, as: 'operationDeadline'
|
789
794
|
property :path_translation, as: 'pathTranslation'
|
790
795
|
property :protocol, as: 'protocol'
|
@@ -1290,6 +1295,12 @@ module Google
|
|
1290
1295
|
end
|
1291
1296
|
end
|
1292
1297
|
|
1298
|
+
class PartialDeleteConnectionMetadata
|
1299
|
+
# @private
|
1300
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1301
|
+
end
|
1302
|
+
end
|
1303
|
+
|
1293
1304
|
class PeeredDnsDomain
|
1294
1305
|
# @private
|
1295
1306
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.12.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-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Service Networking API V1. Simple
|
28
34
|
REST clients are Ruby client libraries that provide access to Google services via
|
29
35
|
their HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-servicenetworking_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.12.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-servicenetworking_v1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|