google-apis-containeranalysis_v1beta1 0.81.0 → 0.82.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: c3e740042a1364839dfbc408d54ae96514fbd691d355c05d69b819c3e4587711
|
|
4
|
+
data.tar.gz: af2e5dae1d7800180d3413974d3bdc000fa45c1b58c142779f3ea41b95146fa5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c70b201afa64646545c37f193ac82c3ff74d85ee07e4f540d231798fee7928d5996efc9734db2975fa5e76c21fc14da86c20c6cbc4288684c620c9549e373390
|
|
7
|
+
data.tar.gz: 660f0872b0b582be5d30ab9ff5a05ac75445c2d4f452e122c2a0665917accc3d18d0810bdf82c058961d2f55784fa3493f71b11bcfa4c052ac907e96ef26f396
|
data/CHANGELOG.md
CHANGED
|
@@ -2543,6 +2543,14 @@ module Google
|
|
|
2543
2543
|
# @return [String]
|
|
2544
2544
|
attr_accessor :dest_path
|
|
2545
2545
|
|
|
2546
|
+
# Optional. True if remote tags should be fetched too (default false). Note:
|
|
2547
|
+
# when depth is 1 (default), git fetch only retrieves tags pointing to commits
|
|
2548
|
+
# within the shallow boundary. Set depth to -1 to fetch all historical tags.
|
|
2549
|
+
# Corresponds to the JSON property `fetchTags`
|
|
2550
|
+
# @return [Boolean]
|
|
2551
|
+
attr_accessor :fetch_tags
|
|
2552
|
+
alias_method :fetch_tags?, :fetch_tags
|
|
2553
|
+
|
|
2546
2554
|
# Optional. True if submodules should be fetched too (default false).
|
|
2547
2555
|
# Corresponds to the JSON property `recurseSubmodules`
|
|
2548
2556
|
# @return [Boolean]
|
|
@@ -2567,6 +2575,7 @@ module Google
|
|
|
2567
2575
|
def update!(**args)
|
|
2568
2576
|
@depth = args[:depth] if args.key?(:depth)
|
|
2569
2577
|
@dest_path = args[:dest_path] if args.key?(:dest_path)
|
|
2578
|
+
@fetch_tags = args[:fetch_tags] if args.key?(:fetch_tags)
|
|
2570
2579
|
@recurse_submodules = args[:recurse_submodules] if args.key?(:recurse_submodules)
|
|
2571
2580
|
@repository = args[:repository] if args.key?(:repository)
|
|
2572
2581
|
@revision = args[:revision] if args.key?(:revision)
|
|
@@ -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.82.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260812"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1760,6 +1760,7 @@ module Google
|
|
|
1760
1760
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1761
1761
|
property :depth, :numeric_string => true, as: 'depth'
|
|
1762
1762
|
property :dest_path, as: 'destPath'
|
|
1763
|
+
property :fetch_tags, as: 'fetchTags'
|
|
1763
1764
|
property :recurse_submodules, as: 'recurseSubmodules'
|
|
1764
1765
|
property :repository, as: 'repository', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository::Representation
|
|
1765
1766
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.82.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.82.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|