google-apis-containeranalysis_v1alpha1 0.35.0 → 0.37.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: b126b32dd5f98b8ae3c23abd4c127471b53c0be826b40b0f33bcb1b9bd46410e
4
- data.tar.gz: 1d8dd71dc180d1d681b2a3f5a536635dfdee48f04e5b69a7441472ce9832a998
3
+ metadata.gz: e493b5f918286ae9c6ba128caf7ee16b3254c881c5044aebc90e8eac3856745b
4
+ data.tar.gz: c25e713cb501600547635235d3ff983b11688416b0fb663c772d9a718c205386
5
5
  SHA512:
6
- metadata.gz: aed1f25f22dc3cdcf1937a33baf6d89b4e142abfcfae6eb1a5ac1ba52feaf81006882ab0e5eaa1bb3045f0598fbcce4bf342751ddd2408fe224603c120b10bff
7
- data.tar.gz: 105e62a30fd9a94605c7ffdb1cd60cc4dbef50e3d247bd03a4935771d816387af4657f36cf7a3f70eed6c37014318cdd9c323a56949fa582ef0c184f1a21ef67
6
+ metadata.gz: c55e37bc125f38d21395d48ab7b34eea9e28b00efb4a80817fd1997cd4c2f1ed5a062411431ce76be9f1c4383f22fdeae8a906d43e28a1cc018e79ed821e45dc
7
+ data.tar.gz: c25bfb2245ebb870d73e04fbaa2720ce7f9b03dfb910891f897dae16f2b8a7452218a66491507ed4ca78821d88db73828cd20d9623070272bf857d38409e1b9a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-containeranalysis_v1alpha1
2
2
 
3
+ ### v0.37.0 (2022-10-12)
4
+
5
+ * Regenerated from discovery document revision 20221001
6
+
7
+ ### v0.36.0 (2022-09-30)
8
+
9
+ * Regenerated using generator version 0.10.0
10
+
3
11
  ### v0.35.0 (2022-09-18)
4
12
 
5
13
  * Unspecified changes
@@ -922,12 +922,29 @@ module Google
922
922
  # @return [Array<String>]
923
923
  attr_accessor :images
924
924
 
925
+ # A list of Maven artifacts to be uploaded to Artifact Registry upon successful
926
+ # completion of all build steps. Artifacts in the workspace matching specified
927
+ # paths globs will be uploaded to the specified Artifact Registry repository
928
+ # using the builder service account's credentials. If any artifacts fail to be
929
+ # pushed, the build is marked FAILURE.
930
+ # Corresponds to the JSON property `mavenArtifacts`
931
+ # @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact>]
932
+ attr_accessor :maven_artifacts
933
+
925
934
  # Files in the workspace to upload to Cloud Storage upon successful completion
926
935
  # of all build steps.
927
936
  # Corresponds to the JSON property `objects`
928
937
  # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsArtifactObjects]
929
938
  attr_accessor :objects
930
939
 
940
+ # A list of Python packages to be uploaded to Artifact Registry upon successful
941
+ # completion of all build steps. The build service account credentials will be
942
+ # used to perform the upload. If any objects fail to be pushed, the build is
943
+ # marked FAILURE.
944
+ # Corresponds to the JSON property `pythonPackages`
945
+ # @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage>]
946
+ attr_accessor :python_packages
947
+
931
948
  def initialize(**args)
932
949
  update!(**args)
933
950
  end
@@ -935,7 +952,9 @@ module Google
935
952
  # Update properties of this object
936
953
  def update!(**args)
937
954
  @images = args[:images] if args.key?(:images)
955
+ @maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
938
956
  @objects = args[:objects] if args.key?(:objects)
957
+ @python_packages = args[:python_packages] if args.key?(:python_packages)
939
958
  end
940
959
  end
941
960
 
@@ -974,6 +993,85 @@ module Google
974
993
  end
975
994
  end
976
995
 
996
+ # A Maven artifact to upload to Artifact Registry upon successful completion of
997
+ # all build steps.
998
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact
999
+ include Google::Apis::Core::Hashable
1000
+
1001
+ # Maven `artifactId` value used when uploading the artifact to Artifact Registry.
1002
+ # Corresponds to the JSON property `artifactId`
1003
+ # @return [String]
1004
+ attr_accessor :artifact_id
1005
+
1006
+ # Maven `groupId` value used when uploading the artifact to Artifact Registry.
1007
+ # Corresponds to the JSON property `groupId`
1008
+ # @return [String]
1009
+ attr_accessor :group_id
1010
+
1011
+ # Path to an artifact in the build's workspace to be uploaded to Artifact
1012
+ # Registry. This can be either an absolute path, e.g. /workspace/my-app/target/
1013
+ # my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/
1014
+ # my-app-1.0.SNAPSHOT.jar.
1015
+ # Corresponds to the JSON property `path`
1016
+ # @return [String]
1017
+ attr_accessor :path
1018
+
1019
+ # Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$
1020
+ # PROJECT/$REPOSITORY" Artifact in the workspace specified by path will be
1021
+ # uploaded to Artifact Registry with this location as a prefix.
1022
+ # Corresponds to the JSON property `repository`
1023
+ # @return [String]
1024
+ attr_accessor :repository
1025
+
1026
+ # Maven `version` value used when uploading the artifact to Artifact Registry.
1027
+ # Corresponds to the JSON property `version`
1028
+ # @return [String]
1029
+ attr_accessor :version
1030
+
1031
+ def initialize(**args)
1032
+ update!(**args)
1033
+ end
1034
+
1035
+ # Update properties of this object
1036
+ def update!(**args)
1037
+ @artifact_id = args[:artifact_id] if args.key?(:artifact_id)
1038
+ @group_id = args[:group_id] if args.key?(:group_id)
1039
+ @path = args[:path] if args.key?(:path)
1040
+ @repository = args[:repository] if args.key?(:repository)
1041
+ @version = args[:version] if args.key?(:version)
1042
+ end
1043
+ end
1044
+
1045
+ # Python package to upload to Artifact Registry upon successful completion of
1046
+ # all build steps. A package can encapsulate multiple objects to be uploaded to
1047
+ # a single repository.
1048
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage
1049
+ include Google::Apis::Core::Hashable
1050
+
1051
+ # Path globs used to match files in the build's workspace. For Python/ Twine,
1052
+ # this is usually `dist/*`, and sometimes additionally an `.asc` file.
1053
+ # Corresponds to the JSON property `paths`
1054
+ # @return [Array<String>]
1055
+ attr_accessor :paths
1056
+
1057
+ # Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$
1058
+ # PROJECT/$REPOSITORY" Files in the workspace matching any path pattern will be
1059
+ # uploaded to Artifact Registry with this location as a prefix.
1060
+ # Corresponds to the JSON property `repository`
1061
+ # @return [String]
1062
+ attr_accessor :repository
1063
+
1064
+ def initialize(**args)
1065
+ update!(**args)
1066
+ end
1067
+
1068
+ # Update properties of this object
1069
+ def update!(**args)
1070
+ @paths = args[:paths] if args.key?(:paths)
1071
+ @repository = args[:repository] if args.key?(:repository)
1072
+ end
1073
+ end
1074
+
977
1075
  # A build resource in the Cloud Build API. At a high level, a `Build` describes
978
1076
  # where to find source code, how to build it (for example, the builder image to
979
1077
  # run on the source), and where to store the built artifacts. Fields can include
@@ -1148,10 +1246,10 @@ module Google
1148
1246
  attr_accessor :timeout
1149
1247
 
1150
1248
  # Output only. Stores timing information for phases of the build. Valid keys are:
1151
- # * BUILD: time to execute all build steps. * PUSH: time to push all specified
1152
- # images. * FETCHSOURCE: time to fetch source. * SETUPBUILD: time to set up
1153
- # build. If the build does not specify source or images, these keys will not be
1154
- # included.
1249
+ # * BUILD: time to execute all build steps. * PUSH: time to push all artifacts
1250
+ # including docker images and non docker artifacts. * FETCHSOURCE: time to fetch
1251
+ # source. * SETUPBUILD: time to set up build. If the build does not specify
1252
+ # source or images, these keys will not be included.
1155
1253
  # Corresponds to the JSON property `timing`
1156
1254
  # @return [Hash<String,Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan>]
1157
1255
  attr_accessor :timing
@@ -1760,7 +1858,8 @@ module Google
1760
1858
  class ContaineranalysisGoogleDevtoolsCloudbuildV1Results
1761
1859
  include Google::Apis::Core::Hashable
1762
1860
 
1763
- # Path to the artifact manifest. Only populated when artifacts are uploaded.
1861
+ # Path to the artifact manifest for non-container artifacts uploaded to Cloud
1862
+ # Storage. Only populated when artifacts are uploaded to Cloud Storage.
1764
1863
  # Corresponds to the JSON property `artifactManifest`
1765
1864
  # @return [String]
1766
1865
  attr_accessor :artifact_manifest
@@ -1788,11 +1887,22 @@ module Google
1788
1887
  # @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage>]
1789
1888
  attr_accessor :images
1790
1889
 
1791
- # Number of artifacts uploaded. Only populated when artifacts are uploaded.
1890
+ # Maven artifacts uploaded to Artifact Registry at the end of the build.
1891
+ # Corresponds to the JSON property `mavenArtifacts`
1892
+ # @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact>]
1893
+ attr_accessor :maven_artifacts
1894
+
1895
+ # Number of non-container artifacts uploaded to Cloud Storage. Only populated
1896
+ # when artifacts are uploaded to Cloud Storage.
1792
1897
  # Corresponds to the JSON property `numArtifacts`
1793
1898
  # @return [Fixnum]
1794
1899
  attr_accessor :num_artifacts
1795
1900
 
1901
+ # Python artifacts uploaded to Artifact Registry at the end of the build.
1902
+ # Corresponds to the JSON property `pythonPackages`
1903
+ # @return [Array<Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage>]
1904
+ attr_accessor :python_packages
1905
+
1796
1906
  def initialize(**args)
1797
1907
  update!(**args)
1798
1908
  end
@@ -1804,7 +1914,9 @@ module Google
1804
1914
  @build_step_images = args[:build_step_images] if args.key?(:build_step_images)
1805
1915
  @build_step_outputs = args[:build_step_outputs] if args.key?(:build_step_outputs)
1806
1916
  @images = args[:images] if args.key?(:images)
1917
+ @maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
1807
1918
  @num_artifacts = args[:num_artifacts] if args.key?(:num_artifacts)
1919
+ @python_packages = args[:python_packages] if args.key?(:python_packages)
1808
1920
  end
1809
1921
  end
1810
1922
 
@@ -2068,6 +2180,70 @@ module Google
2068
2180
  end
2069
2181
  end
2070
2182
 
2183
+ # A Maven artifact uploaded using the MavenArtifact directive.
2184
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
2185
+ include Google::Apis::Core::Hashable
2186
+
2187
+ # Container message for hashes of byte content of files, used in
2188
+ # SourceProvenance messages to verify integrity of source input to the build.
2189
+ # Corresponds to the JSON property `fileHashes`
2190
+ # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes]
2191
+ attr_accessor :file_hashes
2192
+
2193
+ # Start and end times for a build execution phase.
2194
+ # Corresponds to the JSON property `pushTiming`
2195
+ # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
2196
+ attr_accessor :push_timing
2197
+
2198
+ # URI of the uploaded artifact.
2199
+ # Corresponds to the JSON property `uri`
2200
+ # @return [String]
2201
+ attr_accessor :uri
2202
+
2203
+ def initialize(**args)
2204
+ update!(**args)
2205
+ end
2206
+
2207
+ # Update properties of this object
2208
+ def update!(**args)
2209
+ @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
2210
+ @push_timing = args[:push_timing] if args.key?(:push_timing)
2211
+ @uri = args[:uri] if args.key?(:uri)
2212
+ end
2213
+ end
2214
+
2215
+ # Artifact uploaded using the PythonPackage directive.
2216
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage
2217
+ include Google::Apis::Core::Hashable
2218
+
2219
+ # Container message for hashes of byte content of files, used in
2220
+ # SourceProvenance messages to verify integrity of source input to the build.
2221
+ # Corresponds to the JSON property `fileHashes`
2222
+ # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes]
2223
+ attr_accessor :file_hashes
2224
+
2225
+ # Start and end times for a build execution phase.
2226
+ # Corresponds to the JSON property `pushTiming`
2227
+ # @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
2228
+ attr_accessor :push_timing
2229
+
2230
+ # URI of the uploaded artifact.
2231
+ # Corresponds to the JSON property `uri`
2232
+ # @return [String]
2233
+ attr_accessor :uri
2234
+
2235
+ def initialize(**args)
2236
+ update!(**args)
2237
+ end
2238
+
2239
+ # Update properties of this object
2240
+ def update!(**args)
2241
+ @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
2242
+ @push_timing = args[:push_timing] if args.key?(:push_timing)
2243
+ @uri = args[:uri] if args.key?(:uri)
2244
+ end
2245
+ end
2246
+
2071
2247
  # Volume describes a Docker container volume which is mounted into build steps
2072
2248
  # in order to persist files across build step execution.
2073
2249
  class ContaineranalysisGoogleDevtoolsCloudbuildV1Volume
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContaineranalysisV1alpha1
18
18
  # Version of the google-apis-containeranalysis_v1alpha1 gem
19
- GEM_VERSION = "0.35.0"
19
+ GEM_VERSION = "0.37.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.9.0"
22
+ GENERATOR_VERSION = "0.10.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220902"
25
+ REVISION = "20221001"
26
26
  end
27
27
  end
28
28
  end
@@ -160,6 +160,18 @@ module Google
160
160
  include Google::Apis::Core::JsonObjectSupport
161
161
  end
162
162
 
163
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
169
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
163
175
  class ContaineranalysisGoogleDevtoolsCloudbuildV1Build
164
176
  class Representation < Google::Apis::Core::JsonRepresentation; end
165
177
 
@@ -286,6 +298,18 @@ module Google
286
298
  include Google::Apis::Core::JsonObjectSupport
287
299
  end
288
300
 
301
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
302
+ class Representation < Google::Apis::Core::JsonRepresentation; end
303
+
304
+ include Google::Apis::Core::JsonObjectSupport
305
+ end
306
+
307
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage
308
+ class Representation < Google::Apis::Core::JsonRepresentation; end
309
+
310
+ include Google::Apis::Core::JsonObjectSupport
311
+ end
312
+
289
313
  class ContaineranalysisGoogleDevtoolsCloudbuildV1Volume
290
314
  class Representation < Google::Apis::Core::JsonRepresentation; end
291
315
 
@@ -1072,8 +1096,12 @@ module Google
1072
1096
  # @private
1073
1097
  class Representation < Google::Apis::Core::JsonRepresentation
1074
1098
  collection :images, as: 'images'
1099
+ collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact::Representation
1100
+
1075
1101
  property :objects, as: 'objects', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsArtifactObjects, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsArtifactObjects::Representation
1076
1102
 
1103
+ collection :python_packages, as: 'pythonPackages', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage::Representation
1104
+
1077
1105
  end
1078
1106
  end
1079
1107
 
@@ -1087,6 +1115,25 @@ module Google
1087
1115
  end
1088
1116
  end
1089
1117
 
1118
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact
1119
+ # @private
1120
+ class Representation < Google::Apis::Core::JsonRepresentation
1121
+ property :artifact_id, as: 'artifactId'
1122
+ property :group_id, as: 'groupId'
1123
+ property :path, as: 'path'
1124
+ property :repository, as: 'repository'
1125
+ property :version, as: 'version'
1126
+ end
1127
+ end
1128
+
1129
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage
1130
+ # @private
1131
+ class Representation < Google::Apis::Core::JsonRepresentation
1132
+ collection :paths, as: 'paths'
1133
+ property :repository, as: 'repository'
1134
+ end
1135
+ end
1136
+
1090
1137
  class ContaineranalysisGoogleDevtoolsCloudbuildV1Build
1091
1138
  # @private
1092
1139
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1273,7 +1320,11 @@ module Google
1273
1320
  collection :build_step_outputs, as: 'buildStepOutputs'
1274
1321
  collection :images, as: 'images', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage::Representation
1275
1322
 
1323
+ collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact::Representation
1324
+
1276
1325
  property :num_artifacts, :numeric_string => true, as: 'numArtifacts'
1326
+ collection :python_packages, as: 'pythonPackages', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage::Representation
1327
+
1277
1328
  end
1278
1329
  end
1279
1330
 
@@ -1355,6 +1406,28 @@ module Google
1355
1406
  end
1356
1407
  end
1357
1408
 
1409
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
1410
+ # @private
1411
+ class Representation < Google::Apis::Core::JsonRepresentation
1412
+ property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
1413
+
1414
+ property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
1415
+
1416
+ property :uri, as: 'uri'
1417
+ end
1418
+ end
1419
+
1420
+ class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage
1421
+ # @private
1422
+ class Representation < Google::Apis::Core::JsonRepresentation
1423
+ property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
1424
+
1425
+ property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
1426
+
1427
+ property :uri, as: 'uri'
1428
+ end
1429
+ end
1430
+
1358
1431
  class ContaineranalysisGoogleDevtoolsCloudbuildV1Volume
1359
1432
  # @private
1360
1433
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.37.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-09-19 00:00:00.000000000 Z
11
+ date: 2022-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.7.2
19
+ version: 0.9.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.7.2
29
+ version: 0.9.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.37.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []