google-apis-trafficdirector_v3 0.7.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 47bf227cafc376d8d1989deffb46a0b96c3c3e89907fdc8ecafef980cee2c06f
|
4
|
+
data.tar.gz: 750f4ed347fbfa0548eefbf42745e21c950f3ec35ca2a550a6dc01e95c77d751
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9fa91dc159da0b63d063dd3b02838775bca18feb16ec74a65c4802b7fab1f668a47cce2a1011e20d0176de74bb2c919b2bd7809f1069ca5e21c7321d0f30640f
|
7
|
+
data.tar.gz: e91617c3cb0b181e2bb4e639642b7ea2f036036e6b95abb0edbe837209582d5a444dcd48b164a8ac1f8fbebace1b476bd486f081c6a8806baa2c2d25963553e0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# Release history for google-apis-trafficdirector_v3
|
2
2
|
|
3
|
+
### v0.9.0 (2025-06-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250516
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
8
|
+
### v0.8.0 (2025-05-04)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20250423
|
11
|
+
* Regenerated using generator version 0.17.0
|
12
|
+
|
3
13
|
### v0.7.0 (2024-05-19)
|
4
14
|
|
5
15
|
* Regenerated using generator version 0.15.0
|
data/OVERVIEW.md
CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/traffic-director) may provi
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby
|
86
|
+
This library is supported on Ruby 3.1+.
|
87
87
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
@@ -38,7 +38,7 @@ module Google
|
|
38
38
|
# @return [Google::Apis::TrafficdirectorV3::Pipe]
|
39
39
|
attr_accessor :pipe
|
40
40
|
|
41
|
-
# [#next-free-field:
|
41
|
+
# [#next-free-field: 8]
|
42
42
|
# Corresponds to the JSON property `socketAddress`
|
43
43
|
# @return [Google::Apis::TrafficdirectorV3::SocketAddress]
|
44
44
|
attr_accessor :socket_address
|
@@ -1367,7 +1367,7 @@ module Google
|
|
1367
1367
|
end
|
1368
1368
|
end
|
1369
1369
|
|
1370
|
-
# [#next-free-field:
|
1370
|
+
# [#next-free-field: 8]
|
1371
1371
|
class SocketAddress
|
1372
1372
|
include Google::Apis::Core::Hashable
|
1373
1373
|
|
@@ -1399,6 +1399,13 @@ module Google
|
|
1399
1399
|
# @return [String]
|
1400
1400
|
attr_accessor :named_port
|
1401
1401
|
|
1402
|
+
# The Linux network namespace to bind the socket to. If this is set, Envoy will
|
1403
|
+
# create the socket in the specified network namespace. Only supported on Linux.
|
1404
|
+
# [#not-implemented-hide:]
|
1405
|
+
# Corresponds to the JSON property `networkNamespaceFilepath`
|
1406
|
+
# @return [String]
|
1407
|
+
attr_accessor :network_namespace_filepath
|
1408
|
+
|
1402
1409
|
#
|
1403
1410
|
# Corresponds to the JSON property `portValue`
|
1404
1411
|
# @return [Fixnum]
|
@@ -1427,6 +1434,7 @@ module Google
|
|
1427
1434
|
@address = args[:address] if args.key?(:address)
|
1428
1435
|
@ipv4_compat = args[:ipv4_compat] if args.key?(:ipv4_compat)
|
1429
1436
|
@named_port = args[:named_port] if args.key?(:named_port)
|
1437
|
+
@network_namespace_filepath = args[:network_namespace_filepath] if args.key?(:network_namespace_filepath)
|
1430
1438
|
@port_value = args[:port_value] if args.key?(:port_value)
|
1431
1439
|
@protocol = args[:protocol] if args.key?(:protocol)
|
1432
1440
|
@resolver_name = args[:resolver_name] if args.key?(:resolver_name)
|
@@ -1537,9 +1545,9 @@ module Google
|
|
1537
1545
|
class StringMatcher
|
1538
1546
|
include Google::Apis::Core::Hashable
|
1539
1547
|
|
1540
|
-
# The input string must have the substring specified here.
|
1541
|
-
# match is not allowed, please use
|
1542
|
-
# the value ``xyz.abc.def``
|
1548
|
+
# The input string must have the substring specified here. .. note:: Empty
|
1549
|
+
# contains match is not allowed, please use ``safe_regex`` instead. Examples: * `
|
1550
|
+
# `abc`` matches the value ``xyz.abc.def``
|
1543
1551
|
# Corresponds to the JSON property `contains`
|
1544
1552
|
# @return [String]
|
1545
1553
|
attr_accessor :contains
|
@@ -1555,18 +1563,18 @@ module Google
|
|
1555
1563
|
# @return [String]
|
1556
1564
|
attr_accessor :exact
|
1557
1565
|
|
1558
|
-
# If true
|
1559
|
-
# insensitive. This has no effect for the safe_regex match. For example,
|
1560
|
-
# matcher ``data`` will match both input string ``Data`` and ``data`` if
|
1561
|
-
# true
|
1566
|
+
# If ``true``, indicates the exact/prefix/suffix/contains matching should be
|
1567
|
+
# case insensitive. This has no effect for the ``safe_regex`` match. For example,
|
1568
|
+
# the matcher ``data`` will match both input string ``Data`` and ``data`` if
|
1569
|
+
# this option is set to ``true``.
|
1562
1570
|
# Corresponds to the JSON property `ignoreCase`
|
1563
1571
|
# @return [Boolean]
|
1564
1572
|
attr_accessor :ignore_case
|
1565
1573
|
alias_method :ignore_case?, :ignore_case
|
1566
1574
|
|
1567
|
-
# The input string must have the prefix specified here.
|
1568
|
-
# not allowed, please use
|
1569
|
-
# abc.xyz``
|
1575
|
+
# The input string must have the prefix specified here. .. note:: Empty prefix
|
1576
|
+
# match is not allowed, please use ``safe_regex`` instead. Examples: * ``abc``
|
1577
|
+
# matches the value ``abc.xyz``
|
1570
1578
|
# Corresponds to the JSON property `prefix`
|
1571
1579
|
# @return [String]
|
1572
1580
|
attr_accessor :prefix
|
@@ -1576,9 +1584,9 @@ module Google
|
|
1576
1584
|
# @return [Google::Apis::TrafficdirectorV3::RegexMatcher]
|
1577
1585
|
attr_accessor :safe_regex
|
1578
1586
|
|
1579
|
-
# The input string must have the suffix specified here.
|
1580
|
-
# not allowed, please use
|
1581
|
-
# xyz.abc``
|
1587
|
+
# The input string must have the suffix specified here. .. note:: Empty suffix
|
1588
|
+
# match is not allowed, please use ``safe_regex`` instead. Examples: * ``abc``
|
1589
|
+
# matches the value ``xyz.abc``
|
1582
1590
|
# Corresponds to the JSON property `suffix`
|
1583
1591
|
# @return [String]
|
1584
1592
|
attr_accessor :suffix
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module TrafficdirectorV3
|
18
18
|
# Version of the google-apis-trafficdirector_v3 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.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250516"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -670,6 +670,7 @@ module Google
|
|
670
670
|
property :address, as: 'address'
|
671
671
|
property :ipv4_compat, as: 'ipv4Compat'
|
672
672
|
property :named_port, as: 'namedPort'
|
673
|
+
property :network_namespace_filepath, as: 'networkNamespaceFilepath'
|
673
674
|
property :port_value, as: 'portValue'
|
674
675
|
property :protocol, as: 'protocol'
|
675
676
|
property :resolver_name, as: 'resolverName'
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-trafficdirector_v3
|
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
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-trafficdirector_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-trafficdirector_v3/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-trafficdirector_v3/v0.9.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-trafficdirector_v3
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -68,15 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
66
|
requirements:
|
69
67
|
- - ">="
|
70
68
|
- !ruby/object:Gem::Version
|
71
|
-
version: '
|
69
|
+
version: '3.1'
|
72
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
71
|
requirements:
|
74
72
|
- - ">="
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.9
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Traffic Director API V3
|
82
79
|
test_files: []
|