google-apis-compute_beta 0.37.0 → 0.40.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: e58a9e4cca74c8e73cd4c33138f192e57283bf9775fff23c4e25246ac20af50f
4
- data.tar.gz: 4cc4756522e7f3f6743d3d93e77ca41a443c2622a46547d2f130df1414c3d4de
3
+ metadata.gz: f371d27835dcfe356326cebbf7238d8c7a8b1c330607888723e127aaf61b497e
4
+ data.tar.gz: f62f336f74a657995ed32fd53ac12b73fb20ae81d1740818e0c941d1d697590b
5
5
  SHA512:
6
- metadata.gz: 7fce79e4062169a019bb6c0d05ee88fa839c4a2554b500069e3fb981d0a2f61038f921edf73821c37bbc03a30a722619ef58d5fa588a1d1667013e0ddfb092f1
7
- data.tar.gz: 6952b1793eeb3dcc211ddfa2bc359913c2164c35c819ee1eef013195893d016769e8df65618123dc4e6472d3a1bd2dec0c508b13f426aff74c60e97a3f506499
6
+ metadata.gz: cab73bd944224c102c19af9a2addd054293553085e73160417ad95d9bd8f83491f16532ccce9c30bd6d909b02886013a208bb09f4ec44a0752a9b59d2769114a
7
+ data.tar.gz: c375d9da48fe37b0fa64c22a5b53c286fd1997e1646dac2f5aebb865dee6f73d230c927b255532003c98ebe3f4cb53e91d506a1ffb2701ab0f0e7176e4e1403a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Release history for google-apis-compute_beta
2
2
 
3
+ ### v0.40.0 (2022-06-30)
4
+
5
+ * Regenerated using generator version 0.8.0
6
+
7
+ ### v0.39.0 (2022-06-23)
8
+
9
+ * Regenerated from discovery document revision 20220614
10
+ * Regenerated using generator version 0.7.0
11
+
12
+ ### v0.38.0 (2022-06-14)
13
+
14
+ * Regenerated from discovery document revision 20220607
15
+ * Regenerated using generator version 0.6.0
16
+
3
17
  ### v0.37.0 (2022-06-10)
4
18
 
5
19
  * Regenerated from discovery document revision 20220531
@@ -8802,8 +8802,7 @@ module Google
8802
8802
  attr_accessor :id
8803
8803
 
8804
8804
  # The IP Version that will be used by this forwarding rule. Valid options are
8805
- # IPV4 or IPV6. This can only be specified for an external global forwarding
8806
- # rule.
8805
+ # IPV4 or IPV6.
8807
8806
  # Corresponds to the JSON property `ipVersion`
8808
8807
  # @return [String]
8809
8808
  attr_accessor :ip_version
@@ -41598,6 +41597,11 @@ module Google
41598
41597
  # @return [Fixnum]
41599
41598
  attr_accessor :num_total_nat_ports
41600
41599
 
41600
+ # Information about mappings provided by rules in this NAT.
41601
+ # Corresponds to the JSON property `ruleMappings`
41602
+ # @return [Array<Google::Apis::ComputeBeta::VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings>]
41603
+ attr_accessor :rule_mappings
41604
+
41601
41605
  # Alias IP range for this interface endpoint. It will be a private (RFC 1918) IP
41602
41606
  # range. Examples: "10.33.4.55/32", or "192.168.5.0/24".
41603
41607
  # Corresponds to the JSON property `sourceAliasIpRange`
@@ -41619,11 +41623,62 @@ module Google
41619
41623
  @nat_ip_port_ranges = args[:nat_ip_port_ranges] if args.key?(:nat_ip_port_ranges)
41620
41624
  @num_total_drain_nat_ports = args[:num_total_drain_nat_ports] if args.key?(:num_total_drain_nat_ports)
41621
41625
  @num_total_nat_ports = args[:num_total_nat_ports] if args.key?(:num_total_nat_ports)
41626
+ @rule_mappings = args[:rule_mappings] if args.key?(:rule_mappings)
41622
41627
  @source_alias_ip_range = args[:source_alias_ip_range] if args.key?(:source_alias_ip_range)
41623
41628
  @source_virtual_ip = args[:source_virtual_ip] if args.key?(:source_virtual_ip)
41624
41629
  end
41625
41630
  end
41626
41631
 
41632
+ # Contains information of NAT Mappings provided by a NAT Rule.
41633
+ class VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings
41634
+ include Google::Apis::Core::Hashable
41635
+
41636
+ # List of all drain IP:port-range mappings assigned to this interface by this
41637
+ # rule. These ranges are inclusive, that is, both the first and the last ports
41638
+ # can be used for NAT. Example: ["2.2.2.2:12345-12355", "1.1.1.1:2234-2234"].
41639
+ # Corresponds to the JSON property `drainNatIpPortRanges`
41640
+ # @return [Array<String>]
41641
+ attr_accessor :drain_nat_ip_port_ranges
41642
+
41643
+ # A list of all IP:port-range mappings assigned to this interface by this rule.
41644
+ # These ranges are inclusive, that is, both the first and the last ports can be
41645
+ # used for NAT. Example: ["2.2.2.2:12345-12355", "1.1.1.1:2234-2234"].
41646
+ # Corresponds to the JSON property `natIpPortRanges`
41647
+ # @return [Array<String>]
41648
+ attr_accessor :nat_ip_port_ranges
41649
+
41650
+ # Total number of drain ports across all NAT IPs allocated to this interface by
41651
+ # this rule. It equals the aggregated port number in the field
41652
+ # drain_nat_ip_port_ranges.
41653
+ # Corresponds to the JSON property `numTotalDrainNatPorts`
41654
+ # @return [Fixnum]
41655
+ attr_accessor :num_total_drain_nat_ports
41656
+
41657
+ # Total number of ports across all NAT IPs allocated to this interface by this
41658
+ # rule. It equals the aggregated port number in the field nat_ip_port_ranges.
41659
+ # Corresponds to the JSON property `numTotalNatPorts`
41660
+ # @return [Fixnum]
41661
+ attr_accessor :num_total_nat_ports
41662
+
41663
+ # Rule number of the NAT Rule.
41664
+ # Corresponds to the JSON property `ruleNumber`
41665
+ # @return [Fixnum]
41666
+ attr_accessor :rule_number
41667
+
41668
+ def initialize(**args)
41669
+ update!(**args)
41670
+ end
41671
+
41672
+ # Update properties of this object
41673
+ def update!(**args)
41674
+ @drain_nat_ip_port_ranges = args[:drain_nat_ip_port_ranges] if args.key?(:drain_nat_ip_port_ranges)
41675
+ @nat_ip_port_ranges = args[:nat_ip_port_ranges] if args.key?(:nat_ip_port_ranges)
41676
+ @num_total_drain_nat_ports = args[:num_total_drain_nat_ports] if args.key?(:num_total_drain_nat_ports)
41677
+ @num_total_nat_ports = args[:num_total_nat_ports] if args.key?(:num_total_nat_ports)
41678
+ @rule_number = args[:rule_number] if args.key?(:rule_number)
41679
+ end
41680
+ end
41681
+
41627
41682
  # Contains a list of VmEndpointNatMappings.
41628
41683
  class VmEndpointNatMappingsList
41629
41684
  include Google::Apis::Core::Hashable
@@ -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.37.0"
19
+ GEM_VERSION = "0.40.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.5.0"
22
+ GENERATOR_VERSION = "0.8.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220531"
25
+ REVISION = "20220614"
26
26
  end
27
27
  end
28
28
  end
@@ -5482,6 +5482,12 @@ module Google
5482
5482
  include Google::Apis::Core::JsonObjectSupport
5483
5483
  end
5484
5484
 
5485
+ class VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings
5486
+ class Representation < Google::Apis::Core::JsonRepresentation; end
5487
+
5488
+ include Google::Apis::Core::JsonObjectSupport
5489
+ end
5490
+
5485
5491
  class VmEndpointNatMappingsList
5486
5492
  class Representation < Google::Apis::Core::JsonRepresentation; end
5487
5493
 
@@ -15931,11 +15937,24 @@ module Google
15931
15937
  collection :nat_ip_port_ranges, as: 'natIpPortRanges'
15932
15938
  property :num_total_drain_nat_ports, as: 'numTotalDrainNatPorts'
15933
15939
  property :num_total_nat_ports, as: 'numTotalNatPorts'
15940
+ collection :rule_mappings, as: 'ruleMappings', class: Google::Apis::ComputeBeta::VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings, decorator: Google::Apis::ComputeBeta::VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings::Representation
15941
+
15934
15942
  property :source_alias_ip_range, as: 'sourceAliasIpRange'
15935
15943
  property :source_virtual_ip, as: 'sourceVirtualIp'
15936
15944
  end
15937
15945
  end
15938
15946
 
15947
+ class VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings
15948
+ # @private
15949
+ class Representation < Google::Apis::Core::JsonRepresentation
15950
+ collection :drain_nat_ip_port_ranges, as: 'drainNatIpPortRanges'
15951
+ collection :nat_ip_port_ranges, as: 'natIpPortRanges'
15952
+ property :num_total_drain_nat_ports, as: 'numTotalDrainNatPorts'
15953
+ property :num_total_nat_ports, as: 'numTotalNatPorts'
15954
+ property :rule_number, as: 'ruleNumber'
15955
+ end
15956
+ end
15957
+
15939
15958
  class VmEndpointNatMappingsList
15940
15959
  # @private
15941
15960
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -9911,7 +9911,9 @@ module Google
9911
9911
  # group is performing on the instance. For example, if the group is still
9912
9912
  # creating an instance, the currentAction is CREATING. If a previous action
9913
9913
  # failed, the list displays the errors for that failed action. The orderBy query
9914
- # parameter is not supported.
9914
+ # parameter is not supported. The `pageToken` query parameter is supported only
9915
+ # in the alpha and beta API and only if the group's `listManagedInstancesResults`
9916
+ # field is set to `PAGINATED`.
9915
9917
  # @param [String] project
9916
9918
  # Project ID for this request.
9917
9919
  # @param [String] zone
@@ -26100,6 +26102,9 @@ module Google
26100
26102
  # Lists the instances in the managed instance group and instances that are
26101
26103
  # scheduled to be created. The list includes any current actions that the group
26102
26104
  # has scheduled for its instances. The orderBy query parameter is not supported.
26105
+ # The `pageToken` query parameter is supported only in the alpha and beta API
26106
+ # and only if the group's `listManagedInstancesResults` field is set to `
26107
+ # PAGINATED`.
26103
26108
  # @param [String] project
26104
26109
  # Project ID for this request.
26105
26110
  # @param [String] region
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.37.0
4
+ version: 0.40.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: 2022-06-13 00:00:00.000000000 Z
11
+ date: 2022-07-04 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.5'
19
+ version: '0.7'
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.5'
29
+ version: '0.7'
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-compute_beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.37.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.40.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: []