google-apis-containeranalysis_v1 0.6.0 → 0.7.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: 6b6cc33806be10821e68fe453bb4357f378d86ce1cf3184be6f0bf87a5ea9c8a
|
|
4
|
+
data.tar.gz: 867523fa4a6f6a77e61d3d64bbb9613203f74b5778e4562289a8b6c81feb10c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0c14d17807f940e5ba70726adc97d6ed78cc0388cc547b57151c69800255fa40d37fa09f447da83cae5698891b9d9cb1ade723c06d28e99f74b35194380a7b5a
|
|
7
|
+
data.tar.gz: 775a662c961085ef878124adf0719a5b34c1e980aa80aeacf197ad87103be551094fa4f1479f5054c010bdd7cfb31062a385592af0dc6f6b0f88d233e63ffbd2
|
data/CHANGELOG.md
CHANGED
|
@@ -1488,11 +1488,6 @@ module Google
|
|
|
1488
1488
|
# @return [String]
|
|
1489
1489
|
attr_accessor :name
|
|
1490
1490
|
|
|
1491
|
-
# Configuration per workload for both Private Pools and Hybrid Pools.
|
|
1492
|
-
# Corresponds to the JSON property `workerConfig`
|
|
1493
|
-
# @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOptionWorkerConfig]
|
|
1494
|
-
attr_accessor :worker_config
|
|
1495
|
-
|
|
1496
1491
|
def initialize(**args)
|
|
1497
1492
|
update!(**args)
|
|
1498
1493
|
end
|
|
@@ -1500,41 +1495,6 @@ module Google
|
|
|
1500
1495
|
# Update properties of this object
|
|
1501
1496
|
def update!(**args)
|
|
1502
1497
|
@name = args[:name] if args.key?(:name)
|
|
1503
|
-
@worker_config = args[:worker_config] if args.key?(:worker_config)
|
|
1504
|
-
end
|
|
1505
|
-
end
|
|
1506
|
-
|
|
1507
|
-
# Configuration per workload for both Private Pools and Hybrid Pools.
|
|
1508
|
-
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOptionWorkerConfig
|
|
1509
|
-
include Google::Apis::Core::Hashable
|
|
1510
|
-
|
|
1511
|
-
# The disk size (in GB) which is requested for the build container. If unset, a
|
|
1512
|
-
# value of 10 GB will be used.
|
|
1513
|
-
# Corresponds to the JSON property `diskSizeGb`
|
|
1514
|
-
# @return [Fixnum]
|
|
1515
|
-
attr_accessor :disk_size_gb
|
|
1516
|
-
|
|
1517
|
-
# The memory (in GB) which is requested for the build container. If unset, a
|
|
1518
|
-
# value of 4 GB will be used.
|
|
1519
|
-
# Corresponds to the JSON property `memoryGb`
|
|
1520
|
-
# @return [Float]
|
|
1521
|
-
attr_accessor :memory_gb
|
|
1522
|
-
|
|
1523
|
-
# The number of vCPUs which are requested for the build container. If unset, a
|
|
1524
|
-
# value of 1 will be used.
|
|
1525
|
-
# Corresponds to the JSON property `vcpuCount`
|
|
1526
|
-
# @return [Float]
|
|
1527
|
-
attr_accessor :vcpu_count
|
|
1528
|
-
|
|
1529
|
-
def initialize(**args)
|
|
1530
|
-
update!(**args)
|
|
1531
|
-
end
|
|
1532
|
-
|
|
1533
|
-
# Update properties of this object
|
|
1534
|
-
def update!(**args)
|
|
1535
|
-
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
|
1536
|
-
@memory_gb = args[:memory_gb] if args.key?(:memory_gb)
|
|
1537
|
-
@vcpu_count = args[:vcpu_count] if args.key?(:vcpu_count)
|
|
1538
1498
|
end
|
|
1539
1499
|
end
|
|
1540
1500
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ContaineranalysisV1
|
|
18
18
|
# Version of the google-apis-containeranalysis_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.7.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220204"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -214,12 +214,6 @@ module Google
|
|
|
214
214
|
include Google::Apis::Core::JsonObjectSupport
|
|
215
215
|
end
|
|
216
216
|
|
|
217
|
-
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOptionWorkerConfig
|
|
218
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
219
|
-
|
|
220
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
221
|
-
end
|
|
222
|
-
|
|
223
217
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStep
|
|
224
218
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
225
219
|
|
|
@@ -1112,17 +1106,6 @@ module Google
|
|
|
1112
1106
|
# @private
|
|
1113
1107
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1114
1108
|
property :name, as: 'name'
|
|
1115
|
-
property :worker_config, as: 'workerConfig', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOptionWorkerConfig, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOptionWorkerConfig::Representation
|
|
1116
|
-
|
|
1117
|
-
end
|
|
1118
|
-
end
|
|
1119
|
-
|
|
1120
|
-
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOptionWorkerConfig
|
|
1121
|
-
# @private
|
|
1122
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1123
|
-
property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
|
|
1124
|
-
property :memory_gb, as: 'memoryGb'
|
|
1125
|
-
property :vcpu_count, as: 'vcpuCount'
|
|
1126
1109
|
end
|
|
1127
1110
|
end
|
|
1128
1111
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-containeranalysis_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.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: 2022-
|
|
11
|
+
date: 2022-02-14 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-containeranalysis_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.7.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|