google-apis-compute_alpha 0.88.0 → 0.90.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.
@@ -5608,7 +5608,10 @@ module Google
5608
5608
  attr_accessor :members
5609
5609
 
5610
5610
  # Role that is assigned to the list of `members`, or principals. For example, `
5611
- # roles/viewer`, `roles/editor`, or `roles/owner`.
5611
+ # roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM
5612
+ # roles and permissions, see the [IAM documentation](https://cloud.google.com/
5613
+ # iam/docs/roles-overview). For a list of the available pre-defined roles, see [
5614
+ # here](https://cloud.google.com/iam/docs/understanding-roles).
5612
5615
  # Corresponds to the JSON property `role`
5613
5616
  # @return [String]
5614
5617
  attr_accessor :role
@@ -17807,13 +17810,25 @@ module Google
17807
17810
  include Google::Apis::Core::Hashable
17808
17811
 
17809
17812
  # [Output only] Fatal errors encountered during the queueing or provisioning
17810
- # phases of the ResizeRequest that caused the transition to the FAILED state. As
17811
- # a contrary to the last_attempt errors, this field is final and errors are
17812
- # never removed from here, as the RR is not going to retry.
17813
+ # phases of the ResizeRequest that caused the transition to the FAILED state.
17814
+ # Contrary to the last_attempt errors, this field is final and errors are never
17815
+ # removed from here, as the ResizeRequest is not going to retry.
17813
17816
  # Corresponds to the JSON property `error`
17814
17817
  # @return [Google::Apis::ComputeAlpha::InstanceGroupManagerResizeRequestStatus::Error]
17815
17818
  attr_accessor :error
17816
17819
 
17820
+ # [Output only] Information about the last attempt to fulfill the request. The
17821
+ # value is temporary since the ResizeRequest can retry, as long as it's still
17822
+ # active and the last attempt value can either be cleared or replaced with a
17823
+ # different error. Since ResizeRequest retries infrequently, the value may be
17824
+ # stale and no longer show an active problem. The value is cleared when
17825
+ # ResizeRequest transitions to the final state (becomes inactive). If the final
17826
+ # state is FAILED the error describing it will be storred in the "error" field
17827
+ # only.
17828
+ # Corresponds to the JSON property `lastAttempt`
17829
+ # @return [Google::Apis::ComputeAlpha::InstanceGroupManagerResizeRequestStatusLastAttempt]
17830
+ attr_accessor :last_attempt
17831
+
17817
17832
  # Queuing parameters for the requested deferred capacity.
17818
17833
  # Corresponds to the JSON property `queuingPolicy`
17819
17834
  # @return [Google::Apis::ComputeAlpha::QueuingPolicy]
@@ -17826,13 +17841,14 @@ module Google
17826
17841
  # Update properties of this object
17827
17842
  def update!(**args)
17828
17843
  @error = args[:error] if args.key?(:error)
17844
+ @last_attempt = args[:last_attempt] if args.key?(:last_attempt)
17829
17845
  @queuing_policy = args[:queuing_policy] if args.key?(:queuing_policy)
17830
17846
  end
17831
17847
 
17832
17848
  # [Output only] Fatal errors encountered during the queueing or provisioning
17833
- # phases of the ResizeRequest that caused the transition to the FAILED state. As
17834
- # a contrary to the last_attempt errors, this field is final and errors are
17835
- # never removed from here, as the RR is not going to retry.
17849
+ # phases of the ResizeRequest that caused the transition to the FAILED state.
17850
+ # Contrary to the last_attempt errors, this field is final and errors are never
17851
+ # removed from here, as the ResizeRequest is not going to retry.
17836
17852
  class Error
17837
17853
  include Google::Apis::Core::Hashable
17838
17854
 
@@ -17941,6 +17957,133 @@ module Google
17941
17957
  end
17942
17958
  end
17943
17959
 
17960
+ #
17961
+ class InstanceGroupManagerResizeRequestStatusLastAttempt
17962
+ include Google::Apis::Core::Hashable
17963
+
17964
+ # Errors that prevented the ResizeRequest to be fulfilled.
17965
+ # Corresponds to the JSON property `error`
17966
+ # @return [Google::Apis::ComputeAlpha::InstanceGroupManagerResizeRequestStatusLastAttempt::Error]
17967
+ attr_accessor :error
17968
+
17969
+ def initialize(**args)
17970
+ update!(**args)
17971
+ end
17972
+
17973
+ # Update properties of this object
17974
+ def update!(**args)
17975
+ @error = args[:error] if args.key?(:error)
17976
+ end
17977
+
17978
+ # Errors that prevented the ResizeRequest to be fulfilled.
17979
+ class Error
17980
+ include Google::Apis::Core::Hashable
17981
+
17982
+ # [Output Only] The array of errors encountered while processing this operation.
17983
+ # Corresponds to the JSON property `errors`
17984
+ # @return [Array<Google::Apis::ComputeAlpha::InstanceGroupManagerResizeRequestStatusLastAttempt::Error::Error>]
17985
+ attr_accessor :errors
17986
+
17987
+ def initialize(**args)
17988
+ update!(**args)
17989
+ end
17990
+
17991
+ # Update properties of this object
17992
+ def update!(**args)
17993
+ @errors = args[:errors] if args.key?(:errors)
17994
+ end
17995
+
17996
+ #
17997
+ class Error
17998
+ include Google::Apis::Core::Hashable
17999
+
18000
+ # [Output Only] The error type identifier for this error.
18001
+ # Corresponds to the JSON property `code`
18002
+ # @return [String]
18003
+ attr_accessor :code
18004
+
18005
+ # [Output Only] An optional list of messages that contain the error details.
18006
+ # There is a set of defined message types to use for providing details.The
18007
+ # syntax depends on the error code. For example, QuotaExceededInfo will have
18008
+ # details when the error code is QUOTA_EXCEEDED.
18009
+ # Corresponds to the JSON property `errorDetails`
18010
+ # @return [Array<Google::Apis::ComputeAlpha::InstanceGroupManagerResizeRequestStatusLastAttempt::Error::Error::ErrorDetail>]
18011
+ attr_accessor :error_details
18012
+
18013
+ # [Output Only] Indicates the field in the request that caused the error. This
18014
+ # property is optional.
18015
+ # Corresponds to the JSON property `location`
18016
+ # @return [String]
18017
+ attr_accessor :location
18018
+
18019
+ # [Output Only] An optional, human-readable error message.
18020
+ # Corresponds to the JSON property `message`
18021
+ # @return [String]
18022
+ attr_accessor :message
18023
+
18024
+ def initialize(**args)
18025
+ update!(**args)
18026
+ end
18027
+
18028
+ # Update properties of this object
18029
+ def update!(**args)
18030
+ @code = args[:code] if args.key?(:code)
18031
+ @error_details = args[:error_details] if args.key?(:error_details)
18032
+ @location = args[:location] if args.key?(:location)
18033
+ @message = args[:message] if args.key?(:message)
18034
+ end
18035
+
18036
+ #
18037
+ class ErrorDetail
18038
+ include Google::Apis::Core::Hashable
18039
+
18040
+ # Describes the cause of the error with structured details. Example of an error
18041
+ # when contacting the "pubsub.googleapis.com" API when it is not enabled: ` "
18042
+ # reason": "API_DISABLED" "domain": "googleapis.com" "metadata": ` "resource": "
18043
+ # projects/123", "service": "pubsub.googleapis.com" ` ` This response indicates
18044
+ # that the pubsub.googleapis.com API is not enabled. Example of an error that is
18045
+ # returned when attempting to create a Spanner instance in a region that is out
18046
+ # of stock: ` "reason": "STOCKOUT" "domain": "spanner.googleapis.com", "metadata"
18047
+ # : ` "availableRegions": "us-central1,us-east2" ` `
18048
+ # Corresponds to the JSON property `errorInfo`
18049
+ # @return [Google::Apis::ComputeAlpha::ErrorInfo]
18050
+ attr_accessor :error_info
18051
+
18052
+ # Provides links to documentation or for performing an out of band action. For
18053
+ # example, if a quota check failed with an error indicating the calling project
18054
+ # hasn't enabled the accessed service, this can contain a URL pointing directly
18055
+ # to the right place in the developer console to flip the bit.
18056
+ # Corresponds to the JSON property `help`
18057
+ # @return [Google::Apis::ComputeAlpha::Help]
18058
+ attr_accessor :help
18059
+
18060
+ # Provides a localized error message that is safe to return to the user which
18061
+ # can be attached to an RPC error.
18062
+ # Corresponds to the JSON property `localizedMessage`
18063
+ # @return [Google::Apis::ComputeAlpha::LocalizedMessage]
18064
+ attr_accessor :localized_message
18065
+
18066
+ # Additional details for quota exceeded error for resource quota.
18067
+ # Corresponds to the JSON property `quotaInfo`
18068
+ # @return [Google::Apis::ComputeAlpha::QuotaExceededInfo]
18069
+ attr_accessor :quota_info
18070
+
18071
+ def initialize(**args)
18072
+ update!(**args)
18073
+ end
18074
+
18075
+ # Update properties of this object
18076
+ def update!(**args)
18077
+ @error_info = args[:error_info] if args.key?(:error_info)
18078
+ @help = args[:help] if args.key?(:help)
18079
+ @localized_message = args[:localized_message] if args.key?(:localized_message)
18080
+ @quota_info = args[:quota_info] if args.key?(:quota_info)
18081
+ end
18082
+ end
18083
+ end
18084
+ end
18085
+ end
18086
+
17944
18087
  # [Output Only] A list of resize requests.
17945
18088
  class InstanceGroupManagerResizeRequestsListResponse
17946
18089
  include Google::Apis::Core::Hashable
@@ -26415,6 +26558,51 @@ module Google
26415
26558
  end
26416
26559
  end
26417
26560
 
26561
+ #
26562
+ class NamedSet
26563
+ include Google::Apis::Core::Hashable
26564
+
26565
+ # CEL expressions that are comparable to constructs of this set's type (see
26566
+ # Policy Language).
26567
+ # Corresponds to the JSON property `elements`
26568
+ # @return [Array<Google::Apis::ComputeAlpha::Expr>]
26569
+ attr_accessor :elements
26570
+
26571
+ # A fingerprint for the Named Set being applied to this Router, which is
26572
+ # essentially a hash of the Named Set used for optimistic locking. The
26573
+ # fingerprint is initially generated by Compute Engine and changes after every
26574
+ # request to modify or update the Named Set. You must always provide an up-to-
26575
+ # date fingerprint hash in order to update or change labels. To see the latest
26576
+ # fingerprint, make a getNamedSet() request to retrieve a Named Set.
26577
+ # Corresponds to the JSON property `fingerprint`
26578
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
26579
+ # @return [String]
26580
+ attr_accessor :fingerprint
26581
+
26582
+ # This set's name, which must be a resource ID segment and unique within all
26583
+ # named sets owned by the Router. Name should conform to RFC1035.
26584
+ # Corresponds to the JSON property `name`
26585
+ # @return [String]
26586
+ attr_accessor :name
26587
+
26588
+ # This named set's type
26589
+ # Corresponds to the JSON property `type`
26590
+ # @return [String]
26591
+ attr_accessor :type
26592
+
26593
+ def initialize(**args)
26594
+ update!(**args)
26595
+ end
26596
+
26597
+ # Update properties of this object
26598
+ def update!(**args)
26599
+ @elements = args[:elements] if args.key?(:elements)
26600
+ @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
26601
+ @name = args[:name] if args.key?(:name)
26602
+ @type = args[:type] if args.key?(:type)
26603
+ end
26604
+ end
26605
+
26418
26606
  # Contains NAT IP information of a NAT config (i.e. usage status, mode).
26419
26607
  class NatIpInfo
26420
26608
  include Google::Apis::Core::Hashable
@@ -27482,8 +27670,8 @@ module Google
27482
27670
  # @return [Hash<String,String>]
27483
27671
  attr_accessor :annotations
27484
27672
 
27485
- # Only valid for network endpoint groups created with client_port_mapping
27486
- # supported. Represents the port number to which original packet is sent.
27673
+ # Represents the port number to which PSC consumer sends packets. Only valid for
27674
+ # network endpoint groups created with CLIENT_PORT_PER_ENDPOINT mapping mode.
27487
27675
  # Corresponds to the JSON property `clientPort`
27488
27676
  # @return [Fixnum]
27489
27677
  attr_accessor :client_port
@@ -27494,11 +27682,12 @@ module Google
27494
27682
  # @return [String]
27495
27683
  attr_accessor :fqdn
27496
27684
 
27497
- # The name or a URL of a specific VM instance that the IP address belongs to.
27498
- # This is required for network endpoints of type GCE_VM_IP_PORT. The instance
27499
- # must be in the same zone of network endpoint group (for zonal NEGs) or in the
27500
- # zone within the region of the NEG (for regional NEGs). The name must be 1-63
27501
- # characters long, and comply with RFC1035 or be a valid URL pointing to an
27685
+ # The name or a URL of VM instance of this network endpoint. This field is
27686
+ # required for network endpoints of type GCE_VM_IP and GCE_VM_IP_PORT. The
27687
+ # instance must be in the same zone of network endpoint group (for zonal NEGs)
27688
+ # or in the zone within the region of the NEG (for regional NEGs). If the
27689
+ # ipAddress is specified, it must belongs to the VM instance. The name must be 1-
27690
+ # 63 characters long, and comply with RFC1035 or be a valid URL pointing to an
27502
27691
  # existing instance.
27503
27692
  # Corresponds to the JSON property `instance`
27504
27693
  # @return [String]
@@ -27508,7 +27697,11 @@ module Google
27508
27697
  # in Compute Engine (either the primary IP or as part of an aliased IP range).
27509
27698
  # If the IP address is not specified, then the primary IP address for the VM
27510
27699
  # instance in the network that the network endpoint group belongs to will be
27511
- # used.
27700
+ # used. This field is redundant and need not be set for network endpoints of
27701
+ # type GCE_VM_IP. If set, it must be set to the primary internal IP address of
27702
+ # the attached VM instance that matches the subnetwork of the NEG. The primary
27703
+ # internal IP address from any NIC of a multi-NIC VM instance can be added to a
27704
+ # NEG as long as it matches the NEG subnetwork.
27512
27705
  # Corresponds to the JSON property `ipAddress`
27513
27706
  # @return [String]
27514
27707
  attr_accessor :ip_address
@@ -27519,7 +27712,8 @@ module Google
27519
27712
  attr_accessor :ipv6_address
27520
27713
 
27521
27714
  # Optional port number of network endpoint. If not specified, the defaultPort
27522
- # for the network endpoint group will be used.
27715
+ # for the network endpoint group will be used. This field can not be set for
27716
+ # network endpoints of type GCE_VM_IP.
27523
27717
  # Corresponds to the JSON property `port`
27524
27718
  # @return [Fixnum]
27525
27719
  attr_accessor :port
@@ -27569,8 +27763,7 @@ module Google
27569
27763
  # @return [Google::Apis::ComputeAlpha::NetworkEndpointGroupAppEngine]
27570
27764
  attr_accessor :app_engine
27571
27765
 
27572
- # Only valid when networkEndpointType is "GCE_VM_IP_PORT" and the NEG is
27573
- # regional.
27766
+ # Only valid when networkEndpointType is GCE_VM_IP_PORT and the NEG is regional.
27574
27767
  # Corresponds to the JSON property `clientPortMappingMode`
27575
27768
  # @return [String]
27576
27769
  attr_accessor :client_port_mapping_mode
@@ -27596,7 +27789,8 @@ module Google
27596
27789
  attr_accessor :creation_timestamp
27597
27790
 
27598
27791
  # The default port used if the port number is not specified in the network
27599
- # endpoint.
27792
+ # endpoint. If the network endpoint type is either GCE_VM_IP, SERVERLESS or
27793
+ # PRIVATE_SERVICE_CONNECT, this field must not be specified.
27600
27794
  # Corresponds to the JSON property `defaultPort`
27601
27795
  # @return [Fixnum]
27602
27796
  attr_accessor :default_port
@@ -27634,8 +27828,8 @@ module Google
27634
27828
  # @return [String]
27635
27829
  attr_accessor :name
27636
27830
 
27637
- # The URL of the network to which all network endpoints in the NEG belong. Uses "
27638
- # default" project network if unspecified.
27831
+ # The URL of the network to which all network endpoints in the NEG belong. Uses
27832
+ # default project network if unspecified.
27639
27833
  # Corresponds to the JSON property `network`
27640
27834
  # @return [String]
27641
27835
  attr_accessor :network
@@ -27654,8 +27848,8 @@ module Google
27654
27848
  attr_accessor :psc_data
27655
27849
 
27656
27850
  # The target service url used to set up private service connection to a Google
27657
- # API or a PSC Producer Service Attachment. An example value is: "asia-
27658
- # northeast3-cloudkms.googleapis.com"
27851
+ # API or a PSC Producer Service Attachment. An example value is: asia-northeast3-
27852
+ # cloudkms.googleapis.com
27659
27853
  # Corresponds to the JSON property `pscTargetService`
27660
27854
  # @return [String]
27661
27855
  attr_accessor :psc_target_service
@@ -27872,24 +28066,25 @@ module Google
27872
28066
  include Google::Apis::Core::Hashable
27873
28067
 
27874
28068
  # Optional serving service. The service name is case-sensitive and must be 1-63
27875
- # characters long. Example value: "default", "my-service".
28069
+ # characters long. Example value: default, my-service.
27876
28070
  # Corresponds to the JSON property `service`
27877
28071
  # @return [String]
27878
28072
  attr_accessor :service
27879
28073
 
27880
- # A template to parse service and version fields from a request URL. URL mask
27881
- # allows for routing to multiple App Engine services without having to create
27882
- # multiple Network Endpoint Groups and backend services. For example, the
27883
- # request URLs "foo1-dot-appname.appspot.com/v1" and "foo1-dot-appname.appspot.
27884
- # com/v2" can be backed by the same Serverless NEG with URL mask "<service>-dot-
27885
- # appname.appspot.com/<version>". The URL mask will parse them to ` service = "
27886
- # foo1", version = "v1" ` and ` service = "foo1", version = "v2" ` respectively.
28074
+ # An URL mask is one of the main components of the Cloud Function. A template to
28075
+ # parse service and version fields from a request URL. URL mask allows for
28076
+ # routing to multiple App Engine services without having to create multiple
28077
+ # Network Endpoint Groups and backend services. For example, the request URLs
28078
+ # foo1-dot-appname.appspot.com/v1 and foo1-dot-appname.appspot.com/v2 can be
28079
+ # backed by the same Serverless NEG with URL mask <service>-dot-appname.appspot.
28080
+ # com/<version>. The URL mask will parse them to ` service = "foo1", version = "
28081
+ # v1" ` and ` service = "foo1", version = "v2" ` respectively.
27887
28082
  # Corresponds to the JSON property `urlMask`
27888
28083
  # @return [String]
27889
28084
  attr_accessor :url_mask
27890
28085
 
27891
28086
  # Optional serving version. The version name is case-sensitive and must be 1-100
27892
- # characters long. Example value: "v1", "v2".
28087
+ # characters long. Example value: v1, v2.
27893
28088
  # Corresponds to the JSON property `version`
27894
28089
  # @return [String]
27895
28090
  attr_accessor :version
@@ -27913,17 +28108,18 @@ module Google
27913
28108
  include Google::Apis::Core::Hashable
27914
28109
 
27915
28110
  # A user-defined name of the Cloud Function. The function name is case-sensitive
27916
- # and must be 1-63 characters long. Example value: "func1".
28111
+ # and must be 1-63 characters long. Example value: func1.
27917
28112
  # Corresponds to the JSON property `function`
27918
28113
  # @return [String]
27919
28114
  attr_accessor :function
27920
28115
 
27921
- # A template to parse function field from a request URL. URL mask allows for
27922
- # routing to multiple Cloud Functions without having to create multiple Network
27923
- # Endpoint Groups and backend services. For example, request URLs " mydomain.com/
27924
- # function1" and "mydomain.com/function2" can be backed by the same Serverless
27925
- # NEG with URL mask "/<function>". The URL mask will parse them to ` function = "
27926
- # function1" ` and ` function = "function2" ` respectively.
28116
+ # An URL mask is one of the main components of the Cloud Function. A template to
28117
+ # parse function field from a request URL. URL mask allows for routing to
28118
+ # multiple Cloud Functions without having to create multiple Network Endpoint
28119
+ # Groups and backend services. For example, request URLs mydomain.com/function1
28120
+ # and mydomain.com/function2 can be backed by the same Serverless NEG with URL
28121
+ # mask /<function>. The URL mask will parse them to ` function = "function1" `
28122
+ # and ` function = "function2" ` respectively.
27927
28123
  # Corresponds to the JSON property `urlMask`
27928
28124
  # @return [String]
27929
28125
  attr_accessor :url_mask
@@ -27959,13 +28155,14 @@ module Google
27959
28155
  # @return [String]
27960
28156
  attr_accessor :tag
27961
28157
 
27962
- # A template to parse <service> and <tag> fields from a request URL. URL mask
27963
- # allows for routing to multiple Run services without having to create multiple
27964
- # network endpoint groups and backend services. For example, request URLs "foo1.
27965
- # domain.com/bar1" and "foo1.domain.com/bar2" can be backed by the same
27966
- # Serverless Network Endpoint Group (NEG) with URL mask "<tag>.domain.com/<
27967
- # service>". The URL mask will parse them to ` service="bar1", tag="foo1" ` and `
27968
- # service="bar2", tag="foo2" ` respectively.
28158
+ # An URL mask is one of the main components of the Cloud Function. A template to
28159
+ # parse <service> and <tag> fields from a request URL. URL mask allows for
28160
+ # routing to multiple Run services without having to create multiple network
28161
+ # endpoint groups and backend services. For example, request URLs foo1.domain.
28162
+ # com/bar1 and foo1.domain.com/bar2 can be backed by the same Serverless Network
28163
+ # Endpoint Group (NEG) with URL mask <tag>.domain.com/<service>. The URL mask
28164
+ # will parse them to ` service="bar1", tag="foo1" ` and ` service="bar2", tag="
28165
+ # foo2" ` respectively.
27969
28166
  # Corresponds to the JSON property `urlMask`
27970
28167
  # @return [String]
27971
28168
  attr_accessor :url_mask
@@ -27987,13 +28184,15 @@ module Google
27987
28184
  include Google::Apis::Core::Hashable
27988
28185
 
27989
28186
  # The default port used if the port number is not specified in the network
27990
- # endpoint. [Deprecated] This field is deprecated.
28187
+ # endpoint. If the network endpoint type is either GCE_VM_IP, SERVERLESS or
28188
+ # PRIVATE_SERVICE_CONNECT, this field must not be specified. [Deprecated] This
28189
+ # field is deprecated.
27991
28190
  # Corresponds to the JSON property `defaultPort`
27992
28191
  # @return [Fixnum]
27993
28192
  attr_accessor :default_port
27994
28193
 
27995
- # The URL of the network to which all network endpoints in the NEG belong. Uses "
27996
- # default" project network if unspecified. [Deprecated] This field is deprecated.
28194
+ # The URL of the network to which all network endpoints in the NEG belong. Uses
28195
+ # default project network if unspecified. [Deprecated] This field is deprecated.
27997
28196
  # Corresponds to the JSON property `network`
27998
28197
  # @return [String]
27999
28198
  attr_accessor :network
@@ -28195,12 +28394,13 @@ module Google
28195
28394
  # @return [String]
28196
28395
  attr_accessor :resource
28197
28396
 
28198
- # A template to parse platform-specific fields from a request URL. URL mask
28199
- # allows for routing to multiple resources on the same serverless platform
28200
- # without having to create multiple Network Endpoint Groups and backend
28201
- # resources. The fields parsed by this template are platform-specific and are as
28202
- # follows: 1. API Gateway: The gateway ID 2. App Engine: The service and version
28203
- # 3. Cloud Functions: The function name 4. Cloud Run: The service and tag
28397
+ # An URL mask is one of the main components of the Cloud Function. A template to
28398
+ # parse platform-specific fields from a request URL. URL mask allows for routing
28399
+ # to multiple resources on the same serverless platform without having to create
28400
+ # multiple Network Endpoint Groups and backend resources. The fields parsed by
28401
+ # this template are platform-specific and are as follows: 1. API Gateway: The
28402
+ # gateway ID 2. App Engine: The service and version 3. Cloud Functions: The
28403
+ # function name 4. Cloud Run: The service and tag
28204
28404
  # Corresponds to the JSON property `urlMask`
28205
28405
  # @return [String]
28206
28406
  attr_accessor :url_mask
@@ -28568,6 +28768,12 @@ module Google
28568
28768
  # @return [String]
28569
28769
  attr_accessor :fingerprint
28570
28770
 
28771
+ # Indicate whether igmp query is enabled on the network interface or not. If
28772
+ # enabled, also indicates the version of IGMP supported.
28773
+ # Corresponds to the JSON property `igmpQuery`
28774
+ # @return [String]
28775
+ attr_accessor :igmp_query
28776
+
28571
28777
  # The prefix length of the primary internal IPv6 range.
28572
28778
  # Corresponds to the JSON property `internalIpv6PrefixLength`
28573
28779
  # @return [Fixnum]
@@ -28697,6 +28903,7 @@ module Google
28697
28903
  @access_configs = args[:access_configs] if args.key?(:access_configs)
28698
28904
  @alias_ip_ranges = args[:alias_ip_ranges] if args.key?(:alias_ip_ranges)
28699
28905
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
28906
+ @igmp_query = args[:igmp_query] if args.key?(:igmp_query)
28700
28907
  @internal_ipv6_prefix_length = args[:internal_ipv6_prefix_length] if args.key?(:internal_ipv6_prefix_length)
28701
28908
  @ipv6_access_configs = args[:ipv6_access_configs] if args.key?(:ipv6_access_configs)
28702
28909
  @ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
@@ -37559,8 +37766,8 @@ module Google
37559
37766
  # @return [Google::Apis::ComputeAlpha::Duration]
37560
37767
  attr_accessor :delete_after_duration
37561
37768
 
37562
- # Absolute time in future when the reservation will be auto-deleted by GCE.
37563
- # Timestamp is represented in RFC3339 text format.
37769
+ # Absolute time in future when the reservation will be auto-deleted by Compute
37770
+ # Engine. Timestamp is represented in RFC3339 text format.
37564
37771
  # Corresponds to the JSON property `deleteAtTime`
37565
37772
  # @return [String]
37566
37773
  attr_accessor :delete_at_time
@@ -41434,6 +41641,31 @@ module Google
41434
41641
  end
41435
41642
  end
41436
41643
 
41644
+ #
41645
+ class RoutersGetNamedSetResponse
41646
+ include Google::Apis::Core::Hashable
41647
+
41648
+ # end_interface: MixerGetResponseWithEtagBuilder
41649
+ # Corresponds to the JSON property `etag`
41650
+ # @return [String]
41651
+ attr_accessor :etag
41652
+
41653
+ #
41654
+ # Corresponds to the JSON property `resource`
41655
+ # @return [Google::Apis::ComputeAlpha::NamedSet]
41656
+ attr_accessor :resource
41657
+
41658
+ def initialize(**args)
41659
+ update!(**args)
41660
+ end
41661
+
41662
+ # Update properties of this object
41663
+ def update!(**args)
41664
+ @etag = args[:etag] if args.key?(:etag)
41665
+ @resource = args[:resource] if args.key?(:resource)
41666
+ end
41667
+ end
41668
+
41437
41669
  #
41438
41670
  class RoutersGetRoutePolicyResponse
41439
41671
  include Google::Apis::Core::Hashable
@@ -41590,6 +41822,137 @@ module Google
41590
41822
  end
41591
41823
  end
41592
41824
 
41825
+ #
41826
+ class RoutersListNamedSets
41827
+ include Google::Apis::Core::Hashable
41828
+
41829
+ #
41830
+ # Corresponds to the JSON property `etag`
41831
+ # @return [String]
41832
+ attr_accessor :etag
41833
+
41834
+ # [Output Only] The unique identifier for the resource. This identifier is
41835
+ # defined by the server.
41836
+ # Corresponds to the JSON property `id`
41837
+ # @return [String]
41838
+ attr_accessor :id
41839
+
41840
+ # [Output Only] Type of resource. Always compute#routersListNamedSets for lists
41841
+ # of named sets.
41842
+ # Corresponds to the JSON property `kind`
41843
+ # @return [String]
41844
+ attr_accessor :kind
41845
+
41846
+ # [Output Only] This token allows you to get the next page of results for list
41847
+ # requests. If the number of results is larger than maxResults, use the
41848
+ # nextPageToken as a value for the query parameter pageToken in the next list
41849
+ # request. Subsequent list requests will have their own nextPageToken to
41850
+ # continue paging through the results.
41851
+ # Corresponds to the JSON property `nextPageToken`
41852
+ # @return [String]
41853
+ attr_accessor :next_page_token
41854
+
41855
+ # [Output Only] A list of named sets.
41856
+ # Corresponds to the JSON property `result`
41857
+ # @return [Array<Google::Apis::ComputeAlpha::NamedSet>]
41858
+ attr_accessor :result
41859
+
41860
+ # [Output Only] Server-defined URL for this resource.
41861
+ # Corresponds to the JSON property `selfLink`
41862
+ # @return [String]
41863
+ attr_accessor :self_link
41864
+
41865
+ # [Output Only] Unreachable resources.
41866
+ # Corresponds to the JSON property `unreachables`
41867
+ # @return [Array<String>]
41868
+ attr_accessor :unreachables
41869
+
41870
+ # [Output Only] Informational warning message.
41871
+ # Corresponds to the JSON property `warning`
41872
+ # @return [Google::Apis::ComputeAlpha::RoutersListNamedSets::Warning]
41873
+ attr_accessor :warning
41874
+
41875
+ def initialize(**args)
41876
+ update!(**args)
41877
+ end
41878
+
41879
+ # Update properties of this object
41880
+ def update!(**args)
41881
+ @etag = args[:etag] if args.key?(:etag)
41882
+ @id = args[:id] if args.key?(:id)
41883
+ @kind = args[:kind] if args.key?(:kind)
41884
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
41885
+ @result = args[:result] if args.key?(:result)
41886
+ @self_link = args[:self_link] if args.key?(:self_link)
41887
+ @unreachables = args[:unreachables] if args.key?(:unreachables)
41888
+ @warning = args[:warning] if args.key?(:warning)
41889
+ end
41890
+
41891
+ # [Output Only] Informational warning message.
41892
+ class Warning
41893
+ include Google::Apis::Core::Hashable
41894
+
41895
+ # [Output Only] A warning code, if applicable. For example, Compute Engine
41896
+ # returns NO_RESULTS_ON_PAGE if there are no results in the response.
41897
+ # Corresponds to the JSON property `code`
41898
+ # @return [String]
41899
+ attr_accessor :code
41900
+
41901
+ # [Output Only] Metadata about this warning in key: value format. For example: "
41902
+ # data": [ ` "key": "scope", "value": "zones/us-east1-d" `
41903
+ # Corresponds to the JSON property `data`
41904
+ # @return [Array<Google::Apis::ComputeAlpha::RoutersListNamedSets::Warning::Datum>]
41905
+ attr_accessor :data
41906
+
41907
+ # [Output Only] A human-readable description of the warning code.
41908
+ # Corresponds to the JSON property `message`
41909
+ # @return [String]
41910
+ attr_accessor :message
41911
+
41912
+ def initialize(**args)
41913
+ update!(**args)
41914
+ end
41915
+
41916
+ # Update properties of this object
41917
+ def update!(**args)
41918
+ @code = args[:code] if args.key?(:code)
41919
+ @data = args[:data] if args.key?(:data)
41920
+ @message = args[:message] if args.key?(:message)
41921
+ end
41922
+
41923
+ #
41924
+ class Datum
41925
+ include Google::Apis::Core::Hashable
41926
+
41927
+ # [Output Only] A key that provides more detail on the warning being returned.
41928
+ # For example, for warnings where there are no results in a list request for a
41929
+ # particular zone, this key might be scope and the key value might be the zone
41930
+ # name. Other examples might be a key indicating a deprecated resource and a
41931
+ # suggested replacement, or a warning about invalid network settings (for
41932
+ # example, if an instance attempts to perform IP forwarding but is not enabled
41933
+ # for IP forwarding).
41934
+ # Corresponds to the JSON property `key`
41935
+ # @return [String]
41936
+ attr_accessor :key
41937
+
41938
+ # [Output Only] A warning data value corresponding to the key.
41939
+ # Corresponds to the JSON property `value`
41940
+ # @return [String]
41941
+ attr_accessor :value
41942
+
41943
+ def initialize(**args)
41944
+ update!(**args)
41945
+ end
41946
+
41947
+ # Update properties of this object
41948
+ def update!(**args)
41949
+ @key = args[:key] if args.key?(:key)
41950
+ @value = args[:value] if args.key?(:value)
41951
+ end
41952
+ end
41953
+ end
41954
+ end
41955
+
41593
41956
  #
41594
41957
  class RoutersListRoutePolicies
41595
41958
  include Google::Apis::Core::Hashable
@@ -45751,6 +46114,11 @@ module Google
45751
46114
  # @return [String]
45752
46115
  attr_accessor :region
45753
46116
 
46117
+ # [Output only] ResourceStatus of the Snapshot resource
46118
+ # Corresponds to the JSON property `resourceStatus`
46119
+ # @return [Google::Apis::ComputeAlpha::SnapshotResourceStatus]
46120
+ attr_accessor :resource_status
46121
+
45754
46122
  # Output only. Reserved for future use.
45755
46123
  # Corresponds to the JSON property `satisfiesPzi`
45756
46124
  # @return [Boolean]
@@ -45906,6 +46274,7 @@ module Google
45906
46274
  @max_retention_days = args[:max_retention_days] if args.key?(:max_retention_days)
45907
46275
  @name = args[:name] if args.key?(:name)
45908
46276
  @region = args[:region] if args.key?(:region)
46277
+ @resource_status = args[:resource_status] if args.key?(:resource_status)
45909
46278
  @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
45910
46279
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
45911
46280
  @self_link = args[:self_link] if args.key?(:self_link)
@@ -46176,6 +46545,26 @@ module Google
46176
46545
  end
46177
46546
  end
46178
46547
 
46548
+ #
46549
+ class SnapshotResourceStatus
46550
+ include Google::Apis::Core::Hashable
46551
+
46552
+ # [Output only] Scheduled deletion time of the snapshot. The snapshot will be
46553
+ # deleted by the at any point within one hour after the deletion time.
46554
+ # Corresponds to the JSON property `scheduledDeletionTime`
46555
+ # @return [String]
46556
+ attr_accessor :scheduled_deletion_time
46557
+
46558
+ def initialize(**args)
46559
+ update!(**args)
46560
+ end
46561
+
46562
+ # Update properties of this object
46563
+ def update!(**args)
46564
+ @scheduled_deletion_time = args[:scheduled_deletion_time] if args.key?(:scheduled_deletion_time)
46565
+ end
46566
+ end
46567
+
46179
46568
  #
46180
46569
  class SnapshotSettings
46181
46570
  include Google::Apis::Core::Hashable
@@ -47858,8 +48247,8 @@ module Google
47858
48247
  # @return [Fixnum]
47859
48248
  attr_accessor :pool_provisioned_capacity_gb
47860
48249
 
47861
- # Provsioned IOPS of the storage pool. Only relevant if the storage pool type is
47862
- # hyperdisk-balanced.
48250
+ # Provisioned IOPS of the storage pool. Only relevant if the storage pool type
48251
+ # is hyperdisk-balanced.
47863
48252
  # Corresponds to the JSON property `poolProvisionedIops`
47864
48253
  # @return [Fixnum]
47865
48254
  attr_accessor :pool_provisioned_iops
@@ -51052,6 +51441,25 @@ module Google
51052
51441
  # @return [String]
51053
51442
  attr_accessor :ssl_policy
51054
51443
 
51444
+ # Specifies whether TLS 1.3 0-RTT Data ("Early Data") should be accepted for
51445
+ # this service. Early Data allows a TLS resumption handshake to include the
51446
+ # initial application payload (a HTTP request) alongside the handshake, reducing
51447
+ # the effective round trips to "zero". This applies to TLS 1.3 connections over
51448
+ # TCP (HTTP/2) as well as over UDP (QUIC/h3). This can improve application
51449
+ # performance, especially on networks where interruptions may be common, such as
51450
+ # on mobile. Requests with Early Data will have the "Early-Data" HTTP header set
51451
+ # on the request, with a value of "1", to allow the backend to determine whether
51452
+ # Early Data was included. Note: TLS Early Data may allow requests to be
51453
+ # replayed, as the data is sent to the backend before the handshake has fully
51454
+ # completed. Applications that allow idempotent HTTP methods to make non-
51455
+ # idempotent changes, such as a GET request updating a database, should not
51456
+ # accept Early Data on those requests, and reject requests with the "Early-Data:
51457
+ # 1" HTTP header by returning a HTTP 425 (Too Early) status code, in order to
51458
+ # remain RFC compliant. The default value is DISABLED.
51459
+ # Corresponds to the JSON property `tlsEarlyData`
51460
+ # @return [String]
51461
+ attr_accessor :tls_early_data
51462
+
51055
51463
  # A fully-qualified or valid partial URL to the UrlMap resource that defines the
51056
51464
  # mapping from URL to the BackendService. For example, the following are all
51057
51465
  # valid URLs for specifying a URL map: - https://www.googleapis.compute/v1/
@@ -51087,6 +51495,7 @@ module Google
51087
51495
  @server_tls_policy = args[:server_tls_policy] if args.key?(:server_tls_policy)
51088
51496
  @ssl_certificates = args[:ssl_certificates] if args.key?(:ssl_certificates)
51089
51497
  @ssl_policy = args[:ssl_policy] if args.key?(:ssl_policy)
51498
+ @tls_early_data = args[:tls_early_data] if args.key?(:tls_early_data)
51090
51499
  @url_map = args[:url_map] if args.key?(:url_map)
51091
51500
  end
51092
51501
  end