google-apis-trafficdirector_v3 0.1.0 → 0.2.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: 9d640479b78d4ba9aa189b58ad8ad94c04252218201a167c374a2a21d8bff0dd
|
4
|
+
data.tar.gz: 279582e1a2d3fe5c4084b5a4da67340452cab17976494aea8dab01e30cff086a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3dc882a158a730b78d094f8fd65fdb2500e6e4ec6f8a79ee8663a18cf99dedf5df55b37abdb2458a8a0c273f89269da21078b8ceb0d3fe0da0f74ccdc62672f8
|
7
|
+
data.tar.gz: add38f526eb1f894e824e31b6e5321eafc521788b88c87b8c0d6d5744b5e9c3f1b6ce5a24c662c564e2e98c776155895b2f1a5488b420fc6fe06ae89ec39e988
|
data/CHANGELOG.md
CHANGED
@@ -855,7 +855,7 @@ module Google
|
|
855
855
|
|
856
856
|
# Specifies the way to match a ProtobufWkt::Value. Primitive values and
|
857
857
|
# ListValue are supported. StructValue is not supported and is always not
|
858
|
-
# matched. [#next-free-field:
|
858
|
+
# matched. [#next-free-field: 8]
|
859
859
|
# Corresponds to the JSON property `oneOf`
|
860
860
|
# @return [Google::Apis::TrafficdirectorV3::ValueMatcher]
|
861
861
|
attr_accessor :one_of
|
@@ -1083,6 +1083,25 @@ module Google
|
|
1083
1083
|
end
|
1084
1084
|
end
|
1085
1085
|
|
1086
|
+
# Specifies a list of alternatives for the match.
|
1087
|
+
class OrMatcher
|
1088
|
+
include Google::Apis::Core::Hashable
|
1089
|
+
|
1090
|
+
#
|
1091
|
+
# Corresponds to the JSON property `valueMatchers`
|
1092
|
+
# @return [Array<Google::Apis::TrafficdirectorV3::ValueMatcher>]
|
1093
|
+
attr_accessor :value_matchers
|
1094
|
+
|
1095
|
+
def initialize(**args)
|
1096
|
+
update!(**args)
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
# Update properties of this object
|
1100
|
+
def update!(**args)
|
1101
|
+
@value_matchers = args[:value_matchers] if args.key?(:value_matchers)
|
1102
|
+
end
|
1103
|
+
end
|
1104
|
+
|
1086
1105
|
# Specifies the segment in a path to retrieve value from Struct.
|
1087
1106
|
class PathSegment
|
1088
1107
|
include Google::Apis::Core::Hashable
|
@@ -1589,7 +1608,7 @@ module Google
|
|
1589
1608
|
|
1590
1609
|
# Specifies the way to match a ProtobufWkt::Value. Primitive values and
|
1591
1610
|
# ListValue are supported. StructValue is not supported and is always not
|
1592
|
-
# matched. [#next-free-field:
|
1611
|
+
# matched. [#next-free-field: 8]
|
1593
1612
|
# Corresponds to the JSON property `value`
|
1594
1613
|
# @return [Google::Apis::TrafficdirectorV3::ValueMatcher]
|
1595
1614
|
attr_accessor :value
|
@@ -1645,7 +1664,7 @@ module Google
|
|
1645
1664
|
|
1646
1665
|
# Specifies the way to match a ProtobufWkt::Value. Primitive values and
|
1647
1666
|
# ListValue are supported. StructValue is not supported and is always not
|
1648
|
-
# matched. [#next-free-field:
|
1667
|
+
# matched. [#next-free-field: 8]
|
1649
1668
|
class ValueMatcher
|
1650
1669
|
include Google::Apis::Core::Hashable
|
1651
1670
|
|
@@ -1671,6 +1690,11 @@ module Google
|
|
1671
1690
|
# @return [Google::Apis::TrafficdirectorV3::NullMatch]
|
1672
1691
|
attr_accessor :null_match
|
1673
1692
|
|
1693
|
+
# Specifies a list of alternatives for the match.
|
1694
|
+
# Corresponds to the JSON property `orMatch`
|
1695
|
+
# @return [Google::Apis::TrafficdirectorV3::OrMatcher]
|
1696
|
+
attr_accessor :or_match
|
1697
|
+
|
1674
1698
|
# If specified, value match will be performed based on whether the path is
|
1675
1699
|
# referring to a valid primitive value in the metadata. If the path is referring
|
1676
1700
|
# to a non-primitive value, the result is always not matched.
|
@@ -1694,6 +1718,7 @@ module Google
|
|
1694
1718
|
@double_match = args[:double_match] if args.key?(:double_match)
|
1695
1719
|
@list_match = args[:list_match] if args.key?(:list_match)
|
1696
1720
|
@null_match = args[:null_match] if args.key?(:null_match)
|
1721
|
+
@or_match = args[:or_match] if args.key?(:or_match)
|
1697
1722
|
@present_match = args[:present_match] if args.key?(:present_match)
|
1698
1723
|
@string_match = args[:string_match] if args.key?(:string_match)
|
1699
1724
|
end
|
@@ -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.2.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231101"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -184,6 +184,12 @@ module Google
|
|
184
184
|
include Google::Apis::Core::JsonObjectSupport
|
185
185
|
end
|
186
186
|
|
187
|
+
class OrMatcher
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
187
193
|
class PathSegment
|
188
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
195
|
|
@@ -572,6 +578,14 @@ module Google
|
|
572
578
|
end
|
573
579
|
end
|
574
580
|
|
581
|
+
class OrMatcher
|
582
|
+
# @private
|
583
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
584
|
+
collection :value_matchers, as: 'valueMatchers', class: Google::Apis::TrafficdirectorV3::ValueMatcher, decorator: Google::Apis::TrafficdirectorV3::ValueMatcher::Representation
|
585
|
+
|
586
|
+
end
|
587
|
+
end
|
588
|
+
|
575
589
|
class PathSegment
|
576
590
|
# @private
|
577
591
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -730,6 +744,8 @@ module Google
|
|
730
744
|
|
731
745
|
property :null_match, as: 'nullMatch', class: Google::Apis::TrafficdirectorV3::NullMatch, decorator: Google::Apis::TrafficdirectorV3::NullMatch::Representation
|
732
746
|
|
747
|
+
property :or_match, as: 'orMatch', class: Google::Apis::TrafficdirectorV3::OrMatcher, decorator: Google::Apis::TrafficdirectorV3::OrMatcher::Representation
|
748
|
+
|
733
749
|
property :present_match, as: 'presentMatch'
|
734
750
|
property :string_match, as: 'stringMatch', class: Google::Apis::TrafficdirectorV3::StringMatcher, decorator: Google::Apis::TrafficdirectorV3::StringMatcher::Representation
|
735
751
|
|
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.2.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: 2023-11-
|
11
|
+
date: 2023-11-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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.2.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: []
|