google-apis-compute_v1 0.106.0 → 0.107.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:
|
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
@@ -2949,6 +2949,11 @@ module Google
|
|
2949
2949
|
# @return [String]
|
2950
2950
|
attr_accessor :self_link
|
2951
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
|
+
|
2952
2957
|
def initialize(**args)
|
2953
2958
|
update!(**args)
|
2954
2959
|
end
|
@@ -2967,6 +2972,7 @@ module Google
|
|
2967
2972
|
@kind = args[:kind] if args.key?(:kind)
|
2968
2973
|
@name = args[:name] if args.key?(:name)
|
2969
2974
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2975
|
+
@used_by = args[:used_by] if args.key?(:used_by)
|
2970
2976
|
end
|
2971
2977
|
end
|
2972
2978
|
|
@@ -3321,6 +3327,25 @@ module Google
|
|
3321
3327
|
end
|
3322
3328
|
end
|
3323
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
|
+
|
3324
3349
|
# Represents a Backend Service resource. A backend service defines how Google
|
3325
3350
|
# Cloud load balancers distribute traffic. The backend service configuration
|
3326
3351
|
# contains a set of values, such as the protocol used to connect to backends,
|
@@ -24998,6 +25023,12 @@ module Google
|
|
24998
25023
|
# @return [Hash<String,String>]
|
24999
25024
|
attr_accessor :annotations
|
25000
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
|
+
|
25001
25032
|
# Optional fully qualified domain name of network endpoint. This can only be
|
25002
25033
|
# specified when NetworkEndpointGroup.network_endpoint_type is NON_GCP_FQDN_PORT.
|
25003
25034
|
# Corresponds to the JSON property `fqdn`
|
@@ -25042,6 +25073,7 @@ module Google
|
|
25042
25073
|
# Update properties of this object
|
25043
25074
|
def update!(**args)
|
25044
25075
|
@annotations = args[:annotations] if args.key?(:annotations)
|
25076
|
+
@client_destination_port = args[:client_destination_port] if args.key?(:client_destination_port)
|
25045
25077
|
@fqdn = args[:fqdn] if args.key?(:fqdn)
|
25046
25078
|
@instance = args[:instance] if args.key?(:instance)
|
25047
25079
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
@@ -25582,6 +25614,12 @@ module Google
|
|
25582
25614
|
# @return [String]
|
25583
25615
|
attr_accessor :consumer_psc_address
|
25584
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
|
+
|
25585
25623
|
# [Output Only] The PSC connection id of the PSC Network Endpoint Group Consumer.
|
25586
25624
|
# Corresponds to the JSON property `pscConnectionId`
|
25587
25625
|
# @return [Fixnum]
|
@@ -25599,6 +25637,7 @@ module Google
|
|
25599
25637
|
# Update properties of this object
|
25600
25638
|
def update!(**args)
|
25601
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)
|
25602
25641
|
@psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
|
25603
25642
|
@psc_connection_status = args[:psc_connection_status] if args.key?(:psc_connection_status)
|
25604
25643
|
end
|
@@ -43132,8 +43171,7 @@ module Google
|
|
43132
43171
|
# @return [Fixnum]
|
43133
43172
|
attr_accessor :id
|
43134
43173
|
|
43135
|
-
#
|
43136
|
-
# subnetwork.
|
43174
|
+
# The internal IPv6 address range that is owned by this subnetwork.
|
43137
43175
|
# Corresponds to the JSON property `internalIpv6Prefix`
|
43138
43176
|
# @return [String]
|
43139
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
|
|
@@ -7292,6 +7298,8 @@ module Google
|
|
7292
7298
|
property :kind, as: 'kind'
|
7293
7299
|
property :name, as: 'name'
|
7294
7300
|
property :self_link, as: 'selfLink'
|
7301
|
+
collection :used_by, as: 'usedBy', class: Google::Apis::ComputeV1::BackendBucketUsedBy, decorator: Google::Apis::ComputeV1::BackendBucketUsedBy::Representation
|
7302
|
+
|
7295
7303
|
end
|
7296
7304
|
end
|
7297
7305
|
|
@@ -7371,6 +7379,13 @@ module Google
|
|
7371
7379
|
end
|
7372
7380
|
end
|
7373
7381
|
|
7382
|
+
class BackendBucketUsedBy
|
7383
|
+
# @private
|
7384
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7385
|
+
property :reference, as: 'reference'
|
7386
|
+
end
|
7387
|
+
end
|
7388
|
+
|
7374
7389
|
class BackendService
|
7375
7390
|
# @private
|
7376
7391
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -12582,6 +12597,7 @@ module Google
|
|
12582
12597
|
# @private
|
12583
12598
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12584
12599
|
hash :annotations, as: 'annotations'
|
12600
|
+
property :client_destination_port, as: 'clientDestinationPort'
|
12585
12601
|
property :fqdn, as: 'fqdn'
|
12586
12602
|
property :instance, as: 'instance'
|
12587
12603
|
property :ip_address, as: 'ipAddress'
|
@@ -12713,6 +12729,7 @@ module Google
|
|
12713
12729
|
# @private
|
12714
12730
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12715
12731
|
property :consumer_psc_address, as: 'consumerPscAddress'
|
12732
|
+
property :producer_port, as: 'producerPort'
|
12716
12733
|
property :psc_connection_id, :numeric_string => true, as: 'pscConnectionId'
|
12717
12734
|
property :psc_connection_status, as: 'pscConnectionStatus'
|
12718
12735
|
end
|
@@ -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-09-
|
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: []
|