google-apis-containeranalysis_v1 0.6.0 → 0.9.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: 9d481fc6556594c14316bcb501c886fbad60f0399709e4d36376a9f98e85e44a
4
- data.tar.gz: 73477d46b61dae36d41adca2d8edf0dbba66731f4688e2cd7a10af3b27a292cd
3
+ metadata.gz: d9e1a359b2cb5a66e3269d6838bb5d57aa96f84dbbb884c96915f4c20ff443e8
4
+ data.tar.gz: 0f28aacb806c0840e676406ede0799fe1cc4ddf960946829bb32693bb6ccaf27
5
5
  SHA512:
6
- metadata.gz: 4ddf0eeb5737878b78759da2217967b4242682513f66b9a9030da54ca1e7cf68ce575c5602b7932814873843c1e433aea281842ae6d64339b3893bb2e7645ea1
7
- data.tar.gz: 8380da0d10a755b88cd1d5e7009761474e841bcfa9ccaa529bbdb471007910cebbde0f0d84f15938292fd8c6c47188e9e82688dd35ae151c7d4201555e31f45b
6
+ metadata.gz: 86165aafd0631ba9559184b5663ea546ac6a95726e2e86be9685b0cb78141f09533ffbb3248f43626388cc56de916eda267bcea916f0ab39c4dfea4929584242
7
+ data.tar.gz: d3d86f7c0d4ffe38b8419caa5fa858449f41b2865299f7fb597ebbacd26f037271fabdbd427855e8b5a6bc504aaac3fea21fb9e004f72086bf3873c78fa80707
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-containeranalysis_v1
2
2
 
3
+ ### v0.9.0 (2022-04-21)
4
+
5
+ * Regenerated from discovery document revision 20220414
6
+
7
+ ### v0.8.0 (2022-03-23)
8
+
9
+ * Regenerated from discovery document revision 20220318
10
+
11
+ ### v0.7.0 (2022-02-10)
12
+
13
+ * Regenerated from discovery document revision 20220204
14
+
3
15
  ### v0.6.0 (2022-01-20)
4
16
 
5
17
  * Regenerated from discovery document revision 20220112
@@ -261,7 +261,7 @@ module Google
261
261
  # @return [Google::Apis::ContaineranalysisV1::Expr]
262
262
  attr_accessor :condition
263
263
 
264
- # Specifies the principals requesting access for a Cloud Platform resource. `
264
+ # Specifies the principals requesting access for a Google Cloud resource. `
265
265
  # members` can have the following values: * `allUsers`: A special identifier
266
266
  # that represents anyone who is on the internet; with or without a Google
267
267
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -920,6 +920,12 @@ module Google
920
920
  class ComplianceVersion
921
921
  include Google::Apis::Core::Hashable
922
922
 
923
+ # The name of the document that defines this benchmark, e.g. "CIS Container-
924
+ # Optimized OS".
925
+ # Corresponds to the JSON property `benchmarkDocument`
926
+ # @return [String]
927
+ attr_accessor :benchmark_document
928
+
923
929
  # The CPE URI (https://cpe.mitre.org/specification/) this benchmark is
924
930
  # applicable to.
925
931
  # Corresponds to the JSON property `cpeUri`
@@ -938,6 +944,7 @@ module Google
938
944
 
939
945
  # Update properties of this object
940
946
  def update!(**args)
947
+ @benchmark_document = args[:benchmark_document] if args.key?(:benchmark_document)
941
948
  @cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri)
942
949
  @version = args[:version] if args.key?(:version)
943
950
  end
@@ -1488,11 +1495,6 @@ module Google
1488
1495
  # @return [String]
1489
1496
  attr_accessor :name
1490
1497
 
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
1498
  def initialize(**args)
1497
1499
  update!(**args)
1498
1500
  end
@@ -1500,41 +1502,6 @@ module Google
1500
1502
  # Update properties of this object
1501
1503
  def update!(**args)
1502
1504
  @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
1505
  end
1539
1506
  end
1540
1507
 
@@ -2610,8 +2577,7 @@ module Google
2610
2577
  # A generic empty message that you can re-use to avoid defining duplicated empty
2611
2578
  # messages in your APIs. A typical example is to use it as the request or the
2612
2579
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
2613
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
2614
- # `Empty` is empty JSON object ````.
2580
+ # protobuf.Empty) returns (google.protobuf.Empty); `
2615
2581
  class Empty
2616
2582
  include Google::Apis::Core::Hashable
2617
2583
 
@@ -4587,7 +4553,7 @@ module Google
4587
4553
  include Google::Apis::Core::Hashable
4588
4554
 
4589
4555
  # The set of permissions to check for the `resource`. Permissions with wildcards
4590
- # (such as '*' or 'storage.*') are not allowed. For more information see [IAM
4556
+ # (such as `*` or `storage.*`) are not allowed. For more information see [IAM
4591
4557
  # Overview](https://cloud.google.com/iam/docs/overview#permissions).
4592
4558
  # Corresponds to the JSON property `permissions`
4593
4559
  # @return [Array<String>]
@@ -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.6.0"
19
+ GEM_VERSION = "0.9.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 = "20220112"
25
+ REVISION = "20220414"
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
 
@@ -979,6 +973,7 @@ module Google
979
973
  class ComplianceVersion
980
974
  # @private
981
975
  class Representation < Google::Apis::Core::JsonRepresentation
976
+ property :benchmark_document, as: 'benchmarkDocument'
982
977
  property :cpe_uri, as: 'cpeUri'
983
978
  property :version, as: 'version'
984
979
  end
@@ -1112,17 +1107,6 @@ module Google
1112
1107
  # @private
1113
1108
  class Representation < Google::Apis::Core::JsonRepresentation
1114
1109
  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
1110
  end
1127
1111
  end
1128
1112
 
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.6.0
4
+ version: 0.9.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-01-24 00:00:00.000000000 Z
11
+ date: 2022-04-25 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.6.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.9.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: []