google-apis-containeranalysis_v1 0.79.0 → 0.80.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: 912d30a184f6bf0714dc02537376865daaa0f616a85c6167ebd1ea5762bbfead
|
|
4
|
+
data.tar.gz: 369e4c1b4660aaf778e1fbea6c0d561d058c9e04a2849ef672b71c83f2707ff4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 72c2bf47de7a0b9147f511da858b06aad4a2d25d717fbdcf6892293bd91597a97f2748f3f903c0cc5ccb2dfbc8e84714437161fc84c8bb147a1543e38d7f449b
|
|
7
|
+
data.tar.gz: edd4d0e11d8bfe63c040d0b4c49221867299144c62ff883f9e99bdfa33db3142223e483a06ad274769b6076f7a2dc59b544bea24dcb53b0335cd8fdc7261f6dd
|
data/CHANGELOG.md
CHANGED
|
@@ -2769,6 +2769,14 @@ module Google
|
|
|
2769
2769
|
# @return [String]
|
|
2770
2770
|
attr_accessor :dest_path
|
|
2771
2771
|
|
|
2772
|
+
# Optional. True if remote tags should be fetched too (default false). Note:
|
|
2773
|
+
# when depth is 1 (default), git fetch only retrieves tags pointing to commits
|
|
2774
|
+
# within the shallow boundary. Set depth to -1 to fetch all historical tags.
|
|
2775
|
+
# Corresponds to the JSON property `fetchTags`
|
|
2776
|
+
# @return [Boolean]
|
|
2777
|
+
attr_accessor :fetch_tags
|
|
2778
|
+
alias_method :fetch_tags?, :fetch_tags
|
|
2779
|
+
|
|
2772
2780
|
# Optional. True if submodules should be fetched too (default false).
|
|
2773
2781
|
# Corresponds to the JSON property `recurseSubmodules`
|
|
2774
2782
|
# @return [Boolean]
|
|
@@ -2793,6 +2801,7 @@ module Google
|
|
|
2793
2801
|
def update!(**args)
|
|
2794
2802
|
@depth = args[:depth] if args.key?(:depth)
|
|
2795
2803
|
@dest_path = args[:dest_path] if args.key?(:dest_path)
|
|
2804
|
+
@fetch_tags = args[:fetch_tags] if args.key?(:fetch_tags)
|
|
2796
2805
|
@recurse_submodules = args[:recurse_submodules] if args.key?(:recurse_submodules)
|
|
2797
2806
|
@repository = args[:repository] if args.key?(:repository)
|
|
2798
2807
|
@revision = args[:revision] if args.key?(:revision)
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.80.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
|
|
@@ -1873,6 +1873,7 @@ module Google
|
|
|
1873
1873
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1874
1874
|
property :depth, :numeric_string => true, as: 'depth'
|
|
1875
1875
|
property :dest_path, as: 'destPath'
|
|
1876
|
+
property :fetch_tags, as: 'fetchTags'
|
|
1876
1877
|
property :recurse_submodules, as: 'recurseSubmodules'
|
|
1877
1878
|
property :repository, as: 'repository', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository::Representation
|
|
1878
1879
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-containeranalysis_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.80.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.80.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|