google-apis-gkeonprem_v1 0.34.0 → 0.36.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: df67d176ad02875110b8b33b25fa01fe535d9d7b6a23fcaad967558642ed8f45
4
- data.tar.gz: 8074565a70b0fde3c2c4670d0a8b655c1b1c0deafc1d88d1c93cf2925772cc67
3
+ metadata.gz: a73c3276df6a795124a4ad13a63786a1dbf5f144b7beba614393fbd711edc2d3
4
+ data.tar.gz: 8a4a4bc04da698f5d045ae15fb279fbd43a9c2a61cec6a447c4274c36deb55e5
5
5
  SHA512:
6
- metadata.gz: b632b844a7733679990c0024cf6a42a9283776bdea584173d7cec19a4c8ded3c8151e47a1a96bb80d0db6b3970221c55b4f15402e7398932eb9d3fd2bbb7da84
7
- data.tar.gz: b3fc0bc55a400d366fd01d8f31135ccfbe45344357f15d60ca22fb6301b978e556ab3aa1717bd03cbad7f70d0f30e11a2c95362ffe051ad956ae024002c50f0a
6
+ metadata.gz: 41234e8bccd3bb11ecfb60077aebf63a22f07e64d5b7b51abc5f9c18b86e597898550bcae4a5574846fac3822c21bb7f8ea6307ff835f13e6705e634835cc95c
7
+ data.tar.gz: 2e8e97742ccc9c736dbe8fc8f1f78676c9591f58ede1dc80a7c09d935dc2e08cb71656982f02d0a01797a07d287a8729b170a14073caf097e3633d24972b94a6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-gkeonprem_v1
2
2
 
3
+ ### v0.36.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251203
6
+
7
+ ### v0.35.0 (2025-11-16)
8
+
9
+ * Regenerated from discovery document revision 20251105
10
+
3
11
  ### v0.34.0 (2025-11-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20251022
@@ -75,6 +75,87 @@ module Google
75
75
  end
76
76
  end
77
77
 
78
+ # BareMetalAdminBgpLbConfig represents configuration parameters for a Border
79
+ # Gateway Protocol (BGP) load balancer.
80
+ class BareMetalAdminBgpLbConfig
81
+ include Google::Apis::Core::Hashable
82
+
83
+ # Required. AddressPools is a list of non-overlapping IP pools used by load
84
+ # balancer typed services. All addresses must be routable to load balancer nodes.
85
+ # IngressVIP must be included in the pools.
86
+ # Corresponds to the JSON property `addressPools`
87
+ # @return [Array<Google::Apis::GkeonpremV1::BareMetalAdminLoadBalancerAddressPool>]
88
+ attr_accessor :address_pools
89
+
90
+ # Required. BGP autonomous system number (ASN) of the cluster. This field can be
91
+ # updated after cluster creation.
92
+ # Corresponds to the JSON property `asn`
93
+ # @return [Fixnum]
94
+ attr_accessor :asn
95
+
96
+ # Required. The list of BGP peers that the cluster will connect to. At least one
97
+ # peer must be configured for each control plane node. Control plane nodes will
98
+ # connect to these peers to advertise the control plane VIP. The Services load
99
+ # balancer also uses these peers by default. This field can be updated after
100
+ # cluster creation.
101
+ # Corresponds to the JSON property `bgpPeerConfigs`
102
+ # @return [Array<Google::Apis::GkeonpremV1::BareMetalAdminBgpPeerConfig>]
103
+ attr_accessor :bgp_peer_configs
104
+
105
+ # Specifies the load balancer's node pool configuration.
106
+ # Corresponds to the JSON property `loadBalancerNodePoolConfig`
107
+ # @return [Google::Apis::GkeonpremV1::BareMetalAdminLoadBalancerNodePoolConfig]
108
+ attr_accessor :load_balancer_node_pool_config
109
+
110
+ def initialize(**args)
111
+ update!(**args)
112
+ end
113
+
114
+ # Update properties of this object
115
+ def update!(**args)
116
+ @address_pools = args[:address_pools] if args.key?(:address_pools)
117
+ @asn = args[:asn] if args.key?(:asn)
118
+ @bgp_peer_configs = args[:bgp_peer_configs] if args.key?(:bgp_peer_configs)
119
+ @load_balancer_node_pool_config = args[:load_balancer_node_pool_config] if args.key?(:load_balancer_node_pool_config)
120
+ end
121
+ end
122
+
123
+ # BareMetalAdminBgpPeerConfig represents configuration parameters for a Border
124
+ # Gateway Protocol (BGP) peer.
125
+ class BareMetalAdminBgpPeerConfig
126
+ include Google::Apis::Core::Hashable
127
+
128
+ # Required. BGP autonomous system number (ASN) for the network that contains the
129
+ # external peer device.
130
+ # Corresponds to the JSON property `asn`
131
+ # @return [Fixnum]
132
+ attr_accessor :asn
133
+
134
+ # The IP address of the control plane node that connects to the external peer.
135
+ # If you don't specify any control plane nodes, all control plane nodes can
136
+ # connect to the external peer. If you specify one or more IP addresses, only
137
+ # the nodes specified participate in peering sessions.
138
+ # Corresponds to the JSON property `controlPlaneNodes`
139
+ # @return [Array<String>]
140
+ attr_accessor :control_plane_nodes
141
+
142
+ # Required. The IP address of the external peer device.
143
+ # Corresponds to the JSON property `ipAddress`
144
+ # @return [String]
145
+ attr_accessor :ip_address
146
+
147
+ def initialize(**args)
148
+ update!(**args)
149
+ end
150
+
151
+ # Update properties of this object
152
+ def update!(**args)
153
+ @asn = args[:asn] if args.key?(:asn)
154
+ @control_plane_nodes = args[:control_plane_nodes] if args.key?(:control_plane_nodes)
155
+ @ip_address = args[:ip_address] if args.key?(:ip_address)
156
+ end
157
+ end
158
+
78
159
  # Resource that represents a bare metal admin cluster.
79
160
  class BareMetalAdminCluster
80
161
  include Google::Apis::Core::Hashable
@@ -435,10 +516,57 @@ module Google
435
516
  end
436
517
  end
437
518
 
519
+ # Represents an IP pool used by the load balancer.
520
+ class BareMetalAdminLoadBalancerAddressPool
521
+ include Google::Apis::Core::Hashable
522
+
523
+ # Required. The addresses that are part of this pool. Each address must be
524
+ # either in the CIDR form (1.2.3.0/24) or range form (1.2.3.1-1.2.3.5).
525
+ # Corresponds to the JSON property `addresses`
526
+ # @return [Array<String>]
527
+ attr_accessor :addresses
528
+
529
+ # If true, avoid using IPs ending in .0 or .255. This avoids buggy consumer
530
+ # devices mistakenly dropping IPv4 traffic for those special IP addresses.
531
+ # Corresponds to the JSON property `avoidBuggyIps`
532
+ # @return [Boolean]
533
+ attr_accessor :avoid_buggy_ips
534
+ alias_method :avoid_buggy_ips?, :avoid_buggy_ips
535
+
536
+ # If true, prevent IP addresses from being automatically assigned.
537
+ # Corresponds to the JSON property `manualAssign`
538
+ # @return [Boolean]
539
+ attr_accessor :manual_assign
540
+ alias_method :manual_assign?, :manual_assign
541
+
542
+ # Required. The name of the address pool.
543
+ # Corresponds to the JSON property `pool`
544
+ # @return [String]
545
+ attr_accessor :pool
546
+
547
+ def initialize(**args)
548
+ update!(**args)
549
+ end
550
+
551
+ # Update properties of this object
552
+ def update!(**args)
553
+ @addresses = args[:addresses] if args.key?(:addresses)
554
+ @avoid_buggy_ips = args[:avoid_buggy_ips] if args.key?(:avoid_buggy_ips)
555
+ @manual_assign = args[:manual_assign] if args.key?(:manual_assign)
556
+ @pool = args[:pool] if args.key?(:pool)
557
+ end
558
+ end
559
+
438
560
  # BareMetalAdminLoadBalancerConfig specifies the load balancer configuration.
439
561
  class BareMetalAdminLoadBalancerConfig
440
562
  include Google::Apis::Core::Hashable
441
563
 
564
+ # BareMetalAdminBgpLbConfig represents configuration parameters for a Border
565
+ # Gateway Protocol (BGP) load balancer.
566
+ # Corresponds to the JSON property `bgpLbConfig`
567
+ # @return [Google::Apis::GkeonpremV1::BareMetalAdminBgpLbConfig]
568
+ attr_accessor :bgp_lb_config
569
+
442
570
  # BareMetalAdminManualLbConfig represents configuration parameters for a manual
443
571
  # load balancer.
444
572
  # Corresponds to the JSON property `manualLbConfig`
@@ -461,12 +589,33 @@ module Google
461
589
 
462
590
  # Update properties of this object
463
591
  def update!(**args)
592
+ @bgp_lb_config = args[:bgp_lb_config] if args.key?(:bgp_lb_config)
464
593
  @manual_lb_config = args[:manual_lb_config] if args.key?(:manual_lb_config)
465
594
  @port_config = args[:port_config] if args.key?(:port_config)
466
595
  @vip_config = args[:vip_config] if args.key?(:vip_config)
467
596
  end
468
597
  end
469
598
 
599
+ # Specifies the load balancer's node pool configuration.
600
+ class BareMetalAdminLoadBalancerNodePoolConfig
601
+ include Google::Apis::Core::Hashable
602
+
603
+ # BareMetalNodePoolConfig describes the configuration of all nodes within a
604
+ # given bare metal node pool.
605
+ # Corresponds to the JSON property `nodePoolConfig`
606
+ # @return [Google::Apis::GkeonpremV1::BareMetalNodePoolConfig]
607
+ attr_accessor :node_pool_config
608
+
609
+ def initialize(**args)
610
+ update!(**args)
611
+ end
612
+
613
+ # Update properties of this object
614
+ def update!(**args)
615
+ @node_pool_config = args[:node_pool_config] if args.key?(:node_pool_config)
616
+ end
617
+ end
618
+
470
619
  # BareMetalAdminMachineDrainStatus represents the status of bare metal node
471
620
  # machines that are undergoing drain operations.
472
621
  class BareMetalAdminMachineDrainStatus
@@ -558,23 +707,59 @@ module Google
558
707
  end
559
708
  end
560
709
 
710
+ # Specifies the multiple networking interfaces cluster configuration.
711
+ class BareMetalAdminMultipleNetworkInterfacesConfig
712
+ include Google::Apis::Core::Hashable
713
+
714
+ # Whether to enable multiple network interfaces for your pods. When set
715
+ # network_config.advanced_networking is automatically set to true.
716
+ # Corresponds to the JSON property `enabled`
717
+ # @return [Boolean]
718
+ attr_accessor :enabled
719
+ alias_method :enabled?, :enabled
720
+
721
+ def initialize(**args)
722
+ update!(**args)
723
+ end
724
+
725
+ # Update properties of this object
726
+ def update!(**args)
727
+ @enabled = args[:enabled] if args.key?(:enabled)
728
+ end
729
+ end
730
+
561
731
  # BareMetalAdminNetworkConfig specifies the cluster network configuration.
562
732
  class BareMetalAdminNetworkConfig
563
733
  include Google::Apis::Core::Hashable
564
734
 
735
+ # Enables the use of advanced Anthos networking features, such as Bundled Load
736
+ # Balancing with BGP or the egress NAT gateway. Setting configuration for
737
+ # advanced networking features will automatically set this flag.
738
+ # Corresponds to the JSON property `advancedNetworking`
739
+ # @return [Boolean]
740
+ attr_accessor :advanced_networking
741
+ alias_method :advanced_networking?, :advanced_networking
742
+
565
743
  # BareMetalAdminIslandModeCidrConfig specifies the cluster CIDR configuration
566
744
  # while running in island mode.
567
745
  # Corresponds to the JSON property `islandModeCidr`
568
746
  # @return [Google::Apis::GkeonpremV1::BareMetalAdminIslandModeCidrConfig]
569
747
  attr_accessor :island_mode_cidr
570
748
 
749
+ # Specifies the multiple networking interfaces cluster configuration.
750
+ # Corresponds to the JSON property `multipleNetworkInterfacesConfig`
751
+ # @return [Google::Apis::GkeonpremV1::BareMetalAdminMultipleNetworkInterfacesConfig]
752
+ attr_accessor :multiple_network_interfaces_config
753
+
571
754
  def initialize(**args)
572
755
  update!(**args)
573
756
  end
574
757
 
575
758
  # Update properties of this object
576
759
  def update!(**args)
760
+ @advanced_networking = args[:advanced_networking] if args.key?(:advanced_networking)
577
761
  @island_mode_cidr = args[:island_mode_cidr] if args.key?(:island_mode_cidr)
762
+ @multiple_network_interfaces_config = args[:multiple_network_interfaces_config] if args.key?(:multiple_network_interfaces_config)
578
763
  end
579
764
  end
580
765
 
@@ -2694,8 +2879,9 @@ module Google
2694
2879
  attr_accessor :operations
2695
2880
 
2696
2881
  # Unordered list. Unreachable resources. Populated when the request sets `
2697
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
2698
- # when attempting to list all resources across all supported locations.
2882
+ # ListOperationsRequest.return_partial_success` and reads across collections.
2883
+ # For example, when attempting to list all resources across all supported
2884
+ # locations.
2699
2885
  # Corresponds to the JSON property `unreachable`
2700
2886
  # @return [Array<String>]
2701
2887
  attr_accessor :unreachable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkeonpremV1
18
18
  # Version of the google-apis-gkeonprem_v1 gem
19
- GEM_VERSION = "0.34.0"
19
+ GEM_VERSION = "0.36.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251022"
25
+ REVISION = "20251203"
26
26
  end
27
27
  end
28
28
  end
@@ -34,6 +34,18 @@ module Google
34
34
  include Google::Apis::Core::JsonObjectSupport
35
35
  end
36
36
 
37
+ class BareMetalAdminBgpLbConfig
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
43
+ class BareMetalAdminBgpPeerConfig
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
37
49
  class BareMetalAdminCluster
38
50
  class Representation < Google::Apis::Core::JsonRepresentation; end
39
51
 
@@ -76,12 +88,24 @@ module Google
76
88
  include Google::Apis::Core::JsonObjectSupport
77
89
  end
78
90
 
91
+ class BareMetalAdminLoadBalancerAddressPool
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
79
97
  class BareMetalAdminLoadBalancerConfig
80
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
81
99
 
82
100
  include Google::Apis::Core::JsonObjectSupport
83
101
  end
84
102
 
103
+ class BareMetalAdminLoadBalancerNodePoolConfig
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
85
109
  class BareMetalAdminMachineDrainStatus
86
110
  class Representation < Google::Apis::Core::JsonRepresentation; end
87
111
 
@@ -106,6 +130,12 @@ module Google
106
130
  include Google::Apis::Core::JsonObjectSupport
107
131
  end
108
132
 
133
+ class BareMetalAdminMultipleNetworkInterfacesConfig
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
109
139
  class BareMetalAdminNetworkConfig
110
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
111
141
 
@@ -962,6 +992,28 @@ module Google
962
992
  end
963
993
  end
964
994
 
995
+ class BareMetalAdminBgpLbConfig
996
+ # @private
997
+ class Representation < Google::Apis::Core::JsonRepresentation
998
+ collection :address_pools, as: 'addressPools', class: Google::Apis::GkeonpremV1::BareMetalAdminLoadBalancerAddressPool, decorator: Google::Apis::GkeonpremV1::BareMetalAdminLoadBalancerAddressPool::Representation
999
+
1000
+ property :asn, :numeric_string => true, as: 'asn'
1001
+ collection :bgp_peer_configs, as: 'bgpPeerConfigs', class: Google::Apis::GkeonpremV1::BareMetalAdminBgpPeerConfig, decorator: Google::Apis::GkeonpremV1::BareMetalAdminBgpPeerConfig::Representation
1002
+
1003
+ property :load_balancer_node_pool_config, as: 'loadBalancerNodePoolConfig', class: Google::Apis::GkeonpremV1::BareMetalAdminLoadBalancerNodePoolConfig, decorator: Google::Apis::GkeonpremV1::BareMetalAdminLoadBalancerNodePoolConfig::Representation
1004
+
1005
+ end
1006
+ end
1007
+
1008
+ class BareMetalAdminBgpPeerConfig
1009
+ # @private
1010
+ class Representation < Google::Apis::Core::JsonRepresentation
1011
+ property :asn, :numeric_string => true, as: 'asn'
1012
+ collection :control_plane_nodes, as: 'controlPlaneNodes'
1013
+ property :ip_address, as: 'ipAddress'
1014
+ end
1015
+ end
1016
+
965
1017
  class BareMetalAdminCluster
966
1018
  # @private
967
1019
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1061,9 +1113,21 @@ module Google
1061
1113
  end
1062
1114
  end
1063
1115
 
1116
+ class BareMetalAdminLoadBalancerAddressPool
1117
+ # @private
1118
+ class Representation < Google::Apis::Core::JsonRepresentation
1119
+ collection :addresses, as: 'addresses'
1120
+ property :avoid_buggy_ips, as: 'avoidBuggyIps'
1121
+ property :manual_assign, as: 'manualAssign'
1122
+ property :pool, as: 'pool'
1123
+ end
1124
+ end
1125
+
1064
1126
  class BareMetalAdminLoadBalancerConfig
1065
1127
  # @private
1066
1128
  class Representation < Google::Apis::Core::JsonRepresentation
1129
+ property :bgp_lb_config, as: 'bgpLbConfig', class: Google::Apis::GkeonpremV1::BareMetalAdminBgpLbConfig, decorator: Google::Apis::GkeonpremV1::BareMetalAdminBgpLbConfig::Representation
1130
+
1067
1131
  property :manual_lb_config, as: 'manualLbConfig', class: Google::Apis::GkeonpremV1::BareMetalAdminManualLbConfig, decorator: Google::Apis::GkeonpremV1::BareMetalAdminManualLbConfig::Representation
1068
1132
 
1069
1133
  property :port_config, as: 'portConfig', class: Google::Apis::GkeonpremV1::BareMetalAdminPortConfig, decorator: Google::Apis::GkeonpremV1::BareMetalAdminPortConfig::Representation
@@ -1073,6 +1137,14 @@ module Google
1073
1137
  end
1074
1138
  end
1075
1139
 
1140
+ class BareMetalAdminLoadBalancerNodePoolConfig
1141
+ # @private
1142
+ class Representation < Google::Apis::Core::JsonRepresentation
1143
+ property :node_pool_config, as: 'nodePoolConfig', class: Google::Apis::GkeonpremV1::BareMetalNodePoolConfig, decorator: Google::Apis::GkeonpremV1::BareMetalNodePoolConfig::Representation
1144
+
1145
+ end
1146
+ end
1147
+
1076
1148
  class BareMetalAdminMachineDrainStatus
1077
1149
  # @private
1078
1150
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1105,11 +1177,21 @@ module Google
1105
1177
  end
1106
1178
  end
1107
1179
 
1180
+ class BareMetalAdminMultipleNetworkInterfacesConfig
1181
+ # @private
1182
+ class Representation < Google::Apis::Core::JsonRepresentation
1183
+ property :enabled, as: 'enabled'
1184
+ end
1185
+ end
1186
+
1108
1187
  class BareMetalAdminNetworkConfig
1109
1188
  # @private
1110
1189
  class Representation < Google::Apis::Core::JsonRepresentation
1190
+ property :advanced_networking, as: 'advancedNetworking'
1111
1191
  property :island_mode_cidr, as: 'islandModeCidr', class: Google::Apis::GkeonpremV1::BareMetalAdminIslandModeCidrConfig, decorator: Google::Apis::GkeonpremV1::BareMetalAdminIslandModeCidrConfig::Representation
1112
1192
 
1193
+ property :multiple_network_interfaces_config, as: 'multipleNetworkInterfacesConfig', class: Google::Apis::GkeonpremV1::BareMetalAdminMultipleNetworkInterfacesConfig, decorator: Google::Apis::GkeonpremV1::BareMetalAdminMultipleNetworkInterfacesConfig::Representation
1194
+
1113
1195
  end
1114
1196
  end
1115
1197
 
@@ -608,11 +608,12 @@ module Google
608
608
  # The standard list page token.
609
609
  # @param [Boolean] return_partial_success
610
610
  # When set to `true`, operations that are reachable are returned as normal, and
611
- # those that are unreachable are returned in the [ListOperationsResponse.
612
- # unreachable] field. This can only be `true` when reading across collections e.
613
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
614
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
615
- # explicitly documented otherwise in service or product specific documentation.
611
+ # those that are unreachable are returned in the ListOperationsResponse.
612
+ # unreachable field. This can only be `true` when reading across collections.
613
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
614
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
615
+ # if set unless explicitly documented otherwise in service or product specific
616
+ # documentation.
616
617
  # @param [String] fields
617
618
  # Selector specifying which fields to include in a partial response.
618
619
  # @param [String] quota_user
@@ -1621,11 +1622,12 @@ module Google
1621
1622
  # The standard list page token.
1622
1623
  # @param [Boolean] return_partial_success
1623
1624
  # When set to `true`, operations that are reachable are returned as normal, and
1624
- # those that are unreachable are returned in the [ListOperationsResponse.
1625
- # unreachable] field. This can only be `true` when reading across collections e.
1626
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1627
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1628
- # explicitly documented otherwise in service or product specific documentation.
1625
+ # those that are unreachable are returned in the ListOperationsResponse.
1626
+ # unreachable field. This can only be `true` when reading across collections.
1627
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
1628
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
1629
+ # if set unless explicitly documented otherwise in service or product specific
1630
+ # documentation.
1629
1631
  # @param [String] fields
1630
1632
  # Selector specifying which fields to include in a partial response.
1631
1633
  # @param [String] quota_user
@@ -1700,11 +1702,12 @@ module Google
1700
1702
  # The standard list page token.
1701
1703
  # @param [Boolean] return_partial_success
1702
1704
  # When set to `true`, operations that are reachable are returned as normal, and
1703
- # those that are unreachable are returned in the [ListOperationsResponse.
1704
- # unreachable] field. This can only be `true` when reading across collections e.
1705
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1706
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1707
- # explicitly documented otherwise in service or product specific documentation.
1705
+ # those that are unreachable are returned in the ListOperationsResponse.
1706
+ # unreachable field. This can only be `true` when reading across collections.
1707
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
1708
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
1709
+ # if set unless explicitly documented otherwise in service or product specific
1710
+ # documentation.
1708
1711
  # @param [String] fields
1709
1712
  # Selector specifying which fields to include in a partial response.
1710
1713
  # @param [String] quota_user
@@ -1852,11 +1855,12 @@ module Google
1852
1855
  # The standard list page token.
1853
1856
  # @param [Boolean] return_partial_success
1854
1857
  # When set to `true`, operations that are reachable are returned as normal, and
1855
- # those that are unreachable are returned in the [ListOperationsResponse.
1856
- # unreachable] field. This can only be `true` when reading across collections e.
1857
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1858
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1859
- # explicitly documented otherwise in service or product specific documentation.
1858
+ # those that are unreachable are returned in the ListOperationsResponse.
1859
+ # unreachable field. This can only be `true` when reading across collections.
1860
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
1861
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
1862
+ # if set unless explicitly documented otherwise in service or product specific
1863
+ # documentation.
1860
1864
  # @param [String] fields
1861
1865
  # Selector specifying which fields to include in a partial response.
1862
1866
  # @param [String] quota_user
@@ -1899,6 +1903,8 @@ module Google
1899
1903
  # in RMS when the creation fails during standalone preflight checks. In that
1900
1904
  # case the subsequent create call will fail with "cluster already exists" error
1901
1905
  # and hence a update cluster is required to fix the cluster.
1906
+ # @param [Array<String>, String] skip_validations
1907
+ # Optional. If set, skip the specified validations.
1902
1908
  # @param [Boolean] validate_only
1903
1909
  # Validate the request without actually doing any updates.
1904
1910
  # @param [String] vmware_admin_cluster_id
@@ -1922,7 +1928,7 @@ module Google
1922
1928
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1923
1929
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1924
1930
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1925
- def create_project_location_vmware_admin_cluster(parent, vmware_admin_cluster_object = nil, allow_preflight_failure: nil, validate_only: nil, vmware_admin_cluster_id: nil, fields: nil, quota_user: nil, options: nil, &block)
1931
+ def create_project_location_vmware_admin_cluster(parent, vmware_admin_cluster_object = nil, allow_preflight_failure: nil, skip_validations: nil, validate_only: nil, vmware_admin_cluster_id: nil, fields: nil, quota_user: nil, options: nil, &block)
1926
1932
  command = make_simple_command(:post, 'v1/{+parent}/vmwareAdminClusters', options)
1927
1933
  command.request_representation = Google::Apis::GkeonpremV1::VmwareAdminCluster::Representation
1928
1934
  command.request_object = vmware_admin_cluster_object
@@ -1930,6 +1936,7 @@ module Google
1930
1936
  command.response_class = Google::Apis::GkeonpremV1::Operation
1931
1937
  command.params['parent'] = parent unless parent.nil?
1932
1938
  command.query['allowPreflightFailure'] = allow_preflight_failure unless allow_preflight_failure.nil?
1939
+ command.query['skipValidations'] = skip_validations unless skip_validations.nil?
1933
1940
  command.query['validateOnly'] = validate_only unless validate_only.nil?
1934
1941
  command.query['vmwareAdminClusterId'] = vmware_admin_cluster_id unless vmware_admin_cluster_id.nil?
1935
1942
  command.query['fields'] = fields unless fields.nil?
@@ -2114,6 +2121,8 @@ module Google
2114
2121
  # @param [String] name
2115
2122
  # Immutable. The VMware admin cluster resource name.
2116
2123
  # @param [Google::Apis::GkeonpremV1::VmwareAdminCluster] vmware_admin_cluster_object
2124
+ # @param [Array<String>, String] skip_validations
2125
+ # Optional. If set, the server-side preflight checks will be skipped.
2117
2126
  # @param [String] update_mask
2118
2127
  # Required. Field mask is used to specify the fields to be overwritten in the
2119
2128
  # VMwareAdminCluster resource by the update. The fields specified in the
@@ -2140,13 +2149,14 @@ module Google
2140
2149
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2141
2150
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2142
2151
  # @raise [Google::Apis::AuthorizationError] Authorization is required
2143
- def patch_project_location_vmware_admin_cluster(name, vmware_admin_cluster_object = nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
2152
+ def patch_project_location_vmware_admin_cluster(name, vmware_admin_cluster_object = nil, skip_validations: nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
2144
2153
  command = make_simple_command(:patch, 'v1/{+name}', options)
2145
2154
  command.request_representation = Google::Apis::GkeonpremV1::VmwareAdminCluster::Representation
2146
2155
  command.request_object = vmware_admin_cluster_object
2147
2156
  command.response_representation = Google::Apis::GkeonpremV1::Operation::Representation
2148
2157
  command.response_class = Google::Apis::GkeonpremV1::Operation
2149
2158
  command.params['name'] = name unless name.nil?
2159
+ command.query['skipValidations'] = skip_validations unless skip_validations.nil?
2150
2160
  command.query['updateMask'] = update_mask unless update_mask.nil?
2151
2161
  command.query['validateOnly'] = validate_only unless validate_only.nil?
2152
2162
  command.query['fields'] = fields unless fields.nil?
@@ -2328,11 +2338,12 @@ module Google
2328
2338
  # The standard list page token.
2329
2339
  # @param [Boolean] return_partial_success
2330
2340
  # When set to `true`, operations that are reachable are returned as normal, and
2331
- # those that are unreachable are returned in the [ListOperationsResponse.
2332
- # unreachable] field. This can only be `true` when reading across collections e.
2333
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
2334
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
2335
- # explicitly documented otherwise in service or product specific documentation.
2341
+ # those that are unreachable are returned in the ListOperationsResponse.
2342
+ # unreachable field. This can only be `true` when reading across collections.
2343
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
2344
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
2345
+ # if set unless explicitly documented otherwise in service or product specific
2346
+ # documentation.
2336
2347
  # @param [String] fields
2337
2348
  # Selector specifying which fields to include in a partial response.
2338
2349
  # @param [String] quota_user
@@ -2374,6 +2385,8 @@ module Google
2374
2385
  # in RMS when the creation fails during standalone preflight checks. In that
2375
2386
  # case the subsequent create call will fail with "cluster already exists" error
2376
2387
  # and hence a update cluster is required to fix the cluster.
2388
+ # @param [Array<String>, String] skip_validations
2389
+ # Optional. List of validations to skip during cluster creation.
2377
2390
  # @param [Boolean] validate_only
2378
2391
  # Validate the request without actually doing any updates.
2379
2392
  # @param [String] vmware_cluster_id
@@ -2397,7 +2410,7 @@ module Google
2397
2410
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2398
2411
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2399
2412
  # @raise [Google::Apis::AuthorizationError] Authorization is required
2400
- def create_project_location_vmware_cluster(parent, vmware_cluster_object = nil, allow_preflight_failure: nil, validate_only: nil, vmware_cluster_id: nil, fields: nil, quota_user: nil, options: nil, &block)
2413
+ def create_project_location_vmware_cluster(parent, vmware_cluster_object = nil, allow_preflight_failure: nil, skip_validations: nil, validate_only: nil, vmware_cluster_id: nil, fields: nil, quota_user: nil, options: nil, &block)
2401
2414
  command = make_simple_command(:post, 'v1/{+parent}/vmwareClusters', options)
2402
2415
  command.request_representation = Google::Apis::GkeonpremV1::VmwareCluster::Representation
2403
2416
  command.request_object = vmware_cluster_object
@@ -2405,6 +2418,7 @@ module Google
2405
2418
  command.response_class = Google::Apis::GkeonpremV1::Operation
2406
2419
  command.params['parent'] = parent unless parent.nil?
2407
2420
  command.query['allowPreflightFailure'] = allow_preflight_failure unless allow_preflight_failure.nil?
2421
+ command.query['skipValidations'] = skip_validations unless skip_validations.nil?
2408
2422
  command.query['validateOnly'] = validate_only unless validate_only.nil?
2409
2423
  command.query['vmwareClusterId'] = vmware_cluster_id unless vmware_cluster_id.nil?
2410
2424
  command.query['fields'] = fields unless fields.nil?
@@ -2647,6 +2661,7 @@ module Google
2647
2661
  # @param [String] name
2648
2662
  # Immutable. The VMware user cluster resource name.
2649
2663
  # @param [Google::Apis::GkeonpremV1::VmwareCluster] vmware_cluster_object
2664
+ # @param [Array<String>, String] skip_validations
2650
2665
  # @param [String] update_mask
2651
2666
  # Required. Field mask is used to specify the fields to be overwritten in the
2652
2667
  # VMwareCluster resource by the update. The fields specified in the update_mask
@@ -2673,13 +2688,14 @@ module Google
2673
2688
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2674
2689
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2675
2690
  # @raise [Google::Apis::AuthorizationError] Authorization is required
2676
- def patch_project_location_vmware_cluster(name, vmware_cluster_object = nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
2691
+ def patch_project_location_vmware_cluster(name, vmware_cluster_object = nil, skip_validations: nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
2677
2692
  command = make_simple_command(:patch, 'v1/{+name}', options)
2678
2693
  command.request_representation = Google::Apis::GkeonpremV1::VmwareCluster::Representation
2679
2694
  command.request_object = vmware_cluster_object
2680
2695
  command.response_representation = Google::Apis::GkeonpremV1::Operation::Representation
2681
2696
  command.response_class = Google::Apis::GkeonpremV1::Operation
2682
2697
  command.params['name'] = name unless name.nil?
2698
+ command.query['skipValidations'] = skip_validations unless skip_validations.nil?
2683
2699
  command.query['updateMask'] = update_mask unless update_mask.nil?
2684
2700
  command.query['validateOnly'] = validate_only unless validate_only.nil?
2685
2701
  command.query['fields'] = fields unless fields.nil?
@@ -2903,11 +2919,12 @@ module Google
2903
2919
  # The standard list page token.
2904
2920
  # @param [Boolean] return_partial_success
2905
2921
  # When set to `true`, operations that are reachable are returned as normal, and
2906
- # those that are unreachable are returned in the [ListOperationsResponse.
2907
- # unreachable] field. This can only be `true` when reading across collections e.
2908
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
2909
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
2910
- # explicitly documented otherwise in service or product specific documentation.
2922
+ # those that are unreachable are returned in the ListOperationsResponse.
2923
+ # unreachable field. This can only be `true` when reading across collections.
2924
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
2925
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
2926
+ # if set unless explicitly documented otherwise in service or product specific
2927
+ # documentation.
2911
2928
  # @param [String] fields
2912
2929
  # Selector specifying which fields to include in a partial response.
2913
2930
  # @param [String] quota_user
@@ -3403,11 +3420,12 @@ module Google
3403
3420
  # The standard list page token.
3404
3421
  # @param [Boolean] return_partial_success
3405
3422
  # When set to `true`, operations that are reachable are returned as normal, and
3406
- # those that are unreachable are returned in the [ListOperationsResponse.
3407
- # unreachable] field. This can only be `true` when reading across collections e.
3408
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
3409
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
3410
- # explicitly documented otherwise in service or product specific documentation.
3423
+ # those that are unreachable are returned in the ListOperationsResponse.
3424
+ # unreachable field. This can only be `true` when reading across collections.
3425
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
3426
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
3427
+ # if set unless explicitly documented otherwise in service or product specific
3428
+ # documentation.
3411
3429
  # @param [String] fields
3412
3430
  # Selector specifying which fields to include in a partial response.
3413
3431
  # @param [String] quota_user
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkeonprem_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.34.0
4
+ version: 0.36.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkeonprem_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkeonprem_v1/v0.34.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkeonprem_v1/v0.36.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkeonprem_v1
62
62
  rdoc_options: []
63
63
  require_paths: