google-apis-compute_beta 0.9.0 → 0.10.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: ddd7488ab673fba76c65083cab940d4e6a2db83c2b94809b599248ab7d68bf49
4
- data.tar.gz: 96d1013193b78e8501bc6b2a5316efe63e732e5a566edbee423f643178886312
3
+ metadata.gz: f4ef9cc5cabc48debbf6c88396eecd1c704ae1768f0c539e47dde0f113f547a9
4
+ data.tar.gz: 4900bc0d5635c87fb1be617ffbae370c9b37c3124d48d2e67382e1515c043cfb
5
5
  SHA512:
6
- metadata.gz: 8d6d862705118b761703e90a63de2e694d69762758053cb75a251aef412961f0102835489618890626e1236a8a147a4f76f646e878b7427a8e0b1f4a6125f9ec
7
- data.tar.gz: c6a6da29af2b3564d031aa1bec0359962d0ddb2883f525217c0e43913cd88e1afe20bb5e4b6c05f3260d0abc7bb070a0e1842355cc1a4a41b956ad01812453f6
6
+ metadata.gz: f56c66e76fbf23d1f2d231ba4840756f0032355c033fa04015cc34ddd9dfa8457813ebd5b6e01055b65321ad502e9a59bbaa14ea15ed1017bd9e5d2599e6af4d
7
+ data.tar.gz: 79ca63679cd1e1c249b2029d676fe391c41b41efdde49ffcd11c4d3b2ac72035f942c8351007a95400cf506d6dfd25f186669502a63f68d1e064657dfa8217df
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-compute_beta
2
2
 
3
+ ### v0.10.0 (2021-05-20)
4
+
5
+ * Regenerated from discovery document revision 20210505
6
+ * Unspecified changes
7
+
3
8
  ### v0.9.0 (2021-05-05)
4
9
 
5
10
  * Regenerated from discovery document revision 20210415
@@ -465,6 +465,19 @@ module Google
465
465
  class AccessConfig
466
466
  include Google::Apis::Core::Hashable
467
467
 
468
+ # [Output Only] The first IPv6 address of the external IPv6 range associated
469
+ # with this instance, prefix length is stored in externalIpv6PrefixLength in
470
+ # ipv6AccessConfig. The field is output only, an IPv6 address from a subnetwork
471
+ # associated with the instance will be allocated dynamically.
472
+ # Corresponds to the JSON property `externalIpv6`
473
+ # @return [String]
474
+ attr_accessor :external_ipv6
475
+
476
+ # [Output Only] The prefix length of the external IPv6 range.
477
+ # Corresponds to the JSON property `externalIpv6PrefixLength`
478
+ # @return [Fixnum]
479
+ attr_accessor :external_ipv6_prefix_length
480
+
468
481
  # [Output Only] Type of the resource. Always compute#accessConfig for access
469
482
  # configs.
470
483
  # Corresponds to the JSON property `kind`
@@ -522,6 +535,8 @@ module Google
522
535
 
523
536
  # Update properties of this object
524
537
  def update!(**args)
538
+ @external_ipv6 = args[:external_ipv6] if args.key?(:external_ipv6)
539
+ @external_ipv6_prefix_length = args[:external_ipv6_prefix_length] if args.key?(:external_ipv6_prefix_length)
525
540
  @kind = args[:kind] if args.key?(:kind)
526
541
  @name = args[:name] if args.key?(:name)
527
542
  @nat_ip = args[:nat_ip] if args.key?(:nat_ip)
@@ -3375,10 +3390,9 @@ module Google
3375
3390
  # @return [Google::Apis::ComputeBeta::Subsetting]
3376
3391
  attr_accessor :subsetting
3377
3392
 
3378
- # The backend service timeout has a different meaning depending on the type of
3379
- # load balancer. For more information see, Backend service settings The default
3380
- # is 30 seconds. The full range of timeout values allowed is 1 - 2,147,483,647
3381
- # seconds.
3393
+ # Not supported when the backend service is referenced by a URL map that is
3394
+ # bound to target gRPC proxy that has validateForProxyless field set to true.
3395
+ # Instead, use maxStreamDuration.
3382
3396
  # Corresponds to the JSON property `timeoutSec`
3383
3397
  # @return [Fixnum]
3384
3398
  attr_accessor :timeout_sec
@@ -4528,7 +4542,10 @@ module Google
4528
4542
  end
4529
4543
  end
4530
4544
 
4531
- #
4545
+ # A transient resource used in compute.instances.bulkInsert and compute.
4546
+ # regionInstances.bulkInsert and compute.regionInstances.recommendLocations.
4547
+ # This resource is not persisted anywhere, it is used only for processing the
4548
+ # requests.
4532
4549
  class BulkInsertInstanceResource
4533
4550
  include Google::Apis::Core::Hashable
4534
4551
 
@@ -4735,14 +4752,14 @@ module Google
4735
4752
  # @return [Google::Apis::ComputeBeta::Duration]
4736
4753
  attr_accessor :connect_timeout
4737
4754
 
4738
- # The maximum number of connections to the backend service. If not specified,
4739
- # there is no limit.
4755
+ # Not supported when the backend service is referenced by a URL map that is
4756
+ # bound to target gRPC proxy that has validateForProxyless field set to true.
4740
4757
  # Corresponds to the JSON property `maxConnections`
4741
4758
  # @return [Fixnum]
4742
4759
  attr_accessor :max_connections
4743
4760
 
4744
- # The maximum number of pending requests allowed to the backend service. If not
4745
- # specified, there is no limit.
4761
+ # Not supported when the backend service is referenced by a URL map that is
4762
+ # bound to target gRPC proxy that has validateForProxyless field set to true.
4746
4763
  # Corresponds to the JSON property `maxPendingRequests`
4747
4764
  # @return [Fixnum]
4748
4765
  attr_accessor :max_pending_requests
@@ -4753,16 +4770,14 @@ module Google
4753
4770
  # @return [Fixnum]
4754
4771
  attr_accessor :max_requests
4755
4772
 
4756
- # Maximum requests for a single connection to the backend service. This
4757
- # parameter is respected by both the HTTP/1.1 and HTTP/2 implementations. If not
4758
- # specified, there is no limit. Setting this parameter to 1 will effectively
4759
- # disable keep alive.
4773
+ # Not supported when the backend service is referenced by a URL map that is
4774
+ # bound to target gRPC proxy that has validateForProxyless field set to true.
4760
4775
  # Corresponds to the JSON property `maxRequestsPerConnection`
4761
4776
  # @return [Fixnum]
4762
4777
  attr_accessor :max_requests_per_connection
4763
4778
 
4764
- # The maximum number of parallel retries allowed to the backend cluster. If not
4765
- # specified, the default is 1.
4779
+ # Not supported when the backend service is referenced by a URL map that is
4780
+ # bound to target gRPC proxy that has validateForProxyless field set to true.
4766
4781
  # Corresponds to the JSON property `maxRetries`
4767
4782
  # @return [Fixnum]
4768
4783
  attr_accessor :max_retries
@@ -8452,10 +8467,11 @@ module Google
8452
8467
  attr_accessor :ip_address
8453
8468
 
8454
8469
  # The IP protocol to which this rule applies.
8455
- # For protocol forwarding, valid options are TCP, UDP, ESP, AH, SCTP and ICMP.
8470
+ # For protocol forwarding, valid options are TCP, UDP, ESP, AH, SCTP, ICMP and
8471
+ # L3_DEFAULT.
8456
8472
  # The valid IP protocols are different for different load balancing products:
8457
8473
  # - Internal TCP/UDP Load Balancing: The load balancing scheme is INTERNAL, and
8458
- # one of TCP, UDP or ALL is valid.
8474
+ # one of TCP, UDP or L3_DEFAULT is valid.
8459
8475
  # - Traffic Director: The load balancing scheme is INTERNAL_SELF_MANAGED, and
8460
8476
  # only TCP is valid.
8461
8477
  # - Internal HTTP(S) Load Balancing: The load balancing scheme is
@@ -8463,17 +8479,18 @@ module Google
8463
8479
  # - HTTP(S), SSL Proxy, and TCP Proxy Load Balancing: The load balancing scheme
8464
8480
  # is EXTERNAL and only TCP is valid.
8465
8481
  # - Network Load Balancing: The load balancing scheme is EXTERNAL, and one of
8466
- # TCP or UDP is valid.
8482
+ # TCP, UDP or L3_DEFAULT is valid.
8467
8483
  # Corresponds to the JSON property `IPProtocol`
8468
8484
  # @return [String]
8469
8485
  attr_accessor :ip_protocol
8470
8486
 
8471
- # This field is used along with the backend_service field for internal load
8472
- # balancing or with the target field for internal TargetInstance. This field
8473
- # cannot be used with port or portRange fields.
8474
- # When the load balancing scheme is INTERNAL and protocol is TCP/UDP, specify
8475
- # this field to allow packets addressed to any ports will be forwarded to the
8476
- # backends configured with this forwarding rule.
8487
+ # This field is used along with the backend_service field for Internal TCP/UDP
8488
+ # Load Balancing or Network Load Balancing, or with the target field for
8489
+ # internal and external TargetInstance.
8490
+ # You can only use one of ports and port_range, or allPorts. The three are
8491
+ # mutually exclusive.
8492
+ # For TCP, UDP and SCTP traffic, packets addressed to any ports will be
8493
+ # forwarded to the target or backendService.
8477
8494
  # Corresponds to the JSON property `allPorts`
8478
8495
  # @return [Boolean]
8479
8496
  attr_accessor :all_ports
@@ -8635,13 +8652,16 @@ module Google
8635
8652
  # @return [String]
8636
8653
  attr_accessor :network_tier
8637
8654
 
8638
- # This field can be used only if: * Load balancing scheme is one of EXTERNAL,
8639
- # INTERNAL_SELF_MANAGED or INTERNAL_MANAGED, and * IPProtocol is one of TCP, UDP,
8640
- # or SCTP.
8655
+ # This field can be used only if:
8656
+ # - Load balancing scheme is one of EXTERNAL, INTERNAL_SELF_MANAGED or
8657
+ # INTERNAL_MANAGED
8658
+ # - IPProtocol is one of TCP, UDP, or SCTP.
8641
8659
  # Packets addressed to ports in the specified range will be forwarded to target
8642
- # or backend_service. You can only use one of ports, port_range, or allPorts.
8643
- # The three are mutually exclusive. Forwarding rules with the same [IPAddress,
8644
- # IPProtocol] pair must have disjoint port ranges.
8660
+ # or backend_service.
8661
+ # You can only use one of ports, port_range, or allPorts. The three are mutually
8662
+ # exclusive.
8663
+ # Forwarding rules with the same [IPAddress, IPProtocol] pair must have disjoint
8664
+ # ports.
8645
8665
  # Some types of forwarding target have constraints on the acceptable ports:
8646
8666
  # - TargetHttpProxy: 80, 8080
8647
8667
  # - TargetHttpsProxy: 443
@@ -8662,8 +8682,8 @@ module Google
8662
8682
  # You can only use one of ports and port_range, or allPorts. The three are
8663
8683
  # mutually exclusive.
8664
8684
  # You can specify a list of up to five ports, which can be non-contiguous.
8665
- # For Internal TCP/UDP Load Balancing, if you specify allPorts, you should not
8666
- # specify ports.
8685
+ # Forwarding rules with the same [IPAddress, IPProtocol] pair must have disjoint
8686
+ # ports.
8667
8687
  # For more information, see [Port specifications](/load-balancing/docs/
8668
8688
  # forwarding-rule-concepts#port_specifications).
8669
8689
  # Corresponds to the JSON property `ports`
@@ -8675,6 +8695,11 @@ module Google
8675
8695
  # @return [Fixnum]
8676
8696
  attr_accessor :psc_connection_id
8677
8697
 
8698
+ #
8699
+ # Corresponds to the JSON property `pscConnectionStatus`
8700
+ # @return [String]
8701
+ attr_accessor :psc_connection_status
8702
+
8678
8703
  # [Output Only] URL of the region where the regional forwarding rule resides.
8679
8704
  # This field is not applicable to global forwarding rules. You must specify this
8680
8705
  # field as part of the HTTP request URL. It is not settable as a field in the
@@ -8758,6 +8783,7 @@ module Google
8758
8783
  @port_range = args[:port_range] if args.key?(:port_range)
8759
8784
  @ports = args[:ports] if args.key?(:ports)
8760
8785
  @psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
8786
+ @psc_connection_status = args[:psc_connection_status] if args.key?(:psc_connection_status)
8761
8787
  @region = args[:region] if args.key?(:region)
8762
8788
  @self_link = args[:self_link] if args.key?(:self_link)
8763
8789
  @service_directory_registrations = args[:service_directory_registrations] if args.key?(:service_directory_registrations)
@@ -10089,11 +10115,12 @@ module Google
10089
10115
 
10090
10116
  # List of URLs to the HealthCheck resources. Must have at least one HealthCheck,
10091
10117
  # and not more than 10. HealthCheck resources must have portSpecification=
10092
- # USE_SERVING_PORT. For regional HealthCheckService, the HealthCheck must be
10093
- # regional and in the same region. For global HealthCheckService, HealthCheck
10094
- # must be global. Mix of regional and global HealthChecks is not supported.
10095
- # Multiple regional HealthChecks must belong to the same region. Regional
10096
- # HealthChecks</code? must belong to the same region as zones of NEGs.
10118
+ # USE_SERVING_PORT or portSpecification=USE_FIXED_PORT. For regional
10119
+ # HealthCheckService, the HealthCheck must be regional and in the same region.
10120
+ # For global HealthCheckService, HealthCheck must be global. Mix of regional and
10121
+ # global HealthChecks is not supported. Multiple regional HealthChecks must
10122
+ # belong to the same region. Regional HealthChecks must belong to the same
10123
+ # region as zones of NEGs.
10097
10124
  # Corresponds to the JSON property `healthChecks`
10098
10125
  # @return [Array<String>]
10099
10126
  attr_accessor :health_checks
@@ -10723,6 +10750,9 @@ module Google
10723
10750
 
10724
10751
  # The HTTP status code used to abort the request.
10725
10752
  # The value must be between 200 and 599 inclusive.
10753
+ # For gRPC protocol, the gRPC status code is mapped to HTTP status code
10754
+ # according to this mapping table. HTTP status 200 is mapped to gRPC status
10755
+ # UNKNOWN. Injecting an OK status is currently not supported by Traffic Director.
10726
10756
  # Corresponds to the JSON property `httpStatus`
10727
10757
  # @return [Fixnum]
10728
10758
  attr_accessor :http_status
@@ -11386,8 +11416,8 @@ module Google
11386
11416
  # @return [Google::Apis::ComputeBeta::Duration]
11387
11417
  attr_accessor :per_try_timeout
11388
11418
 
11389
- # Specfies one or more conditions when this retry rule applies. Valid values are:
11390
- #
11419
+ # Specifies one or more conditions when this retry rule applies. Valid values
11420
+ # are:
11391
11421
  # - 5xx: Loadbalancer will attempt a retry if the backend service responds with
11392
11422
  # any 5xx response code, or if the backend service does not respond at all,
11393
11423
  # example: disconnects, reset, read timeout, connection failure, and refused
@@ -12067,13 +12097,17 @@ module Google
12067
12097
  # @return [Google::Apis::ComputeBeta::InitialStateConfig]
12068
12098
  attr_accessor :shielded_instance_initial_state
12069
12099
 
12070
- # URL of the source disk used to create this image. This can be a full or valid
12071
- # partial URL. You must provide either this property or the rawDisk.source
12072
- # property but not both to create an image. For example, the following are valid
12073
- # values:
12100
+ # URL of the source disk used to create this image. For example, the following
12101
+ # are valid values:
12074
12102
  # - https://www.googleapis.com/compute/v1/projects/project/zones/zone/disks/disk
12075
12103
  # - projects/project/zones/zone/disks/disk
12076
12104
  # - zones/zone/disks/disk
12105
+ # In order to create an image, you must provide the full or partial URL of one
12106
+ # of the following:
12107
+ # - The rawDisk.source URL
12108
+ # - The sourceDisk URL
12109
+ # - The sourceImage URL
12110
+ # - The sourceSnapshot URL
12077
12111
  # Corresponds to the JSON property `sourceDisk`
12078
12112
  # @return [String]
12079
12113
  attr_accessor :source_disk
@@ -12094,10 +12128,10 @@ module Google
12094
12128
  # URL of the source image used to create this image.
12095
12129
  # In order to create an image, you must provide the full or partial URL of one
12096
12130
  # of the following:
12097
- # - The selfLink URL
12098
- # - This property
12099
12131
  # - The rawDisk.source URL
12100
12132
  # - The sourceDisk URL
12133
+ # - The sourceImage URL
12134
+ # - The sourceSnapshot URL
12101
12135
  # Corresponds to the JSON property `sourceImage`
12102
12136
  # @return [String]
12103
12137
  attr_accessor :source_image
@@ -12118,11 +12152,10 @@ module Google
12118
12152
  # URL of the source snapshot used to create this image.
12119
12153
  # In order to create an image, you must provide the full or partial URL of one
12120
12154
  # of the following:
12121
- # - The selfLink URL
12122
- # - This property
12123
- # - The sourceImage URL
12124
12155
  # - The rawDisk.source URL
12125
12156
  # - The sourceDisk URL
12157
+ # - The sourceImage URL
12158
+ # - The sourceSnapshot URL
12126
12159
  # Corresponds to the JSON property `sourceSnapshot`
12127
12160
  # @return [String]
12128
12161
  attr_accessor :source_snapshot
@@ -12216,8 +12249,13 @@ module Google
12216
12249
  # @return [String]
12217
12250
  attr_accessor :sha1_checksum
12218
12251
 
12219
- # The full Google Cloud Storage URL where the disk image is stored. You must
12220
- # provide either this property or the sourceDisk property but not both.
12252
+ # The full Google Cloud Storage URL where the disk image is stored.
12253
+ # In order to create an image, you must provide the full or partial URL of one
12254
+ # of the following:
12255
+ # - The rawDisk.source URL
12256
+ # - The sourceDisk URL
12257
+ # - The sourceImage URL
12258
+ # - The sourceSnapshot URL
12221
12259
  # Corresponds to the JSON property `source`
12222
12260
  # @return [String]
12223
12261
  attr_accessor :source
@@ -12626,7 +12664,7 @@ module Google
12626
12664
  attr_accessor :satisfies_pzs
12627
12665
  alias_method :satisfies_pzs?, :satisfies_pzs
12628
12666
 
12629
- # Sets the scheduling options for an Instance. NextID: 20
12667
+ # Sets the scheduling options for an Instance. NextID: 21
12630
12668
  # Corresponds to the JSON property `scheduling`
12631
12669
  # @return [Google::Apis::ComputeBeta::Scheduling]
12632
12670
  attr_accessor :scheduling
@@ -13251,6 +13289,13 @@ module Google
13251
13289
  end
13252
13290
  end
13253
13291
 
13292
+ # Whether the instance is a standby. Properties of a standby instance comparing
13293
+ # to the regular instance: ======================================================
13294
+ # =================== | regular | standby =======================================
13295
+ # ================================== managed by IGM? | yes | yes added to the IG?
13296
+ # | yes | yes counts towards IGM's target size? | yes | no taken into account
13297
+ # by Autoscaler? | yes | no receives traffic from LB? | yes | no ================
13298
+ # =========================================================
13254
13299
  # Represents a Managed Instance Group resource.
13255
13300
  # An instance group is a collection of VM instances that you can manage as a
13256
13301
  # single entity. For more information, read Instance groups.
@@ -15400,7 +15445,7 @@ module Google
15400
15445
  # @return [Array<String>]
15401
15446
  attr_accessor :resource_policies
15402
15447
 
15403
- # Sets the scheduling options for an Instance. NextID: 20
15448
+ # Sets the scheduling options for an Instance. NextID: 21
15404
15449
  # Corresponds to the JSON property `scheduling`
15405
15450
  # @return [Google::Apis::ComputeBeta::Scheduling]
15406
15451
  attr_accessor :scheduling
@@ -18206,7 +18251,7 @@ module Google
18206
18251
  class LocationPolicyLocation
18207
18252
  include Google::Apis::Core::Hashable
18208
18253
 
18209
- # Preference for a given locaction: ALLOW or DENY.
18254
+ # Preference for a given location: ALLOW or DENY.
18210
18255
  # Corresponds to the JSON property `preference`
18211
18256
  # @return [String]
18212
18257
  attr_accessor :preference
@@ -20565,6 +20610,20 @@ module Google
20565
20610
  # @return [String]
20566
20611
  attr_accessor :fingerprint
20567
20612
 
20613
+ # An array of IPv6 access configurations for this interface. Currently, only one
20614
+ # IPv6 access config, DIRECT_IPV6, is supported. If there is no ipv6AccessConfig
20615
+ # specified, then this instance will have no external IPv6 Internet access.
20616
+ # Corresponds to the JSON property `ipv6AccessConfigs`
20617
+ # @return [Array<Google::Apis::ComputeBeta::AccessConfig>]
20618
+ attr_accessor :ipv6_access_configs
20619
+
20620
+ # [Output Only] One of EXTERNAL, INTERNAL to indicate whether the IP can be
20621
+ # accessed from the Internet. This field is always inherited from its subnetwork.
20622
+ # Valid only if stackType is IPV4_IPV6.
20623
+ # Corresponds to the JSON property `ipv6AccessType`
20624
+ # @return [String]
20625
+ attr_accessor :ipv6_access_type
20626
+
20568
20627
  # [Output Only] An IPv6 internal network address for this network interface.
20569
20628
  # Corresponds to the JSON property `ipv6Address`
20570
20629
  # @return [String]
@@ -20608,6 +20667,14 @@ module Google
20608
20667
  # @return [String]
20609
20668
  attr_accessor :nic_type
20610
20669
 
20670
+ # The stack type for this network interface to identify whether the IPv6 feature
20671
+ # is enabled or not. If not specified, IPV4_ONLY will be used.
20672
+ # This field can be both set at instance creation and update network interface
20673
+ # operations.
20674
+ # Corresponds to the JSON property `stackType`
20675
+ # @return [String]
20676
+ attr_accessor :stack_type
20677
+
20611
20678
  # The URL of the Subnetwork resource for this instance. If the network resource
20612
20679
  # is in legacy mode, do not specify this field. If the network is in auto subnet
20613
20680
  # mode, specifying the subnetwork is optional. If the network is in custom
@@ -20630,12 +20697,15 @@ module Google
20630
20697
  @access_configs = args[:access_configs] if args.key?(:access_configs)
20631
20698
  @alias_ip_ranges = args[:alias_ip_ranges] if args.key?(:alias_ip_ranges)
20632
20699
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
20700
+ @ipv6_access_configs = args[:ipv6_access_configs] if args.key?(:ipv6_access_configs)
20701
+ @ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
20633
20702
  @ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
20634
20703
  @kind = args[:kind] if args.key?(:kind)
20635
20704
  @name = args[:name] if args.key?(:name)
20636
20705
  @network = args[:network] if args.key?(:network)
20637
20706
  @network_ip = args[:network_ip] if args.key?(:network_ip)
20638
20707
  @nic_type = args[:nic_type] if args.key?(:nic_type)
20708
+ @stack_type = args[:stack_type] if args.key?(:stack_type)
20639
20709
  @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
20640
20710
  end
20641
20711
  end
@@ -30734,7 +30804,7 @@ module Google
30734
30804
  end
30735
30805
  end
30736
30806
 
30737
- # Sets the scheduling options for an Instance. NextID: 20
30807
+ # Sets the scheduling options for an Instance. NextID: 21
30738
30808
  class Scheduling
30739
30809
  include Google::Apis::Core::Hashable
30740
30810
 
@@ -32141,9 +32211,9 @@ module Google
32141
32211
  include Google::Apis::Core::Hashable
32142
32212
 
32143
32213
  # A list of ServiceAttachments contained in this scope.
32144
- # Corresponds to the JSON property `resources`
32214
+ # Corresponds to the JSON property `serviceAttachments`
32145
32215
  # @return [Array<Google::Apis::ComputeBeta::ServiceAttachment>]
32146
- attr_accessor :resources
32216
+ attr_accessor :service_attachments
32147
32217
 
32148
32218
  # Informational warning which replaces the list of service attachments when the
32149
32219
  # list is empty.
@@ -32157,7 +32227,7 @@ module Google
32157
32227
 
32158
32228
  # Update properties of this object
32159
32229
  def update!(**args)
32160
- @resources = args[:resources] if args.key?(:resources)
32230
+ @service_attachments = args[:service_attachments] if args.key?(:service_attachments)
32161
32231
  @warning = args[:warning] if args.key?(:warning)
32162
32232
  end
32163
32233
 
@@ -32944,7 +33014,7 @@ module Google
32944
33014
  # @return [String]
32945
33015
  attr_accessor :post_key_revocation_action_type
32946
33016
 
32947
- # Sets the scheduling options for an Instance. NextID: 20
33017
+ # Sets the scheduling options for an Instance. NextID: 21
32948
33018
  # Corresponds to the JSON property `scheduling`
32949
33019
  # @return [Google::Apis::ComputeBeta::Scheduling]
32950
33020
  attr_accessor :scheduling
@@ -33942,6 +34012,12 @@ module Google
33942
34012
  attr_accessor :enable_flow_logs
33943
34013
  alias_method :enable_flow_logs?, :enable_flow_logs
33944
34014
 
34015
+ # [Output Only] The range of external IPv6 addresses that are owned by this
34016
+ # subnetwork.
34017
+ # Corresponds to the JSON property `externalIpv6Prefix`
34018
+ # @return [String]
34019
+ attr_accessor :external_ipv6_prefix
34020
+
33945
34021
  # Fingerprint of this resource. A hash of the contents stored in this object.
33946
34022
  # This field is used in optimistic locking. This field will be ignored when
33947
34023
  # inserting a Subnetwork. An up-to-date fingerprint must be provided in order to
@@ -33975,6 +34051,14 @@ module Google
33975
34051
  # @return [String]
33976
34052
  attr_accessor :ip_cidr_range
33977
34053
 
34054
+ # The access type of IPv6 address this subnet holds. It's immutable and can only
34055
+ # be specified during creation or the first time the subnet is updated into
34056
+ # IPV4_IPV6 dual stack. If the ipv6_type is EXTERNAL then this subnet cannot
34057
+ # enable direct path.
34058
+ # Corresponds to the JSON property `ipv6AccessType`
34059
+ # @return [String]
34060
+ attr_accessor :ipv6_access_type
34061
+
33978
34062
  # [Output Only] The range of internal IPv6 addresses that are owned by this
33979
34063
  # subnetwork.
33980
34064
  # Corresponds to the JSON property `ipv6CidrRange`
@@ -34065,6 +34149,13 @@ module Google
34065
34149
  # @return [String]
34066
34150
  attr_accessor :self_link
34067
34151
 
34152
+ # The stack type for this subnet to identify whether the IPv6 feature is enabled
34153
+ # or not. If not specified IPV4_ONLY will be used.
34154
+ # This field can be both set at resource creation time and updated using patch.
34155
+ # Corresponds to the JSON property `stackType`
34156
+ # @return [String]
34157
+ attr_accessor :stack_type
34158
+
34068
34159
  # [Output Only] The state of the subnetwork, which can be one of the following
34069
34160
  # values: READY: Subnetwork is created and ready to use DRAINING: only
34070
34161
  # applicable to subnetworks that have the purpose set to
@@ -34085,10 +34176,12 @@ module Google
34085
34176
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
34086
34177
  @description = args[:description] if args.key?(:description)
34087
34178
  @enable_flow_logs = args[:enable_flow_logs] if args.key?(:enable_flow_logs)
34179
+ @external_ipv6_prefix = args[:external_ipv6_prefix] if args.key?(:external_ipv6_prefix)
34088
34180
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
34089
34181
  @gateway_address = args[:gateway_address] if args.key?(:gateway_address)
34090
34182
  @id = args[:id] if args.key?(:id)
34091
34183
  @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
34184
+ @ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
34092
34185
  @ipv6_cidr_range = args[:ipv6_cidr_range] if args.key?(:ipv6_cidr_range)
34093
34186
  @kind = args[:kind] if args.key?(:kind)
34094
34187
  @log_config = args[:log_config] if args.key?(:log_config)
@@ -34101,6 +34194,7 @@ module Google
34101
34194
  @role = args[:role] if args.key?(:role)
34102
34195
  @secondary_ip_ranges = args[:secondary_ip_ranges] if args.key?(:secondary_ip_ranges)
34103
34196
  @self_link = args[:self_link] if args.key?(:self_link)
34197
+ @stack_type = args[:stack_type] if args.key?(:stack_type)
34104
34198
  @state = args[:state] if args.key?(:state)
34105
34199
  end
34106
34200
  end
@@ -35479,7 +35573,8 @@ module Google
35479
35573
  include Google::Apis::Core::Hashable
35480
35574
 
35481
35575
  # New set of SslCertificate resources to associate with this TargetHttpsProxy
35482
- # resource. Currently exactly one SslCertificate resource must be specified.
35576
+ # resource. At least one SSL certificate must be specified. Currently, you may
35577
+ # specify up to 15 SSL certificates.
35483
35578
  # Corresponds to the JSON property `sslCertificates`
35484
35579
  # @return [Array<String>]
35485
35580
  attr_accessor :ssl_certificates
@@ -35639,6 +35734,8 @@ module Google
35639
35734
  # URLs to SslCertificate resources that are used to authenticate connections
35640
35735
  # between users and the load balancer. At least one SSL certificate must be
35641
35736
  # specified. Currently, you may specify up to 15 SSL certificates.
35737
+ # sslCertificates do not apply when the load balancing scheme is set to
35738
+ # INTERNAL_SELF_MANAGED.
35642
35739
  # Corresponds to the JSON property `sslCertificates`
35643
35740
  # @return [Array<String>]
35644
35741
  attr_accessor :ssl_certificates
@@ -36990,7 +37087,8 @@ module Google
36990
37087
  include Google::Apis::Core::Hashable
36991
37088
 
36992
37089
  # New set of URLs to SslCertificate resources to associate with this
36993
- # TargetSslProxy. Currently exactly one ssl certificate must be specified.
37090
+ # TargetSslProxy. At least one SSL certificate must be specified. Currently, you
37091
+ # may specify up to 15 SSL certificates.
36994
37092
  # Corresponds to the JSON property `sslCertificates`
36995
37093
  # @return [Array<String>]
36996
37094
  attr_accessor :ssl_certificates
@@ -37064,7 +37162,8 @@ module Google
37064
37162
 
37065
37163
  # URLs to SslCertificate resources that are used to authenticate connections to
37066
37164
  # Backends. At least one SSL certificate must be specified. Currently, you may
37067
- # specify up to 15 SSL certificates.
37165
+ # specify up to 15 SSL certificates. sslCertificates do not apply when the load
37166
+ # balancing scheme is set to INTERNAL_SELF_MANAGED.
37068
37167
  # Corresponds to the JSON property `sslCertificates`
37069
37168
  # @return [Array<String>]
37070
37169
  attr_accessor :ssl_certificates
@@ -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.9.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210415"
25
+ REVISION = "20210505"
26
26
  end
27
27
  end
28
28
  end
@@ -5512,6 +5512,8 @@ module Google
5512
5512
  class AccessConfig
5513
5513
  # @private
5514
5514
  class Representation < Google::Apis::Core::JsonRepresentation
5515
+ property :external_ipv6, as: 'externalIpv6'
5516
+ property :external_ipv6_prefix_length, as: 'externalIpv6PrefixLength'
5515
5517
  property :kind, as: 'kind'
5516
5518
  property :name, as: 'name'
5517
5519
  property :nat_ip, as: 'natIP'
@@ -7313,6 +7315,7 @@ module Google
7313
7315
  property :port_range, as: 'portRange'
7314
7316
  collection :ports, as: 'ports'
7315
7317
  property :psc_connection_id, :numeric_string => true, as: 'pscConnectionId'
7318
+ property :psc_connection_status, as: 'pscConnectionStatus'
7316
7319
  property :region, as: 'region'
7317
7320
  property :self_link, as: 'selfLink'
7318
7321
  collection :service_directory_registrations, as: 'serviceDirectoryRegistrations', class: Google::Apis::ComputeBeta::ForwardingRuleServiceDirectoryRegistration, decorator: Google::Apis::ComputeBeta::ForwardingRuleServiceDirectoryRegistration::Representation
@@ -10234,12 +10237,16 @@ module Google
10234
10237
  collection :alias_ip_ranges, as: 'aliasIpRanges', class: Google::Apis::ComputeBeta::AliasIpRange, decorator: Google::Apis::ComputeBeta::AliasIpRange::Representation
10235
10238
 
10236
10239
  property :fingerprint, :base64 => true, as: 'fingerprint'
10240
+ collection :ipv6_access_configs, as: 'ipv6AccessConfigs', class: Google::Apis::ComputeBeta::AccessConfig, decorator: Google::Apis::ComputeBeta::AccessConfig::Representation
10241
+
10242
+ property :ipv6_access_type, as: 'ipv6AccessType'
10237
10243
  property :ipv6_address, as: 'ipv6Address'
10238
10244
  property :kind, as: 'kind'
10239
10245
  property :name, as: 'name'
10240
10246
  property :network, as: 'network'
10241
10247
  property :network_ip, as: 'networkIP'
10242
10248
  property :nic_type, as: 'nicType'
10249
+ property :stack_type, as: 'stackType'
10243
10250
  property :subnetwork, as: 'subnetwork'
10244
10251
  end
10245
10252
  end
@@ -13170,7 +13177,7 @@ module Google
13170
13177
  class ServiceAttachmentsScopedList
13171
13178
  # @private
13172
13179
  class Representation < Google::Apis::Core::JsonRepresentation
13173
- collection :resources, as: 'resources', class: Google::Apis::ComputeBeta::ServiceAttachment, decorator: Google::Apis::ComputeBeta::ServiceAttachment::Representation
13180
+ collection :service_attachments, as: 'serviceAttachments', class: Google::Apis::ComputeBeta::ServiceAttachment, decorator: Google::Apis::ComputeBeta::ServiceAttachment::Representation
13174
13181
 
13175
13182
  property :warning, as: 'warning', class: Google::Apis::ComputeBeta::ServiceAttachmentsScopedList::Warning, decorator: Google::Apis::ComputeBeta::ServiceAttachmentsScopedList::Warning::Representation
13176
13183
 
@@ -13627,10 +13634,12 @@ module Google
13627
13634
  property :creation_timestamp, as: 'creationTimestamp'
13628
13635
  property :description, as: 'description'
13629
13636
  property :enable_flow_logs, as: 'enableFlowLogs'
13637
+ property :external_ipv6_prefix, as: 'externalIpv6Prefix'
13630
13638
  property :fingerprint, :base64 => true, as: 'fingerprint'
13631
13639
  property :gateway_address, as: 'gatewayAddress'
13632
13640
  property :id, :numeric_string => true, as: 'id'
13633
13641
  property :ip_cidr_range, as: 'ipCidrRange'
13642
+ property :ipv6_access_type, as: 'ipv6AccessType'
13634
13643
  property :ipv6_cidr_range, as: 'ipv6CidrRange'
13635
13644
  property :kind, as: 'kind'
13636
13645
  property :log_config, as: 'logConfig', class: Google::Apis::ComputeBeta::SubnetworkLogConfig, decorator: Google::Apis::ComputeBeta::SubnetworkLogConfig::Representation
@@ -13645,6 +13654,7 @@ module Google
13645
13654
  collection :secondary_ip_ranges, as: 'secondaryIpRanges', class: Google::Apis::ComputeBeta::SubnetworkSecondaryRange, decorator: Google::Apis::ComputeBeta::SubnetworkSecondaryRange::Representation
13646
13655
 
13647
13656
  property :self_link, as: 'selfLink'
13657
+ property :stack_type, as: 'stackType'
13648
13658
  property :state, as: 'state'
13649
13659
  end
13650
13660
  end
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.9.0
4
+ version: 0.10.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: 2021-05-18 00:00:00.000000000 Z
11
+ date: 2021-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-compute_beta/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.9.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.10.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-compute_beta
57
57
  post_install_message:
58
58
  rdoc_options: []