google-apis-compute_beta 0.72.0 → 0.73.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: 5cf631befab362f4c49019cb13bd6a937659c553d85f651a84d1d703729d483e
4
- data.tar.gz: ba94bb07e960d2a9b309fc808dd85b343d7530bf5715d9e96ae3be5f4b7af93b
3
+ metadata.gz: fced050eac918b6fd7bf55b26d3066777768ff6effe2b02162652d1559009e71
4
+ data.tar.gz: 2795abb3d972ada8f7f43004b6a12329945500502c4a58c64a7717d551d73c8b
5
5
  SHA512:
6
- metadata.gz: f7fb4b1ccb22dd2d31c3bda446fc13fb255b8de3a14167bf4dfab28e3ae6178af2f42b3ee768dfc98302f3290512b6e2732ca2818a313a7969db0b1bd74c9418
7
- data.tar.gz: 82aa8bb704399314ba5caeedb2b24f8608ac85a0a0262245fac7b3cd1de0356741b3d68aad22c309467eeb91c092ec3f2b5ac25bbc6722108970487cd603706a
6
+ metadata.gz: af87771cbc19e752d206f17b18e044f2a6359fdca4d81243bd675e1658e527fd08f35f0049f08fbef3ed5c58251c6702fd1edfbdb2c7f21912a491a12c3db5c6
7
+ data.tar.gz: 833ed053124e3a030fad5e5d557bcbe15408bbc6b5b0b1631a3c4854dd673c2a7f08a038d014cacc396fadf0953f6650ea0db8ff116a1925ccf2efe44fc61e14
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_beta
2
2
 
3
+ ### v0.73.0 (2023-07-02)
4
+
5
+ * Regenerated from discovery document revision 20230620
6
+
3
7
  ### v0.72.0 (2023-06-25)
4
8
 
5
9
  * Regenerated from discovery document revision 20230610
@@ -2846,6 +2846,16 @@ module Google
2846
2846
  # @return [Float]
2847
2847
  attr_accessor :max_utilization
2848
2848
 
2849
+ # This field indicates whether this backend should be fully utilized before
2850
+ # sending traffic to backends with default preference. The possible values are: -
2851
+ # PREFERRED: Backends with this preference level will be filled up to their
2852
+ # capacity limits first, based on RTT. - DEFAULT: If preferred backends don't
2853
+ # have enough capacity, backends in this layer would be used and traffic would
2854
+ # be assigned based on the load balancing algorithm you use. This is the default
2855
+ # Corresponds to the JSON property `preference`
2856
+ # @return [String]
2857
+ attr_accessor :preference
2858
+
2849
2859
  def initialize(**args)
2850
2860
  update!(**args)
2851
2861
  end
@@ -2864,6 +2874,7 @@ module Google
2864
2874
  @max_rate_per_endpoint = args[:max_rate_per_endpoint] if args.key?(:max_rate_per_endpoint)
2865
2875
  @max_rate_per_instance = args[:max_rate_per_instance] if args.key?(:max_rate_per_instance)
2866
2876
  @max_utilization = args[:max_utilization] if args.key?(:max_utilization)
2877
+ @preference = args[:preference] if args.key?(:preference)
2867
2878
  end
2868
2879
  end
2869
2880
 
@@ -3611,6 +3622,13 @@ module Google
3611
3622
  # @return [Array<String>]
3612
3623
  attr_accessor :service_bindings
3613
3624
 
3625
+ # URL to networkservices.ServiceLbPolicy resource. Can only be set if load
3626
+ # balancing scheme is EXTERNAL, EXTERNAL_MANAGED, INTERNAL_MANAGED or
3627
+ # INTERNAL_SELF_MANAGED and the scope is global.
3628
+ # Corresponds to the JSON property `serviceLbPolicy`
3629
+ # @return [String]
3630
+ attr_accessor :service_lb_policy
3631
+
3614
3632
  # Type of session affinity to use. The default is NONE. Only NONE and
3615
3633
  # HEADER_FIELD are supported when the backend service is referenced by a URL map
3616
3634
  # that is bound to target gRPC proxy that has validateForProxyless field set to
@@ -3682,6 +3700,7 @@ module Google
3682
3700
  @security_settings = args[:security_settings] if args.key?(:security_settings)
3683
3701
  @self_link = args[:self_link] if args.key?(:self_link)
3684
3702
  @service_bindings = args[:service_bindings] if args.key?(:service_bindings)
3703
+ @service_lb_policy = args[:service_lb_policy] if args.key?(:service_lb_policy)
3685
3704
  @session_affinity = args[:session_affinity] if args.key?(:session_affinity)
3686
3705
  @subsetting = args[:subsetting] if args.key?(:subsetting)
3687
3706
  @timeout_sec = args[:timeout_sec] if args.key?(:timeout_sec)
@@ -5037,6 +5056,50 @@ module Google
5037
5056
  end
5038
5057
  end
5039
5058
 
5059
+ #
5060
+ class BulkInsertOperationStatus
5061
+ include Google::Apis::Core::Hashable
5062
+
5063
+ # [Output Only] Count of VMs successfully created so far.
5064
+ # Corresponds to the JSON property `createdVmCount`
5065
+ # @return [Fixnum]
5066
+ attr_accessor :created_vm_count
5067
+
5068
+ # [Output Only] Count of VMs that got deleted during rollback.
5069
+ # Corresponds to the JSON property `deletedVmCount`
5070
+ # @return [Fixnum]
5071
+ attr_accessor :deleted_vm_count
5072
+
5073
+ # [Output Only] Count of VMs that started creating but encountered an error.
5074
+ # Corresponds to the JSON property `failedToCreateVmCount`
5075
+ # @return [Fixnum]
5076
+ attr_accessor :failed_to_create_vm_count
5077
+
5078
+ # [Output Only] Creation status of BulkInsert operation - information if the
5079
+ # flow is rolling forward or rolling back.
5080
+ # Corresponds to the JSON property `status`
5081
+ # @return [String]
5082
+ attr_accessor :status
5083
+
5084
+ # [Output Only] Count of VMs originally planned to be created.
5085
+ # Corresponds to the JSON property `targetVmCount`
5086
+ # @return [Fixnum]
5087
+ attr_accessor :target_vm_count
5088
+
5089
+ def initialize(**args)
5090
+ update!(**args)
5091
+ end
5092
+
5093
+ # Update properties of this object
5094
+ def update!(**args)
5095
+ @created_vm_count = args[:created_vm_count] if args.key?(:created_vm_count)
5096
+ @deleted_vm_count = args[:deleted_vm_count] if args.key?(:deleted_vm_count)
5097
+ @failed_to_create_vm_count = args[:failed_to_create_vm_count] if args.key?(:failed_to_create_vm_count)
5098
+ @status = args[:status] if args.key?(:status)
5099
+ @target_vm_count = args[:target_vm_count] if args.key?(:target_vm_count)
5100
+ end
5101
+ end
5102
+
5040
5103
  #
5041
5104
  class BundledLocalSsds
5042
5105
  include Google::Apis::Core::Hashable
@@ -9498,9 +9561,12 @@ module Google
9498
9561
  alias_method :all_ports?, :all_ports
9499
9562
 
9500
9563
  # This field is used along with the backend_service field for internal load
9501
- # balancing or with the target field for internal TargetInstance. If the field
9502
- # is set to TRUE, clients can access ILB from all regions. Otherwise only allows
9503
- # access from clients in the same region as the internal load balancer.
9564
+ # balancing or with the target field for internal TargetInstance. If set to true,
9565
+ # clients can access the Internal TCP/UDP Load Balancer, Internal HTTP(S) and
9566
+ # TCP Proxy Load Balancer from all regions. If false, only allows access from
9567
+ # the local region the load balancer is located at. Note that for
9568
+ # INTERNAL_MANAGED forwarding rules, this field cannot be changed after the
9569
+ # forwarding rule is created.
9504
9570
  # Corresponds to the JSON property `allowGlobalAccess`
9505
9571
  # @return [Boolean]
9506
9572
  attr_accessor :allow_global_access
@@ -17448,6 +17514,26 @@ module Google
17448
17514
  end
17449
17515
  end
17450
17516
 
17517
+ #
17518
+ class InstancesBulkInsertOperationMetadata
17519
+ include Google::Apis::Core::Hashable
17520
+
17521
+ # Status information per location (location name is key). Example key: zones/us-
17522
+ # central1-a
17523
+ # Corresponds to the JSON property `perLocationStatus`
17524
+ # @return [Hash<String,Google::Apis::ComputeBeta::BulkInsertOperationStatus>]
17525
+ attr_accessor :per_location_status
17526
+
17527
+ def initialize(**args)
17528
+ update!(**args)
17529
+ end
17530
+
17531
+ # Update properties of this object
17532
+ def update!(**args)
17533
+ @per_location_status = args[:per_location_status] if args.key?(:per_location_status)
17534
+ end
17535
+ end
17536
+
17451
17537
  #
17452
17538
  class InstancesGetEffectiveFirewallsResponse
17453
17539
  include Google::Apis::Core::Hashable
@@ -27018,6 +27104,11 @@ module Google
27018
27104
  # @return [String]
27019
27105
  attr_accessor :insert_time
27020
27106
 
27107
+ #
27108
+ # Corresponds to the JSON property `instancesBulkInsertOperationMetadata`
27109
+ # @return [Google::Apis::ComputeBeta::InstancesBulkInsertOperationMetadata]
27110
+ attr_accessor :instances_bulk_insert_operation_metadata
27111
+
27021
27112
  # [Output Only] Type of the resource. Always `compute#operation` for Operation
27022
27113
  # resources.
27023
27114
  # Corresponds to the JSON property `kind`
@@ -27124,6 +27215,7 @@ module Google
27124
27215
  @http_error_status_code = args[:http_error_status_code] if args.key?(:http_error_status_code)
27125
27216
  @id = args[:id] if args.key?(:id)
27126
27217
  @insert_time = args[:insert_time] if args.key?(:insert_time)
27218
+ @instances_bulk_insert_operation_metadata = args[:instances_bulk_insert_operation_metadata] if args.key?(:instances_bulk_insert_operation_metadata)
27127
27219
  @kind = args[:kind] if args.key?(:kind)
27128
27220
  @name = args[:name] if args.key?(:name)
27129
27221
  @operation_group_id = args[:operation_group_id] if args.key?(:operation_group_id)
@@ -29458,7 +29550,7 @@ module Google
29458
29550
  # @return [Fixnum]
29459
29551
  attr_accessor :id
29460
29552
 
29461
- # The IPv4 address range, in CIDR format, represented by this public delegated
29553
+ # The IP address range, in CIDR format, represented by this public delegated
29462
29554
  # prefix.
29463
29555
  # Corresponds to the JSON property `ipCidrRange`
29464
29556
  # @return [String]
@@ -29801,8 +29893,8 @@ module Google
29801
29893
  # @return [String]
29802
29894
  attr_accessor :description
29803
29895
 
29804
- # The IPv4 address range, in CIDR format, represented by this sub public
29805
- # delegated prefix.
29896
+ # The IP address range, in CIDR format, represented by this sub public delegated
29897
+ # prefix.
29806
29898
  # Corresponds to the JSON property `ipCidrRange`
29807
29899
  # @return [String]
29808
29900
  attr_accessor :ip_cidr_range
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComputeBeta
18
18
  # Version of the google-apis-compute_beta gem
19
- GEM_VERSION = "0.72.0"
19
+ GEM_VERSION = "0.73.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230610"
25
+ REVISION = "20230620"
26
26
  end
27
27
  end
28
28
  end
@@ -568,6 +568,12 @@ module Google
568
568
  include Google::Apis::Core::JsonObjectSupport
569
569
  end
570
570
 
571
+ class BulkInsertOperationStatus
572
+ class Representation < Google::Apis::Core::JsonRepresentation; end
573
+
574
+ include Google::Apis::Core::JsonObjectSupport
575
+ end
576
+
571
577
  class BundledLocalSsds
572
578
  class Representation < Google::Apis::Core::JsonRepresentation; end
573
579
 
@@ -2092,6 +2098,12 @@ module Google
2092
2098
  include Google::Apis::Core::JsonObjectSupport
2093
2099
  end
2094
2100
 
2101
+ class InstancesBulkInsertOperationMetadata
2102
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2103
+
2104
+ include Google::Apis::Core::JsonObjectSupport
2105
+ end
2106
+
2095
2107
  class InstancesGetEffectiveFirewallsResponse
2096
2108
  class Representation < Google::Apis::Core::JsonRepresentation; end
2097
2109
 
@@ -6882,6 +6894,7 @@ module Google
6882
6894
  property :max_rate_per_endpoint, as: 'maxRatePerEndpoint'
6883
6895
  property :max_rate_per_instance, as: 'maxRatePerInstance'
6884
6896
  property :max_utilization, as: 'maxUtilization'
6897
+ property :preference, as: 'preference'
6885
6898
  end
6886
6899
  end
6887
6900
 
@@ -7033,6 +7046,7 @@ module Google
7033
7046
 
7034
7047
  property :self_link, as: 'selfLink'
7035
7048
  collection :service_bindings, as: 'serviceBindings'
7049
+ property :service_lb_policy, as: 'serviceLbPolicy'
7036
7050
  property :session_affinity, as: 'sessionAffinity'
7037
7051
  property :subsetting, as: 'subsetting', class: Google::Apis::ComputeBeta::Subsetting, decorator: Google::Apis::ComputeBeta::Subsetting::Representation
7038
7052
 
@@ -7344,6 +7358,17 @@ module Google
7344
7358
  end
7345
7359
  end
7346
7360
 
7361
+ class BulkInsertOperationStatus
7362
+ # @private
7363
+ class Representation < Google::Apis::Core::JsonRepresentation
7364
+ property :created_vm_count, as: 'createdVmCount'
7365
+ property :deleted_vm_count, as: 'deletedVmCount'
7366
+ property :failed_to_create_vm_count, as: 'failedToCreateVmCount'
7367
+ property :status, as: 'status'
7368
+ property :target_vm_count, as: 'targetVmCount'
7369
+ end
7370
+ end
7371
+
7347
7372
  class BundledLocalSsds
7348
7373
  # @private
7349
7374
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10285,6 +10310,14 @@ module Google
10285
10310
  end
10286
10311
  end
10287
10312
 
10313
+ class InstancesBulkInsertOperationMetadata
10314
+ # @private
10315
+ class Representation < Google::Apis::Core::JsonRepresentation
10316
+ hash :per_location_status, as: 'perLocationStatus', class: Google::Apis::ComputeBeta::BulkInsertOperationStatus, decorator: Google::Apis::ComputeBeta::BulkInsertOperationStatus::Representation
10317
+
10318
+ end
10319
+ end
10320
+
10288
10321
  class InstancesGetEffectiveFirewallsResponse
10289
10322
  # @private
10290
10323
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -12703,6 +12736,8 @@ module Google
12703
12736
  property :http_error_status_code, as: 'httpErrorStatusCode'
12704
12737
  property :id, :numeric_string => true, as: 'id'
12705
12738
  property :insert_time, as: 'insertTime'
12739
+ property :instances_bulk_insert_operation_metadata, as: 'instancesBulkInsertOperationMetadata', class: Google::Apis::ComputeBeta::InstancesBulkInsertOperationMetadata, decorator: Google::Apis::ComputeBeta::InstancesBulkInsertOperationMetadata::Representation
12740
+
12706
12741
  property :kind, as: 'kind'
12707
12742
  property :name, as: 'name'
12708
12743
  property :operation_group_id, as: 'operationGroupId'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-compute_beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.72.0
4
+ version: 0.73.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: 2023-06-25 00:00:00.000000000 Z
11
+ date: 2023-07-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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_beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.72.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.73.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
63
63
  post_install_message:
64
64
  rdoc_options: []