google-apis-cloudbuild_v1 0.60.0 → 0.61.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: 232ded509bc7ba6da2a8283d6708eaceb39a18d6c28eb9a9eb018a6520e9dae1
|
4
|
+
data.tar.gz: cfd1c337d07fe0d8c9fcef01c3a8e119b3e3df0ab6c2fe6c99d2d7fbdca78f49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db852954a74e5cd29f537b80bf5b2f62ce13569c38efb8994ddb928cb0487618ed09925ad39edc62c0034843703f34d2ca475815afc8c2e6a8b179e4d0305993
|
7
|
+
data.tar.gz: b73ee3ffc871ee4b162e5dd5d218ed3079f12ed9ab37dcd2fc1ad0b245813f7cb38dde16fdef69958a3af03fb7f32d9e2da1289be9841269ce6881d7bf4876db
|
data/CHANGELOG.md
CHANGED
@@ -3223,11 +3223,6 @@ module Google
|
|
3223
3223
|
# @return [Google::Apis::CloudbuildV1::NetworkConfig]
|
3224
3224
|
attr_accessor :network_config
|
3225
3225
|
|
3226
|
-
# Defines the Private Service Connect network configuration for the pool.
|
3227
|
-
# Corresponds to the JSON property `privateServiceConnect`
|
3228
|
-
# @return [Google::Apis::CloudbuildV1::PrivateServiceConnect]
|
3229
|
-
attr_accessor :private_service_connect
|
3230
|
-
|
3231
3226
|
# Defines the configuration to be used for creating workers in the pool.
|
3232
3227
|
# Corresponds to the JSON property `workerConfig`
|
3233
3228
|
# @return [Google::Apis::CloudbuildV1::WorkerConfig]
|
@@ -3240,58 +3235,10 @@ module Google
|
|
3240
3235
|
# Update properties of this object
|
3241
3236
|
def update!(**args)
|
3242
3237
|
@network_config = args[:network_config] if args.key?(:network_config)
|
3243
|
-
@private_service_connect = args[:private_service_connect] if args.key?(:private_service_connect)
|
3244
3238
|
@worker_config = args[:worker_config] if args.key?(:worker_config)
|
3245
3239
|
end
|
3246
3240
|
end
|
3247
3241
|
|
3248
|
-
# Defines the Private Service Connect network configuration for the pool.
|
3249
|
-
class PrivateServiceConnect
|
3250
|
-
include Google::Apis::Core::Hashable
|
3251
|
-
|
3252
|
-
# Required. Immutable. The network attachment that the worker network interface
|
3253
|
-
# is peered to. Must be in the format `projects/`project`/regions/`region`/
|
3254
|
-
# networkAttachments/`networkAttachment``. The region of network attachment must
|
3255
|
-
# be the same as the worker pool. See [Network Attachments](https://cloud.google.
|
3256
|
-
# com/vpc/docs/about-network-attachments)
|
3257
|
-
# Corresponds to the JSON property `networkAttachment`
|
3258
|
-
# @return [String]
|
3259
|
-
attr_accessor :network_attachment
|
3260
|
-
|
3261
|
-
# Required. Immutable. Disable public IP on the primary network interface. If
|
3262
|
-
# true, workers are created without any public address, which prevents network
|
3263
|
-
# egress to public IPs unless a network proxy is configured. If false, workers
|
3264
|
-
# are created with a public address which allows for public internet egress. The
|
3265
|
-
# public address only applies to traffic through the primary network interface.
|
3266
|
-
# If `route_all_traffic` is set to true, all traffic will go through the non-
|
3267
|
-
# primary network interface, this boolean has no effect.
|
3268
|
-
# Corresponds to the JSON property `publicIpAddressDisabled`
|
3269
|
-
# @return [Boolean]
|
3270
|
-
attr_accessor :public_ip_address_disabled
|
3271
|
-
alias_method :public_ip_address_disabled?, :public_ip_address_disabled
|
3272
|
-
|
3273
|
-
# Immutable. Route all traffic through PSC interface. Enable this if you want
|
3274
|
-
# full control of traffic in the private pool. Configure Cloud NAT for the
|
3275
|
-
# subnet of network attachment if you need to access public Internet. If false,
|
3276
|
-
# Only route private IPs, e.g. 10.0.0.0/8, 172.16.0.0/12, and 192.168.0.0/16
|
3277
|
-
# through PSC interface.
|
3278
|
-
# Corresponds to the JSON property `routeAllTraffic`
|
3279
|
-
# @return [Boolean]
|
3280
|
-
attr_accessor :route_all_traffic
|
3281
|
-
alias_method :route_all_traffic?, :route_all_traffic
|
3282
|
-
|
3283
|
-
def initialize(**args)
|
3284
|
-
update!(**args)
|
3285
|
-
end
|
3286
|
-
|
3287
|
-
# Update properties of this object
|
3288
|
-
def update!(**args)
|
3289
|
-
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
3290
|
-
@public_ip_address_disabled = args[:public_ip_address_disabled] if args.key?(:public_ip_address_disabled)
|
3291
|
-
@route_all_traffic = args[:route_all_traffic] if args.key?(:route_all_traffic)
|
3292
|
-
end
|
3293
|
-
end
|
3294
|
-
|
3295
3242
|
# Metadata for `ProcessAppManifestCallback` operation.
|
3296
3243
|
class ProcessAppManifestCallbackOperationMetadata
|
3297
3244
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudbuildV1
|
18
18
|
# Version of the google-apis-cloudbuild_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.61.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240305"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -460,12 +460,6 @@ module Google
|
|
460
460
|
include Google::Apis::Core::JsonObjectSupport
|
461
461
|
end
|
462
462
|
|
463
|
-
class PrivateServiceConnect
|
464
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
|
-
|
466
|
-
include Google::Apis::Core::JsonObjectSupport
|
467
|
-
end
|
468
|
-
|
469
463
|
class ProcessAppManifestCallbackOperationMetadata
|
470
464
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
471
465
|
|
@@ -1495,22 +1489,11 @@ module Google
|
|
1495
1489
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1496
1490
|
property :network_config, as: 'networkConfig', class: Google::Apis::CloudbuildV1::NetworkConfig, decorator: Google::Apis::CloudbuildV1::NetworkConfig::Representation
|
1497
1491
|
|
1498
|
-
property :private_service_connect, as: 'privateServiceConnect', class: Google::Apis::CloudbuildV1::PrivateServiceConnect, decorator: Google::Apis::CloudbuildV1::PrivateServiceConnect::Representation
|
1499
|
-
|
1500
1492
|
property :worker_config, as: 'workerConfig', class: Google::Apis::CloudbuildV1::WorkerConfig, decorator: Google::Apis::CloudbuildV1::WorkerConfig::Representation
|
1501
1493
|
|
1502
1494
|
end
|
1503
1495
|
end
|
1504
1496
|
|
1505
|
-
class PrivateServiceConnect
|
1506
|
-
# @private
|
1507
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1508
|
-
property :network_attachment, as: 'networkAttachment'
|
1509
|
-
property :public_ip_address_disabled, as: 'publicIpAddressDisabled'
|
1510
|
-
property :route_all_traffic, as: 'routeAllTraffic'
|
1511
|
-
end
|
1512
|
-
end
|
1513
|
-
|
1514
1497
|
class ProcessAppManifestCallbackOperationMetadata
|
1515
1498
|
# @private
|
1516
1499
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudbuild_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.61.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-03-
|
11
|
+
date: 2024-03-10 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-cloudbuild_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.61.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|