google-apis-compute_beta 0.32.0 → 0.33.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: 85b021434524c9d443e5aef3f133b0a98d3ece761e75791c8ab67635c2ea8004
4
- data.tar.gz: bc5d391849a3036f160337cdb75f2f6463d7837252f95d1bbd5be6e5b55d56c6
3
+ metadata.gz: 29d386e17d1c3cbe3bdf8673aacf5f861ac9d95e6baa8c6dd139b9b17d174e1a
4
+ data.tar.gz: 36035ca7d4f857426729a4e21a804785dbc65b10669cd5f2f73ec9181a06bf56
5
5
  SHA512:
6
- metadata.gz: b72fac32edef24d34440b098e03d84847fcc3f003eefa503d0df39f05134f9d3b5ff9ecb35ad7468906881b3e16616f63d6e8060fc19d3c8cc60050ad9cee8e9
7
- data.tar.gz: 5d598303fe4aa4adfa7add2c2c01153f1d856d68f503c033f48c27a085154e9fe48bdaf8a47d2379097db83bfedbda9fc93e4dbf611fb59e4cd6d67e598399cd
6
+ metadata.gz: 53f3c899cf3dcea97a3e91193b9243eb65cc8c78526623be664c22869c64b3e4fe96ad93ad2d801967d2c8759be51ab3a2a060882226da53c71a97f73309de7a
7
+ data.tar.gz: 48395c2d60b225131c466336055fbea1e86672640e2db82c00a26a2c1b354994e9fcb7d7bcae9255fed15d2be645567ff23cb0f585c24bc69993b06faf215d31
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_beta
2
2
 
3
+ ### v0.33.0 (2022-04-29)
4
+
5
+ * Regenerated from discovery document revision 20220426
6
+
3
7
  ### v0.32.0 (2022-04-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20220420
@@ -8525,6 +8525,12 @@ module Google
8525
8525
  class FirewallPolicyRuleMatcher
8526
8526
  include Google::Apis::Core::Hashable
8527
8527
 
8528
+ # Address groups which should be matched against the traffic destination.
8529
+ # Maximum number of destination address groups is 10.
8530
+ # Corresponds to the JSON property `destAddressGroups`
8531
+ # @return [Array<String>]
8532
+ attr_accessor :dest_address_groups
8533
+
8528
8534
  # CIDR IP address range. Maximum number of destination CIDR IP ranges allowed is
8529
8535
  # 5000.
8530
8536
  # Corresponds to the JSON property `destIpRanges`
@@ -8550,6 +8556,12 @@ module Google
8550
8556
  # @return [Array<Google::Apis::ComputeBeta::FirewallPolicyRuleMatcherLayer4Config>]
8551
8557
  attr_accessor :layer4_configs
8552
8558
 
8559
+ # Address groups which should be matched against the traffic source. Maximum
8560
+ # number of source address groups is 10.
8561
+ # Corresponds to the JSON property `srcAddressGroups`
8562
+ # @return [Array<String>]
8563
+ attr_accessor :src_address_groups
8564
+
8553
8565
  # CIDR IP address range. Maximum number of source CIDR IP ranges allowed is 5000.
8554
8566
  # Corresponds to the JSON property `srcIpRanges`
8555
8567
  # @return [Array<String>]
@@ -8582,10 +8594,12 @@ module Google
8582
8594
 
8583
8595
  # Update properties of this object
8584
8596
  def update!(**args)
8597
+ @dest_address_groups = args[:dest_address_groups] if args.key?(:dest_address_groups)
8585
8598
  @dest_ip_ranges = args[:dest_ip_ranges] if args.key?(:dest_ip_ranges)
8586
8599
  @dest_region_codes = args[:dest_region_codes] if args.key?(:dest_region_codes)
8587
8600
  @dest_threat_intelligences = args[:dest_threat_intelligences] if args.key?(:dest_threat_intelligences)
8588
8601
  @layer4_configs = args[:layer4_configs] if args.key?(:layer4_configs)
8602
+ @src_address_groups = args[:src_address_groups] if args.key?(:src_address_groups)
8589
8603
  @src_ip_ranges = args[:src_ip_ranges] if args.key?(:src_ip_ranges)
8590
8604
  @src_region_codes = args[:src_region_codes] if args.key?(:src_region_codes)
8591
8605
  @src_secure_tags = args[:src_secure_tags] if args.key?(:src_secure_tags)
@@ -8881,6 +8895,14 @@ module Google
8881
8895
  # @return [String]
8882
8896
  attr_accessor :network_tier
8883
8897
 
8898
+ # This is used in PSC consumer ForwardingRule to control whether it should try
8899
+ # to auto-generate a DNS zone or not. Non-PSC forwarding rules do not use this
8900
+ # field.
8901
+ # Corresponds to the JSON property `noAutomateDnsZone`
8902
+ # @return [Boolean]
8903
+ attr_accessor :no_automate_dns_zone
8904
+ alias_method :no_automate_dns_zone?, :no_automate_dns_zone
8905
+
8884
8906
  # This field can be used only if: - Load balancing scheme is one of EXTERNAL,
8885
8907
  # INTERNAL_SELF_MANAGED or INTERNAL_MANAGED - IPProtocol is one of TCP, UDP, or
8886
8908
  # SCTP. Packets addressed to ports in the specified range will be forwarded to
@@ -9002,6 +9024,7 @@ module Google
9002
9024
  @name = args[:name] if args.key?(:name)
9003
9025
  @network = args[:network] if args.key?(:network)
9004
9026
  @network_tier = args[:network_tier] if args.key?(:network_tier)
9027
+ @no_automate_dns_zone = args[:no_automate_dns_zone] if args.key?(:no_automate_dns_zone)
9005
9028
  @port_range = args[:port_range] if args.key?(:port_range)
9006
9029
  @ports = args[:ports] if args.key?(:ports)
9007
9030
  @psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
@@ -21782,6 +21805,12 @@ module Google
21782
21805
  # @return [Fixnum]
21783
21806
  attr_accessor :peer_mtu
21784
21807
 
21808
+ # Which IP version(s) of traffic and routes are allowed to be imported or
21809
+ # exported between peer networks. The default value is IPV4_ONLY.
21810
+ # Corresponds to the JSON property `stackType`
21811
+ # @return [String]
21812
+ attr_accessor :stack_type
21813
+
21785
21814
  # [Output Only] State for the peering, either `ACTIVE` or `INACTIVE`. The
21786
21815
  # peering is `ACTIVE` when there's a matching configuration in the peer network.
21787
21816
  # Corresponds to the JSON property `state`
@@ -21808,6 +21837,7 @@ module Google
21808
21837
  @name = args[:name] if args.key?(:name)
21809
21838
  @network = args[:network] if args.key?(:network)
21810
21839
  @peer_mtu = args[:peer_mtu] if args.key?(:peer_mtu)
21840
+ @stack_type = args[:stack_type] if args.key?(:stack_type)
21811
21841
  @state = args[:state] if args.key?(:state)
21812
21842
  @state_details = args[:state_details] if args.key?(:state_details)
21813
21843
  end
@@ -31210,6 +31240,12 @@ module Google
31210
31240
  attr_accessor :enable_endpoint_independent_mapping
31211
31241
  alias_method :enable_endpoint_independent_mapping?, :enable_endpoint_independent_mapping
31212
31242
 
31243
+ # List of NAT-ted endpoint types supported by the Nat Gateway. If the list is
31244
+ # empty, then it will be equivalent to include ENDPOINT_TYPE_VM
31245
+ # Corresponds to the JSON property `endpointTypes`
31246
+ # @return [Array<String>]
31247
+ attr_accessor :endpoint_types
31248
+
31213
31249
  # Timeout (in seconds) for ICMP connections. Defaults to 30s if not set.
31214
31250
  # Corresponds to the JSON property `icmpIdleTimeoutSec`
31215
31251
  # @return [Fixnum]
@@ -31317,6 +31353,7 @@ module Google
31317
31353
  @drain_nat_ips = args[:drain_nat_ips] if args.key?(:drain_nat_ips)
31318
31354
  @enable_dynamic_port_allocation = args[:enable_dynamic_port_allocation] if args.key?(:enable_dynamic_port_allocation)
31319
31355
  @enable_endpoint_independent_mapping = args[:enable_endpoint_independent_mapping] if args.key?(:enable_endpoint_independent_mapping)
31356
+ @endpoint_types = args[:endpoint_types] if args.key?(:endpoint_types)
31320
31357
  @icmp_idle_timeout_sec = args[:icmp_idle_timeout_sec] if args.key?(:icmp_idle_timeout_sec)
31321
31358
  @log_config = args[:log_config] if args.key?(:log_config)
31322
31359
  @max_ports_per_vm = args[:max_ports_per_vm] if args.key?(:max_ports_per_vm)
@@ -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.32.0"
19
+ GEM_VERSION = "0.33.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220420"
25
+ REVISION = "20220426"
26
26
  end
27
27
  end
28
28
  end
@@ -7613,11 +7613,13 @@ module Google
7613
7613
  class FirewallPolicyRuleMatcher
7614
7614
  # @private
7615
7615
  class Representation < Google::Apis::Core::JsonRepresentation
7616
+ collection :dest_address_groups, as: 'destAddressGroups'
7616
7617
  collection :dest_ip_ranges, as: 'destIpRanges'
7617
7618
  collection :dest_region_codes, as: 'destRegionCodes'
7618
7619
  collection :dest_threat_intelligences, as: 'destThreatIntelligences'
7619
7620
  collection :layer4_configs, as: 'layer4Configs', class: Google::Apis::ComputeBeta::FirewallPolicyRuleMatcherLayer4Config, decorator: Google::Apis::ComputeBeta::FirewallPolicyRuleMatcherLayer4Config::Representation
7620
7621
 
7622
+ collection :src_address_groups, as: 'srcAddressGroups'
7621
7623
  collection :src_ip_ranges, as: 'srcIpRanges'
7622
7624
  collection :src_region_codes, as: 'srcRegionCodes'
7623
7625
  collection :src_secure_tags, as: 'srcSecureTags', class: Google::Apis::ComputeBeta::FirewallPolicyRuleSecureTag, decorator: Google::Apis::ComputeBeta::FirewallPolicyRuleSecureTag::Representation
@@ -7674,6 +7676,7 @@ module Google
7674
7676
  property :name, as: 'name'
7675
7677
  property :network, as: 'network'
7676
7678
  property :network_tier, as: 'networkTier'
7679
+ property :no_automate_dns_zone, as: 'noAutomateDnsZone'
7677
7680
  property :port_range, as: 'portRange'
7678
7681
  collection :ports, as: 'ports'
7679
7682
  property :psc_connection_id, :numeric_string => true, as: 'pscConnectionId'
@@ -10855,6 +10858,7 @@ module Google
10855
10858
  property :name, as: 'name'
10856
10859
  property :network, as: 'network'
10857
10860
  property :peer_mtu, as: 'peerMtu'
10861
+ property :stack_type, as: 'stackType'
10858
10862
  property :state, as: 'state'
10859
10863
  property :state_details, as: 'stateDetails'
10860
10864
  end
@@ -13301,6 +13305,7 @@ module Google
13301
13305
  collection :drain_nat_ips, as: 'drainNatIps'
13302
13306
  property :enable_dynamic_port_allocation, as: 'enableDynamicPortAllocation'
13303
13307
  property :enable_endpoint_independent_mapping, as: 'enableEndpointIndependentMapping'
13308
+ collection :endpoint_types, as: 'endpointTypes'
13304
13309
  property :icmp_idle_timeout_sec, as: 'icmpIdleTimeoutSec'
13305
13310
  property :log_config, as: 'logConfig', class: Google::Apis::ComputeBeta::RouterNatLogConfig, decorator: Google::Apis::ComputeBeta::RouterNatLogConfig::Representation
13306
13311
 
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.32.0
4
+ version: 0.33.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-04-25 00:00:00.000000000 Z
11
+ date: 2022-05-02 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.32.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.33.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: []