google-cloud-container_analysis 0.3.2 → 1.0.1
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 +4 -4
- data/.yardopts +2 -1
- data/AUTHENTICATION.md +52 -82
- data/LICENSE.md +203 -0
- data/MIGRATING.md +326 -0
- data/README.md +35 -37
- data/lib/google-cloud-container_analysis.rb +6 -2
- data/lib/google/cloud/container_analysis.rb +89 -120
- data/lib/google/cloud/container_analysis/version.rb +6 -2
- metadata +57 -37
- data/LICENSE +0 -201
- data/lib/google/cloud/container_analysis/v1.rb +0 -158
- data/lib/google/cloud/container_analysis/v1/container_analysis_client.rb +0 -397
- data/lib/google/cloud/container_analysis/v1/container_analysis_client_config.json +0 -41
- data/lib/google/cloud/container_analysis/v1/credentials.rb +0 -41
- data/lib/google/cloud/container_analysis/v1/doc/google/iam/v1/iam_policy.rb +0 -64
- data/lib/google/cloud/container_analysis/v1/doc/google/iam/v1/options.rb +0 -33
- data/lib/google/cloud/container_analysis/v1/doc/google/iam/v1/policy.rb +0 -150
- data/lib/google/cloud/container_analysis/v1/doc/google/type/expr.rb +0 -45
- data/lib/google/devtools/containeranalysis/v1/containeranalysis_pb.rb +0 -15
- data/lib/google/devtools/containeranalysis/v1/containeranalysis_services_pb.rb +0 -77
data/README.md
CHANGED
|
@@ -1,54 +1,52 @@
|
|
|
1
|
-
# Ruby Client for Container Analysis API
|
|
1
|
+
# Ruby Client for the Container Analysis API
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
An implementation of the Grafeas API, which stores, and enables querying
|
|
5
|
-
and retrieval of critical metadata about all of your software artifacts.
|
|
6
|
-
- [Client Library Documentation][]
|
|
7
|
-
- [Product Documentation][]
|
|
3
|
+
API Client library for the Container Analysis API
|
|
8
4
|
|
|
9
|
-
|
|
10
|
-
In order to use this library, you first need to go through the following
|
|
11
|
-
steps:
|
|
5
|
+
The Container Analysis API is an implementation of Grafeas. It stores, and enables querying and retrieval of, critical metadata about all of your software artifacts.
|
|
12
6
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
7
|
+
Actual client classes for the various versions of this API are defined in
|
|
8
|
+
_versioned_ client gems, with names of the form `google-cloud-container_analysis-v*`.
|
|
9
|
+
The gem `google-cloud-container_analysis` is a convenience wrapper library that brings the
|
|
10
|
+
verisoned gems in as dependencies, and provides high-level methods for
|
|
11
|
+
constructing clients.
|
|
12
|
+
|
|
13
|
+
View the [Client Library Documentation](https://googleapis.dev/ruby/google-cloud-container_analysis/latest)
|
|
14
|
+
for this library, google-cloud-container_analysis, to see the convenience methods for
|
|
15
|
+
constructing client objects. Reference documentation for the client objects
|
|
16
|
+
themselves can be found in the client library documentation for the versioned
|
|
17
|
+
client gems:
|
|
18
|
+
[google-cloud-container_analysis-v1](https://googleapis.dev/ruby/google-cloud-container_analysis-v1/latest).
|
|
19
|
+
|
|
20
|
+
See also the [Product Documentation](https://cloud.google.com/container-registry/docs/container-analysis)
|
|
21
|
+
for more usage information.
|
|
22
|
+
|
|
23
|
+
## Quick Start
|
|
17
24
|
|
|
18
|
-
### Installation
|
|
19
25
|
```
|
|
20
26
|
$ gem install google-cloud-container_analysis
|
|
21
27
|
```
|
|
22
28
|
|
|
23
|
-
|
|
24
|
-
```ruby
|
|
25
|
-
require "google/cloud/container_analysis"
|
|
29
|
+
In order to use this library, you first need to go through the following steps:
|
|
26
30
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
# do something with occurrence
|
|
32
|
-
end
|
|
33
|
-
```
|
|
31
|
+
1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
|
|
32
|
+
1. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
|
|
33
|
+
1. [Enable the API.](https://console.cloud.google.com/apis/library/containeranalysis.googleapis.com)
|
|
34
|
+
1. {file:AUTHENTICATION.md Set up authentication.}
|
|
34
35
|
|
|
35
|
-
|
|
36
|
-
- Read the [Client Library Documentation][] for Container Analysis API
|
|
37
|
-
to see other available methods on the client.
|
|
38
|
-
- Read the [Container Analysis API Product documentation][Product Documentation]
|
|
39
|
-
to learn more about the product and see How-to Guides.
|
|
40
|
-
- View this [repository's main README](https://github.com/googleapis/google-cloud-ruby/blob/master/README.md)
|
|
41
|
-
to see the full list of Cloud APIs that we cover.
|
|
36
|
+
## Migrating from 0.x versions
|
|
42
37
|
|
|
43
|
-
|
|
44
|
-
[
|
|
38
|
+
The 1.0 release of the google-cloud-container_analysis client is a significant upgrade
|
|
39
|
+
based on a [next-gen code generator](https://github.com/googleapis/gapic-generator-ruby),
|
|
40
|
+
and includes substantial interface changes. Existing code written for earlier
|
|
41
|
+
versions of this library will likely require updates to use this version.
|
|
42
|
+
See the {file:MIGRATING.md MIGRATING.md} document for more information.
|
|
45
43
|
|
|
46
44
|
## Enabling Logging
|
|
47
45
|
|
|
48
46
|
To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
|
49
|
-
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib
|
|
47
|
+
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib/libdoc/logger/rdoc/Logger.html) as shown below,
|
|
50
48
|
or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
|
51
|
-
that will write logs to [
|
|
49
|
+
that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
|
52
50
|
and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
|
53
51
|
|
|
54
52
|
Configuring a Ruby stdlib logger:
|
|
@@ -71,11 +69,11 @@ end
|
|
|
71
69
|
|
|
72
70
|
## Supported Ruby Versions
|
|
73
71
|
|
|
74
|
-
This library is supported on Ruby 2.
|
|
72
|
+
This library is supported on Ruby 2.4+.
|
|
75
73
|
|
|
76
74
|
Google provides official support for Ruby versions that are actively supported
|
|
77
75
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
|
78
|
-
in security maintenance, and not end of life. Currently, this means Ruby 2.
|
|
76
|
+
in security maintenance, and not end of life. Currently, this means Ruby 2.4
|
|
79
77
|
and later. Older versions of Ruby _may_ still work, but are unsupported and not
|
|
80
78
|
recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details
|
|
81
79
|
about the Ruby support schedule.
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2020 Google LLC
|
|
2
4
|
#
|
|
3
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
6
|
# you may not use this file except in compliance with the License.
|
|
@@ -12,4 +14,6 @@
|
|
|
12
14
|
# See the License for the specific language governing permissions and
|
|
13
15
|
# limitations under the License.
|
|
14
16
|
|
|
15
|
-
|
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
|
18
|
+
|
|
19
|
+
require "google/cloud/container_analysis" unless defined? Google::Cloud::ContainerAnalysis::VERSION
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2020 Google LLC
|
|
2
4
|
#
|
|
3
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
6
|
# you may not use this file except in compliance with the License.
|
|
@@ -12,83 +14,49 @@
|
|
|
12
14
|
# See the License for the specific language governing permissions and
|
|
13
15
|
# limitations under the License.
|
|
14
16
|
|
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
|
18
|
+
|
|
19
|
+
# Require this file early so that the version constant gets defined before
|
|
20
|
+
# requiring "google/cloud". This is because google-cloud-core will load the
|
|
21
|
+
# entrypoint (gem name) file, which in turn re-requires this file (hence
|
|
22
|
+
# causing a require cycle) unless the version constant is already defined.
|
|
23
|
+
require "google/cloud/container_analysis/version"
|
|
24
|
+
|
|
25
|
+
require "googleauth"
|
|
26
|
+
gem "google-cloud-core"
|
|
27
|
+
require "google/cloud" unless defined? ::Google::Cloud.new
|
|
28
|
+
require "google/cloud/config"
|
|
15
29
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
30
|
+
# Set the default configuration
|
|
31
|
+
::Google::Cloud.configure.add_config! :container_analysis do |config|
|
|
32
|
+
config.add_field! :endpoint, "containeranalysis.googleapis.com", match: ::String
|
|
33
|
+
config.add_field! :credentials, nil, match: [::String, ::Hash, ::Google::Auth::Credentials]
|
|
34
|
+
config.add_field! :scope, nil, match: [::Array, ::String]
|
|
35
|
+
config.add_field! :lib_name, nil, match: ::String
|
|
36
|
+
config.add_field! :lib_version, nil, match: ::String
|
|
37
|
+
config.add_field! :interceptors, nil, match: ::Array
|
|
38
|
+
config.add_field! :timeout, nil, match: ::Numeric
|
|
39
|
+
config.add_field! :metadata, nil, match: ::Hash
|
|
40
|
+
config.add_field! :retry_policy, nil, match: [::Hash, ::Proc]
|
|
41
|
+
config.add_field! :quota_project, nil, match: ::String
|
|
42
|
+
end
|
|
19
43
|
|
|
20
44
|
module Google
|
|
21
45
|
module Cloud
|
|
22
|
-
# rubocop:disable LineLength
|
|
23
|
-
|
|
24
|
-
##
|
|
25
|
-
# # Ruby Client for Container Analysis API ([Alpha](https://github.com/googleapis/google-cloud-ruby#versioning))
|
|
26
|
-
#
|
|
27
|
-
# [Container Analysis API][Product Documentation]:
|
|
28
|
-
# An implementation of the Grafeas API, which stores, and enables querying
|
|
29
|
-
# and retrieval of critical metadata about all of your software artifacts.
|
|
30
|
-
# - [Product Documentation][]
|
|
31
|
-
#
|
|
32
|
-
# ## Quick Start
|
|
33
|
-
# In order to use this library, you first need to go through the following
|
|
34
|
-
# steps:
|
|
35
|
-
#
|
|
36
|
-
# 1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
|
|
37
|
-
# 2. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
|
|
38
|
-
# 3. [Enable the Container Analysis API.](https://console.cloud.google.com/apis/library/containeranalysis.googleapis.com)
|
|
39
|
-
# 4. [Setup Authentication.](https://googleapis.dev/ruby/google-cloud-container_analysis/latest/file.AUTHENTICATION.html)
|
|
40
|
-
#
|
|
41
|
-
# ### Installation
|
|
42
|
-
# ```
|
|
43
|
-
# $ gem install google-cloud-container_analysis
|
|
44
|
-
# ```
|
|
45
|
-
#
|
|
46
|
-
# ### Next Steps
|
|
47
|
-
# - Read the [Container Analysis API Product documentation][Product Documentation]
|
|
48
|
-
# to learn more about the product and see How-to Guides.
|
|
49
|
-
# - View this [repository's main README](https://github.com/googleapis/google-cloud-ruby/blob/master/README.md)
|
|
50
|
-
# to see the full list of Cloud APIs that we cover.
|
|
51
|
-
#
|
|
52
|
-
# [Product Documentation]: https://cloud.google.com/container-registry/docs/container-analysis
|
|
53
|
-
#
|
|
54
|
-
# ## Enabling Logging
|
|
55
|
-
#
|
|
56
|
-
# To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
|
57
|
-
# The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib-2.5.0/libdoc/logger/rdoc/Logger.html) as shown below,
|
|
58
|
-
# or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
|
59
|
-
# that will write logs to [Stackdriver Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
|
60
|
-
# and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
|
61
|
-
#
|
|
62
|
-
# Configuring a Ruby stdlib logger:
|
|
63
|
-
#
|
|
64
|
-
# ```ruby
|
|
65
|
-
# require "logger"
|
|
66
|
-
#
|
|
67
|
-
# module MyLogger
|
|
68
|
-
# LOGGER = Logger.new $stderr, level: Logger::WARN
|
|
69
|
-
# def logger
|
|
70
|
-
# LOGGER
|
|
71
|
-
# end
|
|
72
|
-
# end
|
|
73
|
-
#
|
|
74
|
-
# # Define a gRPC module-level logger method before grpc/logconfig.rb loads.
|
|
75
|
-
# module GRPC
|
|
76
|
-
# extend MyLogger
|
|
77
|
-
# end
|
|
78
|
-
# ```
|
|
79
|
-
#
|
|
80
46
|
module ContainerAnalysis
|
|
81
|
-
# rubocop:enable LineLength
|
|
82
|
-
|
|
83
|
-
FILE_DIR = File.realdirpath(Pathname.new(__FILE__).join("..").join("container_analysis"))
|
|
84
|
-
|
|
85
|
-
AVAILABLE_VERSIONS = Dir["#{FILE_DIR}/*"]
|
|
86
|
-
.select { |file| File.directory?(file) }
|
|
87
|
-
.select { |dir| Google::Gax::VERSION_MATCHER.match(File.basename(dir)) }
|
|
88
|
-
.select { |dir| File.exist?(dir + ".rb") }
|
|
89
|
-
.map { |dir| File.basename(dir) }
|
|
90
|
-
|
|
91
47
|
##
|
|
48
|
+
# Create a new client object for ContainerAnalysis.
|
|
49
|
+
#
|
|
50
|
+
# By default, this returns an instance of
|
|
51
|
+
# [Google::Cloud::ContainerAnalysis::V1::ContainerAnalysis::Client](https://googleapis.dev/ruby/google-cloud-container_analysis-v1/latest/Google/Cloud/ContainerAnalysis/V1/ContainerAnalysis/Client.html)
|
|
52
|
+
# for version V1 of the API.
|
|
53
|
+
# However, you can specify specify a different API version by passing it in the
|
|
54
|
+
# `version` parameter. If the ContainerAnalysis service is
|
|
55
|
+
# supported by that API version, and the corresponding gem is available, the
|
|
56
|
+
# appropriate versioned client will be returned.
|
|
57
|
+
#
|
|
58
|
+
# ## About ContainerAnalysis
|
|
59
|
+
#
|
|
92
60
|
# Retrieves analysis results of Cloud components such as Docker container
|
|
93
61
|
# images. The Container Analysis API is an implementation of the
|
|
94
62
|
# [Grafeas](https://grafeas.io) API.
|
|
@@ -103,56 +71,57 @@ module Google
|
|
|
103
71
|
# there would be one note for the vulnerability and an occurrence for each
|
|
104
72
|
# image with the vulnerability referring to that note.
|
|
105
73
|
#
|
|
106
|
-
# @param version [
|
|
107
|
-
#
|
|
108
|
-
#
|
|
109
|
-
#
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
#
|
|
123
|
-
#
|
|
124
|
-
#
|
|
125
|
-
#
|
|
126
|
-
#
|
|
127
|
-
#
|
|
128
|
-
#
|
|
129
|
-
#
|
|
130
|
-
#
|
|
131
|
-
#
|
|
132
|
-
#
|
|
133
|
-
#
|
|
134
|
-
#
|
|
135
|
-
#
|
|
136
|
-
#
|
|
137
|
-
#
|
|
138
|
-
#
|
|
139
|
-
#
|
|
140
|
-
#
|
|
141
|
-
#
|
|
142
|
-
#
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
74
|
+
# @param version [::String, ::Symbol] The API version to connect to. Optional.
|
|
75
|
+
# Defaults to `:v1`.
|
|
76
|
+
# @return [ContainerAnalysis::Client] A client object for the specified version.
|
|
77
|
+
#
|
|
78
|
+
def self.container_analysis version: :v1, &block
|
|
79
|
+
require "google/cloud/container_analysis/#{version.to_s.downcase}"
|
|
80
|
+
|
|
81
|
+
package_name = Google::Cloud::ContainerAnalysis
|
|
82
|
+
.constants
|
|
83
|
+
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
|
|
84
|
+
.first
|
|
85
|
+
package_module = Google::Cloud::ContainerAnalysis.const_get package_name
|
|
86
|
+
package_module.const_get(:ContainerAnalysis).const_get(:Client).new(&block)
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
##
|
|
90
|
+
# Configure the google-cloud-container_analysis library.
|
|
91
|
+
#
|
|
92
|
+
# The following configuration parameters are supported:
|
|
93
|
+
#
|
|
94
|
+
# * `credentials` (*type:* `String, Hash, Google::Auth::Credentials`) -
|
|
95
|
+
# The path to the keyfile as a String, the contents of the keyfile as a
|
|
96
|
+
# Hash, or a Google::Auth::Credentials object.
|
|
97
|
+
# * `lib_name` (*type:* `String`) -
|
|
98
|
+
# The library name as recorded in instrumentation and logging.
|
|
99
|
+
# * `lib_version` (*type:* `String`) -
|
|
100
|
+
# The library version as recorded in instrumentation and logging.
|
|
101
|
+
# * `interceptors` (*type:* `Array<GRPC::ClientInterceptor>`) -
|
|
102
|
+
# An array of interceptors that are run before calls are executed.
|
|
103
|
+
# * `timeout` (*type:* `Integer`) -
|
|
104
|
+
# Default timeout in milliseconds.
|
|
105
|
+
# * `metadata` (*type:* `Hash{Symbol=>String}`) -
|
|
106
|
+
# Additional gRPC headers to be sent with the call.
|
|
107
|
+
# * `retry_policy` (*type:* `Hash`) -
|
|
108
|
+
# The retry policy. The value is a hash with the following keys:
|
|
109
|
+
# * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
|
|
110
|
+
# * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
|
|
111
|
+
# * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
|
|
112
|
+
# * `:retry_codes` (*type:* `Array<String>`) -
|
|
113
|
+
# The error codes that should trigger a retry.
|
|
114
|
+
#
|
|
115
|
+
# @return [::Google::Cloud::Config] The default configuration used by this library
|
|
116
|
+
#
|
|
117
|
+
def self.configure
|
|
118
|
+
yield ::Google::Cloud.configure.container_analysis if block_given?
|
|
148
119
|
|
|
149
|
-
|
|
150
|
-
version_module = Google::Cloud::ContainerAnalysis
|
|
151
|
-
.constants
|
|
152
|
-
.select {|sym| sym.to_s.downcase == version.to_s.downcase}
|
|
153
|
-
.first
|
|
154
|
-
Google::Cloud::ContainerAnalysis.const_get(version_module).new(*args, **kwargs)
|
|
120
|
+
::Google::Cloud.configure.container_analysis
|
|
155
121
|
end
|
|
156
122
|
end
|
|
157
123
|
end
|
|
158
124
|
end
|
|
125
|
+
|
|
126
|
+
helper_path = ::File.join __dir__, "container_analysis", "helpers.rb"
|
|
127
|
+
require "google/cloud/container_analysis/helpers" if ::File.file? helper_path
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2020 Google LLC
|
|
2
4
|
#
|
|
3
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
6
|
# you may not use this file except in compliance with the License.
|
|
@@ -12,11 +14,13 @@
|
|
|
12
14
|
# See the License for the specific language governing permissions and
|
|
13
15
|
# limitations under the License.
|
|
14
16
|
|
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
|
18
|
+
|
|
15
19
|
|
|
16
20
|
module Google
|
|
17
21
|
module Cloud
|
|
18
22
|
module ContainerAnalysis
|
|
19
|
-
VERSION = "0.
|
|
23
|
+
VERSION = "1.0.1"
|
|
20
24
|
end
|
|
21
25
|
end
|
|
22
26
|
end
|
metadata
CHANGED
|
@@ -1,99 +1,127 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-container_analysis
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-06-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
14
|
+
name: google-cloud-container_analysis-v1
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '0.
|
|
19
|
+
version: '0.0'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '0.
|
|
26
|
+
version: '0.0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: google-
|
|
28
|
+
name: google-cloud-core
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '1.
|
|
33
|
+
version: '1.5'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '1.
|
|
40
|
+
version: '1.5'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
|
-
name:
|
|
42
|
+
name: google-style
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version:
|
|
48
|
-
type: :
|
|
47
|
+
version: 1.24.0
|
|
48
|
+
type: :development
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version:
|
|
54
|
+
version: 1.24.0
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: minitest
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
59
|
- - "~>"
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: '5.
|
|
61
|
+
version: '5.14'
|
|
62
62
|
type: :development
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
66
|
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: '5.
|
|
68
|
+
version: '5.14'
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
|
-
name:
|
|
70
|
+
name: minitest-focus
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
73
|
- - "~>"
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: '
|
|
75
|
+
version: '1.1'
|
|
76
76
|
type: :development
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: '
|
|
82
|
+
version: '1.1'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: minitest-rg
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '5.2'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '5.2'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: rake
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - ">="
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '12.0'
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - ">="
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '12.0'
|
|
83
111
|
- !ruby/object:Gem::Dependency
|
|
84
|
-
name:
|
|
112
|
+
name: redcarpet
|
|
85
113
|
requirement: !ruby/object:Gem::Requirement
|
|
86
114
|
requirements:
|
|
87
115
|
- - "~>"
|
|
88
116
|
- !ruby/object:Gem::Version
|
|
89
|
-
version:
|
|
117
|
+
version: '3.0'
|
|
90
118
|
type: :development
|
|
91
119
|
prerelease: false
|
|
92
120
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
121
|
requirements:
|
|
94
122
|
- - "~>"
|
|
95
123
|
- !ruby/object:Gem::Version
|
|
96
|
-
version:
|
|
124
|
+
version: '3.0'
|
|
97
125
|
- !ruby/object:Gem::Dependency
|
|
98
126
|
name: simplecov
|
|
99
127
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -122,8 +150,9 @@ dependencies:
|
|
|
122
150
|
- - "~>"
|
|
123
151
|
- !ruby/object:Gem::Version
|
|
124
152
|
version: '0.9'
|
|
125
|
-
description:
|
|
126
|
-
|
|
153
|
+
description: The Container Analysis API is an implementation of Grafeas. It stores,
|
|
154
|
+
and enables querying and retrieval of, critical metadata about all of your software
|
|
155
|
+
artifacts.
|
|
127
156
|
email: googleapis-packages@google.com
|
|
128
157
|
executables: []
|
|
129
158
|
extensions: []
|
|
@@ -131,22 +160,13 @@ extra_rdoc_files: []
|
|
|
131
160
|
files:
|
|
132
161
|
- ".yardopts"
|
|
133
162
|
- AUTHENTICATION.md
|
|
134
|
-
- LICENSE
|
|
163
|
+
- LICENSE.md
|
|
164
|
+
- MIGRATING.md
|
|
135
165
|
- README.md
|
|
136
166
|
- lib/google-cloud-container_analysis.rb
|
|
137
167
|
- lib/google/cloud/container_analysis.rb
|
|
138
|
-
- lib/google/cloud/container_analysis/v1.rb
|
|
139
|
-
- lib/google/cloud/container_analysis/v1/container_analysis_client.rb
|
|
140
|
-
- lib/google/cloud/container_analysis/v1/container_analysis_client_config.json
|
|
141
|
-
- lib/google/cloud/container_analysis/v1/credentials.rb
|
|
142
|
-
- lib/google/cloud/container_analysis/v1/doc/google/iam/v1/iam_policy.rb
|
|
143
|
-
- lib/google/cloud/container_analysis/v1/doc/google/iam/v1/options.rb
|
|
144
|
-
- lib/google/cloud/container_analysis/v1/doc/google/iam/v1/policy.rb
|
|
145
|
-
- lib/google/cloud/container_analysis/v1/doc/google/type/expr.rb
|
|
146
168
|
- lib/google/cloud/container_analysis/version.rb
|
|
147
|
-
|
|
148
|
-
- lib/google/devtools/containeranalysis/v1/containeranalysis_services_pb.rb
|
|
149
|
-
homepage: https://github.com/googleapis/googleapis
|
|
169
|
+
homepage: https://github.com/googleapis/google-cloud-ruby
|
|
150
170
|
licenses:
|
|
151
171
|
- Apache-2.0
|
|
152
172
|
metadata: {}
|
|
@@ -158,15 +178,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
158
178
|
requirements:
|
|
159
179
|
- - ">="
|
|
160
180
|
- !ruby/object:Gem::Version
|
|
161
|
-
version: 2.
|
|
181
|
+
version: '2.4'
|
|
162
182
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
163
183
|
requirements:
|
|
164
184
|
- - ">="
|
|
165
185
|
- !ruby/object:Gem::Version
|
|
166
186
|
version: '0'
|
|
167
187
|
requirements: []
|
|
168
|
-
rubygems_version: 3.
|
|
188
|
+
rubygems_version: 3.1.3
|
|
169
189
|
signing_key:
|
|
170
190
|
specification_version: 4
|
|
171
|
-
summary: API Client library for Container Analysis API
|
|
191
|
+
summary: API Client library for the Container Analysis API
|
|
172
192
|
test_files: []
|