google-cloud-compute-v1 2.18.0 → 2.19.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.
@@ -141,6 +141,8 @@ module Google
141
141
 
142
142
  default_config.rpcs.remove_resource_policies.timeout = 600.0
143
143
 
144
+ default_config.rpcs.report_host_as_faulty.timeout = 600.0
145
+
144
146
  default_config.rpcs.reset.timeout = 600.0
145
147
 
146
148
  default_config.rpcs.resume.timeout = 600.0
@@ -2143,6 +2145,102 @@ module Google
2143
2145
  raise ::Google::Cloud::Error.from_error(e)
2144
2146
  end
2145
2147
 
2148
+ ##
2149
+ # Mark the host as faulty and try to restart the instance on a new host.
2150
+ #
2151
+ # @overload report_host_as_faulty(request, options = nil)
2152
+ # Pass arguments to `report_host_as_faulty` via a request object, either of type
2153
+ # {::Google::Cloud::Compute::V1::ReportHostAsFaultyInstanceRequest} or an equivalent Hash.
2154
+ #
2155
+ # @param request [::Google::Cloud::Compute::V1::ReportHostAsFaultyInstanceRequest, ::Hash]
2156
+ # A request object representing the call parameters. Required. To specify no
2157
+ # parameters, or to keep all the default parameter values, pass an empty Hash.
2158
+ # @param options [::Gapic::CallOptions, ::Hash]
2159
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
2160
+ #
2161
+ # @overload report_host_as_faulty(instance: nil, instances_report_host_as_faulty_request_resource: nil, project: nil, request_id: nil, zone: nil)
2162
+ # Pass arguments to `report_host_as_faulty` via keyword arguments. Note that at
2163
+ # least one keyword argument is required. To specify no parameters, or to keep all
2164
+ # the default parameter values, pass an empty Hash as a request object (see above).
2165
+ #
2166
+ # @param instance [::String]
2167
+ # Name of the instance scoping this request.
2168
+ # @param instances_report_host_as_faulty_request_resource [::Google::Cloud::Compute::V1::InstancesReportHostAsFaultyRequest, ::Hash]
2169
+ # The body resource for this request
2170
+ # @param project [::String]
2171
+ # Project ID for this request.
2172
+ # @param request_id [::String]
2173
+ # An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
2174
+ # @param zone [::String]
2175
+ # The name of the zone for this request.
2176
+ # @yield [result, operation] Access the result along with the TransportOperation object
2177
+ # @yieldparam result [::Gapic::GenericLRO::Operation]
2178
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
2179
+ #
2180
+ # @return [::Gapic::GenericLRO::Operation]
2181
+ #
2182
+ # @raise [::Google::Cloud::Error] if the REST call is aborted.
2183
+ #
2184
+ # @example Basic example
2185
+ # require "google/cloud/compute/v1"
2186
+ #
2187
+ # # Create a client object. The client can be reused for multiple calls.
2188
+ # client = Google::Cloud::Compute::V1::Instances::Rest::Client.new
2189
+ #
2190
+ # # Create a request. To set request fields, pass in keyword arguments.
2191
+ # request = Google::Cloud::Compute::V1::ReportHostAsFaultyInstanceRequest.new
2192
+ #
2193
+ # # Call the report_host_as_faulty method.
2194
+ # result = client.report_host_as_faulty request
2195
+ #
2196
+ # # The returned object is of type Google::Cloud::Compute::V1::Operation.
2197
+ # p result
2198
+ #
2199
+ def report_host_as_faulty request, options = nil
2200
+ raise ::ArgumentError, "request must be provided" if request.nil?
2201
+
2202
+ request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::Compute::V1::ReportHostAsFaultyInstanceRequest
2203
+
2204
+ # Converts hash and nil to an options object
2205
+ options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
2206
+
2207
+ # Customize the options with defaults
2208
+ call_metadata = @config.rpcs.report_host_as_faulty.metadata.to_h
2209
+
2210
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
2211
+ call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
2212
+ lib_name: @config.lib_name, lib_version: @config.lib_version,
2213
+ gapic_version: ::Google::Cloud::Compute::V1::VERSION,
2214
+ transports_version_send: [:rest]
2215
+
2216
+ call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
2217
+ call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
2218
+
2219
+ options.apply_defaults timeout: @config.rpcs.report_host_as_faulty.timeout,
2220
+ metadata: call_metadata,
2221
+ retry_policy: @config.rpcs.report_host_as_faulty.retry_policy
2222
+
2223
+ options.apply_defaults timeout: @config.timeout,
2224
+ metadata: @config.metadata,
2225
+ retry_policy: @config.retry_policy
2226
+
2227
+ @instances_stub.report_host_as_faulty request, options do |result, response|
2228
+ result = ::Google::Cloud::Compute::V1::ZoneOperations::Rest::NonstandardLro.create_operation(
2229
+ operation: result,
2230
+ client: zone_operations,
2231
+ request_values: {
2232
+ "project" => request.project,
2233
+ "zone" => request.zone
2234
+ },
2235
+ options: options
2236
+ )
2237
+ yield result, response if block_given?
2238
+ throw :response, result
2239
+ end
2240
+ rescue ::Gapic::Rest::Error => e
2241
+ raise ::Google::Cloud::Error.from_error(e)
2242
+ end
2243
+
2146
2244
  ##
2147
2245
  # Performs a reset on the instance. This is a hard reset. The VM does not do a graceful shutdown. For more information, see Resetting an instance.
2148
2246
  #
@@ -5046,6 +5144,11 @@ module Google
5046
5144
  #
5047
5145
  attr_reader :remove_resource_policies
5048
5146
  ##
5147
+ # RPC-specific configuration for `report_host_as_faulty`
5148
+ # @return [::Gapic::Config::Method]
5149
+ #
5150
+ attr_reader :report_host_as_faulty
5151
+ ##
5049
5152
  # RPC-specific configuration for `reset`
5050
5153
  # @return [::Gapic::Config::Method]
5051
5154
  #
@@ -5228,6 +5331,8 @@ module Google
5228
5331
  @perform_maintenance = ::Gapic::Config::Method.new perform_maintenance_config
5229
5332
  remove_resource_policies_config = parent_rpcs.remove_resource_policies if parent_rpcs.respond_to? :remove_resource_policies
5230
5333
  @remove_resource_policies = ::Gapic::Config::Method.new remove_resource_policies_config
5334
+ report_host_as_faulty_config = parent_rpcs.report_host_as_faulty if parent_rpcs.respond_to? :report_host_as_faulty
5335
+ @report_host_as_faulty = ::Gapic::Config::Method.new report_host_as_faulty_config
5231
5336
  reset_config = parent_rpcs.reset if parent_rpcs.respond_to? :reset
5232
5337
  @reset = ::Gapic::Config::Method.new reset_config
5233
5338
  resume_config = parent_rpcs.resume if parent_rpcs.respond_to? :resume
@@ -873,6 +873,46 @@ module Google
873
873
  end
874
874
  end
875
875
 
876
+ ##
877
+ # Baseline implementation for the report_host_as_faulty REST call
878
+ #
879
+ # @param request_pb [::Google::Cloud::Compute::V1::ReportHostAsFaultyInstanceRequest]
880
+ # A request object representing the call parameters. Required.
881
+ # @param options [::Gapic::CallOptions]
882
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
883
+ #
884
+ # @yield [result, operation] Access the result along with the TransportOperation object
885
+ # @yieldparam result [::Google::Cloud::Compute::V1::Operation]
886
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
887
+ #
888
+ # @return [::Google::Cloud::Compute::V1::Operation]
889
+ # A result object deserialized from the server's reply
890
+ def report_host_as_faulty request_pb, options = nil
891
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
892
+
893
+ verb, uri, query_string_params, body = ServiceStub.transcode_report_host_as_faulty_request request_pb
894
+ query_string_params = if query_string_params.any?
895
+ query_string_params.to_h { |p| p.split "=", 2 }
896
+ else
897
+ {}
898
+ end
899
+
900
+ response = @client_stub.make_http_request(
901
+ verb,
902
+ uri: uri,
903
+ body: body || "",
904
+ params: query_string_params,
905
+ method_name: "report_host_as_faulty",
906
+ options: options
907
+ )
908
+ operation = ::Gapic::Rest::TransportOperation.new response
909
+ result = ::Google::Cloud::Compute::V1::Operation.decode_json response.body, ignore_unknown_fields: true
910
+ catch :response do
911
+ yield result, operation if block_given?
912
+ result
913
+ end
914
+ end
915
+
876
916
  ##
877
917
  # Baseline implementation for the reset REST call
878
918
  #
@@ -2454,6 +2494,30 @@ module Google
2454
2494
  transcoder.transcode request_pb
2455
2495
  end
2456
2496
 
2497
+ ##
2498
+ # @private
2499
+ #
2500
+ # GRPC transcoding helper method for the report_host_as_faulty REST call
2501
+ #
2502
+ # @param request_pb [::Google::Cloud::Compute::V1::ReportHostAsFaultyInstanceRequest]
2503
+ # A request object representing the call parameters. Required.
2504
+ # @return [Array(String, [String, nil], Hash{String => String})]
2505
+ # Uri, Body, Query string parameters
2506
+ def self.transcode_report_host_as_faulty_request request_pb
2507
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2508
+ .with_bindings(
2509
+ uri_method: :post,
2510
+ uri_template: "/compute/v1/projects/{project}/zones/{zone}/instances/{instance}/reportHostAsFaulty",
2511
+ body: "instances_report_host_as_faulty_request_resource",
2512
+ matches: [
2513
+ ["project", %r{^[^/]+/?$}, false],
2514
+ ["zone", %r{^[^/]+/?$}, false],
2515
+ ["instance", %r{^[^/]+/?$}, false]
2516
+ ]
2517
+ )
2518
+ transcoder.transcode request_pb
2519
+ end
2520
+
2457
2521
  ##
2458
2522
  # @private
2459
2523
  #
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Compute
23
23
  module V1
24
- VERSION = "2.18.0"
24
+ VERSION = "2.19.0"
25
25
  end
26
26
  end
27
27
  end
@@ -2421,6 +2421,29 @@ module Google
2421
2421
  extend ::Google::Protobuf::MessageExts::ClassMethods
2422
2422
  end
2423
2423
 
2424
+ # @!attribute [rw] service_share_type
2425
+ # @return [::String]
2426
+ # Sharing config for all Google Cloud services.
2427
+ # Check the ServiceShareType enum for the list of possible values.
2428
+ class AllocationReservationSharingPolicy
2429
+ include ::Google::Protobuf::MessageExts
2430
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2431
+
2432
+ # Sharing config for all Google Cloud services.
2433
+ module ServiceShareType
2434
+ # A value indicating that the enum field is not set.
2435
+ UNDEFINED_SERVICE_SHARE_TYPE = 0
2436
+
2437
+ # Allow all Google Cloud managed services to share reservations.
2438
+ ALLOW_ALL = 475_536_235
2439
+
2440
+ # [Default] Disallow sharing with all Google Cloud services.
2441
+ DISALLOW_ALL = 277_786_301
2442
+
2443
+ SERVICE_SHARE_TYPE_UNSPECIFIED = 279_057_148
2444
+ end
2445
+ end
2446
+
2424
2447
  # [Output Only] Contains output only fields.
2425
2448
  # @!attribute [rw] specific_sku_allocation
2426
2449
  # @return [::Google::Cloud::Compute::V1::AllocationResourceStatusSpecificSKUAllocation]
@@ -2434,9 +2457,21 @@ module Google
2434
2457
  # @!attribute [rw] source_instance_template_id
2435
2458
  # @return [::String]
2436
2459
  # ID of the instance template used to populate reservation properties.
2460
+ # @!attribute [rw] utilizations
2461
+ # @return [::Google::Protobuf::Map{::String => ::Integer}]
2462
+ # Per service utilization breakdown. The Key is the Google Cloud managed service name.
2437
2463
  class AllocationResourceStatusSpecificSKUAllocation
2438
2464
  include ::Google::Protobuf::MessageExts
2439
2465
  extend ::Google::Protobuf::MessageExts::ClassMethods
2466
+
2467
+ # @!attribute [rw] key
2468
+ # @return [::String]
2469
+ # @!attribute [rw] value
2470
+ # @return [::Integer]
2471
+ class UtilizationsEntry
2472
+ include ::Google::Protobuf::MessageExts
2473
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2474
+ end
2440
2475
  end
2441
2476
 
2442
2477
  # @!attribute [rw] disk_size_gb
@@ -3349,6 +3384,9 @@ module Google
3349
3384
  # @!attribute [rw] capacity_scaler
3350
3385
  # @return [::Float]
3351
3386
  # A multiplier applied to the backend's target capacity of its balancing mode. The default value is 1, which means the group serves up to 100% of its configured capacity (depending on balancingMode). A setting of 0 means the group is completely drained, offering 0% of its available capacity. The valid ranges are 0.0 and [0.1,1.0]. You cannot configure a setting larger than 0 and smaller than 0.1. You cannot configure a setting of 0 when there is only one backend attached to the backend service. Not available with backends that don't support using a balancingMode. This includes backends such as global internet NEGs, regional serverless NEGs, and PSC NEGs.
3387
+ # @!attribute [rw] custom_metrics
3388
+ # @return [::Array<::Google::Cloud::Compute::V1::BackendCustomMetric>]
3389
+ # List of custom metrics that are used for CUSTOM_METRICS BalancingMode.
3352
3390
  # @!attribute [rw] description
3353
3391
  # @return [::String]
3354
3392
  # An optional description of this resource. Provide this property when you create the resource.
@@ -3395,6 +3433,9 @@ module Google
3395
3433
  # Balance based on the number of simultaneous connections.
3396
3434
  CONNECTION = 246_311_646
3397
3435
 
3436
+ # Based on custom defined and reported metrics.
3437
+ CUSTOM_METRICS = 331_575_765
3438
+
3398
3439
  # Balance based on requests per second (RPS).
3399
3440
  RATE = 2_508_000
3400
3441
 
@@ -3601,6 +3642,21 @@ module Google
3601
3642
  extend ::Google::Protobuf::MessageExts::ClassMethods
3602
3643
  end
3603
3644
 
3645
+ # Custom Metrics are used for CUSTOM_METRICS balancing_mode.
3646
+ # @!attribute [rw] dry_run
3647
+ # @return [::Boolean]
3648
+ # If true, the metric data is collected and reported to Cloud Monitoring, but is not used for load balancing.
3649
+ # @!attribute [rw] max_utilization
3650
+ # @return [::Float]
3651
+ # Optional parameter to define a target utilization for the Custom Metrics balancing mode. The valid range is [0.0, 1.0].
3652
+ # @!attribute [rw] name
3653
+ # @return [::String]
3654
+ # Name of a custom utilization signal. The name must be 1-64 characters long and match the regular expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, period, underscore, lowercase letter, or digit, except the last character, which cannot be a dash, period, or underscore. For usage guidelines, see Custom Metrics balancing mode. This field can only be used for a global or regional backend service with the loadBalancingScheme set to EXTERNAL_MANAGED, INTERNAL_MANAGED INTERNAL_SELF_MANAGED.
3655
+ class BackendCustomMetric
3656
+ include ::Google::Protobuf::MessageExts
3657
+ extend ::Google::Protobuf::MessageExts::ClassMethods
3658
+ end
3659
+
3604
3660
  # Represents a Backend Service resource. A backend service defines how Google Cloud load balancers distribute traffic. The backend service configuration contains a set of values, such as the protocol used to connect to backends, various distribution and session settings, health checks, and timeouts. These settings provide fine-grained control over how your load balancer behaves. Most of the settings have default values that allow for easy configuration if you need to get started quickly. Backend services in Google Compute Engine can be either regionally or globally scoped. * [Global](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices) * [Regional](https://cloud.google.com/compute/docs/reference/rest/v1/regionBackendServices) For more information, see Backend Services.
3605
3661
  # @!attribute [rw] affinity_cookie_ttl_sec
3606
3662
  # @return [::Integer]
@@ -3628,6 +3684,9 @@ module Google
3628
3684
  # @!attribute [rw] creation_timestamp
3629
3685
  # @return [::String]
3630
3686
  # [Output Only] Creation timestamp in RFC3339 text format.
3687
+ # @!attribute [rw] custom_metrics
3688
+ # @return [::Array<::Google::Cloud::Compute::V1::BackendServiceCustomMetric>]
3689
+ # List of custom metrics that are used for the WEIGHTED_ROUND_ROBIN locality_lb_policy.
3631
3690
  # @!attribute [rw] custom_request_headers
3632
3691
  # @return [::Array<::String>]
3633
3692
  # Headers that the load balancer adds to proxied requests. See [Creating custom headers](https://cloud.google.com/load-balancing/docs/custom-headers).
@@ -3830,6 +3889,9 @@ module Google
3830
3889
 
3831
3890
  # Per-instance weighted Load Balancing via health check reported weights. If set, the Backend Service must configure a non legacy HTTP-based Health Check, and health check replies are expected to contain non-standard HTTP response header field X-Load-Balancing-Endpoint-Weight to specify the per-instance weights. If set, Load Balancing is weighted based on the per-instance weights reported in the last processed health check replies, as long as every instance either reported a valid weight or had UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains equal-weight. This option is only supported in Network Load Balancing.
3832
3891
  WEIGHTED_MAGLEV = 254_930_962
3892
+
3893
+ # Per-endpoint weighted round-robin Load Balancing using weights computed from Backend reported Custom Metrics. If set, the Backend Service responses are expected to contain non-standard HTTP response header field X-Endpoint-Load-Metrics. The reported metrics to use for computing the weights are specified via the backends[].customMetrics fields.
3894
+ WEIGHTED_ROUND_ROBIN = 5_584_977
3833
3895
  end
3834
3896
 
3835
3897
  # The protocol this BackendService uses to communicate with backends. Possible values are HTTP, HTTPS, HTTP2, TCP, SSL, UDP or GRPC. depending on the chosen load balancer or Traffic Director configuration. Refer to the documentation for the load balancers or for Traffic Director for more information. Must be set to GRPC when the backend service is referenced by a URL map that is bound to target gRPC proxy.
@@ -4055,6 +4117,18 @@ module Google
4055
4117
  end
4056
4118
  end
4057
4119
 
4120
+ # Custom Metrics are used for WEIGHTED_ROUND_ROBIN locality_lb_policy.
4121
+ # @!attribute [rw] dry_run
4122
+ # @return [::Boolean]
4123
+ # If true, the metric data is not used for load balancing.
4124
+ # @!attribute [rw] name
4125
+ # @return [::String]
4126
+ # Name of a custom utilization signal. The name must be 1-64 characters long and match the regular expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, period, underscore, lowercase letter, or digit, except the last character, which cannot be a dash, period, or underscore. For usage guidelines, see Custom Metrics balancing mode. This field can only be used for a global or regional backend service with the loadBalancingScheme set to EXTERNAL_MANAGED, INTERNAL_MANAGED INTERNAL_SELF_MANAGED.
4127
+ class BackendServiceCustomMetric
4128
+ include ::Google::Protobuf::MessageExts
4129
+ extend ::Google::Protobuf::MessageExts::ClassMethods
4130
+ end
4131
+
4058
4132
  # For load balancers that have configurable failover: [Internal passthrough Network Load Balancers](https://cloud.google.com/load-balancing/docs/internal/failover-overview) and [external passthrough Network Load Balancers](https://cloud.google.com/load-balancing/docs/network/networklb-failover-overview). On failover or failback, this field indicates whether connection draining will be honored. Google Cloud has a fixed connection draining timeout of 10 minutes. A setting of true terminates existing TCP connections to the active pool during failover and failback, immediately draining traffic. A setting of false allows existing TCP connections to persist, even on VMs no longer in the active pool, for up to the duration of the connection draining timeout (10 minutes).
4059
4133
  # @!attribute [rw] disable_connection_drain_on_failover
4060
4134
  # @return [::Boolean]
@@ -4232,6 +4306,9 @@ module Google
4232
4306
 
4233
4307
  # Per-instance weighted Load Balancing via health check reported weights. If set, the Backend Service must configure a non legacy HTTP-based Health Check, and health check replies are expected to contain non-standard HTTP response header field X-Load-Balancing-Endpoint-Weight to specify the per-instance weights. If set, Load Balancing is weighted based on the per-instance weights reported in the last processed health check replies, as long as every instance either reported a valid weight or had UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains equal-weight. This option is only supported in Network Load Balancing.
4234
4308
  WEIGHTED_MAGLEV = 254_930_962
4309
+
4310
+ # Per-endpoint weighted round-robin Load Balancing using weights computed from Backend reported Custom Metrics. If set, the Backend Service responses are expected to contain non-standard HTTP response header field X-Endpoint-Load-Metrics. The reported metrics to use for computing the weights are specified via the backends[].customMetrics fields.
4311
+ WEIGHTED_ROUND_ROBIN = 5_584_977
4235
4312
  end
4236
4313
  end
4237
4314
 
@@ -5049,6 +5126,8 @@ module Google
5049
5126
 
5050
5127
  MEMORY_OPTIMIZED_M3 = 276_301_372
5051
5128
 
5129
+ MEMORY_OPTIMIZED_M4 = 276_301_373
5130
+
5052
5131
  MEMORY_OPTIMIZED_X4_16TB = 183_089_120
5053
5132
 
5054
5133
  MEMORY_OPTIMIZED_X4_24TB = 183_116_989
@@ -13987,6 +14066,9 @@ module Google
13987
14066
  # @!attribute [rw] region
13988
14067
  # @return [::String]
13989
14068
  # [Output Only] The URL of the region where the managed instance group resides (for regional resources).
14069
+ # @!attribute [rw] resource_policies
14070
+ # @return [::Google::Cloud::Compute::V1::InstanceGroupManagerResourcePolicies]
14071
+ # Resource policies for this managed instance group.
13990
14072
  # @!attribute [rw] satisfies_pzi
13991
14073
  # @return [::Boolean]
13992
14074
  # [Output Only] Reserved for future use.
@@ -14338,6 +14420,14 @@ module Google
14338
14420
  extend ::Google::Protobuf::MessageExts::ClassMethods
14339
14421
  end
14340
14422
 
14423
+ # @!attribute [rw] workload_policy
14424
+ # @return [::String]
14425
+ # The URL of the workload policy that is specified for this managed instance group. It can be a full or partial URL. For example, the following are all valid URLs to a workload policy: - https://www.googleapis.com/compute/v1/projects/project/regions/region /resourcePolicies/resourcePolicy - projects/project/regions/region/resourcePolicies/resourcePolicy - regions/region/resourcePolicies/resourcePolicy
14426
+ class InstanceGroupManagerResourcePolicies
14427
+ include ::Google::Protobuf::MessageExts
14428
+ extend ::Google::Protobuf::MessageExts::ClassMethods
14429
+ end
14430
+
14341
14431
  # @!attribute [rw] initial_delay_sec
14342
14432
  # @return [::Integer]
14343
14433
  # Specifies the number of seconds that the MIG should wait to suspend or stop a VM after that VM was created. The initial delay gives the initialization script the time to prepare your VM for a quick scale out. The value of initial delay must be between 0 and 3600 seconds. The default value is 0.
@@ -15410,6 +15500,57 @@ module Google
15410
15500
  extend ::Google::Protobuf::MessageExts::ClassMethods
15411
15501
  end
15412
15502
 
15503
+ # @!attribute [rw] disruption_schedule
15504
+ # @return [::String]
15505
+ # The disruption schedule for the VM. Default to IMMEDIATE.
15506
+ # Check the DisruptionSchedule enum for the list of possible values.
15507
+ # @!attribute [rw] fault_reasons
15508
+ # @return [::Array<::Google::Cloud::Compute::V1::InstancesReportHostAsFaultyRequestFaultReason>]
15509
+ class InstancesReportHostAsFaultyRequest
15510
+ include ::Google::Protobuf::MessageExts
15511
+ extend ::Google::Protobuf::MessageExts::ClassMethods
15512
+
15513
+ # The disruption schedule for the VM. Default to IMMEDIATE.
15514
+ module DisruptionSchedule
15515
+ # A value indicating that the enum field is not set.
15516
+ UNDEFINED_DISRUPTION_SCHEDULE = 0
15517
+
15518
+ # Not used. Required as per aip/126.
15519
+ DISRUPTION_SCHEDULE_UNSPECIFIED = 332_543_835
15520
+
15521
+ # Delay disruption for caller control. Will be default soon.
15522
+ FUTURE = 474_513_859
15523
+
15524
+ # Default value. Disrupt the VM immediately.
15525
+ IMMEDIATE = 152_881_041
15526
+ end
15527
+ end
15528
+
15529
+ # @!attribute [rw] behavior
15530
+ # @return [::String]
15531
+ # Check the Behavior enum for the list of possible values.
15532
+ # @!attribute [rw] description
15533
+ # @return [::String]
15534
+ class InstancesReportHostAsFaultyRequestFaultReason
15535
+ include ::Google::Protobuf::MessageExts
15536
+ extend ::Google::Protobuf::MessageExts::ClassMethods
15537
+
15538
+
15539
+ module Behavior
15540
+ # A value indicating that the enum field is not set.
15541
+ UNDEFINED_BEHAVIOR = 0
15542
+
15543
+ # Public reportable behaviors
15544
+ BEHAVIOR_UNSPECIFIED = 85_734_570
15545
+
15546
+ PERFORMANCE = 135_701_520
15547
+
15548
+ SILENT_DATA_CORRUPTION = 111_360_678
15549
+
15550
+ UNRECOVERABLE_GPU_ERROR = 363_710_747
15551
+ end
15552
+ end
15553
+
15413
15554
  # @!attribute [rw] instances
15414
15555
  # @return [::Array<::Google::Cloud::Compute::V1::Instance>]
15415
15556
  # [Output Only] A list of instances contained in this scope.
@@ -25601,6 +25742,9 @@ module Google
25601
25742
 
25602
25743
  # The public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.
25603
25744
  EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356
25745
+
25746
+ # The public delegated prefix is used for creating dual-mode subnetworks only. Such prefixes cannot set publicDelegatedSubPrefixes.
25747
+ EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284
25604
25748
  end
25605
25749
 
25606
25750
  # [Output Only] The status of the public delegated prefix, which can be one of following values: - `INITIALIZING` The public delegated prefix is being initialized and addresses cannot be created yet. - `READY_TO_ANNOUNCE` The public delegated prefix is a live migration prefix and is active. - `ANNOUNCED` The public delegated prefix is active. - `DELETING` The public delegated prefix is being deprovsioned.
@@ -25730,6 +25874,9 @@ module Google
25730
25874
 
25731
25875
  # The public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.
25732
25876
  EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356
25877
+
25878
+ # The public delegated prefix is used for creating dual-mode subnetworks only. Such prefixes cannot set publicDelegatedSubPrefixes.
25879
+ EXTERNAL_IPV6_SUBNETWORK_CREATION = 61_198_284
25733
25880
  end
25734
25881
 
25735
25882
  # [Output Only] The status of the sub public delegated prefix.
@@ -27241,6 +27388,27 @@ module Google
27241
27388
  extend ::Google::Protobuf::MessageExts::ClassMethods
27242
27389
  end
27243
27390
 
27391
+ # A request message for Instances.ReportHostAsFaulty. See the method description for details.
27392
+ # @!attribute [rw] instance
27393
+ # @return [::String]
27394
+ # Name of the instance scoping this request.
27395
+ # @!attribute [rw] instances_report_host_as_faulty_request_resource
27396
+ # @return [::Google::Cloud::Compute::V1::InstancesReportHostAsFaultyRequest]
27397
+ # The body resource for this request
27398
+ # @!attribute [rw] project
27399
+ # @return [::String]
27400
+ # Project ID for this request.
27401
+ # @!attribute [rw] request_id
27402
+ # @return [::String]
27403
+ # An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
27404
+ # @!attribute [rw] zone
27405
+ # @return [::String]
27406
+ # The name of the zone for this request.
27407
+ class ReportHostAsFaultyInstanceRequest
27408
+ include ::Google::Protobuf::MessageExts
27409
+ extend ::Google::Protobuf::MessageExts::ClassMethods
27410
+ end
27411
+
27244
27412
  # A policy that specifies how requests intended for the route's backends are shadowed to a separate mirrored backend service. The load balancer doesn't wait for responses from the shadow service. Before sending traffic to the shadow service, the host or authority header is suffixed with -shadow.
27245
27413
  # @!attribute [rw] backend_service
27246
27414
  # @return [::String]
@@ -27272,6 +27440,9 @@ module Google
27272
27440
  # @!attribute [rw] name
27273
27441
  # @return [::String]
27274
27442
  # The name of the resource, provided by the client when initially creating the resource. The resource name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
27443
+ # @!attribute [rw] reservation_sharing_policy
27444
+ # @return [::Google::Cloud::Compute::V1::AllocationReservationSharingPolicy]
27445
+ # Specify the reservation sharing policy. If unspecified, the reservation will not be shared with Google Cloud managed services.
27275
27446
  # @!attribute [rw] resource_policies
27276
27447
  # @return [::Google::Protobuf::Map{::String => ::String}]
27277
27448
  # Resource policies to be added to this reservation. The key is defined by user, and the value is resource policy url. This is to define placement policy with reservation.
@@ -27987,6 +28158,9 @@ module Google
27987
28158
  # @!attribute [rw] physical_host
27988
28159
  # @return [::String]
27989
28160
  # [Output Only] The precise location of your instance within the zone's data center, including the block, sub-block, and host. The field is formatted as follows: blockId/subBlockId/hostId.
28161
+ # @!attribute [rw] physical_host_topology
28162
+ # @return [::Google::Cloud::Compute::V1::ResourceStatusPhysicalHostTopology]
28163
+ # [Output Only] A series of fields containing the global name of the Compute Engine cluster, as well as the ID of the block, sub-block, and host on which the running instance is located.
27990
28164
  # @!attribute [rw] scheduling
27991
28165
  # @return [::Google::Cloud::Compute::V1::ResourceStatusScheduling]
27992
28166
  # @!attribute [rw] upcoming_maintenance
@@ -27996,6 +28170,24 @@ module Google
27996
28170
  extend ::Google::Protobuf::MessageExts::ClassMethods
27997
28171
  end
27998
28172
 
28173
+ # Represents the physical host topology of the host on which the VM is running.
28174
+ # @!attribute [rw] block
28175
+ # @return [::String]
28176
+ # [Output Only] The ID of the block in which the running instance is located. Instances within the same block experience low network latency.
28177
+ # @!attribute [rw] cluster
28178
+ # @return [::String]
28179
+ # [Output Only] The global name of the Compute Engine cluster where the running instance is located.
28180
+ # @!attribute [rw] host
28181
+ # @return [::String]
28182
+ # [Output Only] The ID of the host on which the running instance is located. Instances on the same host experience the lowest possible network latency.
28183
+ # @!attribute [rw] subblock
28184
+ # @return [::String]
28185
+ # [Output Only] The ID of the sub-block in which the running instance is located. Instances in the same sub-block experience lower network latency than instances in the same block.
28186
+ class ResourceStatusPhysicalHostTopology
28187
+ include ::Google::Protobuf::MessageExts
28188
+ extend ::Google::Protobuf::MessageExts::ClassMethods
28189
+ end
28190
+
27999
28191
  # @!attribute [rw] availability_domain
28000
28192
  # @return [::Integer]
28001
28193
  # Specifies the availability domain to place the instance in. The value must be a number between 1 and the number of availability domains specified in the spread placement policy attached to the instance.
@@ -29482,6 +29674,9 @@ module Google
29482
29674
  # A value indicating that the enum field is not set.
29483
29675
  UNDEFINED_PROVISIONING_MODEL = 0
29484
29676
 
29677
+ # Bound to the lifecycle of the reservation in which it is provisioned.
29678
+ RESERVATION_BOUND = 293_538_571
29679
+
29485
29680
  # Heavily discounted, no guaranteed runtime.
29486
29681
  SPOT = 2_552_066
29487
29682
 
@@ -34031,6 +34226,9 @@ module Google
34031
34226
  # @!attribute [rw] ip_cidr_range
34032
34227
  # @return [::String]
34033
34228
  # The range of internal addresses that are owned by this subnetwork. Provide this property when you create the subnetwork. For example, 10.0.0.0/8 or 100.64.0.0/10. Ranges must be unique and non-overlapping within a network. Only IPv4 is supported. This field is set at resource creation time. The range can be any range listed in the Valid ranges list. The range can be expanded after creation using expandIpCidrRange.
34229
+ # @!attribute [rw] ip_collection
34230
+ # @return [::String]
34231
+ # Reference to the source of IP, like a PublicDelegatedPrefix (PDP) for BYOIP. The PDP must be a sub-PDP in EXTERNAL_IPV6_SUBNETWORK_CREATION mode. Use one of the following formats to specify a sub-PDP when creating a dual stack subnetwork with external access using BYOIP: - Full resource URL, as in https://www.googleapis.com/compute/v1/projects/projectId/regions/region /publicDelegatedPrefixes/sub-pdp-name - Partial URL, as in - projects/projectId/regions/region/publicDelegatedPrefixes/ sub-pdp-name - regions/region/publicDelegatedPrefixes/sub-pdp-name
34034
34232
  # @!attribute [rw] ipv6_access_type
34035
34233
  # @return [::String]
34036
34234
  # The access type of IPv6 address this subnet holds. It's immutable and can only be specified during creation or the first time the subnet is updated into IPV4_IPV6 dual stack.
@@ -34038,6 +34236,10 @@ module Google
34038
34236
  # @!attribute [rw] ipv6_cidr_range
34039
34237
  # @return [::String]
34040
34238
  # [Output Only] This field is for internal use.
34239
+ # @!attribute [rw] ipv6_gce_endpoint
34240
+ # @return [::String]
34241
+ # [Output Only] Possible endpoints of this subnetwork. It can be one of the following: - VM_ONLY: The subnetwork can be used for creating instances and IPv6 addresses with VM endpoint type. Such a subnetwork gets external IPv6 ranges from a public delegated prefix and cannot be used to create NetLb. - VM_AND_FR: The subnetwork can be used for creating both VM instances and Forwarding Rules. It can also be used to reserve IPv6 addresses with both VM and FR endpoint types. Such a subnetwork gets its IPv6 range from Google IP Pool directly.
34242
+ # Check the Ipv6GceEndpoint enum for the list of possible values.
34041
34243
  # @!attribute [rw] kind
34042
34244
  # @return [::String]
34043
34245
  # [Output Only] Type of the resource. Always compute#subnetwork for Subnetwork resources.
@@ -34103,6 +34305,16 @@ module Google
34103
34305
  UNSPECIFIED_IPV6_ACCESS_TYPE = 313_080_613
34104
34306
  end
34105
34307
 
34308
+ # [Output Only] Possible endpoints of this subnetwork. It can be one of the following: - VM_ONLY: The subnetwork can be used for creating instances and IPv6 addresses with VM endpoint type. Such a subnetwork gets external IPv6 ranges from a public delegated prefix and cannot be used to create NetLb. - VM_AND_FR: The subnetwork can be used for creating both VM instances and Forwarding Rules. It can also be used to reserve IPv6 addresses with both VM and FR endpoint types. Such a subnetwork gets its IPv6 range from Google IP Pool directly.
34309
+ module Ipv6GceEndpoint
34310
+ # A value indicating that the enum field is not set.
34311
+ UNDEFINED_IPV6_GCE_ENDPOINT = 0
34312
+
34313
+ VM_AND_FR = 41_830_108
34314
+
34315
+ VM_ONLY = 236_773_428
34316
+ end
34317
+
34106
34318
  # This field is for internal use. This field can be both set at resource creation time and updated using patch.
34107
34319
  module PrivateIpv6GoogleAccess
34108
34320
  # A value indicating that the enum field is not set.
@@ -34766,7 +34978,7 @@ module Google
34766
34978
  # [Output Only] Server-defined URL for the resource.
34767
34979
  # @!attribute [rw] server_tls_policy
34768
34980
  # @return [::String]
34769
- # Optional. A URL referring to a networksecurity.ServerTlsPolicy resource that describes how the proxy should authenticate inbound traffic. serverTlsPolicy only applies to a global TargetHttpsProxy attached to globalForwardingRules with the loadBalancingScheme set to INTERNAL_SELF_MANAGED or EXTERNAL or EXTERNAL_MANAGED. For details which ServerTlsPolicy resources are accepted with INTERNAL_SELF_MANAGED and which with EXTERNAL, EXTERNAL_MANAGED loadBalancingScheme consult ServerTlsPolicy documentation. If left blank, communications are not encrypted.
34981
+ # Optional. A URL referring to a networksecurity.ServerTlsPolicy resource that describes how the proxy should authenticate inbound traffic. serverTlsPolicy only applies to a global TargetHttpsProxy attached to globalForwardingRules with the loadBalancingScheme set to INTERNAL_SELF_MANAGED or EXTERNAL or EXTERNAL_MANAGED or INTERNAL_MANAGED. It also applies to a regional TargetHttpsProxy attached to regional forwardingRules with the loadBalancingScheme set to EXTERNAL_MANAGED or INTERNAL_MANAGED. For details which ServerTlsPolicy resources are accepted with INTERNAL_SELF_MANAGED and which with EXTERNAL, INTERNAL_MANAGED, EXTERNAL_MANAGED loadBalancingScheme consult ServerTlsPolicy documentation. If left blank, communications are not encrypted.
34770
34982
  # @!attribute [rw] ssl_certificates
34771
34983
  # @return [::Array<::String>]
34772
34984
  # URLs to SslCertificate resources that are used to authenticate connections between users and the load balancer. At least one SSL certificate must be specified. SslCertificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED. The URLs should refer to a SSL Certificate resource or Certificate Manager Certificate resource. Mixing Classic Certificates and Certificate Manager Certificates is not allowed. Certificate Manager Certificates must include the certificatemanager API namespace. Using Certificate Manager Certificates in this field is not supported by Global external Application Load Balancer or Classic Application Load Balancer, use certificate_map instead. Currently, you may specify up to 15 Classic SSL Certificates or up to 100 Certificate Manager Certificates. Certificate Manager Certificates accepted formats are: - //certificatemanager.googleapis.com/projects/\\{project}/locations/{ location}/certificates/\\{resourceName}. - https://certificatemanager.googleapis.com/v1alpha1/projects/\\{project }/locations/\\{location}/certificates/\\{resourceName}.
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-compute-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.18.0
4
+ version: 2.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-02-25 00:00:00.000000000 Z
10
+ date: 2025-03-14 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: gapic-common