google-apis-compute_v1 0.105.0 → 0.107.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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f9d7c4b81edf490bd902a319760f41b0373c0fb620c655596d54a74ab6fa1d45
|
4
|
+
data.tar.gz: edca101ac31634196d4f7a178512befde43eff1f35208a2c7cffb2f1314d490e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5005e01adf6917832b648c453cf050f880fc16f60e6ba30ef55b33b8edfadb80c4943f864897417009370a8d1a3f8a80fc780812264e93feb02abf7a4030ac58
|
7
|
+
data.tar.gz: 536b0db7fb9eba1e22968cb3a94c920ab8f927ed595720a7164f65250f4d8154d61057523b418b2b10d944644a362acd933502fa69c32a1806333cf36da8faa3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-compute_v1
|
2
2
|
|
3
|
+
### v0.107.0 (2024-09-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240903
|
6
|
+
|
7
|
+
### v0.106.0 (2024-09-01)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240820
|
10
|
+
|
3
11
|
### v0.105.0 (2024-08-18)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240813
|
@@ -1157,6 +1157,13 @@ module Google
|
|
1157
1157
|
# @return [Fixnum]
|
1158
1158
|
attr_accessor :threads_per_core
|
1159
1159
|
|
1160
|
+
# Turbo frequency mode to use for the instance. Supported modes include: *
|
1161
|
+
# ALL_CORE_MAX Using empty string or not setting this field will use the
|
1162
|
+
# platform-specific default turbo mode.
|
1163
|
+
# Corresponds to the JSON property `turboMode`
|
1164
|
+
# @return [String]
|
1165
|
+
attr_accessor :turbo_mode
|
1166
|
+
|
1160
1167
|
# The number of physical cores to expose to an instance. Multiply by the number
|
1161
1168
|
# of threads per core to compute the total number of virtual CPUs to expose to
|
1162
1169
|
# the instance. If unset, the number of cores is inferred from the instance's
|
@@ -1175,6 +1182,7 @@ module Google
|
|
1175
1182
|
@enable_uefi_networking = args[:enable_uefi_networking] if args.key?(:enable_uefi_networking)
|
1176
1183
|
@performance_monitoring_unit = args[:performance_monitoring_unit] if args.key?(:performance_monitoring_unit)
|
1177
1184
|
@threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core)
|
1185
|
+
@turbo_mode = args[:turbo_mode] if args.key?(:turbo_mode)
|
1178
1186
|
@visible_core_count = args[:visible_core_count] if args.key?(:visible_core_count)
|
1179
1187
|
end
|
1180
1188
|
end
|
@@ -2941,6 +2949,11 @@ module Google
|
|
2941
2949
|
# @return [String]
|
2942
2950
|
attr_accessor :self_link
|
2943
2951
|
|
2952
|
+
# [Output Only] List of resources referencing that backend bucket.
|
2953
|
+
# Corresponds to the JSON property `usedBy`
|
2954
|
+
# @return [Array<Google::Apis::ComputeV1::BackendBucketUsedBy>]
|
2955
|
+
attr_accessor :used_by
|
2956
|
+
|
2944
2957
|
def initialize(**args)
|
2945
2958
|
update!(**args)
|
2946
2959
|
end
|
@@ -2959,6 +2972,7 @@ module Google
|
|
2959
2972
|
@kind = args[:kind] if args.key?(:kind)
|
2960
2973
|
@name = args[:name] if args.key?(:name)
|
2961
2974
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2975
|
+
@used_by = args[:used_by] if args.key?(:used_by)
|
2962
2976
|
end
|
2963
2977
|
end
|
2964
2978
|
|
@@ -3313,6 +3327,25 @@ module Google
|
|
3313
3327
|
end
|
3314
3328
|
end
|
3315
3329
|
|
3330
|
+
#
|
3331
|
+
class BackendBucketUsedBy
|
3332
|
+
include Google::Apis::Core::Hashable
|
3333
|
+
|
3334
|
+
# [Output Only] Server-defined URL for UrlMaps referencing that BackendBucket.
|
3335
|
+
# Corresponds to the JSON property `reference`
|
3336
|
+
# @return [String]
|
3337
|
+
attr_accessor :reference
|
3338
|
+
|
3339
|
+
def initialize(**args)
|
3340
|
+
update!(**args)
|
3341
|
+
end
|
3342
|
+
|
3343
|
+
# Update properties of this object
|
3344
|
+
def update!(**args)
|
3345
|
+
@reference = args[:reference] if args.key?(:reference)
|
3346
|
+
end
|
3347
|
+
end
|
3348
|
+
|
3316
3349
|
# Represents a Backend Service resource. A backend service defines how Google
|
3317
3350
|
# Cloud load balancers distribute traffic. The backend service configuration
|
3318
3351
|
# contains a set of values, such as the protocol used to connect to backends,
|
@@ -24990,6 +25023,12 @@ module Google
|
|
24990
25023
|
# @return [Hash<String,String>]
|
24991
25024
|
attr_accessor :annotations
|
24992
25025
|
|
25026
|
+
# Represents the port number to which PSC consumer sends packets. Only valid for
|
25027
|
+
# network endpoint groups created with GCE_VM_IP_PORTMAP endpoint type.
|
25028
|
+
# Corresponds to the JSON property `clientDestinationPort`
|
25029
|
+
# @return [Fixnum]
|
25030
|
+
attr_accessor :client_destination_port
|
25031
|
+
|
24993
25032
|
# Optional fully qualified domain name of network endpoint. This can only be
|
24994
25033
|
# specified when NetworkEndpointGroup.network_endpoint_type is NON_GCP_FQDN_PORT.
|
24995
25034
|
# Corresponds to the JSON property `fqdn`
|
@@ -25034,6 +25073,7 @@ module Google
|
|
25034
25073
|
# Update properties of this object
|
25035
25074
|
def update!(**args)
|
25036
25075
|
@annotations = args[:annotations] if args.key?(:annotations)
|
25076
|
+
@client_destination_port = args[:client_destination_port] if args.key?(:client_destination_port)
|
25037
25077
|
@fqdn = args[:fqdn] if args.key?(:fqdn)
|
25038
25078
|
@instance = args[:instance] if args.key?(:instance)
|
25039
25079
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
@@ -25574,6 +25614,12 @@ module Google
|
|
25574
25614
|
# @return [String]
|
25575
25615
|
attr_accessor :consumer_psc_address
|
25576
25616
|
|
25617
|
+
# The psc producer port is used to connect PSC NEG with specific port on the PSC
|
25618
|
+
# Producer side; should only be used for the PRIVATE_SERVICE_CONNECT NEG type
|
25619
|
+
# Corresponds to the JSON property `producerPort`
|
25620
|
+
# @return [Fixnum]
|
25621
|
+
attr_accessor :producer_port
|
25622
|
+
|
25577
25623
|
# [Output Only] The PSC connection id of the PSC Network Endpoint Group Consumer.
|
25578
25624
|
# Corresponds to the JSON property `pscConnectionId`
|
25579
25625
|
# @return [Fixnum]
|
@@ -25591,6 +25637,7 @@ module Google
|
|
25591
25637
|
# Update properties of this object
|
25592
25638
|
def update!(**args)
|
25593
25639
|
@consumer_psc_address = args[:consumer_psc_address] if args.key?(:consumer_psc_address)
|
25640
|
+
@producer_port = args[:producer_port] if args.key?(:producer_port)
|
25594
25641
|
@psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
|
25595
25642
|
@psc_connection_status = args[:psc_connection_status] if args.key?(:psc_connection_status)
|
25596
25643
|
end
|
@@ -26400,6 +26447,12 @@ module Google
|
|
26400
26447
|
# @return [String]
|
26401
26448
|
attr_accessor :name
|
26402
26449
|
|
26450
|
+
# [Output only] Priority of firewall policy association. Not applicable for type=
|
26451
|
+
# HIERARCHY.
|
26452
|
+
# Corresponds to the JSON property `priority`
|
26453
|
+
# @return [Fixnum]
|
26454
|
+
attr_accessor :priority
|
26455
|
+
|
26403
26456
|
# The rules that apply to the network.
|
26404
26457
|
# Corresponds to the JSON property `rules`
|
26405
26458
|
# @return [Array<Google::Apis::ComputeV1::FirewallPolicyRule>]
|
@@ -26423,6 +26476,7 @@ module Google
|
|
26423
26476
|
def update!(**args)
|
26424
26477
|
@display_name = args[:display_name] if args.key?(:display_name)
|
26425
26478
|
@name = args[:name] if args.key?(:name)
|
26479
|
+
@priority = args[:priority] if args.key?(:priority)
|
26426
26480
|
@rules = args[:rules] if args.key?(:rules)
|
26427
26481
|
@short_name = args[:short_name] if args.key?(:short_name)
|
26428
26482
|
@type = args[:type] if args.key?(:type)
|
@@ -43117,8 +43171,7 @@ module Google
|
|
43117
43171
|
# @return [Fixnum]
|
43118
43172
|
attr_accessor :id
|
43119
43173
|
|
43120
|
-
#
|
43121
|
-
# subnetwork.
|
43174
|
+
# The internal IPv6 address range that is owned by this subnetwork.
|
43122
43175
|
# Corresponds to the JSON property `internalIpv6Prefix`
|
43123
43176
|
# @return [String]
|
43124
43177
|
attr_accessor :internal_ipv6_prefix
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.107.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240903"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -400,6 +400,12 @@ module Google
|
|
400
400
|
include Google::Apis::Core::JsonObjectSupport
|
401
401
|
end
|
402
402
|
|
403
|
+
class BackendBucketUsedBy
|
404
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
|
+
|
406
|
+
include Google::Apis::Core::JsonObjectSupport
|
407
|
+
end
|
408
|
+
|
403
409
|
class BackendService
|
404
410
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
411
|
|
@@ -6903,6 +6909,7 @@ module Google
|
|
6903
6909
|
property :enable_uefi_networking, as: 'enableUefiNetworking'
|
6904
6910
|
property :performance_monitoring_unit, as: 'performanceMonitoringUnit'
|
6905
6911
|
property :threads_per_core, as: 'threadsPerCore'
|
6912
|
+
property :turbo_mode, as: 'turboMode'
|
6906
6913
|
property :visible_core_count, as: 'visibleCoreCount'
|
6907
6914
|
end
|
6908
6915
|
end
|
@@ -7291,6 +7298,8 @@ module Google
|
|
7291
7298
|
property :kind, as: 'kind'
|
7292
7299
|
property :name, as: 'name'
|
7293
7300
|
property :self_link, as: 'selfLink'
|
7301
|
+
collection :used_by, as: 'usedBy', class: Google::Apis::ComputeV1::BackendBucketUsedBy, decorator: Google::Apis::ComputeV1::BackendBucketUsedBy::Representation
|
7302
|
+
|
7294
7303
|
end
|
7295
7304
|
end
|
7296
7305
|
|
@@ -7370,6 +7379,13 @@ module Google
|
|
7370
7379
|
end
|
7371
7380
|
end
|
7372
7381
|
|
7382
|
+
class BackendBucketUsedBy
|
7383
|
+
# @private
|
7384
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7385
|
+
property :reference, as: 'reference'
|
7386
|
+
end
|
7387
|
+
end
|
7388
|
+
|
7373
7389
|
class BackendService
|
7374
7390
|
# @private
|
7375
7391
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -12581,6 +12597,7 @@ module Google
|
|
12581
12597
|
# @private
|
12582
12598
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12583
12599
|
hash :annotations, as: 'annotations'
|
12600
|
+
property :client_destination_port, as: 'clientDestinationPort'
|
12584
12601
|
property :fqdn, as: 'fqdn'
|
12585
12602
|
property :instance, as: 'instance'
|
12586
12603
|
property :ip_address, as: 'ipAddress'
|
@@ -12712,6 +12729,7 @@ module Google
|
|
12712
12729
|
# @private
|
12713
12730
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12714
12731
|
property :consumer_psc_address, as: 'consumerPscAddress'
|
12732
|
+
property :producer_port, as: 'producerPort'
|
12715
12733
|
property :psc_connection_id, :numeric_string => true, as: 'pscConnectionId'
|
12716
12734
|
property :psc_connection_status, as: 'pscConnectionStatus'
|
12717
12735
|
end
|
@@ -12924,6 +12942,7 @@ module Google
|
|
12924
12942
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12925
12943
|
property :display_name, as: 'displayName'
|
12926
12944
|
property :name, as: 'name'
|
12945
|
+
property :priority, as: 'priority'
|
12927
12946
|
collection :rules, as: 'rules', class: Google::Apis::ComputeV1::FirewallPolicyRule, decorator: Google::Apis::ComputeV1::FirewallPolicyRule::Representation
|
12928
12947
|
|
12929
12948
|
property :short_name, as: 'shortName'
|
@@ -2294,8 +2294,7 @@ module Google
|
|
2294
2294
|
execute_or_queue_command(command, &block)
|
2295
2295
|
end
|
2296
2296
|
|
2297
|
-
# Retrieves
|
2298
|
-
# project.
|
2297
|
+
# Retrieves a list of all usable backend services in the specified project.
|
2299
2298
|
# @param [String] project
|
2300
2299
|
# Project ID for this request.
|
2301
2300
|
# @param [String] filter
|
@@ -25058,8 +25057,8 @@ module Google
|
|
25058
25057
|
execute_or_queue_command(command, &block)
|
25059
25058
|
end
|
25060
25059
|
|
25061
|
-
# Retrieves
|
25062
|
-
#
|
25060
|
+
# Retrieves a list of all usable backend services in the specified project in
|
25061
|
+
# the given region.
|
25063
25062
|
# @param [String] project
|
25064
25063
|
# Project ID for this request.
|
25065
25064
|
# @param [String] region
|
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.
|
4
|
+
version: 0.107.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: 2024-
|
11
|
+
date: 2024-09-15 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.107.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: []
|