google-apis-compute_v1 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: 8714ad5dfd5a7a8aac292826fcb44cfcbc77d629cb6d1a2b7b279dbf633aae2a
4
- data.tar.gz: 516fff2e1a8a5d8e1bbc1d47eabe7f634b36bff2fad8e1d547b2e1118308252b
3
+ metadata.gz: ae4de55085d1cdb4c46af006e4e367a6da487f376fe3d63803bb7999b6ce2d5e
4
+ data.tar.gz: bd75b291d4a029987dd4209f0450cedbf43685f171609ef546a80e7e6bddf56e
5
5
  SHA512:
6
- metadata.gz: d6cf039b03c787d2e0a2258808fcbf62fcc62c1d9f10fceb234563bfe9b5c44e22bb97353b0a0d24a703d900ff5a1aca4405eeca91d26fb970f01c83f69c4b93
7
- data.tar.gz: 7139a483b0d984a82ef344c0f96bb9470619ffb297666210c1b6a585c18c378b002544e1b345358ed33c74ea4aab3d694ecbe6c5032e24fc659c92d84cb97b66
6
+ metadata.gz: a8fee444e1f389b23d9620a59c6c845f376a1aecbb97da884d9f814e900d3289d2b99cfcb69a17d677bc0711663e6a20f10875c4f89b9ce9b4018c016cb79d71
7
+ data.tar.gz: b6619be96826f599b709146e84b7fecf33218ea0d680b8a5b1977c9058798e6eb4af9c85f266777c95fd24b0cd31b9deee8f1fc1e6cca0d99542c4f8d3f84cee
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-compute_v1
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)
@@ -3240,10 +3255,9 @@ module Google
3240
3255
  # @return [String]
3241
3256
  attr_accessor :session_affinity
3242
3257
 
3243
- # The backend service timeout has a different meaning depending on the type of
3244
- # load balancer. For more information see, Backend service settings The default
3245
- # is 30 seconds. The full range of timeout values allowed is 1 - 2,147,483,647
3246
- # seconds.
3258
+ # Not supported when the backend service is referenced by a URL map that is
3259
+ # bound to target gRPC proxy that has validateForProxyless field set to true.
3260
+ # Instead, use maxStreamDuration.
3247
3261
  # Corresponds to the JSON property `timeoutSec`
3248
3262
  # @return [Fixnum]
3249
3263
  attr_accessor :timeout_sec
@@ -4090,7 +4104,10 @@ module Google
4090
4104
  end
4091
4105
  end
4092
4106
 
4093
- #
4107
+ # A transient resource used in compute.instances.bulkInsert and compute.
4108
+ # regionInstances.bulkInsert and compute.regionInstances.recommendLocations.
4109
+ # This resource is not persisted anywhere, it is used only for processing the
4110
+ # requests.
4094
4111
  class BulkInsertInstanceResource
4095
4112
  include Google::Apis::Core::Hashable
4096
4113
 
@@ -4276,14 +4293,14 @@ module Google
4276
4293
  class CircuitBreakers
4277
4294
  include Google::Apis::Core::Hashable
4278
4295
 
4279
- # The maximum number of connections to the backend service. If not specified,
4280
- # there is no limit.
4296
+ # Not supported when the backend service is referenced by a URL map that is
4297
+ # bound to target gRPC proxy that has validateForProxyless field set to true.
4281
4298
  # Corresponds to the JSON property `maxConnections`
4282
4299
  # @return [Fixnum]
4283
4300
  attr_accessor :max_connections
4284
4301
 
4285
- # The maximum number of pending requests allowed to the backend service. If not
4286
- # specified, there is no limit.
4302
+ # Not supported when the backend service is referenced by a URL map that is
4303
+ # bound to target gRPC proxy that has validateForProxyless field set to true.
4287
4304
  # Corresponds to the JSON property `maxPendingRequests`
4288
4305
  # @return [Fixnum]
4289
4306
  attr_accessor :max_pending_requests
@@ -4294,16 +4311,14 @@ module Google
4294
4311
  # @return [Fixnum]
4295
4312
  attr_accessor :max_requests
4296
4313
 
4297
- # Maximum requests for a single connection to the backend service. This
4298
- # parameter is respected by both the HTTP/1.1 and HTTP/2 implementations. If not
4299
- # specified, there is no limit. Setting this parameter to 1 will effectively
4300
- # disable keep alive.
4314
+ # Not supported when the backend service is referenced by a URL map that is
4315
+ # bound to target gRPC proxy that has validateForProxyless field set to true.
4301
4316
  # Corresponds to the JSON property `maxRequestsPerConnection`
4302
4317
  # @return [Fixnum]
4303
4318
  attr_accessor :max_requests_per_connection
4304
4319
 
4305
- # The maximum number of parallel retries allowed to the backend cluster. If not
4306
- # specified, the default is 1.
4320
+ # Not supported when the backend service is referenced by a URL map that is
4321
+ # bound to target gRPC proxy that has validateForProxyless field set to true.
4307
4322
  # Corresponds to the JSON property `maxRetries`
4308
4323
  # @return [Fixnum]
4309
4324
  attr_accessor :max_retries
@@ -7932,10 +7947,11 @@ module Google
7932
7947
  attr_accessor :ip_address
7933
7948
 
7934
7949
  # The IP protocol to which this rule applies.
7935
- # For protocol forwarding, valid options are TCP, UDP, ESP, AH, SCTP and ICMP.
7950
+ # For protocol forwarding, valid options are TCP, UDP, ESP, AH, SCTP, ICMP and
7951
+ # L3_DEFAULT.
7936
7952
  # The valid IP protocols are different for different load balancing products:
7937
7953
  # - Internal TCP/UDP Load Balancing: The load balancing scheme is INTERNAL, and
7938
- # one of TCP, UDP or ALL is valid.
7954
+ # one of TCP, UDP or L3_DEFAULT is valid.
7939
7955
  # - Traffic Director: The load balancing scheme is INTERNAL_SELF_MANAGED, and
7940
7956
  # only TCP is valid.
7941
7957
  # - Internal HTTP(S) Load Balancing: The load balancing scheme is
@@ -7943,17 +7959,18 @@ module Google
7943
7959
  # - HTTP(S), SSL Proxy, and TCP Proxy Load Balancing: The load balancing scheme
7944
7960
  # is EXTERNAL and only TCP is valid.
7945
7961
  # - Network Load Balancing: The load balancing scheme is EXTERNAL, and one of
7946
- # TCP or UDP is valid.
7962
+ # TCP, UDP or L3_DEFAULT is valid.
7947
7963
  # Corresponds to the JSON property `IPProtocol`
7948
7964
  # @return [String]
7949
7965
  attr_accessor :ip_protocol
7950
7966
 
7951
- # This field is used along with the backend_service field for internal load
7952
- # balancing or with the target field for internal TargetInstance. This field
7953
- # cannot be used with port or portRange fields.
7954
- # When the load balancing scheme is INTERNAL and protocol is TCP/UDP, specify
7955
- # this field to allow packets addressed to any ports will be forwarded to the
7956
- # backends configured with this forwarding rule.
7967
+ # This field is used along with the backend_service field for Internal TCP/UDP
7968
+ # Load Balancing or Network Load Balancing, or with the target field for
7969
+ # internal and external TargetInstance.
7970
+ # You can only use one of ports and port_range, or allPorts. The three are
7971
+ # mutually exclusive.
7972
+ # For TCP, UDP and SCTP traffic, packets addressed to any ports will be
7973
+ # forwarded to the target or backendService.
7957
7974
  # Corresponds to the JSON property `allPorts`
7958
7975
  # @return [Boolean]
7959
7976
  attr_accessor :all_ports
@@ -8115,13 +8132,16 @@ module Google
8115
8132
  # @return [String]
8116
8133
  attr_accessor :network_tier
8117
8134
 
8118
- # This field can be used only if: * Load balancing scheme is one of EXTERNAL,
8119
- # INTERNAL_SELF_MANAGED or INTERNAL_MANAGED, and * IPProtocol is one of TCP, UDP,
8120
- # or SCTP.
8135
+ # This field can be used only if:
8136
+ # - Load balancing scheme is one of EXTERNAL, INTERNAL_SELF_MANAGED or
8137
+ # INTERNAL_MANAGED
8138
+ # - IPProtocol is one of TCP, UDP, or SCTP.
8121
8139
  # Packets addressed to ports in the specified range will be forwarded to target
8122
- # or backend_service. You can only use one of ports, port_range, or allPorts.
8123
- # The three are mutually exclusive. Forwarding rules with the same [IPAddress,
8124
- # IPProtocol] pair must have disjoint port ranges.
8140
+ # or backend_service.
8141
+ # You can only use one of ports, port_range, or allPorts. The three are mutually
8142
+ # exclusive.
8143
+ # Forwarding rules with the same [IPAddress, IPProtocol] pair must have disjoint
8144
+ # ports.
8125
8145
  # Some types of forwarding target have constraints on the acceptable ports:
8126
8146
  # - TargetHttpProxy: 80, 8080
8127
8147
  # - TargetHttpsProxy: 443
@@ -8142,8 +8162,8 @@ module Google
8142
8162
  # You can only use one of ports and port_range, or allPorts. The three are
8143
8163
  # mutually exclusive.
8144
8164
  # You can specify a list of up to five ports, which can be non-contiguous.
8145
- # For Internal TCP/UDP Load Balancing, if you specify allPorts, you should not
8146
- # specify ports.
8165
+ # Forwarding rules with the same [IPAddress, IPProtocol] pair must have disjoint
8166
+ # ports.
8147
8167
  # For more information, see [Port specifications](/load-balancing/docs/
8148
8168
  # forwarding-rule-concepts#port_specifications).
8149
8169
  # Corresponds to the JSON property `ports`
@@ -9569,11 +9589,12 @@ module Google
9569
9589
 
9570
9590
  # List of URLs to the HealthCheck resources. Must have at least one HealthCheck,
9571
9591
  # and not more than 10. HealthCheck resources must have portSpecification=
9572
- # USE_SERVING_PORT. For regional HealthCheckService, the HealthCheck must be
9573
- # regional and in the same region. For global HealthCheckService, HealthCheck
9574
- # must be global. Mix of regional and global HealthChecks is not supported.
9575
- # Multiple regional HealthChecks must belong to the same region. Regional
9576
- # HealthChecks</code? must belong to the same region as zones of NEGs.
9592
+ # USE_SERVING_PORT or portSpecification=USE_FIXED_PORT. For regional
9593
+ # HealthCheckService, the HealthCheck must be regional and in the same region.
9594
+ # For global HealthCheckService, HealthCheck must be global. Mix of regional and
9595
+ # global HealthChecks is not supported. Multiple regional HealthChecks must
9596
+ # belong to the same region. Regional HealthChecks must belong to the same
9597
+ # region as zones of NEGs.
9577
9598
  # Corresponds to the JSON property `healthChecks`
9578
9599
  # @return [Array<String>]
9579
9600
  attr_accessor :health_checks
@@ -10190,6 +10211,9 @@ module Google
10190
10211
 
10191
10212
  # The HTTP status code used to abort the request.
10192
10213
  # The value must be between 200 and 599 inclusive.
10214
+ # For gRPC protocol, the gRPC status code is mapped to HTTP status code
10215
+ # according to this mapping table. HTTP status 200 is mapped to gRPC status
10216
+ # UNKNOWN. Injecting an OK status is currently not supported by Traffic Director.
10193
10217
  # Corresponds to the JSON property `httpStatus`
10194
10218
  # @return [Fixnum]
10195
10219
  attr_accessor :http_status
@@ -10816,8 +10840,8 @@ module Google
10816
10840
  # @return [Google::Apis::ComputeV1::Duration]
10817
10841
  attr_accessor :per_try_timeout
10818
10842
 
10819
- # Specfies one or more conditions when this retry rule applies. Valid values are:
10820
- #
10843
+ # Specifies one or more conditions when this retry rule applies. Valid values
10844
+ # are:
10821
10845
  # - 5xx: Loadbalancer will attempt a retry if the backend service responds with
10822
10846
  # any 5xx response code, or if the backend service does not respond at all,
10823
10847
  # example: disconnects, reset, read timeout, connection failure, and refused
@@ -11474,13 +11498,17 @@ module Google
11474
11498
  # @return [Google::Apis::ComputeV1::InitialStateConfig]
11475
11499
  attr_accessor :shielded_instance_initial_state
11476
11500
 
11477
- # URL of the source disk used to create this image. This can be a full or valid
11478
- # partial URL. You must provide either this property or the rawDisk.source
11479
- # property but not both to create an image. For example, the following are valid
11480
- # values:
11501
+ # URL of the source disk used to create this image. For example, the following
11502
+ # are valid values:
11481
11503
  # - https://www.googleapis.com/compute/v1/projects/project/zones/zone/disks/disk
11482
11504
  # - projects/project/zones/zone/disks/disk
11483
11505
  # - zones/zone/disks/disk
11506
+ # In order to create an image, you must provide the full or partial URL of one
11507
+ # of the following:
11508
+ # - The rawDisk.source URL
11509
+ # - The sourceDisk URL
11510
+ # - The sourceImage URL
11511
+ # - The sourceSnapshot URL
11484
11512
  # Corresponds to the JSON property `sourceDisk`
11485
11513
  # @return [String]
11486
11514
  attr_accessor :source_disk
@@ -11501,10 +11529,10 @@ module Google
11501
11529
  # URL of the source image used to create this image.
11502
11530
  # In order to create an image, you must provide the full or partial URL of one
11503
11531
  # of the following:
11504
- # - The selfLink URL
11505
- # - This property
11506
11532
  # - The rawDisk.source URL
11507
11533
  # - The sourceDisk URL
11534
+ # - The sourceImage URL
11535
+ # - The sourceSnapshot URL
11508
11536
  # Corresponds to the JSON property `sourceImage`
11509
11537
  # @return [String]
11510
11538
  attr_accessor :source_image
@@ -11525,11 +11553,10 @@ module Google
11525
11553
  # URL of the source snapshot used to create this image.
11526
11554
  # In order to create an image, you must provide the full or partial URL of one
11527
11555
  # of the following:
11528
- # - The selfLink URL
11529
- # - This property
11530
- # - The sourceImage URL
11531
11556
  # - The rawDisk.source URL
11532
11557
  # - The sourceDisk URL
11558
+ # - The sourceImage URL
11559
+ # - The sourceSnapshot URL
11533
11560
  # Corresponds to the JSON property `sourceSnapshot`
11534
11561
  # @return [String]
11535
11562
  attr_accessor :source_snapshot
@@ -11623,8 +11650,13 @@ module Google
11623
11650
  # @return [String]
11624
11651
  attr_accessor :sha1_checksum
11625
11652
 
11626
- # The full Google Cloud Storage URL where the disk image is stored. You must
11627
- # provide either this property or the sourceDisk property but not both.
11653
+ # The full Google Cloud Storage URL where the disk image is stored.
11654
+ # In order to create an image, you must provide the full or partial URL of one
11655
+ # of the following:
11656
+ # - The rawDisk.source URL
11657
+ # - The sourceDisk URL
11658
+ # - The sourceImage URL
11659
+ # - The sourceSnapshot URL
11628
11660
  # Corresponds to the JSON property `source`
11629
11661
  # @return [String]
11630
11662
  attr_accessor :source
@@ -11995,7 +12027,7 @@ module Google
11995
12027
  attr_accessor :satisfies_pzs
11996
12028
  alias_method :satisfies_pzs?, :satisfies_pzs
11997
12029
 
11998
- # Sets the scheduling options for an Instance. NextID: 20
12030
+ # Sets the scheduling options for an Instance. NextID: 21
11999
12031
  # Corresponds to the JSON property `scheduling`
12000
12032
  # @return [Google::Apis::ComputeV1::Scheduling]
12001
12033
  attr_accessor :scheduling
@@ -12591,6 +12623,13 @@ module Google
12591
12623
  end
12592
12624
  end
12593
12625
 
12626
+ # Whether the instance is a standby. Properties of a standby instance comparing
12627
+ # to the regular instance: ======================================================
12628
+ # =================== | regular | standby =======================================
12629
+ # ================================== managed by IGM? | yes | yes added to the IG?
12630
+ # | yes | yes counts towards IGM's target size? | yes | no taken into account
12631
+ # by Autoscaler? | yes | no receives traffic from LB? | yes | no ================
12632
+ # =========================================================
12594
12633
  # Represents a Managed Instance Group resource.
12595
12634
  # An instance group is a collection of VM instances that you can manage as a
12596
12635
  # single entity. For more information, read Instance groups.
@@ -14616,7 +14655,7 @@ module Google
14616
14655
  # @return [Array<String>]
14617
14656
  attr_accessor :resource_policies
14618
14657
 
14619
- # Sets the scheduling options for an Instance. NextID: 20
14658
+ # Sets the scheduling options for an Instance. NextID: 21
14620
14659
  # Corresponds to the JSON property `scheduling`
14621
14660
  # @return [Google::Apis::ComputeV1::Scheduling]
14622
14661
  attr_accessor :scheduling
@@ -17277,7 +17316,7 @@ module Google
17277
17316
  class LocationPolicyLocation
17278
17317
  include Google::Apis::Core::Hashable
17279
17318
 
17280
- # Preference for a given locaction: ALLOW or DENY.
17319
+ # Preference for a given location: ALLOW or DENY.
17281
17320
  # Corresponds to the JSON property `preference`
17282
17321
  # @return [String]
17283
17322
  attr_accessor :preference
@@ -19338,6 +19377,20 @@ module Google
19338
19377
  # @return [String]
19339
19378
  attr_accessor :fingerprint
19340
19379
 
19380
+ # An array of IPv6 access configurations for this interface. Currently, only one
19381
+ # IPv6 access config, DIRECT_IPV6, is supported. If there is no ipv6AccessConfig
19382
+ # specified, then this instance will have no external IPv6 Internet access.
19383
+ # Corresponds to the JSON property `ipv6AccessConfigs`
19384
+ # @return [Array<Google::Apis::ComputeV1::AccessConfig>]
19385
+ attr_accessor :ipv6_access_configs
19386
+
19387
+ # [Output Only] One of EXTERNAL, INTERNAL to indicate whether the IP can be
19388
+ # accessed from the Internet. This field is always inherited from its subnetwork.
19389
+ # Valid only if stackType is IPV4_IPV6.
19390
+ # Corresponds to the JSON property `ipv6AccessType`
19391
+ # @return [String]
19392
+ attr_accessor :ipv6_access_type
19393
+
19341
19394
  # [Output Only] An IPv6 internal network address for this network interface.
19342
19395
  # Corresponds to the JSON property `ipv6Address`
19343
19396
  # @return [String]
@@ -19381,6 +19434,14 @@ module Google
19381
19434
  # @return [String]
19382
19435
  attr_accessor :nic_type
19383
19436
 
19437
+ # The stack type for this network interface to identify whether the IPv6 feature
19438
+ # is enabled or not. If not specified, IPV4_ONLY will be used.
19439
+ # This field can be both set at instance creation and update network interface
19440
+ # operations.
19441
+ # Corresponds to the JSON property `stackType`
19442
+ # @return [String]
19443
+ attr_accessor :stack_type
19444
+
19384
19445
  # The URL of the Subnetwork resource for this instance. If the network resource
19385
19446
  # is in legacy mode, do not specify this field. If the network is in auto subnet
19386
19447
  # mode, specifying the subnetwork is optional. If the network is in custom
@@ -19403,12 +19464,15 @@ module Google
19403
19464
  @access_configs = args[:access_configs] if args.key?(:access_configs)
19404
19465
  @alias_ip_ranges = args[:alias_ip_ranges] if args.key?(:alias_ip_ranges)
19405
19466
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
19467
+ @ipv6_access_configs = args[:ipv6_access_configs] if args.key?(:ipv6_access_configs)
19468
+ @ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
19406
19469
  @ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
19407
19470
  @kind = args[:kind] if args.key?(:kind)
19408
19471
  @name = args[:name] if args.key?(:name)
19409
19472
  @network = args[:network] if args.key?(:network)
19410
19473
  @network_ip = args[:network_ip] if args.key?(:network_ip)
19411
19474
  @nic_type = args[:nic_type] if args.key?(:nic_type)
19475
+ @stack_type = args[:stack_type] if args.key?(:stack_type)
19412
19476
  @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
19413
19477
  end
19414
19478
  end
@@ -29067,7 +29131,7 @@ module Google
29067
29131
  end
29068
29132
  end
29069
29133
 
29070
- # Sets the scheduling options for an Instance. NextID: 20
29134
+ # Sets the scheduling options for an Instance. NextID: 21
29071
29135
  class Scheduling
29072
29136
  include Google::Apis::Core::Hashable
29073
29137
 
@@ -31145,6 +31209,12 @@ module Google
31145
31209
  attr_accessor :enable_flow_logs
31146
31210
  alias_method :enable_flow_logs?, :enable_flow_logs
31147
31211
 
31212
+ # [Output Only] The range of external IPv6 addresses that are owned by this
31213
+ # subnetwork.
31214
+ # Corresponds to the JSON property `externalIpv6Prefix`
31215
+ # @return [String]
31216
+ attr_accessor :external_ipv6_prefix
31217
+
31148
31218
  # Fingerprint of this resource. A hash of the contents stored in this object.
31149
31219
  # This field is used in optimistic locking. This field will be ignored when
31150
31220
  # inserting a Subnetwork. An up-to-date fingerprint must be provided in order to
@@ -31178,6 +31248,14 @@ module Google
31178
31248
  # @return [String]
31179
31249
  attr_accessor :ip_cidr_range
31180
31250
 
31251
+ # The access type of IPv6 address this subnet holds. It's immutable and can only
31252
+ # be specified during creation or the first time the subnet is updated into
31253
+ # IPV4_IPV6 dual stack. If the ipv6_type is EXTERNAL then this subnet cannot
31254
+ # enable direct path.
31255
+ # Corresponds to the JSON property `ipv6AccessType`
31256
+ # @return [String]
31257
+ attr_accessor :ipv6_access_type
31258
+
31181
31259
  # [Output Only] The range of internal IPv6 addresses that are owned by this
31182
31260
  # subnetwork.
31183
31261
  # Corresponds to the JSON property `ipv6CidrRange`
@@ -31268,6 +31346,13 @@ module Google
31268
31346
  # @return [String]
31269
31347
  attr_accessor :self_link
31270
31348
 
31349
+ # The stack type for this subnet to identify whether the IPv6 feature is enabled
31350
+ # or not. If not specified IPV4_ONLY will be used.
31351
+ # This field can be both set at resource creation time and updated using patch.
31352
+ # Corresponds to the JSON property `stackType`
31353
+ # @return [String]
31354
+ attr_accessor :stack_type
31355
+
31271
31356
  # [Output Only] The state of the subnetwork, which can be one of the following
31272
31357
  # values: READY: Subnetwork is created and ready to use DRAINING: only
31273
31358
  # applicable to subnetworks that have the purpose set to
@@ -31287,10 +31372,12 @@ module Google
31287
31372
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
31288
31373
  @description = args[:description] if args.key?(:description)
31289
31374
  @enable_flow_logs = args[:enable_flow_logs] if args.key?(:enable_flow_logs)
31375
+ @external_ipv6_prefix = args[:external_ipv6_prefix] if args.key?(:external_ipv6_prefix)
31290
31376
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
31291
31377
  @gateway_address = args[:gateway_address] if args.key?(:gateway_address)
31292
31378
  @id = args[:id] if args.key?(:id)
31293
31379
  @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
31380
+ @ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
31294
31381
  @ipv6_cidr_range = args[:ipv6_cidr_range] if args.key?(:ipv6_cidr_range)
31295
31382
  @kind = args[:kind] if args.key?(:kind)
31296
31383
  @log_config = args[:log_config] if args.key?(:log_config)
@@ -31303,6 +31390,7 @@ module Google
31303
31390
  @role = args[:role] if args.key?(:role)
31304
31391
  @secondary_ip_ranges = args[:secondary_ip_ranges] if args.key?(:secondary_ip_ranges)
31305
31392
  @self_link = args[:self_link] if args.key?(:self_link)
31393
+ @stack_type = args[:stack_type] if args.key?(:stack_type)
31306
31394
  @state = args[:state] if args.key?(:state)
31307
31395
  end
31308
31396
  end
@@ -32575,7 +32663,8 @@ module Google
32575
32663
  include Google::Apis::Core::Hashable
32576
32664
 
32577
32665
  # New set of SslCertificate resources to associate with this TargetHttpsProxy
32578
- # resource. Currently exactly one SslCertificate resource must be specified.
32666
+ # resource. At least one SSL certificate must be specified. Currently, you may
32667
+ # specify up to 15 SSL certificates.
32579
32668
  # Corresponds to the JSON property `sslCertificates`
32580
32669
  # @return [Array<String>]
32581
32670
  attr_accessor :ssl_certificates
@@ -32710,6 +32799,8 @@ module Google
32710
32799
  # URLs to SslCertificate resources that are used to authenticate connections
32711
32800
  # between users and the load balancer. At least one SSL certificate must be
32712
32801
  # specified. Currently, you may specify up to 15 SSL certificates.
32802
+ # sslCertificates do not apply when the load balancing scheme is set to
32803
+ # INTERNAL_SELF_MANAGED.
32713
32804
  # Corresponds to the JSON property `sslCertificates`
32714
32805
  # @return [Array<String>]
32715
32806
  attr_accessor :ssl_certificates
@@ -34050,7 +34141,8 @@ module Google
34050
34141
  include Google::Apis::Core::Hashable
34051
34142
 
34052
34143
  # New set of URLs to SslCertificate resources to associate with this
34053
- # TargetSslProxy. Currently exactly one ssl certificate must be specified.
34144
+ # TargetSslProxy. At least one SSL certificate must be specified. Currently, you
34145
+ # may specify up to 15 SSL certificates.
34054
34146
  # Corresponds to the JSON property `sslCertificates`
34055
34147
  # @return [Array<String>]
34056
34148
  attr_accessor :ssl_certificates
@@ -34124,7 +34216,8 @@ module Google
34124
34216
 
34125
34217
  # URLs to SslCertificate resources that are used to authenticate connections to
34126
34218
  # Backends. At least one SSL certificate must be specified. Currently, you may
34127
- # specify up to 15 SSL certificates.
34219
+ # specify up to 15 SSL certificates. sslCertificates do not apply when the load
34220
+ # balancing scheme is set to INTERNAL_SELF_MANAGED.
34128
34221
  # Corresponds to the JSON property `sslCertificates`
34129
34222
  # @return [Array<String>]
34130
34223
  attr_accessor :ssl_certificates
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComputeV1
18
18
  # Version of the google-apis-compute_v1 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
@@ -5194,6 +5194,8 @@ module Google
5194
5194
  class AccessConfig
5195
5195
  # @private
5196
5196
  class Representation < Google::Apis::Core::JsonRepresentation
5197
+ property :external_ipv6, as: 'externalIpv6'
5198
+ property :external_ipv6_prefix_length, as: 'externalIpv6PrefixLength'
5197
5199
  property :kind, as: 'kind'
5198
5200
  property :name, as: 'name'
5199
5201
  property :nat_ip, as: 'natIP'
@@ -9650,12 +9652,16 @@ module Google
9650
9652
  collection :alias_ip_ranges, as: 'aliasIpRanges', class: Google::Apis::ComputeV1::AliasIpRange, decorator: Google::Apis::ComputeV1::AliasIpRange::Representation
9651
9653
 
9652
9654
  property :fingerprint, :base64 => true, as: 'fingerprint'
9655
+ collection :ipv6_access_configs, as: 'ipv6AccessConfigs', class: Google::Apis::ComputeV1::AccessConfig, decorator: Google::Apis::ComputeV1::AccessConfig::Representation
9656
+
9657
+ property :ipv6_access_type, as: 'ipv6AccessType'
9653
9658
  property :ipv6_address, as: 'ipv6Address'
9654
9659
  property :kind, as: 'kind'
9655
9660
  property :name, as: 'name'
9656
9661
  property :network, as: 'network'
9657
9662
  property :network_ip, as: 'networkIP'
9658
9663
  property :nic_type, as: 'nicType'
9664
+ property :stack_type, as: 'stackType'
9659
9665
  property :subnetwork, as: 'subnetwork'
9660
9666
  end
9661
9667
  end
@@ -12664,10 +12670,12 @@ module Google
12664
12670
  property :creation_timestamp, as: 'creationTimestamp'
12665
12671
  property :description, as: 'description'
12666
12672
  property :enable_flow_logs, as: 'enableFlowLogs'
12673
+ property :external_ipv6_prefix, as: 'externalIpv6Prefix'
12667
12674
  property :fingerprint, :base64 => true, as: 'fingerprint'
12668
12675
  property :gateway_address, as: 'gatewayAddress'
12669
12676
  property :id, :numeric_string => true, as: 'id'
12670
12677
  property :ip_cidr_range, as: 'ipCidrRange'
12678
+ property :ipv6_access_type, as: 'ipv6AccessType'
12671
12679
  property :ipv6_cidr_range, as: 'ipv6CidrRange'
12672
12680
  property :kind, as: 'kind'
12673
12681
  property :log_config, as: 'logConfig', class: Google::Apis::ComputeV1::SubnetworkLogConfig, decorator: Google::Apis::ComputeV1::SubnetworkLogConfig::Representation
@@ -12682,6 +12690,7 @@ module Google
12682
12690
  collection :secondary_ip_ranges, as: 'secondaryIpRanges', class: Google::Apis::ComputeV1::SubnetworkSecondaryRange, decorator: Google::Apis::ComputeV1::SubnetworkSecondaryRange::Representation
12683
12691
 
12684
12692
  property :self_link, as: 'selfLink'
12693
+ property :stack_type, as: 'stackType'
12685
12694
  property :state, as: 'state'
12686
12695
  end
12687
12696
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-compute_v1
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_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.9.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.10.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-compute_v1
57
57
  post_install_message:
58
58
  rdoc_options: []