google-apis-containeranalysis_v1beta1 0.45.0 → 0.46.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: 9950bdf0a2f4c99401148e10415790208651a9b6a2438059f48ea768b228eb73
|
4
|
+
data.tar.gz: 77b40f20130f8eb3267476a1803de12e7d9aaf2a4426b5d50da17bda420bbf1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37f96ecb8051bf49eb906e02f182833c98932a008eec1eb7f961178388b1ad49f7f55f97a5b8bbe53edfc3111d59be06d4610e81b048be2bdb5b4798c3dfc1c0
|
7
|
+
data.tar.gz: 84837186719534d55f6aebba8077746faa6f2e41a73b23518db105f639271ec267047cb0755bbae2640c11d8650ba40437f386de1733f2b93097637a191e57d8
|
data/CHANGELOG.md
CHANGED
@@ -2078,6 +2078,39 @@ module Google
|
|
2078
2078
|
end
|
2079
2079
|
end
|
2080
2080
|
|
2081
|
+
# Location of the source in a 2nd-gen Google Cloud Build repository resource.
|
2082
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
|
2083
|
+
include Google::Apis::Core::Hashable
|
2084
|
+
|
2085
|
+
# Directory, relative to the source root, in which to run the build.
|
2086
|
+
# Corresponds to the JSON property `dir`
|
2087
|
+
# @return [String]
|
2088
|
+
attr_accessor :dir
|
2089
|
+
|
2090
|
+
# Required. Name of the Google Cloud Build repository, formatted as `projects/*/
|
2091
|
+
# locations/*/connections/*/repositories/*`.
|
2092
|
+
# Corresponds to the JSON property `repository`
|
2093
|
+
# @return [String]
|
2094
|
+
attr_accessor :repository
|
2095
|
+
|
2096
|
+
# The revision to fetch from the Git repository such as a branch, a tag, a
|
2097
|
+
# commit SHA, or any Git ref.
|
2098
|
+
# Corresponds to the JSON property `revision`
|
2099
|
+
# @return [String]
|
2100
|
+
attr_accessor :revision
|
2101
|
+
|
2102
|
+
def initialize(**args)
|
2103
|
+
update!(**args)
|
2104
|
+
end
|
2105
|
+
|
2106
|
+
# Update properties of this object
|
2107
|
+
def update!(**args)
|
2108
|
+
@dir = args[:dir] if args.key?(:dir)
|
2109
|
+
@repository = args[:repository] if args.key?(:repository)
|
2110
|
+
@revision = args[:revision] if args.key?(:revision)
|
2111
|
+
end
|
2112
|
+
end
|
2113
|
+
|
2081
2114
|
# Container message for hashes of byte content of files, used in
|
2082
2115
|
# SourceProvenance messages to verify integrity of source input to the build.
|
2083
2116
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
|
@@ -2424,6 +2457,11 @@ module Google
|
|
2424
2457
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Source
|
2425
2458
|
include Google::Apis::Core::Hashable
|
2426
2459
|
|
2460
|
+
# Location of the source in a 2nd-gen Google Cloud Build repository resource.
|
2461
|
+
# Corresponds to the JSON property `connectedRepository`
|
2462
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository]
|
2463
|
+
attr_accessor :connected_repository
|
2464
|
+
|
2427
2465
|
# Location of the source in any accessible Git repository.
|
2428
2466
|
# Corresponds to the JSON property `gitSource`
|
2429
2467
|
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource]
|
@@ -2452,6 +2490,7 @@ module Google
|
|
2452
2490
|
|
2453
2491
|
# Update properties of this object
|
2454
2492
|
def update!(**args)
|
2493
|
+
@connected_repository = args[:connected_repository] if args.key?(:connected_repository)
|
2455
2494
|
@git_source = args[:git_source] if args.key?(:git_source)
|
2456
2495
|
@repo_source = args[:repo_source] if args.key?(:repo_source)
|
2457
2496
|
@storage_source = args[:storage_source] if args.key?(:storage_source)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContaineranalysisV1beta1
|
18
18
|
# Version of the google-apis-containeranalysis_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.46.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 = "20230811"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -262,6 +262,12 @@ module Google
|
|
262
262
|
include Google::Apis::Core::JsonObjectSupport
|
263
263
|
end
|
264
264
|
|
265
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
265
271
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
|
266
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
273
|
|
@@ -1459,6 +1465,15 @@ module Google
|
|
1459
1465
|
end
|
1460
1466
|
end
|
1461
1467
|
|
1468
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository
|
1469
|
+
# @private
|
1470
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1471
|
+
property :dir, as: 'dir'
|
1472
|
+
property :repository, as: 'repository'
|
1473
|
+
property :revision, as: 'revision'
|
1474
|
+
end
|
1475
|
+
end
|
1476
|
+
|
1462
1477
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes
|
1463
1478
|
# @private
|
1464
1479
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1555,6 +1570,8 @@ module Google
|
|
1555
1570
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Source
|
1556
1571
|
# @private
|
1557
1572
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1573
|
+
property :connected_repository, as: 'connectedRepository', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository::Representation
|
1574
|
+
|
1558
1575
|
property :git_source, as: 'gitSource', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource::Representation
|
1559
1576
|
|
1560
1577
|
property :repo_source, as: 'repoSource', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-containeranalysis_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.46.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-08-
|
11
|
+
date: 2023-08-27 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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.46.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1
|
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 V1beta1
|