grafeas 0.1.1 → 1.0.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 +4 -4
- data/.yardopts +3 -3
- data/LICENSE.md +203 -0
- data/MIGRATING.md +366 -0
- data/README.md +28 -25
- data/lib/grafeas.rb +37 -118
- data/lib/grafeas/version.rb +6 -2
- metadata +49 -78
- data/AUTHENTICATION.md +0 -177
- data/LICENSE +0 -201
- data/lib/grafeas/v1.rb +0 -155
- data/lib/grafeas/v1/attestation_pb.rb +0 -27
- data/lib/grafeas/v1/build_pb.rb +0 -23
- data/lib/grafeas/v1/common_pb.rb +0 -34
- data/lib/grafeas/v1/credentials.rb +0 -37
- data/lib/grafeas/v1/cvss_pb.rb +0 -67
- data/lib/grafeas/v1/deployment_pb.rb +0 -35
- data/lib/grafeas/v1/discovery_pb.rb +0 -40
- data/lib/grafeas/v1/doc/google/protobuf/any.rb +0 -131
- data/lib/grafeas/v1/doc/google/protobuf/empty.rb +0 -29
- data/lib/grafeas/v1/doc/google/protobuf/field_mask.rb +0 -222
- data/lib/grafeas/v1/doc/google/protobuf/timestamp.rb +0 -113
- data/lib/grafeas/v1/doc/google/rpc/status.rb +0 -87
- data/lib/grafeas/v1/doc/grafeas/v1/attestation.rb +0 -64
- data/lib/grafeas/v1/doc/grafeas/v1/build.rb +0 -44
- data/lib/grafeas/v1/doc/grafeas/v1/common.rb +0 -105
- data/lib/grafeas/v1/doc/grafeas/v1/cvss.rb +0 -104
- data/lib/grafeas/v1/doc/grafeas/v1/deployment.rb +0 -64
- data/lib/grafeas/v1/doc/grafeas/v1/discovery.rb +0 -76
- data/lib/grafeas/v1/doc/grafeas/v1/grafeas.rb +0 -322
- data/lib/grafeas/v1/doc/grafeas/v1/image.rb +0 -79
- data/lib/grafeas/v1/doc/grafeas/v1/package.rb +0 -125
- data/lib/grafeas/v1/doc/grafeas/v1/provenance.rb +0 -248
- data/lib/grafeas/v1/doc/grafeas/v1/vulnerability.rb +0 -214
- data/lib/grafeas/v1/grafeas_client.rb +0 -961
- data/lib/grafeas/v1/grafeas_client_config.json +0 -96
- data/lib/grafeas/v1/grafeas_pb.rb +0 -163
- data/lib/grafeas/v1/grafeas_services_pb.rb +0 -86
- data/lib/grafeas/v1/image_pb.rb +0 -36
- data/lib/grafeas/v1/package_pb.rb +0 -59
- data/lib/grafeas/v1/provenance_pb.rb +0 -116
- data/lib/grafeas/v1/vulnerability_pb.rb +0 -81
data/README.md
CHANGED
@@ -1,42 +1,45 @@
|
|
1
|
-
# Ruby Client for
|
1
|
+
# Ruby Client for the Grafeas API
|
2
2
|
|
3
|
-
|
4
|
-
An implementation of the Grafeas API, which stores, and enables querying and
|
5
|
-
retrieval of critical metadata about all of your software artifacts.
|
6
|
-
- [Client Library Documentation][]
|
7
|
-
- [Product Documentation][]
|
3
|
+
API Client library for the Grafeas API
|
8
4
|
|
9
|
-
|
10
|
-
|
11
|
-
|
5
|
+
The Grafeas API stores, and enables querying and retrieval of, critical metadata about all of your software artifacts.
|
6
|
+
|
7
|
+
Actual client classes for the various versions of this API are defined in
|
8
|
+
_versioned_ client gems, with names of the form `grafeas-v*`.
|
9
|
+
The gem `grafeas` 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/grafeas/latest)
|
14
|
+
for this library, grafeas, 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
|
+
[grafeas-v1](https://googleapis.dev/ruby/grafeas-v1/latest).
|
12
19
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
20
|
+
See also the [Product Documentation](https://grafeas.io)
|
21
|
+
for more usage information.
|
22
|
+
|
23
|
+
## Quick Start
|
17
24
|
|
18
|
-
### Installation
|
19
25
|
```
|
20
26
|
$ gem install grafeas
|
21
27
|
```
|
22
28
|
|
23
|
-
|
24
|
-
- Read the [Client Library Documentation][] for Container Analysis API
|
25
|
-
to see other available methods on the client.
|
26
|
-
- Read the [Container Analysis API Product documentation][Product Documentation]
|
27
|
-
to learn more about the product and see How-to Guides.
|
28
|
-
- View this [repository's main README](https://github.com/googleapis/google-cloud-ruby/blob/master/README.md)
|
29
|
-
to see the full list of Cloud APIs that we cover.
|
29
|
+
## Migrating from 0.x versions
|
30
30
|
|
31
|
-
|
32
|
-
[
|
31
|
+
The 1.0 release of the grafeas client is a significant upgrade
|
32
|
+
based on a [next-gen code generator](https://github.com/googleapis/gapic-generator-ruby),
|
33
|
+
and includes substantial interface changes. Existing code written for earlier
|
34
|
+
versions of this library will likely require updates to use this version.
|
35
|
+
See the {file:MIGRATING.md MIGRATING.md} document for more information.
|
33
36
|
|
34
37
|
## Enabling Logging
|
35
38
|
|
36
39
|
To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
37
|
-
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib
|
40
|
+
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib/libdoc/logger/rdoc/Logger.html) as shown below,
|
38
41
|
or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
39
|
-
that will write logs to [
|
42
|
+
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)
|
40
43
|
and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
41
44
|
|
42
45
|
Configuring a Ruby stdlib logger:
|
data/lib/grafeas.rb
CHANGED
@@ -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,80 +14,30 @@
|
|
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!
|
15
18
|
|
16
|
-
|
17
|
-
|
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 "grafeas/version"
|
18
24
|
|
19
|
-
|
25
|
+
require "googleauth"
|
20
26
|
|
21
|
-
##
|
22
|
-
# # Ruby Client for Container Analysis API ([Alpha](https://github.com/googleapis/google-cloud-ruby#versioning))
|
23
|
-
#
|
24
|
-
# [Container Analysis API][Product Documentation]:
|
25
|
-
# An implementation of the Grafeas API, which stores, and enables querying and
|
26
|
-
# retrieval of critical metadata about all of your software artifacts.
|
27
|
-
# - [Product Documentation][]
|
28
|
-
#
|
29
|
-
# ## Quick Start
|
30
|
-
# In order to use this library, you first need to go through the following
|
31
|
-
# steps:
|
32
|
-
#
|
33
|
-
# 1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
|
34
|
-
# 2. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
|
35
|
-
# 3. [Enable the Container Analysis API.](https://console.cloud.google.com/apis/library/grafeas.googleapis.com)
|
36
|
-
# 4. [Setup Authentication.](https://googleapis.dev/ruby/grafeas/latest/file.AUTHENTICATION.html)
|
37
|
-
#
|
38
|
-
# ### Installation
|
39
|
-
# ```
|
40
|
-
# $ gem install grafeas
|
41
|
-
# ```
|
42
|
-
#
|
43
|
-
# ### Next Steps
|
44
|
-
# - Read the [Container Analysis API Product documentation][Product Documentation]
|
45
|
-
# to learn more about the product and see How-to Guides.
|
46
|
-
# - View this [repository's main README](https://github.com/googleapis/google-cloud-ruby/blob/master/README.md)
|
47
|
-
# to see the full list of Cloud APIs that we cover.
|
48
|
-
#
|
49
|
-
# [Product Documentation]: https://grafeas.io/
|
50
|
-
#
|
51
|
-
# ## Enabling Logging
|
52
|
-
#
|
53
|
-
# To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
54
|
-
# 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,
|
55
|
-
# or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
56
|
-
# 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)
|
57
|
-
# and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
58
|
-
#
|
59
|
-
# Configuring a Ruby stdlib logger:
|
60
|
-
#
|
61
|
-
# ```ruby
|
62
|
-
# require "logger"
|
63
|
-
#
|
64
|
-
# module MyLogger
|
65
|
-
# LOGGER = Logger.new $stderr, level: Logger::WARN
|
66
|
-
# def logger
|
67
|
-
# LOGGER
|
68
|
-
# end
|
69
|
-
# end
|
70
|
-
#
|
71
|
-
# # Define a gRPC module-level logger method before grpc/logconfig.rb loads.
|
72
|
-
# module GRPC
|
73
|
-
# extend MyLogger
|
74
|
-
# end
|
75
|
-
# ```
|
76
|
-
#
|
77
27
|
module Grafeas
|
78
|
-
# rubocop:enable LineLength
|
79
|
-
|
80
|
-
FILE_DIR = File.realdirpath(Pathname.new(__FILE__).join("..").join("grafeas"))
|
81
|
-
|
82
|
-
AVAILABLE_VERSIONS = Dir["#{FILE_DIR}/*"]
|
83
|
-
.select { |file| File.directory?(file) }
|
84
|
-
.select { |dir| Google::Gax::VERSION_MATCHER.match(File.basename(dir)) }
|
85
|
-
.select { |dir| File.exist?(dir + ".rb") }
|
86
|
-
.map { |dir| File.basename(dir) }
|
87
|
-
|
88
28
|
##
|
29
|
+
# Create a new client object for Grafeas.
|
30
|
+
#
|
31
|
+
# By default, this returns an instance of
|
32
|
+
# [Grafeas::V1::Grafeas::Client](https://googleapis.dev/ruby/grafeas-v1/latest/Grafeas/V1/Grafeas/Client.html)
|
33
|
+
# for version V1 of the API.
|
34
|
+
# However, you can specify specify a different API version by passing it in the
|
35
|
+
# `version` parameter. If the Grafeas service is
|
36
|
+
# supported by that API version, and the corresponding gem is available, the
|
37
|
+
# appropriate versioned client will be returned.
|
38
|
+
#
|
39
|
+
# ## About Grafeas
|
40
|
+
#
|
89
41
|
# [Grafeas](https://grafeas.io) API.
|
90
42
|
#
|
91
43
|
# Retrieves analysis results of Cloud components such as Docker container
|
@@ -101,54 +53,21 @@ module Grafeas
|
|
101
53
|
# there would be one note for the vulnerability and an occurrence for each
|
102
54
|
# image with the vulnerability referring to that note.
|
103
55
|
#
|
104
|
-
# @param version [
|
105
|
-
#
|
106
|
-
#
|
107
|
-
#
|
108
|
-
|
109
|
-
|
110
|
-
# be many types.
|
111
|
-
# A `Google::Auth::Credentials` uses a the properties of its represented keyfile for
|
112
|
-
# authenticating requests made by this client.
|
113
|
-
# A `String` will be treated as the path to the keyfile to be used for the construction of
|
114
|
-
# credentials for this client.
|
115
|
-
# A `Hash` will be treated as the contents of a keyfile to be used for the construction of
|
116
|
-
# credentials for this client.
|
117
|
-
# A `GRPC::Core::Channel` will be used to make calls through.
|
118
|
-
# A `GRPC::Core::ChannelCredentials` for the setting up the RPC client. The channel credentials
|
119
|
-
# should already be composed with a `GRPC::Core::CallCredentials` object.
|
120
|
-
# A `Proc` will be used as an updater_proc for the Grpc channel. The proc transforms the
|
121
|
-
# metadata for requests, generally, to give OAuth credentials.
|
122
|
-
# @param scopes [Array<String>]
|
123
|
-
# The OAuth scopes for this service. This parameter is ignored if
|
124
|
-
# an updater_proc is supplied.
|
125
|
-
# @param client_config [Hash]
|
126
|
-
# A Hash for call options for each method. See
|
127
|
-
# Google::Gax#construct_settings for the structure of
|
128
|
-
# this data. Falls back to the default config if not specified
|
129
|
-
# or the specified config is missing data points.
|
130
|
-
# @param timeout [Numeric]
|
131
|
-
# The default timeout, in seconds, for calls made through this client.
|
132
|
-
# @param metadata [Hash]
|
133
|
-
# Default metadata to be sent with each request. This can be overridden on a per call basis.
|
134
|
-
# @param service_address [String]
|
135
|
-
# Override for the service hostname, or `nil` to leave as the default.
|
136
|
-
# @param service_port [Integer]
|
137
|
-
# Override for the service port, or `nil` to leave as the default.
|
138
|
-
# @param exception_transformer [Proc]
|
139
|
-
# An optional proc that intercepts any exceptions raised during an API call to inject
|
140
|
-
# custom error handling.
|
141
|
-
def self.new(*args, version: :v1, **kwargs)
|
142
|
-
unless AVAILABLE_VERSIONS.include?(version.to_s.downcase)
|
143
|
-
raise "The version: #{version} is not available. The available versions " \
|
144
|
-
"are: [#{AVAILABLE_VERSIONS.join(", ")}]"
|
145
|
-
end
|
56
|
+
# @param version [::String, ::Symbol] The API version to connect to. Optional.
|
57
|
+
# Defaults to `:v1`.
|
58
|
+
# @return [Grafeas::Client] A client object for the specified version.
|
59
|
+
#
|
60
|
+
def self.grafeas version: :v1, &block
|
61
|
+
require "grafeas/#{version.to_s.downcase}"
|
146
62
|
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
Grafeas.const_get(
|
63
|
+
package_name = Grafeas
|
64
|
+
.constants
|
65
|
+
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
|
66
|
+
.first
|
67
|
+
package_module = Grafeas.const_get package_name
|
68
|
+
package_module.const_get(:Grafeas).const_get(:Client).new(&block)
|
153
69
|
end
|
154
70
|
end
|
71
|
+
|
72
|
+
helper_path = ::File.join __dir__, "grafeas", "helpers.rb"
|
73
|
+
require "grafeas/helpers" if ::File.file? helper_path
|
data/lib/grafeas/version.rb
CHANGED
@@ -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,7 +14,9 @@
|
|
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 Grafeas
|
17
|
-
VERSION = "0.
|
21
|
+
VERSION = "1.0.0"
|
18
22
|
end
|
metadata
CHANGED
@@ -1,125 +1,127 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grafeas
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.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:
|
11
|
+
date: 2020-06-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name: google-
|
14
|
+
name: google-cloud-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1.
|
19
|
+
version: '1.5'
|
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: '1.
|
26
|
+
version: '1.5'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: grafeas-v1
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 1.3.9
|
34
|
-
- - "<"
|
31
|
+
- - "~>"
|
35
32
|
- !ruby/object:Gem::Version
|
36
|
-
version: '
|
33
|
+
version: '0.0'
|
37
34
|
type: :runtime
|
38
35
|
prerelease: false
|
39
36
|
version_requirements: !ruby/object:Gem::Requirement
|
40
37
|
requirements:
|
41
|
-
- - "
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
version: 1.3.9
|
44
|
-
- - "<"
|
38
|
+
- - "~>"
|
45
39
|
- !ruby/object:Gem::Version
|
46
|
-
version: '
|
40
|
+
version: '0.0'
|
47
41
|
- !ruby/object:Gem::Dependency
|
48
|
-
name:
|
42
|
+
name: google-style
|
49
43
|
requirement: !ruby/object:Gem::Requirement
|
50
44
|
requirements:
|
51
|
-
- - "
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version: 1.0.4
|
54
|
-
- - "<"
|
45
|
+
- - "~>"
|
55
46
|
- !ruby/object:Gem::Version
|
56
|
-
version:
|
57
|
-
type: :
|
47
|
+
version: 1.24.0
|
48
|
+
type: :development
|
58
49
|
prerelease: false
|
59
50
|
version_requirements: !ruby/object:Gem::Requirement
|
60
51
|
requirements:
|
61
|
-
- - "
|
62
|
-
- !ruby/object:Gem::Version
|
63
|
-
version: 1.0.4
|
64
|
-
- - "<"
|
52
|
+
- - "~>"
|
65
53
|
- !ruby/object:Gem::Version
|
66
|
-
version:
|
54
|
+
version: 1.24.0
|
67
55
|
- !ruby/object:Gem::Dependency
|
68
|
-
name:
|
56
|
+
name: minitest
|
69
57
|
requirement: !ruby/object:Gem::Requirement
|
70
58
|
requirements:
|
71
59
|
- - "~>"
|
72
60
|
- !ruby/object:Gem::Version
|
73
|
-
version:
|
74
|
-
type: :
|
61
|
+
version: '5.14'
|
62
|
+
type: :development
|
75
63
|
prerelease: false
|
76
64
|
version_requirements: !ruby/object:Gem::Requirement
|
77
65
|
requirements:
|
78
66
|
- - "~>"
|
79
67
|
- !ruby/object:Gem::Version
|
80
|
-
version:
|
68
|
+
version: '5.14'
|
81
69
|
- !ruby/object:Gem::Dependency
|
82
|
-
name: minitest
|
70
|
+
name: minitest-focus
|
83
71
|
requirement: !ruby/object:Gem::Requirement
|
84
72
|
requirements:
|
85
73
|
- - "~>"
|
86
74
|
- !ruby/object:Gem::Version
|
87
|
-
version: '
|
75
|
+
version: '1.1'
|
88
76
|
type: :development
|
89
77
|
prerelease: false
|
90
78
|
version_requirements: !ruby/object:Gem::Requirement
|
91
79
|
requirements:
|
92
80
|
- - "~>"
|
93
81
|
- !ruby/object:Gem::Version
|
94
|
-
version: '
|
82
|
+
version: '1.1'
|
95
83
|
- !ruby/object:Gem::Dependency
|
96
|
-
name:
|
84
|
+
name: minitest-rg
|
97
85
|
requirement: !ruby/object:Gem::Requirement
|
98
86
|
requirements:
|
99
87
|
- - "~>"
|
100
88
|
- !ruby/object:Gem::Version
|
101
|
-
version: '
|
89
|
+
version: '5.2'
|
102
90
|
type: :development
|
103
91
|
prerelease: false
|
104
92
|
version_requirements: !ruby/object:Gem::Requirement
|
105
93
|
requirements:
|
106
94
|
- - "~>"
|
107
95
|
- !ruby/object:Gem::Version
|
108
|
-
version: '
|
96
|
+
version: '5.2'
|
109
97
|
- !ruby/object:Gem::Dependency
|
110
|
-
name:
|
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'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: redcarpet
|
111
113
|
requirement: !ruby/object:Gem::Requirement
|
112
114
|
requirements:
|
113
115
|
- - "~>"
|
114
116
|
- !ruby/object:Gem::Version
|
115
|
-
version:
|
117
|
+
version: '3.0'
|
116
118
|
type: :development
|
117
119
|
prerelease: false
|
118
120
|
version_requirements: !ruby/object:Gem::Requirement
|
119
121
|
requirements:
|
120
122
|
- - "~>"
|
121
123
|
- !ruby/object:Gem::Version
|
122
|
-
version:
|
124
|
+
version: '3.0'
|
123
125
|
- !ruby/object:Gem::Dependency
|
124
126
|
name: simplecov
|
125
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -148,51 +150,20 @@ dependencies:
|
|
148
150
|
- - "~>"
|
149
151
|
- !ruby/object:Gem::Version
|
150
152
|
version: '0.9'
|
151
|
-
description:
|
153
|
+
description: The Grafeas API stores, and enables querying and retrieval of, critical
|
154
|
+
metadata about all of your software artifacts.
|
152
155
|
email: googleapis-packages@google.com
|
153
156
|
executables: []
|
154
157
|
extensions: []
|
155
158
|
extra_rdoc_files: []
|
156
159
|
files:
|
157
160
|
- ".yardopts"
|
158
|
-
-
|
159
|
-
-
|
161
|
+
- LICENSE.md
|
162
|
+
- MIGRATING.md
|
160
163
|
- README.md
|
161
164
|
- lib/grafeas.rb
|
162
|
-
- lib/grafeas/v1.rb
|
163
|
-
- lib/grafeas/v1/attestation_pb.rb
|
164
|
-
- lib/grafeas/v1/build_pb.rb
|
165
|
-
- lib/grafeas/v1/common_pb.rb
|
166
|
-
- lib/grafeas/v1/credentials.rb
|
167
|
-
- lib/grafeas/v1/cvss_pb.rb
|
168
|
-
- lib/grafeas/v1/deployment_pb.rb
|
169
|
-
- lib/grafeas/v1/discovery_pb.rb
|
170
|
-
- lib/grafeas/v1/doc/google/protobuf/any.rb
|
171
|
-
- lib/grafeas/v1/doc/google/protobuf/empty.rb
|
172
|
-
- lib/grafeas/v1/doc/google/protobuf/field_mask.rb
|
173
|
-
- lib/grafeas/v1/doc/google/protobuf/timestamp.rb
|
174
|
-
- lib/grafeas/v1/doc/google/rpc/status.rb
|
175
|
-
- lib/grafeas/v1/doc/grafeas/v1/attestation.rb
|
176
|
-
- lib/grafeas/v1/doc/grafeas/v1/build.rb
|
177
|
-
- lib/grafeas/v1/doc/grafeas/v1/common.rb
|
178
|
-
- lib/grafeas/v1/doc/grafeas/v1/cvss.rb
|
179
|
-
- lib/grafeas/v1/doc/grafeas/v1/deployment.rb
|
180
|
-
- lib/grafeas/v1/doc/grafeas/v1/discovery.rb
|
181
|
-
- lib/grafeas/v1/doc/grafeas/v1/grafeas.rb
|
182
|
-
- lib/grafeas/v1/doc/grafeas/v1/image.rb
|
183
|
-
- lib/grafeas/v1/doc/grafeas/v1/package.rb
|
184
|
-
- lib/grafeas/v1/doc/grafeas/v1/provenance.rb
|
185
|
-
- lib/grafeas/v1/doc/grafeas/v1/vulnerability.rb
|
186
|
-
- lib/grafeas/v1/grafeas_client.rb
|
187
|
-
- lib/grafeas/v1/grafeas_client_config.json
|
188
|
-
- lib/grafeas/v1/grafeas_pb.rb
|
189
|
-
- lib/grafeas/v1/grafeas_services_pb.rb
|
190
|
-
- lib/grafeas/v1/image_pb.rb
|
191
|
-
- lib/grafeas/v1/package_pb.rb
|
192
|
-
- lib/grafeas/v1/provenance_pb.rb
|
193
|
-
- lib/grafeas/v1/vulnerability_pb.rb
|
194
165
|
- lib/grafeas/version.rb
|
195
|
-
homepage: https://github.com/googleapis/
|
166
|
+
homepage: https://github.com/googleapis/google-cloud-ruby
|
196
167
|
licenses:
|
197
168
|
- Apache-2.0
|
198
169
|
metadata: {}
|
@@ -211,7 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
211
182
|
- !ruby/object:Gem::Version
|
212
183
|
version: '0'
|
213
184
|
requirements: []
|
214
|
-
rubygems_version: 3.
|
185
|
+
rubygems_version: 3.1.3
|
215
186
|
signing_key:
|
216
187
|
specification_version: 4
|
217
188
|
summary: API Client library for the Grafeas API
|