google-apis-compute_alpha 0.26.0 → 0.27.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -611,6 +611,13 @@ module Google
611
611
  # @return [String]
612
612
  attr_accessor :ip_version
613
613
 
614
+ # The endpoint type of this address, which should be VM. This is used for
615
+ # deciding which endpoint this address will be assigned to during the IPv6
616
+ # external IP address reservation.
617
+ # Corresponds to the JSON property `ipv6EndpointType`
618
+ # @return [String]
619
+ attr_accessor :ipv6_endpoint_type
620
+
614
621
  # [Output Only] Type of the resource. Always compute#address for addresses.
615
622
  # Corresponds to the JSON property `kind`
616
623
  # @return [String]
@@ -734,6 +741,7 @@ module Google
734
741
  @description = args[:description] if args.key?(:description)
735
742
  @id = args[:id] if args.key?(:id)
736
743
  @ip_version = args[:ip_version] if args.key?(:ip_version)
744
+ @ipv6_endpoint_type = args[:ipv6_endpoint_type] if args.key?(:ipv6_endpoint_type)
737
745
  @kind = args[:kind] if args.key?(:kind)
738
746
  @label_fingerprint = args[:label_fingerprint] if args.key?(:label_fingerprint)
739
747
  @labels = args[:labels] if args.key?(:labels)
@@ -3598,9 +3606,13 @@ module Google
3598
3606
  # @return [Google::Apis::ComputeAlpha::Subsetting]
3599
3607
  attr_accessor :subsetting
3600
3608
 
3601
- # Not supported when the backend service is referenced by a URL map that is
3602
- # bound to target gRPC proxy that has validateForProxyless field set to true.
3603
- # Instead, use maxStreamDuration.
3609
+ # The backend service timeout has a different meaning depending on the type of
3610
+ # load balancer. For more information see, Backend service settings The default
3611
+ # is 30 seconds. The full range of timeout values allowed is 1 - 2,147,483,647
3612
+ # seconds. This value can be overridden in the PathMatcher configuration of the
3613
+ # UrlMap that references this backend service. Not supported when the backend
3614
+ # service is referenced by a URL map that is bound to target gRPC proxy that has
3615
+ # validateForProxyless field set to true. Instead, use maxStreamDuration.
3604
3616
  # Corresponds to the JSON property `timeoutSec`
3605
3617
  # @return [Fixnum]
3606
3618
  attr_accessor :timeout_sec
@@ -5106,14 +5118,18 @@ module Google
5106
5118
  # @return [Google::Apis::ComputeAlpha::Duration]
5107
5119
  attr_accessor :connect_timeout
5108
5120
 
5109
- # Not supported when the backend service is referenced by a URL map that is
5110
- # bound to target gRPC proxy that has validateForProxyless field set to true.
5121
+ # The maximum number of connections to the backend service. If not specified,
5122
+ # there is no limit. Not supported when the backend service is referenced by a
5123
+ # URL map that is bound to target gRPC proxy that has validateForProxyless field
5124
+ # set to true.
5111
5125
  # Corresponds to the JSON property `maxConnections`
5112
5126
  # @return [Fixnum]
5113
5127
  attr_accessor :max_connections
5114
5128
 
5115
- # Not supported when the backend service is referenced by a URL map that is
5116
- # bound to target gRPC proxy that has validateForProxyless field set to true.
5129
+ # The maximum number of pending requests allowed to the backend service. If not
5130
+ # specified, there is no limit. Not supported when the backend service is
5131
+ # referenced by a URL map that is bound to target gRPC proxy that has
5132
+ # validateForProxyless field set to true.
5117
5133
  # Corresponds to the JSON property `maxPendingRequests`
5118
5134
  # @return [Fixnum]
5119
5135
  attr_accessor :max_pending_requests
@@ -5124,14 +5140,20 @@ module Google
5124
5140
  # @return [Fixnum]
5125
5141
  attr_accessor :max_requests
5126
5142
 
5127
- # Not supported when the backend service is referenced by a URL map that is
5128
- # bound to target gRPC proxy that has validateForProxyless field set to true.
5143
+ # Maximum requests for a single connection to the backend service. This
5144
+ # parameter is respected by both the HTTP/1.1 and HTTP/2 implementations. If not
5145
+ # specified, there is no limit. Setting this parameter to 1 will effectively
5146
+ # disable keep alive. Not supported when the backend service is referenced by a
5147
+ # URL map that is bound to target gRPC proxy that has validateForProxyless field
5148
+ # set to true.
5129
5149
  # Corresponds to the JSON property `maxRequestsPerConnection`
5130
5150
  # @return [Fixnum]
5131
5151
  attr_accessor :max_requests_per_connection
5132
5152
 
5133
- # Not supported when the backend service is referenced by a URL map that is
5134
- # bound to target gRPC proxy that has validateForProxyless field set to true.
5153
+ # The maximum number of parallel retries allowed to the backend cluster. If not
5154
+ # specified, the default is 1. Not supported when the backend service is
5155
+ # referenced by a URL map that is bound to target gRPC proxy that has
5156
+ # validateForProxyless field set to true.
5135
5157
  # Corresponds to the JSON property `maxRetries`
5136
5158
  # @return [Fixnum]
5137
5159
  attr_accessor :max_retries
@@ -6095,6 +6117,16 @@ module Google
6095
6117
  # @return [String]
6096
6118
  attr_accessor :architecture
6097
6119
 
6120
+ # Disk asynchronously replicated into this disk.
6121
+ # Corresponds to the JSON property `asyncPrimaryDisk`
6122
+ # @return [Google::Apis::ComputeAlpha::DiskAsyncReplication]
6123
+ attr_accessor :async_primary_disk
6124
+
6125
+ # [Output Only] A list of disks this disk is asynchronously replicated to.
6126
+ # Corresponds to the JSON property `asyncSecondaryDisks`
6127
+ # @return [Hash<String,Google::Apis::ComputeAlpha::DiskAsyncReplicationList>]
6128
+ attr_accessor :async_secondary_disks
6129
+
6098
6130
  # [Output Only] Creation timestamp in RFC3339 text format.
6099
6131
  # Corresponds to the JSON property `creationTimestamp`
6100
6132
  # @return [String]
@@ -6270,6 +6302,11 @@ module Google
6270
6302
  # @return [Array<String>]
6271
6303
  attr_accessor :resource_policies
6272
6304
 
6305
+ # [Output Only] Status information for the disk resource.
6306
+ # Corresponds to the JSON property `resourceStatus`
6307
+ # @return [Google::Apis::ComputeAlpha::DiskResourceStatus]
6308
+ attr_accessor :resource_status
6309
+
6273
6310
  # [Output Only] Reserved for future use.
6274
6311
  # Corresponds to the JSON property `satisfiesPzs`
6275
6312
  # @return [Boolean]
@@ -6295,6 +6332,18 @@ module Google
6295
6332
  # @return [Fixnum]
6296
6333
  attr_accessor :size_gb
6297
6334
 
6335
+ # [Output Only] URL of the DiskConsistencyGroupPolicy for a secondary disk that
6336
+ # was created using a consistency group.
6337
+ # Corresponds to the JSON property `sourceConsistencyGroupPolicy`
6338
+ # @return [String]
6339
+ attr_accessor :source_consistency_group_policy
6340
+
6341
+ # [Output Only] ID of the DiskConsistencyGroupPolicy for a secondary disk that
6342
+ # was created using a consistency group.
6343
+ # Corresponds to the JSON property `sourceConsistencyGroupPolicyId`
6344
+ # @return [String]
6345
+ attr_accessor :source_consistency_group_policy_id
6346
+
6298
6347
  # The source disk used to create this disk. You can provide this as a partial or
6299
6348
  # full URL to the resource. For example, the following are valid values: - https:
6300
6349
  # //www.googleapis.com/compute/v1/projects/project/zones/zone /disks/disk -
@@ -6445,6 +6494,8 @@ module Google
6445
6494
  # Update properties of this object
6446
6495
  def update!(**args)
6447
6496
  @architecture = args[:architecture] if args.key?(:architecture)
6497
+ @async_primary_disk = args[:async_primary_disk] if args.key?(:async_primary_disk)
6498
+ @async_secondary_disks = args[:async_secondary_disks] if args.key?(:async_secondary_disks)
6448
6499
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
6449
6500
  @description = args[:description] if args.key?(:description)
6450
6501
  @disk_encryption_key = args[:disk_encryption_key] if args.key?(:disk_encryption_key)
@@ -6469,10 +6520,13 @@ module Google
6469
6520
  @region = args[:region] if args.key?(:region)
6470
6521
  @replica_zones = args[:replica_zones] if args.key?(:replica_zones)
6471
6522
  @resource_policies = args[:resource_policies] if args.key?(:resource_policies)
6523
+ @resource_status = args[:resource_status] if args.key?(:resource_status)
6472
6524
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
6473
6525
  @self_link = args[:self_link] if args.key?(:self_link)
6474
6526
  @self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
6475
6527
  @size_gb = args[:size_gb] if args.key?(:size_gb)
6528
+ @source_consistency_group_policy = args[:source_consistency_group_policy] if args.key?(:source_consistency_group_policy)
6529
+ @source_consistency_group_policy_id = args[:source_consistency_group_policy_id] if args.key?(:source_consistency_group_policy_id)
6476
6530
  @source_disk = args[:source_disk] if args.key?(:source_disk)
6477
6531
  @source_disk_id = args[:source_disk_id] if args.key?(:source_disk_id)
6478
6532
  @source_image = args[:source_image] if args.key?(:source_image)
@@ -6617,6 +6671,59 @@ module Google
6617
6671
  end
6618
6672
  end
6619
6673
 
6674
+ #
6675
+ class DiskAsyncReplication
6676
+ include Google::Apis::Core::Hashable
6677
+
6678
+ # The other disk asynchronously replicated to or from the current disk. You can
6679
+ # provide this as a partial or full URL to the resource. For example, the
6680
+ # following are valid values: - https://www.googleapis.com/compute/v1/projects/
6681
+ # project/zones/zone /disks/disk - projects/project/zones/zone/disks/disk -
6682
+ # zones/zone/disks/disk
6683
+ # Corresponds to the JSON property `disk`
6684
+ # @return [String]
6685
+ attr_accessor :disk
6686
+
6687
+ # [Output Only] The unique ID of the other disk asynchronously replicated to or
6688
+ # from the current disk. This value identifies the exact disk that was used to
6689
+ # create this replication. For example, if you started replicating the
6690
+ # persistent disk from a disk that was later deleted and recreated under the
6691
+ # same name, the disk ID would identify the exact version of the disk that was
6692
+ # used.
6693
+ # Corresponds to the JSON property `diskId`
6694
+ # @return [String]
6695
+ attr_accessor :disk_id
6696
+
6697
+ def initialize(**args)
6698
+ update!(**args)
6699
+ end
6700
+
6701
+ # Update properties of this object
6702
+ def update!(**args)
6703
+ @disk = args[:disk] if args.key?(:disk)
6704
+ @disk_id = args[:disk_id] if args.key?(:disk_id)
6705
+ end
6706
+ end
6707
+
6708
+ #
6709
+ class DiskAsyncReplicationList
6710
+ include Google::Apis::Core::Hashable
6711
+
6712
+ #
6713
+ # Corresponds to the JSON property `asyncReplicationDisk`
6714
+ # @return [Google::Apis::ComputeAlpha::DiskAsyncReplication]
6715
+ attr_accessor :async_replication_disk
6716
+
6717
+ def initialize(**args)
6718
+ update!(**args)
6719
+ end
6720
+
6721
+ # Update properties of this object
6722
+ def update!(**args)
6723
+ @async_replication_disk = args[:async_replication_disk] if args.key?(:async_replication_disk)
6724
+ end
6725
+ end
6726
+
6620
6727
  # A specification of the desired way to instantiate a disk in the instance
6621
6728
  # template when its created from a source instance.
6622
6729
  class DiskInstantiationConfig
@@ -6815,6 +6922,50 @@ module Google
6815
6922
  end
6816
6923
  end
6817
6924
 
6925
+ #
6926
+ class DiskResourceStatus
6927
+ include Google::Apis::Core::Hashable
6928
+
6929
+ #
6930
+ # Corresponds to the JSON property `asyncPrimaryDisk`
6931
+ # @return [Google::Apis::ComputeAlpha::DiskResourceStatusAsyncReplicationStatus]
6932
+ attr_accessor :async_primary_disk
6933
+
6934
+ # Key: disk, value: AsyncReplicationStatus message
6935
+ # Corresponds to the JSON property `asyncSecondaryDisks`
6936
+ # @return [Hash<String,Google::Apis::ComputeAlpha::DiskResourceStatusAsyncReplicationStatus>]
6937
+ attr_accessor :async_secondary_disks
6938
+
6939
+ def initialize(**args)
6940
+ update!(**args)
6941
+ end
6942
+
6943
+ # Update properties of this object
6944
+ def update!(**args)
6945
+ @async_primary_disk = args[:async_primary_disk] if args.key?(:async_primary_disk)
6946
+ @async_secondary_disks = args[:async_secondary_disks] if args.key?(:async_secondary_disks)
6947
+ end
6948
+ end
6949
+
6950
+ #
6951
+ class DiskResourceStatusAsyncReplicationStatus
6952
+ include Google::Apis::Core::Hashable
6953
+
6954
+ #
6955
+ # Corresponds to the JSON property `state`
6956
+ # @return [String]
6957
+ attr_accessor :state
6958
+
6959
+ def initialize(**args)
6960
+ update!(**args)
6961
+ end
6962
+
6963
+ # Update properties of this object
6964
+ def update!(**args)
6965
+ @state = args[:state] if args.key?(:state)
6966
+ end
6967
+ end
6968
+
6818
6969
  # Represents a Disk Type resource. Google Compute Engine has two Disk Type
6819
6970
  # resources: * [Regional](/compute/docs/reference/rest/alpha/regionDiskTypes) * [
6820
6971
  # Zonal](/compute/docs/reference/rest/alpha/diskTypes) You can choose from a
@@ -7393,6 +7544,79 @@ module Google
7393
7544
  end
7394
7545
  end
7395
7546
 
7547
+ #
7548
+ class DisksStartAsyncReplicationRequest
7549
+ include Google::Apis::Core::Hashable
7550
+
7551
+ # The secondary disk to start asynchronous replication to. You can provide this
7552
+ # as a partial or full URL to the resource. For example, the following are valid
7553
+ # values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /
7554
+ # disks/disk - https://www.googleapis.com/compute/v1/projects/project/regions/
7555
+ # region /disks/disk - projects/project/zones/zone/disks/disk - projects/project/
7556
+ # regions/region/disks/disk - zones/zone/disks/disk - regions/region/disks/disk
7557
+ # Corresponds to the JSON property `asyncSecondaryDisk`
7558
+ # @return [String]
7559
+ attr_accessor :async_secondary_disk
7560
+
7561
+ def initialize(**args)
7562
+ update!(**args)
7563
+ end
7564
+
7565
+ # Update properties of this object
7566
+ def update!(**args)
7567
+ @async_secondary_disk = args[:async_secondary_disk] if args.key?(:async_secondary_disk)
7568
+ end
7569
+ end
7570
+
7571
+ #
7572
+ class DisksStopAsyncReplicationRequest
7573
+ include Google::Apis::Core::Hashable
7574
+
7575
+ # The secondary disk to stop asynchronous replication to. Supplied if and only
7576
+ # if the target disk is a primary disk in an asynchronously replicated pair. You
7577
+ # can provide this as a partial or full URL to the resource. For example, the
7578
+ # following are valid values: - https://www.googleapis.com/compute/v1/projects/
7579
+ # project/zones/zone /disks/disk - https://www.googleapis.com/compute/v1/
7580
+ # projects/project/regions/region /disks/disk - projects/project/zones/zone/
7581
+ # disks/disk - projects/project/regions/region/disks/disk - zones/zone/disks/
7582
+ # disk - regions/region/disks/disk
7583
+ # Corresponds to the JSON property `asyncSecondaryDisk`
7584
+ # @return [String]
7585
+ attr_accessor :async_secondary_disk
7586
+
7587
+ def initialize(**args)
7588
+ update!(**args)
7589
+ end
7590
+
7591
+ # Update properties of this object
7592
+ def update!(**args)
7593
+ @async_secondary_disk = args[:async_secondary_disk] if args.key?(:async_secondary_disk)
7594
+ end
7595
+ end
7596
+
7597
+ #
7598
+ class DisksStopGroupAsyncReplicationRequest
7599
+ include Google::Apis::Core::Hashable
7600
+
7601
+ # The URL of the DiskConsistencyGroupPolicy for the group of disks to stop. This
7602
+ # may be a full or partial URL, such as: - https://www.googleapis.com/compute/v1/
7603
+ # projects/project/regions/region /resourcePolicies/resourcePolicy - projects/
7604
+ # project/regions/region/resourcePolicies/resourcePolicy - regions/region/
7605
+ # resourcePolicies/resourcePolicy
7606
+ # Corresponds to the JSON property `resourcePolicy`
7607
+ # @return [String]
7608
+ attr_accessor :resource_policy
7609
+
7610
+ def initialize(**args)
7611
+ update!(**args)
7612
+ end
7613
+
7614
+ # Update properties of this object
7615
+ def update!(**args)
7616
+ @resource_policy = args[:resource_policy] if args.key?(:resource_policy)
7617
+ end
7618
+ end
7619
+
7396
7620
  # A set of Display Device options
7397
7621
  class DisplayDevice
7398
7622
  include Google::Apis::Core::Hashable
@@ -8795,6 +9019,12 @@ module Google
8795
9019
  # @return [Fixnum]
8796
9020
  attr_accessor :priority
8797
9021
 
9022
+ # An optional name for the rule. This field is not a unique identifier and can
9023
+ # be updated.
9024
+ # Corresponds to the JSON property `ruleName`
9025
+ # @return [String]
9026
+ attr_accessor :rule_name
9027
+
8798
9028
  # [Output Only] Calculation of the complexity of a single firewall policy rule.
8799
9029
  # Corresponds to the JSON property `ruleTupleCount`
8800
9030
  # @return [Fixnum]
@@ -8839,6 +9069,7 @@ module Google
8839
9069
  @kind = args[:kind] if args.key?(:kind)
8840
9070
  @match = args[:match] if args.key?(:match)
8841
9071
  @priority = args[:priority] if args.key?(:priority)
9072
+ @rule_name = args[:rule_name] if args.key?(:rule_name)
8842
9073
  @rule_tuple_count = args[:rule_tuple_count] if args.key?(:rule_tuple_count)
8843
9074
  @target_resources = args[:target_resources] if args.key?(:target_resources)
8844
9075
  @target_secure_tags = args[:target_secure_tags] if args.key?(:target_secure_tags)
@@ -8877,6 +9108,12 @@ module Google
8877
9108
  # @return [Array<String>]
8878
9109
  attr_accessor :dest_region_codes
8879
9110
 
9111
+ # Names of Network Threat Intelligence lists. The IPs in these lists will be
9112
+ # matched against traffic destination.
9113
+ # Corresponds to the JSON property `destThreatIntelligences`
9114
+ # @return [Array<String>]
9115
+ attr_accessor :dest_threat_intelligences
9116
+
8880
9117
  # Pairs of IP protocols and ports that the rule should match.
8881
9118
  # Corresponds to the JSON property `layer4Configs`
8882
9119
  # @return [Array<Google::Apis::ComputeAlpha::FirewallPolicyRuleMatcherLayer4Config>]
@@ -8914,6 +9151,12 @@ module Google
8914
9151
  # @return [Array<Google::Apis::ComputeAlpha::FirewallPolicyRuleSecureTag>]
8915
9152
  attr_accessor :src_secure_tags
8916
9153
 
9154
+ # Names of Network Threat Intelligence lists. The IPs in these lists will be
9155
+ # matched against traffic source.
9156
+ # Corresponds to the JSON property `srcThreatIntelligences`
9157
+ # @return [Array<String>]
9158
+ attr_accessor :src_threat_intelligences
9159
+
8917
9160
  def initialize(**args)
8918
9161
  update!(**args)
8919
9162
  end
@@ -8924,12 +9167,14 @@ module Google
8924
9167
  @dest_fqdns = args[:dest_fqdns] if args.key?(:dest_fqdns)
8925
9168
  @dest_ip_ranges = args[:dest_ip_ranges] if args.key?(:dest_ip_ranges)
8926
9169
  @dest_region_codes = args[:dest_region_codes] if args.key?(:dest_region_codes)
9170
+ @dest_threat_intelligences = args[:dest_threat_intelligences] if args.key?(:dest_threat_intelligences)
8927
9171
  @layer4_configs = args[:layer4_configs] if args.key?(:layer4_configs)
8928
9172
  @src_address_groups = args[:src_address_groups] if args.key?(:src_address_groups)
8929
9173
  @src_fqdns = args[:src_fqdns] if args.key?(:src_fqdns)
8930
9174
  @src_ip_ranges = args[:src_ip_ranges] if args.key?(:src_ip_ranges)
8931
9175
  @src_region_codes = args[:src_region_codes] if args.key?(:src_region_codes)
8932
9176
  @src_secure_tags = args[:src_secure_tags] if args.key?(:src_secure_tags)
9177
+ @src_threat_intelligences = args[:src_threat_intelligences] if args.key?(:src_threat_intelligences)
8933
9178
  end
8934
9179
  end
8935
9180
 
@@ -10720,8 +10965,8 @@ module Google
10720
10965
  # The ID of a supported feature. To add multiple values, use commas to separate
10721
10966
  # values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE -
10722
10967
  # WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - SECURE_BOOT - GVNIC -
10723
- # SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE For more information, see Enabling
10724
- # guest operating system features.
10968
+ # SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_SNP_CAPABLE For more information,
10969
+ # see Enabling guest operating system features.
10725
10970
  # Corresponds to the JSON property `type`
10726
10971
  # @return [String]
10727
10972
  attr_accessor :type
@@ -14536,8 +14781,8 @@ module Google
14536
14781
  # Assigns a name to a port number. For example: `name: "http", port: 80` This
14537
14782
  # allows the system to reference ports by the assigned name instead of a port
14538
14783
  # number. Named ports can also contain multiple ports. For example: [`name: "
14539
- # http", port: 80`,`name: "http", port: 8080`] Named ports apply to all
14540
- # instances in this instance group.
14784
+ # app1", port: 8080`, `name: "app1", port: 8081`, `name: "app2", port: 8082`]
14785
+ # Named ports apply to all instances in this instance group.
14541
14786
  # Corresponds to the JSON property `namedPorts`
14542
14787
  # @return [Array<Google::Apis::ComputeAlpha::NamedPort>]
14543
14788
  attr_accessor :named_ports
@@ -14948,6 +15193,12 @@ module Google
14948
15193
  # @return [String]
14949
15194
  attr_accessor :kind
14950
15195
 
15196
+ # Pagination behavior of listManagedInstances API method for this Managed
15197
+ # Instance Group.
15198
+ # Corresponds to the JSON property `listManagedInstancesResults`
15199
+ # @return [String]
15200
+ attr_accessor :list_managed_instances_results
15201
+
14951
15202
  # The name of the managed instance group. The name must be 1-63 characters long,
14952
15203
  # and comply with RFC1035.
14953
15204
  # Corresponds to the JSON property `name`
@@ -15072,6 +15323,7 @@ module Google
15072
15323
  @instance_lifecycle_policy = args[:instance_lifecycle_policy] if args.key?(:instance_lifecycle_policy)
15073
15324
  @instance_template = args[:instance_template] if args.key?(:instance_template)
15074
15325
  @kind = args[:kind] if args.key?(:kind)
15326
+ @list_managed_instances_results = args[:list_managed_instances_results] if args.key?(:list_managed_instances_results)
15075
15327
  @name = args[:name] if args.key?(:name)
15076
15328
  @named_ports = args[:named_ports] if args.key?(:named_ports)
15077
15329
  @region = args[:region] if args.key?(:region)
@@ -17803,7 +18055,8 @@ module Google
17803
18055
  # @return [String]
17804
18056
  attr_accessor :short_name
17805
18057
 
17806
- # [Output Only] The type of the firewall policy.
18058
+ # [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
18059
+ # NETWORK, NETWORK_REGIONAL.
17807
18060
  # Corresponds to the JSON property `type`
17808
18061
  # @return [String]
17809
18062
  attr_accessor :type
@@ -18186,8 +18439,7 @@ module Google
18186
18439
  attr_accessor :disk_size_gb
18187
18440
 
18188
18441
  # Whether to attempt an application consistent instant snapshot by informing the
18189
- # OS to prepare for the snapshot process. Currently only supported on Windows
18190
- # instances using the Volume Shadow Copy Service (VSS).
18442
+ # OS to prepare for the snapshot process.
18191
18443
  # Corresponds to the JSON property `guestFlush`
18192
18444
  # @return [Boolean]
18193
18445
  attr_accessor :guest_flush
@@ -19034,13 +19286,7 @@ module Google
19034
19286
  # @return [String]
19035
19287
  attr_accessor :bandwidth
19036
19288
 
19037
- # Up to 16 candidate prefixes that control the allocation of
19038
- # cloudRouterIpv6Address and customerRouterIpv6Address for this attachment. Each
19039
- # prefix must be in the Global Unique Address (GUA) space. It is highly
19040
- # recommended that it be in a range owned by the requestor. A GUA in a range
19041
- # owned by Google will cause the request to fail. Google will select an
19042
- # available prefix from the supplied candidates or fail the request. If not
19043
- # supplied, a /125 from a Google-owned GUA block will be selected.
19289
+ # This field is not available.
19044
19290
  # Corresponds to the JSON property `candidateIpv6Subnets`
19045
19291
  # @return [Array<String>]
19046
19292
  attr_accessor :candidate_ipv6_subnets
@@ -19068,10 +19314,7 @@ module Google
19068
19314
  # @return [String]
19069
19315
  attr_accessor :cloud_router_ipv6_address
19070
19316
 
19071
- # If supplied, the interface id (index within the subnet) to be used for the
19072
- # cloud router address. The id must be in the range of 1 to 6. If a subnet mask
19073
- # is supplied, it must be /125, and the subnet should either be 0 or match the
19074
- # selected subnet.
19317
+ # This field is not available.
19075
19318
  # Corresponds to the JSON property `cloudRouterIpv6InterfaceId`
19076
19319
  # @return [String]
19077
19320
  attr_accessor :cloud_router_ipv6_interface_id
@@ -19093,18 +19336,14 @@ module Google
19093
19336
  # @return [String]
19094
19337
  attr_accessor :customer_router_ipv6_address
19095
19338
 
19096
- # If supplied, the interface id (index within the subnet) to be used for the
19097
- # customer router address. The id must be in the range of 1 to 6. If a subnet
19098
- # mask is supplied, it must be /125, and the subnet should either be 0 or match
19099
- # the selected subnet.
19339
+ # This field is not available.
19100
19340
  # Corresponds to the JSON property `customerRouterIpv6InterfaceId`
19101
19341
  # @return [String]
19102
19342
  attr_accessor :customer_router_ipv6_interface_id
19103
19343
 
19104
- # [Output only for types PARTNER and DEDICATED. Not present for PARTNER_PROVIDER.
19105
- # ] Dataplane version for this InterconnectAttachment. This field is only
19106
- # present for Dataplane version 2 and higher. Absence of this field in the API
19107
- # output indicates that the Dataplane is version 1.
19344
+ # [Output Only] Dataplane version for this InterconnectAttachment. This field is
19345
+ # only present for Dataplane version 2 and higher. Absence of this field in the
19346
+ # API output indicates that the Dataplane is version 1.
19108
19347
  # Corresponds to the JSON property `dataplaneVersion`
19109
19348
  # @return [Fixnum]
19110
19349
  attr_accessor :dataplane_version
@@ -21490,6 +21729,11 @@ module Google
21490
21729
  class LocationPolicyLocation
21491
21730
  include Google::Apis::Core::Hashable
21492
21731
 
21732
+ # Per-zone constraints on location policy for this zone.
21733
+ # Corresponds to the JSON property `constraints`
21734
+ # @return [Google::Apis::ComputeAlpha::LocationPolicyLocationConstraints]
21735
+ attr_accessor :constraints
21736
+
21493
21737
  # Preference for a given location.
21494
21738
  # Corresponds to the JSON property `preference`
21495
21739
  # @return [String]
@@ -21501,10 +21745,31 @@ module Google
21501
21745
 
21502
21746
  # Update properties of this object
21503
21747
  def update!(**args)
21748
+ @constraints = args[:constraints] if args.key?(:constraints)
21504
21749
  @preference = args[:preference] if args.key?(:preference)
21505
21750
  end
21506
21751
  end
21507
21752
 
21753
+ # Per-zone constraints on location policy for this zone.
21754
+ class LocationPolicyLocationConstraints
21755
+ include Google::Apis::Core::Hashable
21756
+
21757
+ # Maximum number of items that are allowed to be placed in this zone. The value
21758
+ # must be non-negative.
21759
+ # Corresponds to the JSON property `maxCount`
21760
+ # @return [Fixnum]
21761
+ attr_accessor :max_count
21762
+
21763
+ def initialize(**args)
21764
+ update!(**args)
21765
+ end
21766
+
21767
+ # Update properties of this object
21768
+ def update!(**args)
21769
+ @max_count = args[:max_count] if args.key?(:max_count)
21770
+ end
21771
+ end
21772
+
21508
21773
  # This is deprecated and has no effect. Do not use.
21509
21774
  class LogConfig
21510
21775
  include Google::Apis::Core::Hashable
@@ -21656,8 +21921,7 @@ module Google
21656
21921
  attr_accessor :description
21657
21922
 
21658
21923
  # [Input Only] Whether to attempt an application consistent machine image by
21659
- # informing the OS to prepare for the snapshot process. Currently only supported
21660
- # on Windows instances using the Volume Shadow Copy Service (VSS).
21924
+ # informing the OS to prepare for the snapshot process.
21661
21925
  # Corresponds to the JSON property `guestFlush`
21662
21926
  # @return [Boolean]
21663
21927
  attr_accessor :guest_flush
@@ -22950,7 +23214,9 @@ module Google
22950
23214
  # @return [String]
22951
23215
  attr_accessor :name
22952
23216
 
22953
- #
23217
+ # The network firewall policy enforcement order. Can be either
23218
+ # AFTER_CLASSIC_FIREWALL or BEFORE_CLASSIC_FIREWALL. Defaults to
23219
+ # AFTER_CLASSIC_FIREWALL if the field is not specified.
22954
23220
  # Corresponds to the JSON property `networkFirewallPolicyEnforcementOrder`
22955
23221
  # @return [String]
22956
23222
  attr_accessor :network_firewall_policy_enforcement_order
@@ -23467,8 +23733,8 @@ module Google
23467
23733
  attr_accessor :network
23468
23734
 
23469
23735
  # Type of network endpoints in this network endpoint group. Can be one of
23470
- # GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT, INTERNET_IP_PORT,
23471
- # SERVERLESS, PRIVATE_SERVICE_CONNECT.
23736
+ # GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT,
23737
+ # INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT.
23472
23738
  # Corresponds to the JSON property `networkEndpointType`
23473
23739
  # @return [String]
23474
23740
  attr_accessor :network_endpoint_type
@@ -23776,13 +24042,13 @@ module Google
23776
24042
  # @return [String]
23777
24043
  attr_accessor :tag
23778
24044
 
23779
- # A template to parse service and tag fields from a request URL. URL mask allows
23780
- # for routing to multiple Run services without having to create multiple network
23781
- # endpoint groups and backend services. For example, request URLs "foo1.domain.
23782
- # com/bar1" and "foo1.domain.com/bar2" can be backed by the same Serverless
23783
- # Network Endpoint Group (NEG) with URL mask ".domain.com/". The URL mask will
23784
- # parse them to ` service="bar1", tag="foo1" ` and ` service="bar2", tag="foo2" `
23785
- # respectively.
24045
+ # A template to parse <service> and <tag> fields from a request URL. URL mask
24046
+ # allows for routing to multiple Run services without having to create multiple
24047
+ # network endpoint groups and backend services. For example, request URLs "foo1.
24048
+ # domain.com/bar1" and "foo1.domain.com/bar2" can be backed by the same
24049
+ # Serverless Network Endpoint Group (NEG) with URL mask "<tag>.domain.com/<
24050
+ # service>". The URL mask will parse them to ` service="bar1", tag="foo1" ` and `
24051
+ # service="bar2", tag="foo2" ` respectively.
23786
24052
  # Corresponds to the JSON property `urlMask`
23787
24053
  # @return [String]
23788
24054
  attr_accessor :url_mask
@@ -29638,6 +29904,16 @@ module Google
29638
29904
  # @return [String]
29639
29905
  attr_accessor :name
29640
29906
 
29907
+ # Specifies how child public delegated prefix will be scoped. It could be one of
29908
+ # following values: - `REGIONAL`: The public delegated prefix is regional only.
29909
+ # The provisioning will take a few minutes. - `GLOBAL`: The public delegated
29910
+ # prefix is global only. The provisioning will take ~4 weeks. - `
29911
+ # GLOBAL_AND_REGIONAL` [output only]: The public delegated prefixes is BYOIP V1
29912
+ # legacy prefix. This is output only value and no longer supported in BYOIP V2.
29913
+ # Corresponds to the JSON property `pdpScope`
29914
+ # @return [String]
29915
+ attr_accessor :pdp_scope
29916
+
29641
29917
  # [Output Only] The list of public delegated prefixes that exist for this public
29642
29918
  # advertised prefix.
29643
29919
  # Corresponds to the JSON property `publicDelegatedPrefixs`
@@ -29684,6 +29960,7 @@ module Google
29684
29960
  @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
29685
29961
  @kind = args[:kind] if args.key?(:kind)
29686
29962
  @name = args[:name] if args.key?(:name)
29963
+ @pdp_scope = args[:pdp_scope] if args.key?(:pdp_scope)
29687
29964
  @public_delegated_prefixs = args[:public_delegated_prefixs] if args.key?(:public_delegated_prefixs)
29688
29965
  @self_link = args[:self_link] if args.key?(:self_link)
29689
29966
  @self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
@@ -30884,6 +31161,79 @@ module Google
30884
31161
  end
30885
31162
  end
30886
31163
 
31164
+ #
31165
+ class RegionDisksStartAsyncReplicationRequest
31166
+ include Google::Apis::Core::Hashable
31167
+
31168
+ # The secondary disk to start asynchronous replication to. You can provide this
31169
+ # as a partial or full URL to the resource. For example, the following are valid
31170
+ # values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /
31171
+ # disks/disk - https://www.googleapis.com/compute/v1/projects/project/regions/
31172
+ # region /disks/disk - projects/project/zones/zone/disks/disk - projects/project/
31173
+ # regions/region/disks/disk - zones/zone/disks/disk - regions/region/disks/disk
31174
+ # Corresponds to the JSON property `asyncSecondaryDisk`
31175
+ # @return [String]
31176
+ attr_accessor :async_secondary_disk
31177
+
31178
+ def initialize(**args)
31179
+ update!(**args)
31180
+ end
31181
+
31182
+ # Update properties of this object
31183
+ def update!(**args)
31184
+ @async_secondary_disk = args[:async_secondary_disk] if args.key?(:async_secondary_disk)
31185
+ end
31186
+ end
31187
+
31188
+ #
31189
+ class RegionDisksStopAsyncReplicationRequest
31190
+ include Google::Apis::Core::Hashable
31191
+
31192
+ # The secondary disk to stop asynchronous replication to. Supplied if and only
31193
+ # if the target disk is a primary disk in an asynchronously replicated pair. You
31194
+ # can provide this as a partial or full URL to the resource. For example, the
31195
+ # following are valid values: - https://www.googleapis.com/compute/v1/projects/
31196
+ # project/zones/zone /disks/disk - https://www.googleapis.com/compute/v1/
31197
+ # projects/project/regions/region /disks/disk - projects/project/zones/zone/
31198
+ # disks/disk - projects/project/regions/region/disks/disk - zones/zone/disks/
31199
+ # disk - regions/region/disks/disk
31200
+ # Corresponds to the JSON property `asyncSecondaryDisk`
31201
+ # @return [String]
31202
+ attr_accessor :async_secondary_disk
31203
+
31204
+ def initialize(**args)
31205
+ update!(**args)
31206
+ end
31207
+
31208
+ # Update properties of this object
31209
+ def update!(**args)
31210
+ @async_secondary_disk = args[:async_secondary_disk] if args.key?(:async_secondary_disk)
31211
+ end
31212
+ end
31213
+
31214
+ #
31215
+ class RegionDisksStopGroupAsyncReplicationRequest
31216
+ include Google::Apis::Core::Hashable
31217
+
31218
+ # The URL of the DiskConsistencyGroupPolicy for the group of disks to stop. This
31219
+ # may be a full or partial URL, such as: - https://www.googleapis.com/compute/v1/
31220
+ # projects/project/regions/region /resourcePolicies/resourcePolicy - projects/
31221
+ # project/regions/region/resourcePolicies/resourcePolicy - regions/region/
31222
+ # resourcePolicies/resourcePolicy
31223
+ # Corresponds to the JSON property `resourcePolicy`
31224
+ # @return [String]
31225
+ attr_accessor :resource_policy
31226
+
31227
+ def initialize(**args)
31228
+ update!(**args)
31229
+ end
31230
+
31231
+ # Update properties of this object
31232
+ def update!(**args)
31233
+ @resource_policy = args[:resource_policy] if args.key?(:resource_policy)
31234
+ end
31235
+ end
31236
+
30887
31237
  # Contains a list of InstanceGroup resources.
30888
31238
  class RegionInstanceGroupList
30889
31239
  include Google::Apis::Core::Hashable
@@ -32059,7 +32409,8 @@ module Google
32059
32409
  # @return [Array<Google::Apis::ComputeAlpha::FirewallPolicyRule>]
32060
32410
  attr_accessor :rules
32061
32411
 
32062
- # [Output Only] The type of the firewall policy.
32412
+ # [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
32413
+ # NETWORK, NETWORK_REGIONAL.
32063
32414
  # Corresponds to the JSON property `type`
32064
32415
  # @return [String]
32065
32416
  attr_accessor :type
@@ -33142,8 +33493,8 @@ module Google
33142
33493
  class ResourcePolicyDailyCycle
33143
33494
  include Google::Apis::Core::Hashable
33144
33495
 
33145
- # Defines a schedule with units measured in months. The value determines how
33146
- # many months pass between the start of each cycle.
33496
+ # Defines a schedule with units measured in days. The value determines how many
33497
+ # days pass between the start of each cycle.
33147
33498
  # Corresponds to the JSON property `daysInCycle`
33148
33499
  # @return [Fixnum]
33149
33500
  attr_accessor :days_in_cycle
@@ -34800,7 +35151,7 @@ module Google
34800
35151
  # Cloud Router will initiate the BFD session for this BGP peer. If set to
34801
35152
  # PASSIVE, the Cloud Router will wait for the peer router to initiate the BFD
34802
35153
  # session for this BGP peer. If set to DISABLED, BFD is disabled for this BGP
34803
- # peer. The default is PASSIVE.
35154
+ # peer. The default is DISABLED.
34804
35155
  # Corresponds to the JSON property `sessionInitializationMode`
34805
35156
  # @return [String]
34806
35157
  attr_accessor :session_initialization_mode
@@ -35101,6 +35452,12 @@ module Google
35101
35452
  attr_accessor :enable_endpoint_independent_mapping
35102
35453
  alias_method :enable_endpoint_independent_mapping?, :enable_endpoint_independent_mapping
35103
35454
 
35455
+ # List of Natted endpoint types supported by the Nat Gateway. If the list is
35456
+ # empty, then it will be equivalent to include ENDPOINT_TYPE_VM
35457
+ # Corresponds to the JSON property `endpointTypes`
35458
+ # @return [Array<String>]
35459
+ attr_accessor :endpoint_types
35460
+
35104
35461
  # Timeout (in seconds) for ICMP connections. Defaults to 30s if not set.
35105
35462
  # Corresponds to the JSON property `icmpIdleTimeoutSec`
35106
35463
  # @return [Fixnum]
@@ -35214,6 +35571,7 @@ module Google
35214
35571
  @drain_nat_ips = args[:drain_nat_ips] if args.key?(:drain_nat_ips)
35215
35572
  @enable_dynamic_port_allocation = args[:enable_dynamic_port_allocation] if args.key?(:enable_dynamic_port_allocation)
35216
35573
  @enable_endpoint_independent_mapping = args[:enable_endpoint_independent_mapping] if args.key?(:enable_endpoint_independent_mapping)
35574
+ @endpoint_types = args[:endpoint_types] if args.key?(:endpoint_types)
35217
35575
  @icmp_idle_timeout_sec = args[:icmp_idle_timeout_sec] if args.key?(:icmp_idle_timeout_sec)
35218
35576
  @log_config = args[:log_config] if args.key?(:log_config)
35219
35577
  @max_ports_per_vm = args[:max_ports_per_vm] if args.key?(:max_ports_per_vm)
@@ -35501,7 +35859,8 @@ module Google
35501
35859
  # @return [String]
35502
35860
  attr_accessor :router_appliance_instance
35503
35861
 
35504
- # BGP state as specified in RFC1771.
35862
+ # The state of the BGP session. For a list of possible values for this field,
35863
+ # see BGP session states.
35505
35864
  # Corresponds to the JSON property `state`
35506
35865
  # @return [String]
35507
35866
  attr_accessor :state
@@ -36758,13 +37117,17 @@ module Google
36758
37117
  # @return [String]
36759
37118
  attr_accessor :self_link_with_id
36760
37119
 
36761
- # The type indicates the intended use of the security policy. CLOUD_ARMOR -
37120
+ # The type indicates the intended use of the security policy. - CLOUD_ARMOR:
36762
37121
  # Cloud Armor backend security policies can be configured to filter incoming
36763
37122
  # HTTP requests targeting backend services. They filter requests before they hit
36764
- # the origin servers. CLOUD_ARMOR_EDGE - Cloud Armor edge security policies can
37123
+ # the origin servers. - CLOUD_ARMOR_EDGE: Cloud Armor edge security policies can
36765
37124
  # be configured to filter incoming HTTP requests targeting backend services (
36766
37125
  # including Cloud CDN-enabled) as well as backend buckets (Cloud Storage). They
36767
- # filter requests before the request is served from Google's cache.
37126
+ # filter requests before the request is served from Google's cache. -
37127
+ # CLOUD_ARMOR_INTERNAL_SERVICE: Cloud Armor internal service policies can be
37128
+ # configured to filter HTTP requests targeting services managed by Traffic
37129
+ # Director in a service mesh. They filter requests before the request is served
37130
+ # from the application. This field can be set only at resource creation time.
36768
37131
  # Corresponds to the JSON property `type`
36769
37132
  # @return [String]
36770
37133
  attr_accessor :type
@@ -37204,6 +37567,11 @@ module Google
37204
37567
  # @return [String]
37205
37568
  attr_accessor :redirect_target
37206
37569
 
37570
+ # [Output Only] The minimum managed protection tier required for this rule.
37571
+ # Corresponds to the JSON property `ruleManagedProtectionTier`
37572
+ # @return [String]
37573
+ attr_accessor :rule_managed_protection_tier
37574
+
37207
37575
  # Identifier for the rule. This is only unique within the given security policy.
37208
37576
  # This can only be set during rule creation, if rule number is not specified it
37209
37577
  # will be generated by the server.
@@ -37249,6 +37617,7 @@ module Google
37249
37617
  @rate_limit_options = args[:rate_limit_options] if args.key?(:rate_limit_options)
37250
37618
  @redirect_options = args[:redirect_options] if args.key?(:redirect_options)
37251
37619
  @redirect_target = args[:redirect_target] if args.key?(:redirect_target)
37620
+ @rule_managed_protection_tier = args[:rule_managed_protection_tier] if args.key?(:rule_managed_protection_tier)
37252
37621
  @rule_number = args[:rule_number] if args.key?(:rule_number)
37253
37622
  @rule_tuple_count = args[:rule_tuple_count] if args.key?(:rule_tuple_count)
37254
37623
  @target_resources = args[:target_resources] if args.key?(:target_resources)
@@ -37490,10 +37859,11 @@ module Google
37490
37859
  # present in the request, the key type defaults to ALL. - XFF_IP: The first IP
37491
37860
  # address (i.e. the originating client IP address) specified in the list of IPs
37492
37861
  # under X-Forwarded-For HTTP header. If no such header is present or the value
37493
- # is not a valid IP, the key type defaults to ALL. - HTTP_COOKIE: The value of
37494
- # the HTTP cookie whose name is configured under "enforce_on_key_name". The key
37495
- # value is truncated to the first 128 bytes of the cookie value. If no such
37496
- # cookie is present in the request, the key type defaults to ALL.
37862
+ # is not a valid IP, the key defaults to the source IP address of the request i.
37863
+ # e. key type IP. - HTTP_COOKIE: The value of the HTTP cookie whose name is
37864
+ # configured under "enforce_on_key_name". The key value is truncated to the
37865
+ # first 128 bytes of the cookie value. If no such cookie is present in the
37866
+ # request, the key type defaults to ALL.
37497
37867
  # Corresponds to the JSON property `enforceOnKey`
37498
37868
  # @return [String]
37499
37869
  attr_accessor :enforce_on_key
@@ -37507,9 +37877,9 @@ module Google
37507
37877
 
37508
37878
  # Action to take for requests that are above the configured rate limit threshold,
37509
37879
  # to either deny with a specified HTTP response code, or redirect to a
37510
- # different endpoint. Valid options are "deny()" where valid values for status
37511
- # are 403, 404, 429, and 502, and "redirect" where the redirect parameters come
37512
- # from exceed_redirect_options below.
37880
+ # different endpoint. Valid options are "deny(status)", where valid values for
37881
+ # status are 403, 404, 429, and 502, and "redirect" where the redirect
37882
+ # parameters come from exceedRedirectOptions below.
37513
37883
  # Corresponds to the JSON property `exceedAction`
37514
37884
  # @return [String]
37515
37885
  attr_accessor :exceed_action
@@ -38735,8 +39105,7 @@ module Google
38735
39105
  attr_accessor :download_bytes
38736
39106
 
38737
39107
  # [Input Only] Whether to attempt an application consistent snapshot by
38738
- # informing the OS to prepare for the snapshot process. Currently only supported
38739
- # on Windows instances using the Volume Shadow Copy Service (VSS).
39108
+ # informing the OS to prepare for the snapshot process.
38740
39109
  # Corresponds to the JSON property `guestFlush`
38741
39110
  # @return [Boolean]
38742
39111
  attr_accessor :guest_flush
@@ -40542,6 +40911,13 @@ module Google
40542
40911
  # @return [Fixnum]
40543
40912
  attr_accessor :id
40544
40913
 
40914
+ # [Output Only] The range of internal IPv6 addresses that are owned by this
40915
+ # subnetwork. Note this is for general VM to VM communication, not to be
40916
+ # confused with the ipv6_cidr_range field.
40917
+ # Corresponds to the JSON property `internalIpv6Prefix`
40918
+ # @return [String]
40919
+ attr_accessor :internal_ipv6_prefix
40920
+
40545
40921
  # The range of internal addresses that are owned by this subnetwork. Provide
40546
40922
  # this property when you create the subnetwork. For example, 10.0.0.0/8 or 100.
40547
40923
  # 64.0.0/10. Ranges must be unique and non-overlapping within a network. Only
@@ -40677,9 +41053,10 @@ module Google
40677
41053
  # @return [String]
40678
41054
  attr_accessor :self_link_with_id
40679
41055
 
40680
- # The stack type for this subnet to identify whether the IPv6 feature is enabled
40681
- # or not. If not specified IPV4_ONLY will be used. This field can be both set at
40682
- # resource creation time and updated using patch.
41056
+ # The stack type for the subnet. If set to IPV4_ONLY, new VMs in the subnet are
41057
+ # assigned IPv4 addresses only. If set to IPV4_IPV6, new VMs in the subnet can
41058
+ # be assigned both IPv4 and IPv6 addresses. If not specified, IPV4_ONLY is used.
41059
+ # This field can be both set at resource creation time and updated using patch.
40683
41060
  # Corresponds to the JSON property `stackType`
40684
41061
  # @return [String]
40685
41062
  attr_accessor :stack_type
@@ -40720,6 +41097,7 @@ module Google
40720
41097
  @flow_sampling = args[:flow_sampling] if args.key?(:flow_sampling)
40721
41098
  @gateway_address = args[:gateway_address] if args.key?(:gateway_address)
40722
41099
  @id = args[:id] if args.key?(:id)
41100
+ @internal_ipv6_prefix = args[:internal_ipv6_prefix] if args.key?(:internal_ipv6_prefix)
40723
41101
  @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
40724
41102
  @ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
40725
41103
  @ipv6_cidr_range = args[:ipv6_cidr_range] if args.key?(:ipv6_cidr_range)
@@ -41007,8 +41385,9 @@ module Google
41007
41385
  attr_accessor :enable
41008
41386
  alias_method :enable?, :enable
41009
41387
 
41010
- # Can only be specified if VPC flow logs for this subnetwork is enabled. Export
41011
- # filter used to define which VPC flow logs should be logged.
41388
+ # Can only be specified if VPC flow logs for this subnetwork is enabled. The
41389
+ # filter expression is used to define which VPC flow logs should be exported to
41390
+ # Cloud Logging.
41012
41391
  # Corresponds to the JSON property `filterExpr`
41013
41392
  # @return [String]
41014
41393
  attr_accessor :filter_expr
@@ -44034,6 +44413,12 @@ module Google
44034
44413
  # @return [String]
44035
44414
  attr_accessor :proxy_header
44036
44415
 
44416
+ # [Output Only] URL of the region where the regional TCP proxy resides. This
44417
+ # field is not applicable to global TCP proxy.
44418
+ # Corresponds to the JSON property `region`
44419
+ # @return [String]
44420
+ attr_accessor :region
44421
+
44037
44422
  # [Output Only] Server-defined URL for the resource.
44038
44423
  # Corresponds to the JSON property `selfLink`
44039
44424
  # @return [String]
@@ -44057,6 +44442,7 @@ module Google
44057
44442
  @name = args[:name] if args.key?(:name)
44058
44443
  @proxy_bind = args[:proxy_bind] if args.key?(:proxy_bind)
44059
44444
  @proxy_header = args[:proxy_header] if args.key?(:proxy_header)
44445
+ @region = args[:region] if args.key?(:region)
44060
44446
  @self_link = args[:self_link] if args.key?(:self_link)
44061
44447
  @service = args[:service] if args.key?(:service)
44062
44448
  end