google-apis-trafficdirector_v3 0.4.0 → 0.6.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: b76d048fe55c79b837930396dff5d88fa63c5f2a9e6d80b43e1b940d2bc856b0
|
4
|
+
data.tar.gz: 1622a91304e543d57d7ff490383552fe36f63e2ae6439628293aa9ae5155c689
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bfc96436c4efcef1ef0abd39281048824b7933be7610a0b1c7ba6336efd3b9e1b590312fcdfdc236367784ae6e1cfbe76a4eb965f3acc9b075f9d7a4a8a66217
|
7
|
+
data.tar.gz: a2c9d79839f24dfa8ef8b7330be57acea80297c684826a6b00f40c31fda120ed48a9da76603a8c96cbf78298f2e91e5be81d5c8e45abdbbd9ba35e3099291733
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-trafficdirector_v3
|
2
2
|
|
3
|
+
### v0.6.0 (2024-03-31)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240322
|
6
|
+
|
7
|
+
### v0.5.0 (2024-02-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240214
|
10
|
+
* Regenerated using generator version 0.14.0
|
11
|
+
|
3
12
|
### v0.4.0 (2024-02-11)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240201
|
data/OVERVIEW.md
CHANGED
@@ -83,9 +83,9 @@ 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 2.
|
86
|
+
This library is supported on Ruby 2.7+.
|
87
87
|
|
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.
|
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
|
|
90
90
|
## License
|
91
91
|
|
@@ -1057,7 +1057,7 @@ module Google
|
|
1057
1057
|
class NodeMatcher
|
1058
1058
|
include Google::Apis::Core::Hashable
|
1059
1059
|
|
1060
|
-
# Specifies the way to match a string. [#next-free-field:
|
1060
|
+
# Specifies the way to match a string. [#next-free-field: 9]
|
1061
1061
|
# Corresponds to the JSON property `nodeId`
|
1062
1062
|
# @return [Google::Apis::TrafficdirectorV3::StringMatcher]
|
1063
1063
|
attr_accessor :node_id
|
@@ -1533,7 +1533,7 @@ module Google
|
|
1533
1533
|
end
|
1534
1534
|
end
|
1535
1535
|
|
1536
|
-
# Specifies the way to match a string. [#next-free-field:
|
1536
|
+
# Specifies the way to match a string. [#next-free-field: 9]
|
1537
1537
|
class StringMatcher
|
1538
1538
|
include Google::Apis::Core::Hashable
|
1539
1539
|
|
@@ -1544,6 +1544,11 @@ module Google
|
|
1544
1544
|
# @return [String]
|
1545
1545
|
attr_accessor :contains
|
1546
1546
|
|
1547
|
+
# Message type for extension configuration.
|
1548
|
+
# Corresponds to the JSON property `custom`
|
1549
|
+
# @return [Google::Apis::TrafficdirectorV3::TypedExtensionConfig]
|
1550
|
+
attr_accessor :custom
|
1551
|
+
|
1547
1552
|
# The input string must match exactly the string specified here. Examples: * ``
|
1548
1553
|
# abc`` only matches the value ``abc``.
|
1549
1554
|
# Corresponds to the JSON property `exact`
|
@@ -1585,6 +1590,7 @@ module Google
|
|
1585
1590
|
# Update properties of this object
|
1586
1591
|
def update!(**args)
|
1587
1592
|
@contains = args[:contains] if args.key?(:contains)
|
1593
|
+
@custom = args[:custom] if args.key?(:custom)
|
1588
1594
|
@exact = args[:exact] if args.key?(:exact)
|
1589
1595
|
@ignore_case = args[:ignore_case] if args.key?(:ignore_case)
|
1590
1596
|
@prefix = args[:prefix] if args.key?(:prefix)
|
@@ -1632,6 +1638,36 @@ module Google
|
|
1632
1638
|
end
|
1633
1639
|
end
|
1634
1640
|
|
1641
|
+
# Message type for extension configuration.
|
1642
|
+
class TypedExtensionConfig
|
1643
|
+
include Google::Apis::Core::Hashable
|
1644
|
+
|
1645
|
+
# The name of an extension. This is not used to select the extension, instead it
|
1646
|
+
# serves the role of an opaque identifier.
|
1647
|
+
# Corresponds to the JSON property `name`
|
1648
|
+
# @return [String]
|
1649
|
+
attr_accessor :name
|
1650
|
+
|
1651
|
+
# The typed config for the extension. The type URL will be used to identify the
|
1652
|
+
# extension. In the case that the type URL is *xds.type.v3.TypedStruct* (or, for
|
1653
|
+
# historical reasons, *udpa.type.v1.TypedStruct*), the inner type URL of *
|
1654
|
+
# TypedStruct* will be utilized. See the :ref:`extension configuration overview `
|
1655
|
+
# for further details.
|
1656
|
+
# Corresponds to the JSON property `typedConfig`
|
1657
|
+
# @return [Hash<String,Object>]
|
1658
|
+
attr_accessor :typed_config
|
1659
|
+
|
1660
|
+
def initialize(**args)
|
1661
|
+
update!(**args)
|
1662
|
+
end
|
1663
|
+
|
1664
|
+
# Update properties of this object
|
1665
|
+
def update!(**args)
|
1666
|
+
@name = args[:name] if args.key?(:name)
|
1667
|
+
@typed_config = args[:typed_config] if args.key?(:typed_config)
|
1668
|
+
end
|
1669
|
+
end
|
1670
|
+
|
1635
1671
|
#
|
1636
1672
|
class UpdateFailureState
|
1637
1673
|
include Google::Apis::Core::Hashable
|
@@ -1711,7 +1747,7 @@ module Google
|
|
1711
1747
|
attr_accessor :present_match
|
1712
1748
|
alias_method :present_match?, :present_match
|
1713
1749
|
|
1714
|
-
# Specifies the way to match a string. [#next-free-field:
|
1750
|
+
# Specifies the way to match a string. [#next-free-field: 9]
|
1715
1751
|
# Corresponds to the JSON property `stringMatch`
|
1716
1752
|
# @return [Google::Apis::TrafficdirectorV3::StringMatcher]
|
1717
1753
|
attr_accessor :string_match
|
@@ -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.6.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240322"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -274,6 +274,12 @@ module Google
|
|
274
274
|
include Google::Apis::Core::JsonObjectSupport
|
275
275
|
end
|
276
276
|
|
277
|
+
class TypedExtensionConfig
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
277
283
|
class UpdateFailureState
|
278
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
285
|
|
@@ -706,6 +712,8 @@ module Google
|
|
706
712
|
# @private
|
707
713
|
class Representation < Google::Apis::Core::JsonRepresentation
|
708
714
|
property :contains, as: 'contains'
|
715
|
+
property :custom, as: 'custom', class: Google::Apis::TrafficdirectorV3::TypedExtensionConfig, decorator: Google::Apis::TrafficdirectorV3::TypedExtensionConfig::Representation
|
716
|
+
|
709
717
|
property :exact, as: 'exact'
|
710
718
|
property :ignore_case, as: 'ignoreCase'
|
711
719
|
property :prefix, as: 'prefix'
|
@@ -725,6 +733,14 @@ module Google
|
|
725
733
|
end
|
726
734
|
end
|
727
735
|
|
736
|
+
class TypedExtensionConfig
|
737
|
+
# @private
|
738
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
739
|
+
property :name, as: 'name'
|
740
|
+
hash :typed_config, as: 'typedConfig'
|
741
|
+
end
|
742
|
+
end
|
743
|
+
|
728
744
|
class UpdateFailureState
|
729
745
|
# @private
|
730
746
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.6.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: 2024-
|
11
|
+
date: 2024-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.14.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.14.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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-trafficdirector_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-trafficdirector_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-trafficdirector_v3/v0.6.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-trafficdirector_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
68
|
requirements:
|
69
69
|
- - ">="
|
70
70
|
- !ruby/object:Gem::Version
|
71
|
-
version: '2.
|
71
|
+
version: '2.7'
|
72
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - ">="
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.6
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Traffic Director API V3
|