google-apis-compute_beta 0.98.0 → 0.100.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: fded344c3c8500eb4a69120ef8be02ce0c274d2a77c5bc7938b30e853fa7f717
4
- data.tar.gz: d0b58010fb7344fb672f0d7d14d30d4f65bd4df6a4ced82a9eab5c36746a37cd
3
+ metadata.gz: 7ed2c184a58b773410b99b9e1340b49d77a1577cb4377e99df0bfc034fab4acd
4
+ data.tar.gz: fba204fa62c8f0236dbf21a265ca454301aa2771d3ca1f865d57c3bfdf7358a5
5
5
  SHA512:
6
- metadata.gz: 6eea8b2a1cddedff894bfc82e204c2298a3d00a0b99317f2d02274b03e3642f86107884a1f8fa08e5d77273e99eb3fc9250f3e844f5c0dc1680b4d3ae891548c
7
- data.tar.gz: dd87e993da542426341f35b5e8073d700a9bffeb42149695e7bab3a7b1c72597084605c7fb7f502e3b8e7e367ae61ffe4f05c49a36d829b9241417028d3eedc3
6
+ metadata.gz: 4f046c2c76934bbd04039c362bcbb2ac1450daf0bc8f53e4725923e607189fe6ed9bd604735f08e5a522674ac171b5f17aee37bf3ce4e616fb40de0872d96a36
7
+ data.tar.gz: e4779c58a17b87ddfec1c78e23166d617ec41bd031ed26760045337c6189b148503d02435a4f19b0af0714fe288d10c1c28823276879d2735f1c7f1070d5c807
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-compute_beta
2
2
 
3
+ ### v0.100.0 (2024-04-28)
4
+
5
+ * Regenerated from discovery document revision 20240421
6
+
7
+ ### v0.99.0 (2024-04-21)
8
+
9
+ * Regenerated from discovery document revision 20240407
10
+
3
11
  ### v0.98.0 (2024-04-07)
4
12
 
5
13
  * Regenerated from discovery document revision 20240326
@@ -1415,7 +1415,6 @@ module Google
1415
1415
  end
1416
1416
 
1417
1417
  # This reservation type allows to pre allocate specific instance configuration.
1418
- # Next ID: 6
1419
1418
  class AllocationSpecificSkuReservation
1420
1419
  include Google::Apis::Core::Hashable
1421
1420
 
@@ -10063,6 +10062,17 @@ module Google
10063
10062
  # @return [Fixnum]
10064
10063
  attr_accessor :id
10065
10064
 
10065
+ # Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP in
10066
+ # EXTERNAL_IPV6_FORWARDING_RULE_CREATION mode. Use one of the following formats
10067
+ # to specify a sub-PDP when creating an IPv6 NetLB forwarding rule using BYOIP:
10068
+ # Full resource URL, as in https://www.googleapis.com/compute/v1/projects/
10069
+ # project_id/regions/region /publicDelegatedPrefixes/sub-pdp-name Partial URL,
10070
+ # as in: - projects/project_id/regions/region/publicDelegatedPrefixes/sub-pdp-
10071
+ # name - regions/region/publicDelegatedPrefixes/sub-pdp-name
10072
+ # Corresponds to the JSON property `ipCollection`
10073
+ # @return [String]
10074
+ attr_accessor :ip_collection
10075
+
10066
10076
  # The IP Version that will be used by this forwarding rule. Valid options are
10067
10077
  # IPV4 or IPV6.
10068
10078
  # Corresponds to the JSON property `ipVersion`
@@ -10308,6 +10318,7 @@ module Google
10308
10318
  @description = args[:description] if args.key?(:description)
10309
10319
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
10310
10320
  @id = args[:id] if args.key?(:id)
10321
+ @ip_collection = args[:ip_collection] if args.key?(:ip_collection)
10311
10322
  @ip_version = args[:ip_version] if args.key?(:ip_version)
10312
10323
  @is_mirroring_collector = args[:is_mirroring_collector] if args.key?(:is_mirroring_collector)
10313
10324
  @kind = args[:kind] if args.key?(:kind)
@@ -25880,6 +25891,12 @@ module Google
25880
25891
  # @return [Hash<String,String>]
25881
25892
  attr_accessor :annotations
25882
25893
 
25894
+ # Represents the port number to which PSC consumer sends packets. Only valid for
25895
+ # network endpoint groups created with GCE_VM_IP_PORTMAP endpoint type.
25896
+ # Corresponds to the JSON property `clientDestinationPort`
25897
+ # @return [Fixnum]
25898
+ attr_accessor :client_destination_port
25899
+
25883
25900
  # Represents the port number to which PSC consumer sends packets. Only valid for
25884
25901
  # network endpoint groups created with CLIENT_PORT_PER_ENDPOINT mapping mode.
25885
25902
  # Corresponds to the JSON property `clientPort`
@@ -25935,6 +25952,7 @@ module Google
25935
25952
  # Update properties of this object
25936
25953
  def update!(**args)
25937
25954
  @annotations = args[:annotations] if args.key?(:annotations)
25955
+ @client_destination_port = args[:client_destination_port] if args.key?(:client_destination_port)
25938
25956
  @client_port = args[:client_port] if args.key?(:client_port)
25939
25957
  @fqdn = args[:fqdn] if args.key?(:fqdn)
25940
25958
  @instance = args[:instance] if args.key?(:instance)
@@ -26038,7 +26056,7 @@ module Google
26038
26056
 
26039
26057
  # Type of network endpoints in this network endpoint group. Can be one of
26040
26058
  # GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT,
26041
- # INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT.
26059
+ # INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT, GCE_VM_IP_PORTMAP.
26042
26060
  # Corresponds to the JSON property `networkEndpointType`
26043
26061
  # @return [String]
26044
26062
  attr_accessor :network_endpoint_type
@@ -30496,7 +30514,7 @@ module Google
30496
30514
  # @return [String]
30497
30515
  attr_accessor :enable
30498
30516
 
30499
- # Filter for mirrored traffic. If unspecified, all traffic is mirrored.
30517
+ # Filter for mirrored traffic. If unspecified, all IPv4 traffic is mirrored.
30500
30518
  # Corresponds to the JSON property `filter`
30501
30519
  # @return [Google::Apis::ComputeBeta::PacketMirroringFilter]
30502
30520
  attr_accessor :filter
@@ -30711,12 +30729,11 @@ module Google
30711
30729
  # @return [Array<String>]
30712
30730
  attr_accessor :ip_protocols
30713
30731
 
30714
- # One or more IPv4 or IPv6 CIDR ranges that apply as filter on the source (
30732
+ # One or more IPv4 or IPv6 CIDR ranges that apply as filters on the source (
30715
30733
  # ingress) or destination (egress) IP in the IP header. If no ranges are
30716
30734
  # specified, all IPv4 traffic that matches the specified IPProtocols is mirrored.
30717
30735
  # If neither cidrRanges nor IPProtocols is specified, all IPv4 traffic is
30718
- # mirrored. To mirror all IPv4 and IPv6 traffic, use "0.0.0.0/0,::/0". Note:
30719
- # Support for IPv6 traffic is in preview.
30736
+ # mirrored. To mirror all IPv4 and IPv6 traffic, use "0.0.0.0/0,::/0".
30720
30737
  # Corresponds to the JSON property `cidrRanges`
30721
30738
  # @return [Array<String>]
30722
30739
  attr_accessor :cidr_ranges
@@ -32154,6 +32171,13 @@ module Google
32154
32171
  class PublicDelegatedPrefix
32155
32172
  include Google::Apis::Core::Hashable
32156
32173
 
32174
+ # The allocatable prefix length supported by this public delegated prefix. This
32175
+ # field is optional and cannot be set for prefixes in DELEGATION mode. It cannot
32176
+ # be set for IPv4 prefixes either, and it always defaults to 32.
32177
+ # Corresponds to the JSON property `allocatablePrefixLength`
32178
+ # @return [Fixnum]
32179
+ attr_accessor :allocatable_prefix_length
32180
+
32157
32181
  # [Output Only] The version of BYOIP API.
32158
32182
  # Corresponds to the JSON property `byoipApiVersion`
32159
32183
  # @return [String]
@@ -32205,6 +32229,11 @@ module Google
32205
32229
  # @return [String]
32206
32230
  attr_accessor :kind
32207
32231
 
32232
+ # The public delegated prefix mode for IPv6 only.
32233
+ # Corresponds to the JSON property `mode`
32234
+ # @return [String]
32235
+ attr_accessor :mode
32236
+
32208
32237
  # Name of the resource. Provided by the client when the resource is created. The
32209
32238
  # name must be 1-63 characters long, and comply with RFC1035. Specifically, the
32210
32239
  # name must be 1-63 characters long and match the regular expression `[a-z]([-a-
@@ -32256,6 +32285,7 @@ module Google
32256
32285
 
32257
32286
  # Update properties of this object
32258
32287
  def update!(**args)
32288
+ @allocatable_prefix_length = args[:allocatable_prefix_length] if args.key?(:allocatable_prefix_length)
32259
32289
  @byoip_api_version = args[:byoip_api_version] if args.key?(:byoip_api_version)
32260
32290
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
32261
32291
  @description = args[:description] if args.key?(:description)
@@ -32264,6 +32294,7 @@ module Google
32264
32294
  @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
32265
32295
  @is_live_migration = args[:is_live_migration] if args.key?(:is_live_migration)
32266
32296
  @kind = args[:kind] if args.key?(:kind)
32297
+ @mode = args[:mode] if args.key?(:mode)
32267
32298
  @name = args[:name] if args.key?(:name)
32268
32299
  @parent_prefix = args[:parent_prefix] if args.key?(:parent_prefix)
32269
32300
  @public_delegated_sub_prefixs = args[:public_delegated_sub_prefixs] if args.key?(:public_delegated_sub_prefixs)
@@ -32520,6 +32551,11 @@ module Google
32520
32551
  class PublicDelegatedPrefixPublicDelegatedSubPrefix
32521
32552
  include Google::Apis::Core::Hashable
32522
32553
 
32554
+ # The allocatable prefix length supported by this PublicDelegatedSubPrefix.
32555
+ # Corresponds to the JSON property `allocatablePrefixLength`
32556
+ # @return [Fixnum]
32557
+ attr_accessor :allocatable_prefix_length
32558
+
32523
32559
  # Name of the project scoping this PublicDelegatedSubPrefix.
32524
32560
  # Corresponds to the JSON property `delegateeProject`
32525
32561
  # @return [String]
@@ -32544,6 +32580,11 @@ module Google
32544
32580
  attr_accessor :is_address
32545
32581
  alias_method :is_address?, :is_address
32546
32582
 
32583
+ # The PublicDelegatedSubPrefix mode for IPv6 only.
32584
+ # Corresponds to the JSON property `mode`
32585
+ # @return [String]
32586
+ attr_accessor :mode
32587
+
32547
32588
  # The name of the sub public delegated prefix.
32548
32589
  # Corresponds to the JSON property `name`
32549
32590
  # @return [String]
@@ -32566,10 +32607,12 @@ module Google
32566
32607
 
32567
32608
  # Update properties of this object
32568
32609
  def update!(**args)
32610
+ @allocatable_prefix_length = args[:allocatable_prefix_length] if args.key?(:allocatable_prefix_length)
32569
32611
  @delegatee_project = args[:delegatee_project] if args.key?(:delegatee_project)
32570
32612
  @description = args[:description] if args.key?(:description)
32571
32613
  @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
32572
32614
  @is_address = args[:is_address] if args.key?(:is_address)
32615
+ @mode = args[:mode] if args.key?(:mode)
32573
32616
  @name = args[:name] if args.key?(:name)
32574
32617
  @region = args[:region] if args.key?(:region)
32575
32618
  @status = args[:status] if args.key?(:status)
@@ -32830,6 +32873,12 @@ module Google
32830
32873
  # @return [String]
32831
32874
  attr_accessor :name
32832
32875
 
32876
+ # [Output Only] Warning of fetching the `quotas` field for this region. This
32877
+ # field is populated only if fetching of the `quotas` field fails.
32878
+ # Corresponds to the JSON property `quotaStatusWarning`
32879
+ # @return [Google::Apis::ComputeBeta::Region::QuotaStatusWarning]
32880
+ attr_accessor :quota_status_warning
32881
+
32833
32882
  # [Output Only] Quotas assigned to this region.
32834
32883
  # Corresponds to the JSON property `quotas`
32835
32884
  # @return [Array<Google::Apis::ComputeBeta::Quota>]
@@ -32869,12 +32918,78 @@ module Google
32869
32918
  @id = args[:id] if args.key?(:id)
32870
32919
  @kind = args[:kind] if args.key?(:kind)
32871
32920
  @name = args[:name] if args.key?(:name)
32921
+ @quota_status_warning = args[:quota_status_warning] if args.key?(:quota_status_warning)
32872
32922
  @quotas = args[:quotas] if args.key?(:quotas)
32873
32923
  @self_link = args[:self_link] if args.key?(:self_link)
32874
32924
  @status = args[:status] if args.key?(:status)
32875
32925
  @supports_pzs = args[:supports_pzs] if args.key?(:supports_pzs)
32876
32926
  @zones = args[:zones] if args.key?(:zones)
32877
32927
  end
32928
+
32929
+ # [Output Only] Warning of fetching the `quotas` field for this region. This
32930
+ # field is populated only if fetching of the `quotas` field fails.
32931
+ class QuotaStatusWarning
32932
+ include Google::Apis::Core::Hashable
32933
+
32934
+ # [Output Only] A warning code, if applicable. For example, Compute Engine
32935
+ # returns NO_RESULTS_ON_PAGE if there are no results in the response.
32936
+ # Corresponds to the JSON property `code`
32937
+ # @return [String]
32938
+ attr_accessor :code
32939
+
32940
+ # [Output Only] Metadata about this warning in key: value format. For example: "
32941
+ # data": [ ` "key": "scope", "value": "zones/us-east1-d" `
32942
+ # Corresponds to the JSON property `data`
32943
+ # @return [Array<Google::Apis::ComputeBeta::Region::QuotaStatusWarning::Datum>]
32944
+ attr_accessor :data
32945
+
32946
+ # [Output Only] A human-readable description of the warning code.
32947
+ # Corresponds to the JSON property `message`
32948
+ # @return [String]
32949
+ attr_accessor :message
32950
+
32951
+ def initialize(**args)
32952
+ update!(**args)
32953
+ end
32954
+
32955
+ # Update properties of this object
32956
+ def update!(**args)
32957
+ @code = args[:code] if args.key?(:code)
32958
+ @data = args[:data] if args.key?(:data)
32959
+ @message = args[:message] if args.key?(:message)
32960
+ end
32961
+
32962
+ #
32963
+ class Datum
32964
+ include Google::Apis::Core::Hashable
32965
+
32966
+ # [Output Only] A key that provides more detail on the warning being returned.
32967
+ # For example, for warnings where there are no results in a list request for a
32968
+ # particular zone, this key might be scope and the key value might be the zone
32969
+ # name. Other examples might be a key indicating a deprecated resource and a
32970
+ # suggested replacement, or a warning about invalid network settings (for
32971
+ # example, if an instance attempts to perform IP forwarding but is not enabled
32972
+ # for IP forwarding).
32973
+ # Corresponds to the JSON property `key`
32974
+ # @return [String]
32975
+ attr_accessor :key
32976
+
32977
+ # [Output Only] A warning data value corresponding to the key.
32978
+ # Corresponds to the JSON property `value`
32979
+ # @return [String]
32980
+ attr_accessor :value
32981
+
32982
+ def initialize(**args)
32983
+ update!(**args)
32984
+ end
32985
+
32986
+ # Update properties of this object
32987
+ def update!(**args)
32988
+ @key = args[:key] if args.key?(:key)
32989
+ @value = args[:value] if args.key?(:value)
32990
+ end
32991
+ end
32992
+ end
32878
32993
  end
32879
32994
 
32880
32995
  #
@@ -34708,7 +34823,6 @@ module Google
34708
34823
  attr_accessor :share_settings
34709
34824
 
34710
34825
  # This reservation type allows to pre allocate specific instance configuration.
34711
- # Next ID: 6
34712
34826
  # Corresponds to the JSON property `specificReservation`
34713
34827
  # @return [Google::Apis::ComputeBeta::AllocationSpecificSkuReservation]
34714
34828
  attr_accessor :specific_reservation
@@ -35320,7 +35434,7 @@ module Google
35320
35434
  attr_accessor :disk_consistency_group_policy
35321
35435
 
35322
35436
  # A GroupPlacementPolicy specifies resource placement configuration. It
35323
- # specifies the failure bucket separation as well as network locality
35437
+ # specifies the failure bucket separation
35324
35438
  # Corresponds to the JSON property `groupPlacementPolicy`
35325
35439
  # @return [Google::Apis::ComputeBeta::ResourcePolicyGroupPlacementPolicy]
35326
35440
  attr_accessor :group_placement_policy
@@ -35583,7 +35697,7 @@ module Google
35583
35697
  end
35584
35698
 
35585
35699
  # A GroupPlacementPolicy specifies resource placement configuration. It
35586
- # specifies the failure bucket separation as well as network locality
35700
+ # specifies the failure bucket separation
35587
35701
  class ResourcePolicyGroupPlacementPolicy
35588
35702
  include Google::Apis::Core::Hashable
35589
35703
 
@@ -37068,7 +37182,8 @@ module Google
37068
37182
  attr_accessor :enable_ipv4
37069
37183
  alias_method :enable_ipv4?, :enable_ipv4
37070
37184
 
37071
- # Enable IPv6 traffic over BGP Peer. If not specified, it is disabled by default.
37185
+ # Enable IPv6 traffic over BGP Peer. It is enabled by default if the
37186
+ # peerIpAddress is version 6.
37072
37187
  # Corresponds to the JSON property `enableIpv6`
37073
37188
  # @return [Boolean]
37074
37189
  attr_accessor :enable_ipv6
@@ -37076,14 +37191,16 @@ module Google
37076
37191
 
37077
37192
  # List of export policies applied to this peer, in the order they must be
37078
37193
  # evaluated. The name must correspond to an existing policy that has
37079
- # ROUTE_POLICY_TYPE_EXPORT type.
37194
+ # ROUTE_POLICY_TYPE_EXPORT type. Note that Route Policies are currently
37195
+ # available in preview. Please use Beta API to use Route Policies.
37080
37196
  # Corresponds to the JSON property `exportPolicies`
37081
37197
  # @return [Array<String>]
37082
37198
  attr_accessor :export_policies
37083
37199
 
37084
37200
  # List of import policies applied to this peer, in the order they must be
37085
37201
  # evaluated. The name must correspond to an existing policy that has
37086
- # ROUTE_POLICY_TYPE_IMPORT type.
37202
+ # ROUTE_POLICY_TYPE_IMPORT type. Note that Route Policies are currently
37203
+ # available in preview. Please use Beta API to use Route Policies.
37087
37204
  # Corresponds to the JSON property `importPolicies`
37088
37205
  # @return [Array<String>]
37089
37206
  attr_accessor :import_policies
@@ -37093,8 +37210,7 @@ module Google
37093
37210
  # @return [String]
37094
37211
  attr_accessor :interface_name
37095
37212
 
37096
- # IP address of the interface inside Google Cloud Platform. Only IPv4 is
37097
- # supported.
37213
+ # IP address of the interface inside Google Cloud Platform.
37098
37214
  # Corresponds to the JSON property `ipAddress`
37099
37215
  # @return [String]
37100
37216
  attr_accessor :ip_address
@@ -37142,8 +37258,7 @@ module Google
37142
37258
  # @return [Fixnum]
37143
37259
  attr_accessor :peer_asn
37144
37260
 
37145
- # IP address of the BGP interface outside Google Cloud Platform. Only IPv4 is
37146
- # supported.
37261
+ # IP address of the BGP interface outside Google Cloud Platform.
37147
37262
  # Corresponds to the JSON property `peerIpAddress`
37148
37263
  # @return [String]
37149
37264
  attr_accessor :peer_ip_address
@@ -37275,10 +37390,15 @@ module Google
37275
37390
  class RouterInterface
37276
37391
  include Google::Apis::Core::Hashable
37277
37392
 
37278
- # IP address and range of the interface. The IP range must be in the RFC3927
37279
- # link-local IP address space. The value must be a CIDR-formatted string, for
37280
- # example: 169.254.0.1/30. NOTE: Do not truncate the address as it represents
37281
- # the IP address of the interface.
37393
+ # IP address and range of the interface. - For Internet Protocol version 4 (IPv4)
37394
+ # , the IP range must be in the RFC3927 link-local IP address space. The value
37395
+ # must be a CIDR-formatted string, for example, 169.254.0.1/30. Note: Do not
37396
+ # truncate the IP address, as it represents the IP address of the interface. -
37397
+ # For Internet Protocol version 6 (IPv6), the value must be a unique local
37398
+ # address (ULA) range from fdff:1::/64 with a mask length of 126 or less. This
37399
+ # value should be a CIDR-formatted string, for example, fc00:0:1:1::1/112.
37400
+ # Within the router's VPC, this IPv6 prefix will be reserved exclusively for
37401
+ # this connection and cannot be used for any other purpose.
37282
37402
  # Corresponds to the JSON property `ipRange`
37283
37403
  # @return [String]
37284
37404
  attr_accessor :ip_range
@@ -37914,7 +38034,8 @@ module Google
37914
38034
  attr_accessor :enable_ipv4
37915
38035
  alias_method :enable_ipv4?, :enable_ipv4
37916
38036
 
37917
- # Enable IPv6 traffic over BGP Peer. If not specified, it is disabled by default.
38037
+ # Enable IPv6 traffic over BGP Peer. It is enabled by default if the
38038
+ # peerIpAddress is version 6.
37918
38039
  # Corresponds to the JSON property `enableIpv6`
37919
38040
  # @return [Boolean]
37920
38041
  attr_accessor :enable_ipv6
@@ -41055,13 +41176,21 @@ module Google
41055
41176
  # @return [String]
41056
41177
  attr_accessor :connection_preference
41057
41178
 
41058
- # Projects that are allowed to connect to this service attachment.
41179
+ # Specifies which consumer projects or networks are allowed to connect to the
41180
+ # service attachment. Each project or network has a connection limit. A given
41181
+ # service attachment can manage connections at either the project or network
41182
+ # level. Therefore, both the accept and reject lists for a given service
41183
+ # attachment must contain either only projects or only networks.
41059
41184
  # Corresponds to the JSON property `consumerAcceptLists`
41060
41185
  # @return [Array<Google::Apis::ComputeBeta::ServiceAttachmentConsumerProjectLimit>]
41061
41186
  attr_accessor :consumer_accept_lists
41062
41187
 
41063
- # Projects that are not allowed to connect to this service attachment. The
41064
- # project can be specified using its id or number.
41188
+ # Specifies a list of projects or networks that are not allowed to connect to
41189
+ # this service attachment. The project can be specified using its project ID or
41190
+ # project number and the network can be specified using its URL. A given service
41191
+ # attachment can manage connections at either the project or network level.
41192
+ # Therefore, both the reject and accept lists for a given service attachment
41193
+ # must contain either only projects or only networks.
41065
41194
  # Corresponds to the JSON property `consumerRejectLists`
41066
41195
  # @return [Array<String>]
41067
41196
  attr_accessor :consumer_reject_lists
@@ -46934,7 +47063,7 @@ module Google
46934
47063
 
46935
47064
  # URLs to networkservices.HttpFilter resources enabled for xDS clients using
46936
47065
  # this configuration. For example, https://networkservices.googleapis.com/beta/
46937
- # projects/project/locations/ locationhttpFilters/httpFilter Only filters that
47066
+ # projects/project/locations/ location/httpFilters/httpFilter Only filters that
46938
47067
  # handle outbound connection and stream events may be specified. These filters
46939
47068
  # work in conjunction with a default set of HTTP filters that may already be
46940
47069
  # configured by Traffic Director. Traffic Director will determine the final
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComputeBeta
18
18
  # Version of the google-apis-compute_beta gem
19
- GEM_VERSION = "0.98.0"
19
+ GEM_VERSION = "0.100.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240326"
25
+ REVISION = "20240421"
26
26
  end
27
27
  end
28
28
  end
@@ -4182,6 +4182,18 @@ module Google
4182
4182
 
4183
4183
  class Region
4184
4184
  class Representation < Google::Apis::Core::JsonRepresentation; end
4185
+
4186
+ class QuotaStatusWarning
4187
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4188
+
4189
+ class Datum
4190
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4191
+
4192
+ include Google::Apis::Core::JsonObjectSupport
4193
+ end
4194
+
4195
+ include Google::Apis::Core::JsonObjectSupport
4196
+ end
4185
4197
 
4186
4198
  include Google::Apis::Core::JsonObjectSupport
4187
4199
  end
@@ -9206,6 +9218,7 @@ module Google
9206
9218
  property :description, as: 'description'
9207
9219
  property :fingerprint, :base64 => true, as: 'fingerprint'
9208
9220
  property :id, :numeric_string => true, as: 'id'
9221
+ property :ip_collection, as: 'ipCollection'
9209
9222
  property :ip_version, as: 'ipVersion'
9210
9223
  property :is_mirroring_collector, as: 'isMirroringCollector'
9211
9224
  property :kind, as: 'kind'
@@ -13127,6 +13140,7 @@ module Google
13127
13140
  # @private
13128
13141
  class Representation < Google::Apis::Core::JsonRepresentation
13129
13142
  hash :annotations, as: 'annotations'
13143
+ property :client_destination_port, as: 'clientDestinationPort'
13130
13144
  property :client_port, as: 'clientPort'
13131
13145
  property :fqdn, as: 'fqdn'
13132
13146
  property :instance, as: 'instance'
@@ -14721,6 +14735,7 @@ module Google
14721
14735
  class PublicDelegatedPrefix
14722
14736
  # @private
14723
14737
  class Representation < Google::Apis::Core::JsonRepresentation
14738
+ property :allocatable_prefix_length, as: 'allocatablePrefixLength'
14724
14739
  property :byoip_api_version, as: 'byoipApiVersion'
14725
14740
  property :creation_timestamp, as: 'creationTimestamp'
14726
14741
  property :description, as: 'description'
@@ -14729,6 +14744,7 @@ module Google
14729
14744
  property :ip_cidr_range, as: 'ipCidrRange'
14730
14745
  property :is_live_migration, as: 'isLiveMigration'
14731
14746
  property :kind, as: 'kind'
14747
+ property :mode, as: 'mode'
14732
14748
  property :name, as: 'name'
14733
14749
  property :parent_prefix, as: 'parentPrefix'
14734
14750
  collection :public_delegated_sub_prefixs, as: 'publicDelegatedSubPrefixs', class: Google::Apis::ComputeBeta::PublicDelegatedPrefixPublicDelegatedSubPrefix, decorator: Google::Apis::ComputeBeta::PublicDelegatedPrefixPublicDelegatedSubPrefix::Representation
@@ -14807,10 +14823,12 @@ module Google
14807
14823
  class PublicDelegatedPrefixPublicDelegatedSubPrefix
14808
14824
  # @private
14809
14825
  class Representation < Google::Apis::Core::JsonRepresentation
14826
+ property :allocatable_prefix_length, as: 'allocatablePrefixLength'
14810
14827
  property :delegatee_project, as: 'delegateeProject'
14811
14828
  property :description, as: 'description'
14812
14829
  property :ip_cidr_range, as: 'ipCidrRange'
14813
14830
  property :is_address, as: 'isAddress'
14831
+ property :mode, as: 'mode'
14814
14832
  property :name, as: 'name'
14815
14833
  property :region, as: 'region'
14816
14834
  property :status, as: 'status'
@@ -14887,6 +14905,8 @@ module Google
14887
14905
  property :id, :numeric_string => true, as: 'id'
14888
14906
  property :kind, as: 'kind'
14889
14907
  property :name, as: 'name'
14908
+ property :quota_status_warning, as: 'quotaStatusWarning', class: Google::Apis::ComputeBeta::Region::QuotaStatusWarning, decorator: Google::Apis::ComputeBeta::Region::QuotaStatusWarning::Representation
14909
+
14890
14910
  collection :quotas, as: 'quotas', class: Google::Apis::ComputeBeta::Quota, decorator: Google::Apis::ComputeBeta::Quota::Representation
14891
14911
 
14892
14912
  property :self_link, as: 'selfLink'
@@ -14894,6 +14914,24 @@ module Google
14894
14914
  property :supports_pzs, as: 'supportsPzs'
14895
14915
  collection :zones, as: 'zones'
14896
14916
  end
14917
+
14918
+ class QuotaStatusWarning
14919
+ # @private
14920
+ class Representation < Google::Apis::Core::JsonRepresentation
14921
+ property :code, as: 'code'
14922
+ collection :data, as: 'data', class: Google::Apis::ComputeBeta::Region::QuotaStatusWarning::Datum, decorator: Google::Apis::ComputeBeta::Region::QuotaStatusWarning::Datum::Representation
14923
+
14924
+ property :message, as: 'message'
14925
+ end
14926
+
14927
+ class Datum
14928
+ # @private
14929
+ class Representation < Google::Apis::Core::JsonRepresentation
14930
+ property :key, as: 'key'
14931
+ property :value, as: 'value'
14932
+ end
14933
+ end
14934
+ end
14897
14935
  end
14898
14936
 
14899
14937
  class RegionAddressesMoveRequest
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-compute_beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.98.0
4
+ version: 0.100.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-04-07 00:00:00.000000000 Z
11
+ date: 2024-04-28 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-compute_beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.98.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.100.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
63
63
  post_install_message:
64
64
  rdoc_options: []