google-cloud-container_analysis 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.yardopts +11 -0
- data/AUTHENTICATION.md +199 -0
- data/LICENSE +201 -0
- data/README.md +69 -0
- data/lib/google-cloud-container_analysis.rb +15 -0
- data/lib/google/cloud/container_analysis.rb +153 -0
- data/lib/google/cloud/container_analysis/v1.rb +149 -0
- data/lib/google/cloud/container_analysis/v1/container_analysis_client.rb +358 -0
- data/lib/google/cloud/container_analysis/v1/container_analysis_client_config.json +41 -0
- data/lib/google/cloud/container_analysis/v1/credentials.rb +40 -0
- data/lib/google/cloud/container_analysis/v1/doc/google/iam/v1/iam_policy.rb +59 -0
- data/lib/google/cloud/container_analysis/v1/doc/google/iam/v1/policy.rb +122 -0
- data/lib/google/cloud/container_analysis/v1/doc/google/type/expr.rb +44 -0
- data/lib/google/cloud/container_analysis/version.rb +22 -0
- data/lib/google/devtools/containeranalysis/v1/containeranalysis_pb.rb +15 -0
- data/lib/google/devtools/containeranalysis/v1/containeranalysis_services_pb.rb +77 -0
- metadata +171 -0
@@ -0,0 +1,41 @@
|
|
1
|
+
{
|
2
|
+
"interfaces": {
|
3
|
+
"google.devtools.containeranalysis.v1.ContainerAnalysis": {
|
4
|
+
"retry_codes": {
|
5
|
+
"idempotent": [
|
6
|
+
"DEADLINE_EXCEEDED",
|
7
|
+
"UNAVAILABLE"
|
8
|
+
],
|
9
|
+
"non_idempotent": []
|
10
|
+
},
|
11
|
+
"retry_params": {
|
12
|
+
"default": {
|
13
|
+
"initial_retry_delay_millis": 100,
|
14
|
+
"retry_delay_multiplier": 1.3,
|
15
|
+
"max_retry_delay_millis": 60000,
|
16
|
+
"initial_rpc_timeout_millis": 20000,
|
17
|
+
"rpc_timeout_multiplier": 1.0,
|
18
|
+
"max_rpc_timeout_millis": 20000,
|
19
|
+
"total_timeout_millis": 600000
|
20
|
+
}
|
21
|
+
},
|
22
|
+
"methods": {
|
23
|
+
"SetIamPolicy": {
|
24
|
+
"timeout_millis": 30000,
|
25
|
+
"retry_codes_name": "non_idempotent",
|
26
|
+
"retry_params_name": "default"
|
27
|
+
},
|
28
|
+
"GetIamPolicy": {
|
29
|
+
"timeout_millis": 30000,
|
30
|
+
"retry_codes_name": "non_idempotent",
|
31
|
+
"retry_params_name": "default"
|
32
|
+
},
|
33
|
+
"TestIamPermissions": {
|
34
|
+
"timeout_millis": 30000,
|
35
|
+
"retry_codes_name": "non_idempotent",
|
36
|
+
"retry_params_name": "default"
|
37
|
+
}
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
41
|
+
}
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# Copyright 2019 Google LLC
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
require "googleauth"
|
16
|
+
|
17
|
+
module Google
|
18
|
+
module Cloud
|
19
|
+
module ContainerAnalysis
|
20
|
+
module V1
|
21
|
+
class Credentials < Google::Auth::Credentials
|
22
|
+
SCOPE = [
|
23
|
+
"https://www.googleapis.com/auth/cloud-platform"
|
24
|
+
].freeze
|
25
|
+
PATH_ENV_VARS = %w(CONTAINER_ANALYSIS_CREDENTIALS
|
26
|
+
CONTAINER_ANALYSIS_KEYFILE
|
27
|
+
GOOGLE_CLOUD_CREDENTIALS
|
28
|
+
GOOGLE_CLOUD_KEYFILE
|
29
|
+
GCLOUD_KEYFILE)
|
30
|
+
JSON_ENV_VARS = %w(CONTAINER_ANALYSIS_CREDENTIALS_JSON
|
31
|
+
CONTAINER_ANALYSIS_KEYFILE_JSON
|
32
|
+
GOOGLE_CLOUD_CREDENTIALS_JSON
|
33
|
+
GOOGLE_CLOUD_KEYFILE_JSON
|
34
|
+
GCLOUD_KEYFILE_JSON)
|
35
|
+
DEFAULT_PATHS = ["~/.config/gcloud/application_default_credentials.json"]
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
# Copyright 2019 Google LLC
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
module Google
|
16
|
+
module Iam
|
17
|
+
module V1
|
18
|
+
# Request message for `SetIamPolicy` method.
|
19
|
+
# @!attribute [rw] resource
|
20
|
+
# @return [String]
|
21
|
+
# REQUIRED: The resource for which the policy is being specified.
|
22
|
+
# See the operation documentation for the appropriate value for this field.
|
23
|
+
# @!attribute [rw] policy
|
24
|
+
# @return [Google::Iam::V1::Policy]
|
25
|
+
# REQUIRED: The complete policy to be applied to the `resource`. The size of
|
26
|
+
# the policy is limited to a few 10s of KB. An empty policy is a
|
27
|
+
# valid policy but certain Cloud Platform services (such as Projects)
|
28
|
+
# might reject them.
|
29
|
+
class SetIamPolicyRequest; end
|
30
|
+
|
31
|
+
# Request message for `GetIamPolicy` method.
|
32
|
+
# @!attribute [rw] resource
|
33
|
+
# @return [String]
|
34
|
+
# REQUIRED: The resource for which the policy is being requested.
|
35
|
+
# See the operation documentation for the appropriate value for this field.
|
36
|
+
class GetIamPolicyRequest; end
|
37
|
+
|
38
|
+
# Request message for `TestIamPermissions` method.
|
39
|
+
# @!attribute [rw] resource
|
40
|
+
# @return [String]
|
41
|
+
# REQUIRED: The resource for which the policy detail is being requested.
|
42
|
+
# See the operation documentation for the appropriate value for this field.
|
43
|
+
# @!attribute [rw] permissions
|
44
|
+
# @return [Array<String>]
|
45
|
+
# The set of permissions to check for the `resource`. Permissions with
|
46
|
+
# wildcards (such as '*' or 'storage.*') are not allowed. For more
|
47
|
+
# information see
|
48
|
+
# [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).
|
49
|
+
class TestIamPermissionsRequest; end
|
50
|
+
|
51
|
+
# Response message for `TestIamPermissions` method.
|
52
|
+
# @!attribute [rw] permissions
|
53
|
+
# @return [Array<String>]
|
54
|
+
# A subset of `TestPermissionsRequest.permissions` that the caller is
|
55
|
+
# allowed.
|
56
|
+
class TestIamPermissionsResponse; end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,122 @@
|
|
1
|
+
# Copyright 2019 Google LLC
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
module Google
|
16
|
+
module Iam
|
17
|
+
module V1
|
18
|
+
# Defines an Identity and Access Management (IAM) policy. It is used to
|
19
|
+
# specify access control policies for Cloud Platform resources.
|
20
|
+
#
|
21
|
+
#
|
22
|
+
# A `Policy` consists of a list of `bindings`. A `binding` binds a list of
|
23
|
+
# `members` to a `role`, where the members can be user accounts, Google groups,
|
24
|
+
# Google domains, and service accounts. A `role` is a named list of permissions
|
25
|
+
# defined by IAM.
|
26
|
+
#
|
27
|
+
# **JSON Example**
|
28
|
+
#
|
29
|
+
# {
|
30
|
+
# "bindings": [
|
31
|
+
# {
|
32
|
+
# "role": "roles/owner",
|
33
|
+
# "members": [
|
34
|
+
# "user:mike@example.com",
|
35
|
+
# "group:admins@example.com",
|
36
|
+
# "domain:google.com",
|
37
|
+
# "serviceAccount:my-other-app@appspot.gserviceaccount.com"
|
38
|
+
# ]
|
39
|
+
# },
|
40
|
+
# {
|
41
|
+
# "role": "roles/viewer",
|
42
|
+
# "members": ["user:sean@example.com"]
|
43
|
+
# }
|
44
|
+
# ]
|
45
|
+
# }
|
46
|
+
#
|
47
|
+
# **YAML Example**
|
48
|
+
#
|
49
|
+
# bindings:
|
50
|
+
# * members:
|
51
|
+
# * user:mike@example.com
|
52
|
+
# * group:admins@example.com
|
53
|
+
# * domain:google.com
|
54
|
+
# * serviceAccount:my-other-app@appspot.gserviceaccount.com
|
55
|
+
# role: roles/owner
|
56
|
+
# * members:
|
57
|
+
# * user:sean@example.com
|
58
|
+
# role: roles/viewer
|
59
|
+
#
|
60
|
+
#
|
61
|
+
# For a description of IAM and its features, see the
|
62
|
+
# [IAM developer's guide](https://cloud.google.com/iam/docs).
|
63
|
+
# @!attribute [rw] version
|
64
|
+
# @return [Integer]
|
65
|
+
# Deprecated.
|
66
|
+
# @!attribute [rw] bindings
|
67
|
+
# @return [Array<Google::Iam::V1::Binding>]
|
68
|
+
# Associates a list of `members` to a `role`.
|
69
|
+
# `bindings` with no members will result in an error.
|
70
|
+
# @!attribute [rw] etag
|
71
|
+
# @return [String]
|
72
|
+
# `etag` is used for optimistic concurrency control as a way to help
|
73
|
+
# prevent simultaneous updates of a policy from overwriting each other.
|
74
|
+
# It is strongly suggested that systems make use of the `etag` in the
|
75
|
+
# read-modify-write cycle to perform policy updates in order to avoid race
|
76
|
+
# conditions: An `etag` is returned in the response to `getIamPolicy`, and
|
77
|
+
# systems are expected to put that etag in the request to `setIamPolicy` to
|
78
|
+
# ensure that their change will be applied to the same version of the policy.
|
79
|
+
#
|
80
|
+
# If no `etag` is provided in the call to `setIamPolicy`, then the existing
|
81
|
+
# policy is overwritten blindly.
|
82
|
+
class Policy; end
|
83
|
+
|
84
|
+
# Associates `members` with a `role`.
|
85
|
+
# @!attribute [rw] role
|
86
|
+
# @return [String]
|
87
|
+
# Role that is assigned to `members`.
|
88
|
+
# For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
|
89
|
+
# @!attribute [rw] members
|
90
|
+
# @return [Array<String>]
|
91
|
+
# Specifies the identities requesting access for a Cloud Platform resource.
|
92
|
+
# `members` can have the following values:
|
93
|
+
#
|
94
|
+
# * `allUsers`: A special identifier that represents anyone who is
|
95
|
+
# on the internet; with or without a Google account.
|
96
|
+
#
|
97
|
+
# * `allAuthenticatedUsers`: A special identifier that represents anyone
|
98
|
+
# who is authenticated with a Google account or a service account.
|
99
|
+
#
|
100
|
+
# * `user:{emailid}`: An email address that represents a specific Google
|
101
|
+
# account. For example, `alice@gmail.com` .
|
102
|
+
#
|
103
|
+
#
|
104
|
+
# * `serviceAccount:{emailid}`: An email address that represents a service
|
105
|
+
# account. For example, `my-other-app@appspot.gserviceaccount.com`.
|
106
|
+
#
|
107
|
+
# * `group:{emailid}`: An email address that represents a Google group.
|
108
|
+
# For example, `admins@example.com`.
|
109
|
+
#
|
110
|
+
#
|
111
|
+
# * `domain:{domain}`: The G Suite domain (primary) that represents all the
|
112
|
+
# users of that domain. For example, `google.com` or `example.com`.
|
113
|
+
# @!attribute [rw] condition
|
114
|
+
# @return [Google::Type::Expr]
|
115
|
+
# The condition that is associated with this binding.
|
116
|
+
# NOTE: An unsatisfied condition will not allow user access via current
|
117
|
+
# binding. Different bindings, including their conditions, are examined
|
118
|
+
# independently.
|
119
|
+
class Binding; end
|
120
|
+
end
|
121
|
+
end
|
122
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# Copyright 2019 Google LLC
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
module Google
|
16
|
+
module Type
|
17
|
+
# Represents an expression text. Example:
|
18
|
+
#
|
19
|
+
# title: "User account presence"
|
20
|
+
# description: "Determines whether the request has a user account"
|
21
|
+
# expression: "size(request.user) > 0"
|
22
|
+
# @!attribute [rw] expression
|
23
|
+
# @return [String]
|
24
|
+
# Textual representation of an expression in
|
25
|
+
# Common Expression Language syntax.
|
26
|
+
#
|
27
|
+
# The application context of the containing message determines which
|
28
|
+
# well-known feature set of CEL is supported.
|
29
|
+
# @!attribute [rw] title
|
30
|
+
# @return [String]
|
31
|
+
# An optional title for the expression, i.e. a short string describing
|
32
|
+
# its purpose. This can be used e.g. in UIs which allow to enter the
|
33
|
+
# expression.
|
34
|
+
# @!attribute [rw] description
|
35
|
+
# @return [String]
|
36
|
+
# An optional description of the expression. This is a longer text which
|
37
|
+
# describes the expression, e.g. when hovered over it in a UI.
|
38
|
+
# @!attribute [rw] location
|
39
|
+
# @return [String]
|
40
|
+
# An optional string indicating the location of the expression for error
|
41
|
+
# reporting, e.g. a file name and a position in the file.
|
42
|
+
class Expr; end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# Copyright 2019 Google LLC
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
|
16
|
+
module Google
|
17
|
+
module Cloud
|
18
|
+
module ContainerAnalysis
|
19
|
+
VERSION = "0.1.0".freeze
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: google/devtools/containeranalysis/v1/containeranalysis.proto
|
3
|
+
|
4
|
+
|
5
|
+
require 'google/protobuf'
|
6
|
+
|
7
|
+
require 'google/api/annotations_pb'
|
8
|
+
require 'google/iam/v1/iam_policy_pb'
|
9
|
+
require 'google/iam/v1/policy_pb'
|
10
|
+
require 'google/protobuf/timestamp_pb'
|
11
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
12
|
+
end
|
13
|
+
|
14
|
+
module Google::Cloud::ContainerAnalysis::V1
|
15
|
+
end
|
@@ -0,0 +1,77 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# Source: google/devtools/containeranalysis/v1/containeranalysis.proto for package 'Google::Cloud::ContainerAnalysis::V1'
|
3
|
+
# Original file comments:
|
4
|
+
# Copyright 2019 Google LLC.
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
#
|
19
|
+
|
20
|
+
|
21
|
+
require 'grpc'
|
22
|
+
require 'google/devtools/containeranalysis/v1/containeranalysis_pb'
|
23
|
+
|
24
|
+
module Google::Cloud::ContainerAnalysis::V1
|
25
|
+
module ContainerAnalysisService
|
26
|
+
# Retrieves analysis results of Cloud components such as Docker container
|
27
|
+
# images. The Container Analysis API is an implementation of the
|
28
|
+
# [Grafeas](https://grafeas.io) API.
|
29
|
+
#
|
30
|
+
# Analysis results are stored as a series of occurrences. An `Occurrence`
|
31
|
+
# contains information about a specific analysis instance on a resource. An
|
32
|
+
# occurrence refers to a `Note`. A note contains details describing the
|
33
|
+
# analysis and is generally stored in a separate project, called a `Provider`.
|
34
|
+
# Multiple occurrences can refer to the same note.
|
35
|
+
#
|
36
|
+
# For example, an SSL vulnerability could affect multiple images. In this case,
|
37
|
+
# there would be one note for the vulnerability and an occurrence for each
|
38
|
+
# image with the vulnerability referring to that note.
|
39
|
+
class Service
|
40
|
+
|
41
|
+
include GRPC::GenericService
|
42
|
+
|
43
|
+
self.marshal_class_method = :encode
|
44
|
+
self.unmarshal_class_method = :decode
|
45
|
+
self.service_name = 'google.devtools.containeranalysis.v1.ContainerAnalysis'
|
46
|
+
|
47
|
+
# Sets the access control policy on the specified note or occurrence.
|
48
|
+
# Requires `containeranalysis.notes.setIamPolicy` or
|
49
|
+
# `containeranalysis.occurrences.setIamPolicy` permission if the resource is
|
50
|
+
# a note or an occurrence, respectively.
|
51
|
+
#
|
52
|
+
# The resource takes the format `projects/[PROJECT_ID]/notes/[NOTE_ID]` for
|
53
|
+
# notes and `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]` for
|
54
|
+
# occurrences.
|
55
|
+
rpc :SetIamPolicy, Google::Iam::V1::SetIamPolicyRequest, Google::Iam::V1::Policy
|
56
|
+
# Gets the access control policy for a note or an occurrence resource.
|
57
|
+
# Requires `containeranalysis.notes.setIamPolicy` or
|
58
|
+
# `containeranalysis.occurrences.setIamPolicy` permission if the resource is
|
59
|
+
# a note or occurrence, respectively.
|
60
|
+
#
|
61
|
+
# The resource takes the format `projects/[PROJECT_ID]/notes/[NOTE_ID]` for
|
62
|
+
# notes and `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]` for
|
63
|
+
# occurrences.
|
64
|
+
rpc :GetIamPolicy, Google::Iam::V1::GetIamPolicyRequest, Google::Iam::V1::Policy
|
65
|
+
# Returns the permissions that a caller has on the specified note or
|
66
|
+
# occurrence. Requires list permission on the project (for example,
|
67
|
+
# `containeranalysis.notes.list`).
|
68
|
+
#
|
69
|
+
# The resource takes the format `projects/[PROJECT_ID]/notes/[NOTE_ID]` for
|
70
|
+
# notes and `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]` for
|
71
|
+
# occurrences.
|
72
|
+
rpc :TestIamPermissions, Google::Iam::V1::TestIamPermissionsRequest, Google::Iam::V1::TestIamPermissionsResponse
|
73
|
+
end
|
74
|
+
|
75
|
+
Stub = Service.rpc_stub_class
|
76
|
+
end
|
77
|
+
end
|
metadata
ADDED
@@ -0,0 +1,171 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: google-cloud-container_analysis
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Google LLC
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-06-21 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: grafeas-client
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.1'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.1'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: google-gax
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.3'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.3'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: grpc-google-iam-v1
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 0.6.9
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 0.6.9
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: minitest
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '5.10'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '5.10'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: redcarpet
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '3.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '3.0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubocop
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.64.0
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 0.64.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: simplecov
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0.9'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0.9'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: yard
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0.9'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0.9'
|
125
|
+
description: google-cloud-container_analysis is the official library for Container
|
126
|
+
Analysis API.
|
127
|
+
email: googleapis-packages@google.com
|
128
|
+
executables: []
|
129
|
+
extensions: []
|
130
|
+
extra_rdoc_files: []
|
131
|
+
files:
|
132
|
+
- ".yardopts"
|
133
|
+
- AUTHENTICATION.md
|
134
|
+
- LICENSE
|
135
|
+
- README.md
|
136
|
+
- lib/google-cloud-container_analysis.rb
|
137
|
+
- 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/policy.rb
|
144
|
+
- lib/google/cloud/container_analysis/v1/doc/google/type/expr.rb
|
145
|
+
- lib/google/cloud/container_analysis/version.rb
|
146
|
+
- lib/google/devtools/containeranalysis/v1/containeranalysis_pb.rb
|
147
|
+
- lib/google/devtools/containeranalysis/v1/containeranalysis_services_pb.rb
|
148
|
+
homepage: https://github.com/googleapis/googleapis
|
149
|
+
licenses:
|
150
|
+
- Apache-2.0
|
151
|
+
metadata: {}
|
152
|
+
post_install_message:
|
153
|
+
rdoc_options: []
|
154
|
+
require_paths:
|
155
|
+
- lib
|
156
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
157
|
+
requirements:
|
158
|
+
- - ">="
|
159
|
+
- !ruby/object:Gem::Version
|
160
|
+
version: 2.0.0
|
161
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
162
|
+
requirements:
|
163
|
+
- - ">="
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: '0'
|
166
|
+
requirements: []
|
167
|
+
rubygems_version: 3.0.3
|
168
|
+
signing_key:
|
169
|
+
specification_version: 4
|
170
|
+
summary: API Client library for Container Analysis API
|
171
|
+
test_files: []
|