google-apis-trafficdirector_v3 0.5.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c4838abc5d393487e725eaf498bb47cab7f22ff7fce457616395393d41a36e11
4
- data.tar.gz: 91b2a1df3b77f24a9e74aeb69188319e841752045958ed45eae0268877f88c53
3
+ metadata.gz: d597a8af8865db733bc7e6c64d82869ffa0803c9e4f549c4e979576e994fec8a
4
+ data.tar.gz: 3ceb8571a2c255135ee2db78693dce807a30a707490a6e3bebadfd893beec9c4
5
5
  SHA512:
6
- metadata.gz: 59b4ed5a08a5f50b43172cd4ccb8a04bde05de8040c97939035b4d2c53778853f5b03861f70456f0e324991f4b7b4b6051c00dbc4323ce9705016b6a906016e8
7
- data.tar.gz: a5708d32dee09bb92a6cc821f1df39a437fc1916631da08d1e785759d506142d3b7d54769d8a3f0e6fc1212fad73cd939644659cceef7cf51087349b6351d13b
6
+ metadata.gz: e07837467c0b3957c7c529887bf5ec5cb90261ae1044ae8915bb4c047a85b30a496e6a773006cc0af185b4fb2a96e75ba35798b6f8b4ce16d9f25d31bbe42ce7
7
+ data.tar.gz: 5be10d89c5def7f2ef0f2f59e5a4acd16fab57dfb07f6ef309f0214edc76037f493d1a92a96dfe452789c8c65424f4c9f55a11e9a25b2cc7ad25fe400a6117ed
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-trafficdirector_v3
2
2
 
3
+ ### v0.7.0 (2024-05-19)
4
+
5
+ * Regenerated using generator version 0.15.0
6
+
7
+ ### v0.6.0 (2024-03-31)
8
+
9
+ * Regenerated from discovery document revision 20240322
10
+
3
11
  ### v0.5.0 (2024-02-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20240214
@@ -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: 8]
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: 8]
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: 8]
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.5.0"
19
+ GEM_VERSION = "0.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240214"
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.5.0
4
+ version: 0.7.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-02-25 00:00:00.000000000 Z
11
+ date: 2024-05-26 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.14.0
19
+ version: 0.15.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.14.0
29
+ version: 0.15.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.5.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-trafficdirector_v3/v0.7.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: []