google-apis-containeranalysis_v1alpha1 0.52.0 → 0.54.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: 3b4e8c8aad0fae22b785f01a395efea208b4578691747018cd717537119962a3
|
4
|
+
data.tar.gz: 51ff8ea9363c349a311b8d6d087d25cc4130e5328b232f78bc94bc389c192c98
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: efbc0ed5eac9c5757113136b89c3e1e801df30dfe0fd139020c0a74ad200b25d4a85be9131eeadafea263cb0ec7a6a36476c92a4ab9dbc37a11265f35e3f5382
|
7
|
+
data.tar.gz: aa48ea96a554856f63c1423af4f268ebd6c3af705a97b3447e2dae69d93bd4d47835084e6e19fac3cd9c8c9af8f78b978599893f5821d44b448eed5b0c47ca11
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1alpha1
|
2
2
|
|
3
|
+
### v0.54.0 (2023-09-10)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230829
|
6
|
+
|
7
|
+
### v0.53.0 (2023-08-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230811
|
10
|
+
|
3
11
|
### v0.52.0 (2023-08-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230804
|
@@ -2086,6 +2086,39 @@ module Google
|
|
2086
2086
|
end
|
2087
2087
|
end
|
2088
2088
|
|
2089
|
+
# Location of the source in a 2nd-gen Google Cloud Build repository resource.
|
2090
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
|
2091
|
+
include Google::Apis::Core::Hashable
|
2092
|
+
|
2093
|
+
# Directory, relative to the source root, in which to run the build.
|
2094
|
+
# Corresponds to the JSON property `dir`
|
2095
|
+
# @return [String]
|
2096
|
+
attr_accessor :dir
|
2097
|
+
|
2098
|
+
# Required. Name of the Google Cloud Build repository, formatted as `projects/*/
|
2099
|
+
# locations/*/connections/*/repositories/*`.
|
2100
|
+
# Corresponds to the JSON property `repository`
|
2101
|
+
# @return [String]
|
2102
|
+
attr_accessor :repository
|
2103
|
+
|
2104
|
+
# The revision to fetch from the Git repository such as a branch, a tag, a
|
2105
|
+
# commit SHA, or any Git ref.
|
2106
|
+
# Corresponds to the JSON property `revision`
|
2107
|
+
# @return [String]
|
2108
|
+
attr_accessor :revision
|
2109
|
+
|
2110
|
+
def initialize(**args)
|
2111
|
+
update!(**args)
|
2112
|
+
end
|
2113
|
+
|
2114
|
+
# Update properties of this object
|
2115
|
+
def update!(**args)
|
2116
|
+
@dir = args[:dir] if args.key?(:dir)
|
2117
|
+
@repository = args[:repository] if args.key?(:repository)
|
2118
|
+
@revision = args[:revision] if args.key?(:revision)
|
2119
|
+
end
|
2120
|
+
end
|
2121
|
+
|
2089
2122
|
# Container message for hashes of byte content of files, used in
|
2090
2123
|
# SourceProvenance messages to verify integrity of source input to the build.
|
2091
2124
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
|
@@ -2295,7 +2328,7 @@ module Google
|
|
2295
2328
|
# List of build step outputs, produced by builder images, in the order
|
2296
2329
|
# corresponding to build step indices. [Cloud Builders](https://cloud.google.com/
|
2297
2330
|
# cloud-build/docs/cloud-builders) can produce this output by writing to `$
|
2298
|
-
# BUILDER_OUTPUT/output`. Only the first
|
2331
|
+
# BUILDER_OUTPUT/output`. Only the first 50KB of data is stored.
|
2299
2332
|
# Corresponds to the JSON property `buildStepOutputs`
|
2300
2333
|
# @return [Array<String>]
|
2301
2334
|
attr_accessor :build_step_outputs
|
@@ -2432,6 +2465,11 @@ module Google
|
|
2432
2465
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Source
|
2433
2466
|
include Google::Apis::Core::Hashable
|
2434
2467
|
|
2468
|
+
# Location of the source in a 2nd-gen Google Cloud Build repository resource.
|
2469
|
+
# Corresponds to the JSON property `connectedRepository`
|
2470
|
+
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository]
|
2471
|
+
attr_accessor :connected_repository
|
2472
|
+
|
2435
2473
|
# Location of the source in any accessible Git repository.
|
2436
2474
|
# Corresponds to the JSON property `gitSource`
|
2437
2475
|
# @return [Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource]
|
@@ -2460,6 +2498,7 @@ module Google
|
|
2460
2498
|
|
2461
2499
|
# Update properties of this object
|
2462
2500
|
def update!(**args)
|
2501
|
+
@connected_repository = args[:connected_repository] if args.key?(:connected_repository)
|
2463
2502
|
@git_source = args[:git_source] if args.key?(:git_source)
|
2464
2503
|
@repo_source = args[:repo_source] if args.key?(:repo_source)
|
2465
2504
|
@storage_source = args[:storage_source] if args.key?(:storage_source)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.54.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230829"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -250,6 +250,12 @@ module Google
|
|
250
250
|
include Google::Apis::Core::JsonObjectSupport
|
251
251
|
end
|
252
252
|
|
253
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
|
254
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
|
+
|
256
|
+
include Google::Apis::Core::JsonObjectSupport
|
257
|
+
end
|
258
|
+
|
253
259
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
|
254
260
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
261
|
|
@@ -1514,6 +1520,15 @@ module Google
|
|
1514
1520
|
end
|
1515
1521
|
end
|
1516
1522
|
|
1523
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
|
1524
|
+
# @private
|
1525
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1526
|
+
property :dir, as: 'dir'
|
1527
|
+
property :repository, as: 'repository'
|
1528
|
+
property :revision, as: 'revision'
|
1529
|
+
end
|
1530
|
+
end
|
1531
|
+
|
1517
1532
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
|
1518
1533
|
# @private
|
1519
1534
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1610,6 +1625,8 @@ module Google
|
|
1610
1625
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Source
|
1611
1626
|
# @private
|
1612
1627
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1628
|
+
property :connected_repository, as: 'connectedRepository', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository::Representation
|
1629
|
+
|
1613
1630
|
property :git_source, as: 'gitSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource::Representation
|
1614
1631
|
|
1615
1632
|
property :repo_source, as: 'repoSource', class: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource, decorator: Google::Apis::ContaineranalysisV1alpha1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource::Representation
|
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.
|
4
|
+
version: 0.54.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: 2023-
|
11
|
+
date: 2023-09-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-containeranalysis_v1alpha1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.54.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Container Analysis API V1alpha1
|