google-apis-compute_v1 0.51.0 → 0.52.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: 6f66c63c2959cb2a0c496b005ed871dad2c9d1f8d975db5845e592fdef62f8d9
4
- data.tar.gz: 92557471fb62ff72e41bce5c2888014b5a7ab4853e9d38f56967e739529035ee
3
+ metadata.gz: 016507642476add736aceb32a00d864d93d46c141eab4952c43cc6bcf8d9b407
4
+ data.tar.gz: f837eb95b1d8ce737b74131ec34b9cc15144647f6b5b8e5891c4af02d5b3cfba
5
5
  SHA512:
6
- metadata.gz: c7d0e4db51560075cf7e8601b9ca8c21b5dabaea43374484a5f7e3aa77b45e5057074100bf951595e964f167af2f8b10e214240b2bd3150631f89de8c68a85e4
7
- data.tar.gz: 7e96dcf8030d3808e71d541a640074242cf9ec604ba60841b974686dd155893cc03bec54a70b24aedb8eff6682dbcdaef26cf6c8b19338c5425bc4b09582532a
6
+ metadata.gz: a1b85ff5f6a1d40e3b66621d32a76999738059ba466d193d1241640dc0156db60af810aa0c3a3008ae61138c05010bceb8ed88671d6103efad7f01f6d2c3617e
7
+ data.tar.gz: 32781065a7169db35c0cacc7fbf168ff306063417d6459136d819b59b96d7ec3ca3e65ba23b4e2a03a7e44a5318b195fe33656424c4fc02ba35b2c72107ae042
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-compute_v1
2
2
 
3
+ ### v0.52.0 (2022-09-21)
4
+
5
+ * Regenerated from discovery document revision 20220911
6
+ * Regenerated using generator version 0.10.0
7
+
3
8
  ### v0.51.0 (2022-09-16)
4
9
 
5
10
  * Unspecified changes
@@ -9333,27 +9333,35 @@ module Google
9333
9333
  # @return [String]
9334
9334
  attr_accessor :grpc_service_name
9335
9335
 
9336
- # The port number for the health check request. Must be specified if port_name
9337
- # and port_specification are not set or if port_specification is USE_FIXED_PORT.
9338
- # Valid values are 1 through 65535.
9336
+ # The TCP port number to which the health check prober sends packets. Valid
9337
+ # values are 1 through 65535.
9339
9338
  # Corresponds to the JSON property `port`
9340
9339
  # @return [Fixnum]
9341
9340
  attr_accessor :port
9342
9341
 
9343
- # Port name as defined in InstanceGroup#NamedPort#name. If both port and
9344
- # port_name are defined, port takes precedence. The port_name should conform to
9345
- # RFC1035.
9342
+ # Not supported.
9346
9343
  # Corresponds to the JSON property `portName`
9347
9344
  # @return [String]
9348
9345
  attr_accessor :port_name
9349
9346
 
9350
- # Specifies how port is selected for health checking, can be one of following
9351
- # values: USE_FIXED_PORT: The port number in port is used for health checking.
9352
- # USE_NAMED_PORT: The portName is used for health checking. USE_SERVING_PORT:
9353
- # For NetworkEndpointGroup, the port specified for each network endpoint is used
9354
- # for health checking. For other backends, the port or named port specified in
9355
- # the Backend Service is used for health checking. If not specified, gRPC health
9356
- # check follows behavior specified in port and portName fields.
9347
+ # Specifies how a port is selected for health checking. Can be one of the
9348
+ # following values: USE_FIXED_PORT: Specifies a port number explicitly using the
9349
+ # port field in the health check. Supported by backend services for pass-through
9350
+ # load balancers and backend services for proxy load balancers. Not supported by
9351
+ # target pools. The health check supports all backends supported by the backend
9352
+ # service provided the backend can be health checked. For example, GCE_VM_IP
9353
+ # network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance
9354
+ # group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an
9355
+ # indirect method of specifying the health check port by referring to the
9356
+ # backend service. Only supported by backend services for proxy load balancers.
9357
+ # Not supported by target pools. Not supported by backend services for pass-
9358
+ # through load balancers. Supports all backends that can be health checked; for
9359
+ # example, GCE_VM_IP_PORT network endpoint groups and instance group backends.
9360
+ # For GCE_VM_IP_PORT network endpoint group backends, the health check uses the
9361
+ # port number specified for each endpoint in the network endpoint group. For
9362
+ # instance group backends, the health check uses the port number determined by
9363
+ # looking up the backend service's named port in the instance group's list of
9364
+ # named ports.
9357
9365
  # Corresponds to the JSON property `portSpecification`
9358
9366
  # @return [String]
9359
9367
  attr_accessor :port_specification
@@ -9691,31 +9699,43 @@ module Google
9691
9699
  include Google::Apis::Core::Hashable
9692
9700
 
9693
9701
  # The value of the host header in the HTTP/2 health check request. If left empty
9694
- # (default value), the IP on behalf of which this health check is performed will
9695
- # be used.
9702
+ # (default value), the host header is set to the destination IP address to which
9703
+ # health check packets are sent. The destination IP address depends on the type
9704
+ # of load balancer. For details, see: https://cloud.google.com/load-balancing/
9705
+ # docs/health-check-concepts#hc-packet-dest
9696
9706
  # Corresponds to the JSON property `host`
9697
9707
  # @return [String]
9698
9708
  attr_accessor :host
9699
9709
 
9700
- # The TCP port number for the health check request. The default value is 443.
9701
- # Valid values are 1 through 65535.
9710
+ # The TCP port number to which the health check prober sends packets. The
9711
+ # default value is 443. Valid values are 1 through 65535.
9702
9712
  # Corresponds to the JSON property `port`
9703
9713
  # @return [Fixnum]
9704
9714
  attr_accessor :port
9705
9715
 
9706
- # Port name as defined in InstanceGroup#NamedPort#name. If both port and
9707
- # port_name are defined, port takes precedence.
9716
+ # Not supported.
9708
9717
  # Corresponds to the JSON property `portName`
9709
9718
  # @return [String]
9710
9719
  attr_accessor :port_name
9711
9720
 
9712
- # Specifies how port is selected for health checking, can be one of following
9713
- # values: USE_FIXED_PORT: The port number in port is used for health checking.
9714
- # USE_NAMED_PORT: The portName is used for health checking. USE_SERVING_PORT:
9715
- # For NetworkEndpointGroup, the port specified for each network endpoint is used
9716
- # for health checking. For other backends, the port or named port specified in
9717
- # the Backend Service is used for health checking. If not specified, HTTP2
9718
- # health check follows behavior specified in port and portName fields.
9721
+ # Specifies how a port is selected for health checking. Can be one of the
9722
+ # following values: USE_FIXED_PORT: Specifies a port number explicitly using the
9723
+ # port field in the health check. Supported by backend services for pass-through
9724
+ # load balancers and backend services for proxy load balancers. Not supported by
9725
+ # target pools. The health check supports all backends supported by the backend
9726
+ # service provided the backend can be health checked. For example, GCE_VM_IP
9727
+ # network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance
9728
+ # group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an
9729
+ # indirect method of specifying the health check port by referring to the
9730
+ # backend service. Only supported by backend services for proxy load balancers.
9731
+ # Not supported by target pools. Not supported by backend services for pass-
9732
+ # through load balancers. Supports all backends that can be health checked; for
9733
+ # example, GCE_VM_IP_PORT network endpoint groups and instance group backends.
9734
+ # For GCE_VM_IP_PORT network endpoint group backends, the health check uses the
9735
+ # port number specified for each endpoint in the network endpoint group. For
9736
+ # instance group backends, the health check uses the port number determined by
9737
+ # looking up the backend service's named port in the instance group's list of
9738
+ # named ports.
9719
9739
  # Corresponds to the JSON property `portSpecification`
9720
9740
  # @return [String]
9721
9741
  attr_accessor :port_specification
@@ -9731,9 +9751,11 @@ module Google
9731
9751
  # @return [String]
9732
9752
  attr_accessor :request_path
9733
9753
 
9734
- # The string to match anywhere in the first 1024 bytes of the response body. If
9735
- # left empty (the default value), the status code determines health. The
9736
- # response data can only be ASCII.
9754
+ # Creates a content-based HTTP/2 health check. In addition to the required HTTP
9755
+ # 200 (OK) status code, you can configure the health check to pass only when the
9756
+ # backend sends this specific ASCII response string within the first 1024 bytes
9757
+ # of the HTTP response body. For details, see: https://cloud.google.com/load-
9758
+ # balancing/docs/health-check-concepts#criteria-protocol-http
9737
9759
  # Corresponds to the JSON property `response`
9738
9760
  # @return [String]
9739
9761
  attr_accessor :response
@@ -9759,31 +9781,43 @@ module Google
9759
9781
  include Google::Apis::Core::Hashable
9760
9782
 
9761
9783
  # The value of the host header in the HTTP health check request. If left empty (
9762
- # default value), the IP on behalf of which this health check is performed will
9763
- # be used.
9784
+ # default value), the host header is set to the destination IP address to which
9785
+ # health check packets are sent. The destination IP address depends on the type
9786
+ # of load balancer. For details, see: https://cloud.google.com/load-balancing/
9787
+ # docs/health-check-concepts#hc-packet-dest
9764
9788
  # Corresponds to the JSON property `host`
9765
9789
  # @return [String]
9766
9790
  attr_accessor :host
9767
9791
 
9768
- # The TCP port number for the health check request. The default value is 80.
9769
- # Valid values are 1 through 65535.
9792
+ # The TCP port number to which the health check prober sends packets. The
9793
+ # default value is 80. Valid values are 1 through 65535.
9770
9794
  # Corresponds to the JSON property `port`
9771
9795
  # @return [Fixnum]
9772
9796
  attr_accessor :port
9773
9797
 
9774
- # Port name as defined in InstanceGroup#NamedPort#name. If both port and
9775
- # port_name are defined, port takes precedence.
9798
+ # Not supported.
9776
9799
  # Corresponds to the JSON property `portName`
9777
9800
  # @return [String]
9778
9801
  attr_accessor :port_name
9779
9802
 
9780
- # Specifies how port is selected for health checking, can be one of following
9781
- # values: USE_FIXED_PORT: The port number in port is used for health checking.
9782
- # USE_NAMED_PORT: The portName is used for health checking. USE_SERVING_PORT:
9783
- # For NetworkEndpointGroup, the port specified for each network endpoint is used
9784
- # for health checking. For other backends, the port or named port specified in
9785
- # the Backend Service is used for health checking. If not specified, HTTP health
9786
- # check follows behavior specified in port and portName fields.
9803
+ # Specifies how a port is selected for health checking. Can be one of the
9804
+ # following values: USE_FIXED_PORT: Specifies a port number explicitly using the
9805
+ # port field in the health check. Supported by backend services for pass-through
9806
+ # load balancers and backend services for proxy load balancers. Also supported
9807
+ # in legacy HTTP health checks for target pools. The health check supports all
9808
+ # backends supported by the backend service provided the backend can be health
9809
+ # checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT
9810
+ # network endpoint groups, and instance group backends. USE_NAMED_PORT: Not
9811
+ # supported. USE_SERVING_PORT: Provides an indirect method of specifying the
9812
+ # health check port by referring to the backend service. Only supported by
9813
+ # backend services for proxy load balancers. Not supported by target pools. Not
9814
+ # supported by backend services for pass-through load balancers. Supports all
9815
+ # backends that can be health checked; for example, GCE_VM_IP_PORT network
9816
+ # endpoint groups and instance group backends. For GCE_VM_IP_PORT network
9817
+ # endpoint group backends, the health check uses the port number specified for
9818
+ # each endpoint in the network endpoint group. For instance group backends, the
9819
+ # health check uses the port number determined by looking up the backend service'
9820
+ # s named port in the instance group's list of named ports.
9787
9821
  # Corresponds to the JSON property `portSpecification`
9788
9822
  # @return [String]
9789
9823
  attr_accessor :port_specification
@@ -9799,9 +9833,11 @@ module Google
9799
9833
  # @return [String]
9800
9834
  attr_accessor :request_path
9801
9835
 
9802
- # The string to match anywhere in the first 1024 bytes of the response body. If
9803
- # left empty (the default value), the status code determines health. The
9804
- # response data can only be ASCII.
9836
+ # Creates a content-based HTTP health check. In addition to the required HTTP
9837
+ # 200 (OK) status code, you can configure the health check to pass only when the
9838
+ # backend sends this specific ASCII response string within the first 1024 bytes
9839
+ # of the HTTP response body. For details, see: https://cloud.google.com/load-
9840
+ # balancing/docs/health-check-concepts#criteria-protocol-http
9805
9841
  # Corresponds to the JSON property `response`
9806
9842
  # @return [String]
9807
9843
  attr_accessor :response
@@ -9827,31 +9863,43 @@ module Google
9827
9863
  include Google::Apis::Core::Hashable
9828
9864
 
9829
9865
  # The value of the host header in the HTTPS health check request. If left empty (
9830
- # default value), the IP on behalf of which this health check is performed will
9831
- # be used.
9866
+ # default value), the host header is set to the destination IP address to which
9867
+ # health check packets are sent. The destination IP address depends on the type
9868
+ # of load balancer. For details, see: https://cloud.google.com/load-balancing/
9869
+ # docs/health-check-concepts#hc-packet-dest
9832
9870
  # Corresponds to the JSON property `host`
9833
9871
  # @return [String]
9834
9872
  attr_accessor :host
9835
9873
 
9836
- # The TCP port number for the health check request. The default value is 443.
9837
- # Valid values are 1 through 65535.
9874
+ # The TCP port number to which the health check prober sends packets. The
9875
+ # default value is 443. Valid values are 1 through 65535.
9838
9876
  # Corresponds to the JSON property `port`
9839
9877
  # @return [Fixnum]
9840
9878
  attr_accessor :port
9841
9879
 
9842
- # Port name as defined in InstanceGroup#NamedPort#name. If both port and
9843
- # port_name are defined, port takes precedence.
9880
+ # Not supported.
9844
9881
  # Corresponds to the JSON property `portName`
9845
9882
  # @return [String]
9846
9883
  attr_accessor :port_name
9847
9884
 
9848
- # Specifies how port is selected for health checking, can be one of following
9849
- # values: USE_FIXED_PORT: The port number in port is used for health checking.
9850
- # USE_NAMED_PORT: The portName is used for health checking. USE_SERVING_PORT:
9851
- # For NetworkEndpointGroup, the port specified for each network endpoint is used
9852
- # for health checking. For other backends, the port or named port specified in
9853
- # the Backend Service is used for health checking. If not specified, HTTPS
9854
- # health check follows behavior specified in port and portName fields.
9885
+ # Specifies how a port is selected for health checking. Can be one of the
9886
+ # following values: USE_FIXED_PORT: Specifies a port number explicitly using the
9887
+ # port field in the health check. Supported by backend services for pass-through
9888
+ # load balancers and backend services for proxy load balancers. Not supported by
9889
+ # target pools. The health check supports all backends supported by the backend
9890
+ # service provided the backend can be health checked. For example, GCE_VM_IP
9891
+ # network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance
9892
+ # group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an
9893
+ # indirect method of specifying the health check port by referring to the
9894
+ # backend service. Only supported by backend services for proxy load balancers.
9895
+ # Not supported by target pools. Not supported by backend services for pass-
9896
+ # through load balancers. Supports all backends that can be health checked; for
9897
+ # example, GCE_VM_IP_PORT network endpoint groups and instance group backends.
9898
+ # For GCE_VM_IP_PORT network endpoint group backends, the health check uses the
9899
+ # port number specified for each endpoint in the network endpoint group. For
9900
+ # instance group backends, the health check uses the port number determined by
9901
+ # looking up the backend service's named port in the instance group's list of
9902
+ # named ports.
9855
9903
  # Corresponds to the JSON property `portSpecification`
9856
9904
  # @return [String]
9857
9905
  attr_accessor :port_specification
@@ -9867,9 +9915,11 @@ module Google
9867
9915
  # @return [String]
9868
9916
  attr_accessor :request_path
9869
9917
 
9870
- # The string to match anywhere in the first 1024 bytes of the response body. If
9871
- # left empty (the default value), the status code determines health. The
9872
- # response data can only be ASCII.
9918
+ # Creates a content-based HTTPS health check. In addition to the required HTTP
9919
+ # 200 (OK) status code, you can configure the health check to pass only when the
9920
+ # backend sends this specific ASCII response string within the first 1024 bytes
9921
+ # of the HTTP response body. For details, see: https://cloud.google.com/load-
9922
+ # balancing/docs/health-check-concepts#criteria-protocol-http
9873
9923
  # Corresponds to the JSON property `response`
9874
9924
  # @return [String]
9875
9925
  attr_accessor :response
@@ -12715,6 +12765,13 @@ module Google
12715
12765
  # @return [Array<String>]
12716
12766
  attr_accessor :resource_policies
12717
12767
 
12768
+ # Contains output only fields. Use this sub-message for actual values set on
12769
+ # Instance attributes as compared to the value requested by the user (intent) in
12770
+ # their instance CRUD calls.
12771
+ # Corresponds to the JSON property `resourceStatus`
12772
+ # @return [Google::Apis::ComputeV1::ResourceStatus]
12773
+ attr_accessor :resource_status
12774
+
12718
12775
  # [Output Only] Reserved for future use.
12719
12776
  # Corresponds to the JSON property `satisfiesPzs`
12720
12777
  # @return [Boolean]
@@ -12830,6 +12887,7 @@ module Google
12830
12887
  @private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
12831
12888
  @reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
12832
12889
  @resource_policies = args[:resource_policies] if args.key?(:resource_policies)
12890
+ @resource_status = args[:resource_status] if args.key?(:resource_status)
12833
12891
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
12834
12892
  @scheduling = args[:scheduling] if args.key?(:scheduling)
12835
12893
  @self_link = args[:self_link] if args.key?(:self_link)
@@ -20204,6 +20262,12 @@ module Google
20204
20262
  # @return [String]
20205
20263
  attr_accessor :network_endpoint_type
20206
20264
 
20265
+ # All data that is specifically relevant to only network endpoint groups of type
20266
+ # PRIVATE_SERVICE_CONNECT.
20267
+ # Corresponds to the JSON property `pscData`
20268
+ # @return [Google::Apis::ComputeV1::NetworkEndpointGroupPscData]
20269
+ attr_accessor :psc_data
20270
+
20207
20271
  # The target service url used to set up private service connection to a Google
20208
20272
  # API or a PSC Producer Service Attachment. An example value is: "asia-
20209
20273
  # northeast3-cloudkms.googleapis.com"
@@ -20256,6 +20320,7 @@ module Google
20256
20320
  @name = args[:name] if args.key?(:name)
20257
20321
  @network = args[:network] if args.key?(:network)
20258
20322
  @network_endpoint_type = args[:network_endpoint_type] if args.key?(:network_endpoint_type)
20323
+ @psc_data = args[:psc_data] if args.key?(:psc_data)
20259
20324
  @psc_target_service = args[:psc_target_service] if args.key?(:psc_target_service)
20260
20325
  @region = args[:region] if args.key?(:region)
20261
20326
  @self_link = args[:self_link] if args.key?(:self_link)
@@ -20627,6 +20692,39 @@ module Google
20627
20692
  end
20628
20693
  end
20629
20694
 
20695
+ # All data that is specifically relevant to only network endpoint groups of type
20696
+ # PRIVATE_SERVICE_CONNECT.
20697
+ class NetworkEndpointGroupPscData
20698
+ include Google::Apis::Core::Hashable
20699
+
20700
+ # [Output Only] Address allocated from given subnetwork for PSC. This IP address
20701
+ # acts as a VIP for a PSC NEG, allowing it to act as an endpoint in L7 PSC-XLB.
20702
+ # Corresponds to the JSON property `consumerPscAddress`
20703
+ # @return [String]
20704
+ attr_accessor :consumer_psc_address
20705
+
20706
+ # [Output Only] The PSC connection id of the PSC Network Endpoint Group Consumer.
20707
+ # Corresponds to the JSON property `pscConnectionId`
20708
+ # @return [Fixnum]
20709
+ attr_accessor :psc_connection_id
20710
+
20711
+ # [Output Only] The connection status of the PSC Forwarding Rule.
20712
+ # Corresponds to the JSON property `pscConnectionStatus`
20713
+ # @return [String]
20714
+ attr_accessor :psc_connection_status
20715
+
20716
+ def initialize(**args)
20717
+ update!(**args)
20718
+ end
20719
+
20720
+ # Update properties of this object
20721
+ def update!(**args)
20722
+ @consumer_psc_address = args[:consumer_psc_address] if args.key?(:consumer_psc_address)
20723
+ @psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
20724
+ @psc_connection_status = args[:psc_connection_status] if args.key?(:psc_connection_status)
20725
+ end
20726
+ end
20727
+
20630
20728
  #
20631
20729
  class NetworkEndpointGroupsAttachEndpointsRequest
20632
20730
  include Google::Apis::Core::Hashable
@@ -29333,6 +29431,27 @@ module Google
29333
29431
  end
29334
29432
  end
29335
29433
 
29434
+ # Contains output only fields. Use this sub-message for actual values set on
29435
+ # Instance attributes as compared to the value requested by the user (intent) in
29436
+ # their instance CRUD calls.
29437
+ class ResourceStatus
29438
+ include Google::Apis::Core::Hashable
29439
+
29440
+ # [Output Only] An opaque ID of the host on which the VM is running.
29441
+ # Corresponds to the JSON property `physicalHost`
29442
+ # @return [String]
29443
+ attr_accessor :physical_host
29444
+
29445
+ def initialize(**args)
29446
+ update!(**args)
29447
+ end
29448
+
29449
+ # Update properties of this object
29450
+ def update!(**args)
29451
+ @physical_host = args[:physical_host] if args.key?(:physical_host)
29452
+ end
29453
+ end
29454
+
29336
29455
  # Represents a Route resource. A route defines a path from VM instances in the
29337
29456
  # VPC network to a specific destination. This destination can be inside or
29338
29457
  # outside the VPC network. For more information, read the Routes overview.
@@ -29766,6 +29885,11 @@ module Google
29766
29885
  # @return [String]
29767
29886
  attr_accessor :kind
29768
29887
 
29888
+ # Keys used for MD5 authentication.
29889
+ # Corresponds to the JSON property `md5AuthenticationKeys`
29890
+ # @return [Array<Google::Apis::ComputeV1::RouterMd5AuthenticationKey>]
29891
+ attr_accessor :md5_authentication_keys
29892
+
29769
29893
  # Name of the resource. Provided by the client when the resource is created. The
29770
29894
  # name must be 1-63 characters long, and comply with RFC1035. Specifically, the
29771
29895
  # name must be 1-63 characters long and match the regular expression `[a-z]([-a-
@@ -29812,6 +29936,7 @@ module Google
29812
29936
  @id = args[:id] if args.key?(:id)
29813
29937
  @interfaces = args[:interfaces] if args.key?(:interfaces)
29814
29938
  @kind = args[:kind] if args.key?(:kind)
29939
+ @md5_authentication_keys = args[:md5_authentication_keys] if args.key?(:md5_authentication_keys)
29815
29940
  @name = args[:name] if args.key?(:name)
29816
29941
  @nats = args[:nats] if args.key?(:nats)
29817
29942
  @network = args[:network] if args.key?(:network)
@@ -30107,6 +30232,13 @@ module Google
30107
30232
  # @return [String]
30108
30233
  attr_accessor :management_type
30109
30234
 
30235
+ # Present if MD5 authentication is enabled for the peering. Must be the name of
30236
+ # one of the entries in the Router.md5_authentication_keys. The field must
30237
+ # comply with RFC1035.
30238
+ # Corresponds to the JSON property `md5AuthenticationKeyName`
30239
+ # @return [String]
30240
+ attr_accessor :md5_authentication_key_name
30241
+
30110
30242
  # Name of this BGP peer. The name must be 1-63 characters long, and comply with
30111
30243
  # RFC1035. Specifically, the name must be 1-63 characters long and match the
30112
30244
  # regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first
@@ -30159,6 +30291,7 @@ module Google
30159
30291
  @ip_address = args[:ip_address] if args.key?(:ip_address)
30160
30292
  @ipv6_nexthop_address = args[:ipv6_nexthop_address] if args.key?(:ipv6_nexthop_address)
30161
30293
  @management_type = args[:management_type] if args.key?(:management_type)
30294
+ @md5_authentication_key_name = args[:md5_authentication_key_name] if args.key?(:md5_authentication_key_name)
30162
30295
  @name = args[:name] if args.key?(:name)
30163
30296
  @peer_asn = args[:peer_asn] if args.key?(:peer_asn)
30164
30297
  @peer_ip_address = args[:peer_ip_address] if args.key?(:peer_ip_address)
@@ -30427,6 +30560,35 @@ module Google
30427
30560
  end
30428
30561
  end
30429
30562
 
30563
+ #
30564
+ class RouterMd5AuthenticationKey
30565
+ include Google::Apis::Core::Hashable
30566
+
30567
+ # [Input only] Value of the key. For patch and update calls, it can be skipped
30568
+ # to copy the value from the previous configuration. This is allowed if the key
30569
+ # with the same name existed before the operation. Maximum length is 80
30570
+ # characters. Can only contain printable ASCII characters.
30571
+ # Corresponds to the JSON property `key`
30572
+ # @return [String]
30573
+ attr_accessor :key
30574
+
30575
+ # Name used to identify the key. Must be unique within a router. Must be
30576
+ # referenced by at least one bgpPeer. Must comply with RFC1035.
30577
+ # Corresponds to the JSON property `name`
30578
+ # @return [String]
30579
+ attr_accessor :name
30580
+
30581
+ def initialize(**args)
30582
+ update!(**args)
30583
+ end
30584
+
30585
+ # Update properties of this object
30586
+ def update!(**args)
30587
+ @key = args[:key] if args.key?(:key)
30588
+ @name = args[:name] if args.key?(:name)
30589
+ end
30590
+ end
30591
+
30430
30592
  # Represents a Nat resource. It enables the VMs within the specified subnetworks
30431
30593
  # to access Internet without external IP addresses. It specifies a list of
30432
30594
  # subnetworks (and the ranges within) that want to use NAT. Customers can also
@@ -30798,6 +30960,12 @@ module Google
30798
30960
  # @return [String]
30799
30961
  attr_accessor :linked_vpn_tunnel
30800
30962
 
30963
+ # Informs whether MD5 authentication is enabled on this BGP peer.
30964
+ # Corresponds to the JSON property `md5AuthEnabled`
30965
+ # @return [Boolean]
30966
+ attr_accessor :md5_auth_enabled
30967
+ alias_method :md5_auth_enabled?, :md5_auth_enabled
30968
+
30801
30969
  # Name of this BGP peer. Unique within the Routers resource.
30802
30970
  # Corresponds to the JSON property `name`
30803
30971
  # @return [String]
@@ -30831,6 +30999,11 @@ module Google
30831
30999
  # @return [String]
30832
31000
  attr_accessor :status
30833
31001
 
31002
+ # Indicates why particular status was returned.
31003
+ # Corresponds to the JSON property `statusReason`
31004
+ # @return [String]
31005
+ attr_accessor :status_reason
31006
+
30834
31007
  # Time this session has been up. Format: 14 years, 51 weeks, 6 days, 23 hours,
30835
31008
  # 59 minutes, 59 seconds
30836
31009
  # Corresponds to the JSON property `uptime`
@@ -30852,12 +31025,14 @@ module Google
30852
31025
  @bfd_status = args[:bfd_status] if args.key?(:bfd_status)
30853
31026
  @ip_address = args[:ip_address] if args.key?(:ip_address)
30854
31027
  @linked_vpn_tunnel = args[:linked_vpn_tunnel] if args.key?(:linked_vpn_tunnel)
31028
+ @md5_auth_enabled = args[:md5_auth_enabled] if args.key?(:md5_auth_enabled)
30855
31029
  @name = args[:name] if args.key?(:name)
30856
31030
  @num_learned_routes = args[:num_learned_routes] if args.key?(:num_learned_routes)
30857
31031
  @peer_ip_address = args[:peer_ip_address] if args.key?(:peer_ip_address)
30858
31032
  @router_appliance_instance = args[:router_appliance_instance] if args.key?(:router_appliance_instance)
30859
31033
  @state = args[:state] if args.key?(:state)
30860
31034
  @status = args[:status] if args.key?(:status)
31035
+ @status_reason = args[:status_reason] if args.key?(:status_reason)
30861
31036
  @uptime = args[:uptime] if args.key?(:uptime)
30862
31037
  @uptime_seconds = args[:uptime_seconds] if args.key?(:uptime_seconds)
30863
31038
  end
@@ -31176,25 +31351,35 @@ module Google
31176
31351
  class SslHealthCheck
31177
31352
  include Google::Apis::Core::Hashable
31178
31353
 
31179
- # The TCP port number for the health check request. The default value is 443.
31180
- # Valid values are 1 through 65535.
31354
+ # The TCP port number to which the health check prober sends packets. The
31355
+ # default value is 443. Valid values are 1 through 65535.
31181
31356
  # Corresponds to the JSON property `port`
31182
31357
  # @return [Fixnum]
31183
31358
  attr_accessor :port
31184
31359
 
31185
- # Port name as defined in InstanceGroup#NamedPort#name. If both port and
31186
- # port_name are defined, port takes precedence.
31360
+ # Not supported.
31187
31361
  # Corresponds to the JSON property `portName`
31188
31362
  # @return [String]
31189
31363
  attr_accessor :port_name
31190
31364
 
31191
- # Specifies how port is selected for health checking, can be one of following
31192
- # values: USE_FIXED_PORT: The port number in port is used for health checking.
31193
- # USE_NAMED_PORT: The portName is used for health checking. USE_SERVING_PORT:
31194
- # For NetworkEndpointGroup, the port specified for each network endpoint is used
31195
- # for health checking. For other backends, the port or named port specified in
31196
- # the Backend Service is used for health checking. If not specified, SSL health
31197
- # check follows behavior specified in port and portName fields.
31365
+ # Specifies how a port is selected for health checking. Can be one of the
31366
+ # following values: USE_FIXED_PORT: Specifies a port number explicitly using the
31367
+ # port field in the health check. Supported by backend services for pass-through
31368
+ # load balancers and backend services for proxy load balancers. Not supported by
31369
+ # target pools. The health check supports all backends supported by the backend
31370
+ # service provided the backend can be health checked. For example, GCE_VM_IP
31371
+ # network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance
31372
+ # group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an
31373
+ # indirect method of specifying the health check port by referring to the
31374
+ # backend service. Only supported by backend services for proxy load balancers.
31375
+ # Not supported by target pools. Not supported by backend services for pass-
31376
+ # through load balancers. Supports all backends that can be health checked; for
31377
+ # example, GCE_VM_IP_PORT network endpoint groups and instance group backends.
31378
+ # For GCE_VM_IP_PORT network endpoint group backends, the health check uses the
31379
+ # port number specified for each endpoint in the network endpoint group. For
31380
+ # instance group backends, the health check uses the port number determined by
31381
+ # looking up the backend service's named port in the instance group's list of
31382
+ # named ports.
31198
31383
  # Corresponds to the JSON property `portSpecification`
31199
31384
  # @return [String]
31200
31385
  attr_accessor :port_specification
@@ -31205,17 +31390,17 @@ module Google
31205
31390
  # @return [String]
31206
31391
  attr_accessor :proxy_header
31207
31392
 
31208
- # The application data to send once the SSL connection has been established (
31209
- # default value is empty). If both request and response are empty, the
31210
- # connection establishment alone will indicate health. The request data can only
31211
- # be ASCII.
31393
+ # Instructs the health check prober to send this exact ASCII string, up to 1024
31394
+ # bytes in length, after establishing the TCP connection and SSL handshake.
31212
31395
  # Corresponds to the JSON property `request`
31213
31396
  # @return [String]
31214
31397
  attr_accessor :request
31215
31398
 
31216
- # The bytes to match against the beginning of the response data. If left empty (
31217
- # the default value), any response will indicate health. The response data can
31218
- # only be ASCII.
31399
+ # Creates a content-based SSL health check. In addition to establishing a TCP
31400
+ # connection and the TLS handshake, you can configure the health check to pass
31401
+ # only when the backend sends this exact response ASCII string, up to 1024 bytes
31402
+ # in length. For details, see: https://cloud.google.com/load-balancing/docs/
31403
+ # health-check-concepts#criteria-protocol-ssl-tcp
31219
31404
  # Corresponds to the JSON property `response`
31220
31405
  # @return [String]
31221
31406
  attr_accessor :response
@@ -35810,25 +35995,35 @@ module Google
35810
35995
  class TcpHealthCheck
35811
35996
  include Google::Apis::Core::Hashable
35812
35997
 
35813
- # The TCP port number for the health check request. The default value is 80.
35814
- # Valid values are 1 through 65535.
35998
+ # The TCP port number to which the health check prober sends packets. The
35999
+ # default value is 80. Valid values are 1 through 65535.
35815
36000
  # Corresponds to the JSON property `port`
35816
36001
  # @return [Fixnum]
35817
36002
  attr_accessor :port
35818
36003
 
35819
- # Port name as defined in InstanceGroup#NamedPort#name. If both port and
35820
- # port_name are defined, port takes precedence.
36004
+ # Not supported.
35821
36005
  # Corresponds to the JSON property `portName`
35822
36006
  # @return [String]
35823
36007
  attr_accessor :port_name
35824
36008
 
35825
- # Specifies how port is selected for health checking, can be one of following
35826
- # values: USE_FIXED_PORT: The port number in port is used for health checking.
35827
- # USE_NAMED_PORT: The portName is used for health checking. USE_SERVING_PORT:
35828
- # For NetworkEndpointGroup, the port specified for each network endpoint is used
35829
- # for health checking. For other backends, the port or named port specified in
35830
- # the Backend Service is used for health checking. If not specified, TCP health
35831
- # check follows behavior specified in port and portName fields.
36009
+ # Specifies how a port is selected for health checking. Can be one of the
36010
+ # following values: USE_FIXED_PORT: Specifies a port number explicitly using the
36011
+ # port field in the health check. Supported by backend services for pass-through
36012
+ # load balancers and backend services for proxy load balancers. Not supported by
36013
+ # target pools. The health check supports all backends supported by the backend
36014
+ # service provided the backend can be health checked. For example, GCE_VM_IP
36015
+ # network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance
36016
+ # group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an
36017
+ # indirect method of specifying the health check port by referring to the
36018
+ # backend service. Only supported by backend services for proxy load balancers.
36019
+ # Not supported by target pools. Not supported by backend services for pass-
36020
+ # through load balancers. Supports all backends that can be health checked; for
36021
+ # example, GCE_VM_IP_PORT network endpoint groups and instance group backends.
36022
+ # For GCE_VM_IP_PORT network endpoint group backends, the health check uses the
36023
+ # port number specified for each endpoint in the network endpoint group. For
36024
+ # instance group backends, the health check uses the port number determined by
36025
+ # looking up the backend service's named port in the instance group's list of
36026
+ # named ports.
35832
36027
  # Corresponds to the JSON property `portSpecification`
35833
36028
  # @return [String]
35834
36029
  attr_accessor :port_specification
@@ -35839,17 +36034,17 @@ module Google
35839
36034
  # @return [String]
35840
36035
  attr_accessor :proxy_header
35841
36036
 
35842
- # The application data to send once the TCP connection has been established (
35843
- # default value is empty). If both request and response are empty, the
35844
- # connection establishment alone will indicate health. The request data can only
35845
- # be ASCII.
36037
+ # Instructs the health check prober to send this exact ASCII string, up to 1024
36038
+ # bytes in length, after establishing the TCP connection.
35846
36039
  # Corresponds to the JSON property `request`
35847
36040
  # @return [String]
35848
36041
  attr_accessor :request
35849
36042
 
35850
- # The bytes to match against the beginning of the response data. If left empty (
35851
- # the default value), any response will indicate health. The response data can
35852
- # only be ASCII.
36043
+ # Creates a content-based TCP health check. In addition to establishing a TCP
36044
+ # connection, you can configure the health check to pass only when the backend
36045
+ # sends this exact response ASCII string, up to 1024 bytes in length. For
36046
+ # details, see: https://cloud.google.com/load-balancing/docs/health-check-
36047
+ # concepts#criteria-protocol-ssl-tcp
35853
36048
  # Corresponds to the JSON property `response`
35854
36049
  # @return [String]
35855
36050
  attr_accessor :response
@@ -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.51.0"
19
+ GEM_VERSION = "0.52.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.9.0"
22
+ GENERATOR_VERSION = "0.10.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220831"
25
+ REVISION = "20220911"
26
26
  end
27
27
  end
28
28
  end
@@ -2566,6 +2566,12 @@ module Google
2566
2566
  include Google::Apis::Core::JsonObjectSupport
2567
2567
  end
2568
2568
 
2569
+ class NetworkEndpointGroupPscData
2570
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2571
+
2572
+ include Google::Apis::Core::JsonObjectSupport
2573
+ end
2574
+
2569
2575
  class NetworkEndpointGroupsAttachEndpointsRequest
2570
2576
  class Representation < Google::Apis::Core::JsonRepresentation; end
2571
2577
 
@@ -3850,6 +3856,12 @@ module Google
3850
3856
  include Google::Apis::Core::JsonObjectSupport
3851
3857
  end
3852
3858
 
3859
+ class ResourceStatus
3860
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3861
+
3862
+ include Google::Apis::Core::JsonObjectSupport
3863
+ end
3864
+
3853
3865
  class Route
3854
3866
  class Representation < Google::Apis::Core::JsonRepresentation; end
3855
3867
 
@@ -3964,6 +3976,12 @@ module Google
3964
3976
  include Google::Apis::Core::JsonObjectSupport
3965
3977
  end
3966
3978
 
3979
+ class RouterMd5AuthenticationKey
3980
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3981
+
3982
+ include Google::Apis::Core::JsonObjectSupport
3983
+ end
3984
+
3967
3985
  class RouterNat
3968
3986
  class Representation < Google::Apis::Core::JsonRepresentation; end
3969
3987
 
@@ -8480,6 +8498,8 @@ module Google
8480
8498
  property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::ComputeV1::ReservationAffinity, decorator: Google::Apis::ComputeV1::ReservationAffinity::Representation
8481
8499
 
8482
8500
  collection :resource_policies, as: 'resourcePolicies'
8501
+ property :resource_status, as: 'resourceStatus', class: Google::Apis::ComputeV1::ResourceStatus, decorator: Google::Apis::ComputeV1::ResourceStatus::Representation
8502
+
8483
8503
  property :satisfies_pzs, as: 'satisfiesPzs'
8484
8504
  property :scheduling, as: 'scheduling', class: Google::Apis::ComputeV1::Scheduling, decorator: Google::Apis::ComputeV1::Scheduling::Representation
8485
8505
 
@@ -10386,6 +10406,8 @@ module Google
10386
10406
  property :name, as: 'name'
10387
10407
  property :network, as: 'network'
10388
10408
  property :network_endpoint_type, as: 'networkEndpointType'
10409
+ property :psc_data, as: 'pscData', class: Google::Apis::ComputeV1::NetworkEndpointGroupPscData, decorator: Google::Apis::ComputeV1::NetworkEndpointGroupPscData::Representation
10410
+
10389
10411
  property :psc_target_service, as: 'pscTargetService'
10390
10412
  property :region, as: 'region'
10391
10413
  property :self_link, as: 'selfLink'
@@ -10486,6 +10508,15 @@ module Google
10486
10508
  end
10487
10509
  end
10488
10510
 
10511
+ class NetworkEndpointGroupPscData
10512
+ # @private
10513
+ class Representation < Google::Apis::Core::JsonRepresentation
10514
+ property :consumer_psc_address, as: 'consumerPscAddress'
10515
+ property :psc_connection_id, :numeric_string => true, as: 'pscConnectionId'
10516
+ property :psc_connection_status, as: 'pscConnectionStatus'
10517
+ end
10518
+ end
10519
+
10489
10520
  class NetworkEndpointGroupsAttachEndpointsRequest
10490
10521
  # @private
10491
10522
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -12773,6 +12804,13 @@ module Google
12773
12804
  end
12774
12805
  end
12775
12806
 
12807
+ class ResourceStatus
12808
+ # @private
12809
+ class Representation < Google::Apis::Core::JsonRepresentation
12810
+ property :physical_host, as: 'physicalHost'
12811
+ end
12812
+ end
12813
+
12776
12814
  class Route
12777
12815
  # @private
12778
12816
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -12874,6 +12912,8 @@ module Google
12874
12912
  collection :interfaces, as: 'interfaces', class: Google::Apis::ComputeV1::RouterInterface, decorator: Google::Apis::ComputeV1::RouterInterface::Representation
12875
12913
 
12876
12914
  property :kind, as: 'kind'
12915
+ collection :md5_authentication_keys, as: 'md5AuthenticationKeys', class: Google::Apis::ComputeV1::RouterMd5AuthenticationKey, decorator: Google::Apis::ComputeV1::RouterMd5AuthenticationKey::Representation
12916
+
12877
12917
  property :name, as: 'name'
12878
12918
  collection :nats, as: 'nats', class: Google::Apis::ComputeV1::RouterNat, decorator: Google::Apis::ComputeV1::RouterNat::Representation
12879
12919
 
@@ -12952,6 +12992,7 @@ module Google
12952
12992
  property :ip_address, as: 'ipAddress'
12953
12993
  property :ipv6_nexthop_address, as: 'ipv6NexthopAddress'
12954
12994
  property :management_type, as: 'managementType'
12995
+ property :md5_authentication_key_name, as: 'md5AuthenticationKeyName'
12955
12996
  property :name, as: 'name'
12956
12997
  property :peer_asn, as: 'peerAsn'
12957
12998
  property :peer_ip_address, as: 'peerIpAddress'
@@ -13016,6 +13057,14 @@ module Google
13016
13057
  end
13017
13058
  end
13018
13059
 
13060
+ class RouterMd5AuthenticationKey
13061
+ # @private
13062
+ class Representation < Google::Apis::Core::JsonRepresentation
13063
+ property :key, as: 'key'
13064
+ property :name, as: 'name'
13065
+ end
13066
+ end
13067
+
13019
13068
  class RouterNat
13020
13069
  # @private
13021
13070
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -13103,12 +13152,14 @@ module Google
13103
13152
 
13104
13153
  property :ip_address, as: 'ipAddress'
13105
13154
  property :linked_vpn_tunnel, as: 'linkedVpnTunnel'
13155
+ property :md5_auth_enabled, as: 'md5AuthEnabled'
13106
13156
  property :name, as: 'name'
13107
13157
  property :num_learned_routes, as: 'numLearnedRoutes'
13108
13158
  property :peer_ip_address, as: 'peerIpAddress'
13109
13159
  property :router_appliance_instance, as: 'routerApplianceInstance'
13110
13160
  property :state, as: 'state'
13111
13161
  property :status, as: 'status'
13162
+ property :status_reason, as: 'statusReason'
13112
13163
  property :uptime, as: 'uptime'
13113
13164
  property :uptime_seconds, as: 'uptimeSeconds'
13114
13165
  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.51.0
4
+ version: 0.52.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-19 00:00:00.000000000 Z
11
+ date: 2022-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.7.2
19
+ version: 0.9.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.7.2
29
+ version: 0.9.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.51.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.52.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1
63
63
  post_install_message:
64
64
  rdoc_options: []