google-cloud-backupdr-v1 0.a → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +12 -0
- data/AUTHENTICATION.md +122 -0
- data/README.md +144 -8
- data/lib/google/cloud/backupdr/v1/backupdr/client.rb +833 -0
- data/lib/google/cloud/backupdr/v1/backupdr/credentials.rb +47 -0
- data/lib/google/cloud/backupdr/v1/backupdr/operations.rb +809 -0
- data/lib/google/cloud/backupdr/v1/backupdr/paths.rb +69 -0
- data/lib/google/cloud/backupdr/v1/backupdr/rest/client.rb +787 -0
- data/lib/google/cloud/backupdr/v1/backupdr/rest/operations.rb +902 -0
- data/lib/google/cloud/backupdr/v1/backupdr/rest/service_stub.rb +306 -0
- data/lib/google/cloud/backupdr/v1/backupdr/rest.rb +54 -0
- data/lib/google/cloud/backupdr/v1/backupdr.rb +56 -0
- data/lib/google/cloud/backupdr/v1/backupdr_pb.rb +66 -0
- data/lib/google/cloud/backupdr/v1/backupdr_services_pb.rb +51 -0
- data/lib/google/cloud/backupdr/v1/bindings_override.rb +135 -0
- data/lib/google/cloud/backupdr/v1/rest.rb +38 -0
- data/lib/google/cloud/backupdr/v1/version.rb +8 -3
- data/lib/google/cloud/backupdr/v1.rb +45 -0
- data/lib/google-cloud-backupdr-v1.rb +21 -0
- data/proto_docs/README.md +4 -0
- data/proto_docs/google/api/client.rb +399 -0
- data/proto_docs/google/api/field_behavior.rb +85 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/api/resource.rb +222 -0
- data/proto_docs/google/cloud/backupdr/v1/backupdr.rb +362 -0
- data/proto_docs/google/longrunning/operations.rb +164 -0
- data/proto_docs/google/protobuf/any.rb +145 -0
- data/proto_docs/google/protobuf/duration.rb +98 -0
- data/proto_docs/google/protobuf/empty.rb +34 -0
- data/proto_docs/google/protobuf/field_mask.rb +229 -0
- data/proto_docs/google/protobuf/timestamp.rb +127 -0
- data/proto_docs/google/protobuf/wrappers.rb +121 -0
- data/proto_docs/google/rpc/status.rb +48 -0
- data/proto_docs/google/type/expr.rb +75 -0
- metadata +115 -10
@@ -0,0 +1,75 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2024 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Type
|
22
|
+
# Represents a textual expression in the Common Expression Language (CEL)
|
23
|
+
# syntax. CEL is a C-like expression language. The syntax and semantics of CEL
|
24
|
+
# are documented at https://github.com/google/cel-spec.
|
25
|
+
#
|
26
|
+
# Example (Comparison):
|
27
|
+
#
|
28
|
+
# title: "Summary size limit"
|
29
|
+
# description: "Determines if a summary is less than 100 chars"
|
30
|
+
# expression: "document.summary.size() < 100"
|
31
|
+
#
|
32
|
+
# Example (Equality):
|
33
|
+
#
|
34
|
+
# title: "Requestor is owner"
|
35
|
+
# description: "Determines if requestor is the document owner"
|
36
|
+
# expression: "document.owner == request.auth.claims.email"
|
37
|
+
#
|
38
|
+
# Example (Logic):
|
39
|
+
#
|
40
|
+
# title: "Public documents"
|
41
|
+
# description: "Determine whether the document should be publicly visible"
|
42
|
+
# expression: "document.type != 'private' && document.type != 'internal'"
|
43
|
+
#
|
44
|
+
# Example (Data Manipulation):
|
45
|
+
#
|
46
|
+
# title: "Notification string"
|
47
|
+
# description: "Create a notification string with a timestamp."
|
48
|
+
# expression: "'New message received at ' + string(document.create_time)"
|
49
|
+
#
|
50
|
+
# The exact variables and functions that may be referenced within an expression
|
51
|
+
# are determined by the service that evaluates it. See the service
|
52
|
+
# documentation for additional information.
|
53
|
+
# @!attribute [rw] expression
|
54
|
+
# @return [::String]
|
55
|
+
# Textual representation of an expression in Common Expression Language
|
56
|
+
# syntax.
|
57
|
+
# @!attribute [rw] title
|
58
|
+
# @return [::String]
|
59
|
+
# Optional. Title for the expression, i.e. a short string describing
|
60
|
+
# its purpose. This can be used e.g. in UIs which allow to enter the
|
61
|
+
# expression.
|
62
|
+
# @!attribute [rw] description
|
63
|
+
# @return [::String]
|
64
|
+
# Optional. Description of the expression. This is a longer text which
|
65
|
+
# describes the expression, e.g. when hovered over it in a UI.
|
66
|
+
# @!attribute [rw] location
|
67
|
+
# @return [::String]
|
68
|
+
# Optional. String indicating the location of the expression for error
|
69
|
+
# reporting, e.g. a file name and a position in the file.
|
70
|
+
class Expr
|
71
|
+
include ::Google::Protobuf::MessageExts
|
72
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
metadata
CHANGED
@@ -1,28 +1,133 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-backupdr-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.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: 2024-
|
12
|
-
dependencies:
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
11
|
+
date: 2024-06-26 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: gapic-common
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.21.1
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 0.21.1
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 2.a
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: google-cloud-errors
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.0'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '1.0'
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: google-cloud-location
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0.7'
|
54
|
+
- - "<"
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: 2.a
|
57
|
+
type: :runtime
|
58
|
+
prerelease: false
|
59
|
+
version_requirements: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '0.7'
|
64
|
+
- - "<"
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: 2.a
|
67
|
+
- !ruby/object:Gem::Dependency
|
68
|
+
name: google-iam-v1
|
69
|
+
requirement: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '0.7'
|
74
|
+
- - "<"
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: 2.a
|
77
|
+
type: :runtime
|
78
|
+
prerelease: false
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0.7'
|
84
|
+
- - "<"
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: 2.a
|
87
|
+
description: google-cloud-backupdr-v1 is the official client library for the Backup
|
88
|
+
and DR Service V1 API. Note that google-cloud-backupdr-v1 is a version-specific
|
89
|
+
client library. For most uses, we recommend installing the main client library google-cloud-backupdr
|
90
|
+
instead. See the readme for more details.
|
18
91
|
email: googleapis-packages@google.com
|
19
92
|
executables: []
|
20
93
|
extensions: []
|
21
94
|
extra_rdoc_files: []
|
22
95
|
files:
|
96
|
+
- ".yardopts"
|
97
|
+
- AUTHENTICATION.md
|
23
98
|
- LICENSE.md
|
24
99
|
- README.md
|
100
|
+
- lib/google-cloud-backupdr-v1.rb
|
101
|
+
- lib/google/cloud/backupdr/v1.rb
|
102
|
+
- lib/google/cloud/backupdr/v1/backupdr.rb
|
103
|
+
- lib/google/cloud/backupdr/v1/backupdr/client.rb
|
104
|
+
- lib/google/cloud/backupdr/v1/backupdr/credentials.rb
|
105
|
+
- lib/google/cloud/backupdr/v1/backupdr/operations.rb
|
106
|
+
- lib/google/cloud/backupdr/v1/backupdr/paths.rb
|
107
|
+
- lib/google/cloud/backupdr/v1/backupdr/rest.rb
|
108
|
+
- lib/google/cloud/backupdr/v1/backupdr/rest/client.rb
|
109
|
+
- lib/google/cloud/backupdr/v1/backupdr/rest/operations.rb
|
110
|
+
- lib/google/cloud/backupdr/v1/backupdr/rest/service_stub.rb
|
111
|
+
- lib/google/cloud/backupdr/v1/backupdr_pb.rb
|
112
|
+
- lib/google/cloud/backupdr/v1/backupdr_services_pb.rb
|
113
|
+
- lib/google/cloud/backupdr/v1/bindings_override.rb
|
114
|
+
- lib/google/cloud/backupdr/v1/rest.rb
|
25
115
|
- lib/google/cloud/backupdr/v1/version.rb
|
116
|
+
- proto_docs/README.md
|
117
|
+
- proto_docs/google/api/client.rb
|
118
|
+
- proto_docs/google/api/field_behavior.rb
|
119
|
+
- proto_docs/google/api/launch_stage.rb
|
120
|
+
- proto_docs/google/api/resource.rb
|
121
|
+
- proto_docs/google/cloud/backupdr/v1/backupdr.rb
|
122
|
+
- proto_docs/google/longrunning/operations.rb
|
123
|
+
- proto_docs/google/protobuf/any.rb
|
124
|
+
- proto_docs/google/protobuf/duration.rb
|
125
|
+
- proto_docs/google/protobuf/empty.rb
|
126
|
+
- proto_docs/google/protobuf/field_mask.rb
|
127
|
+
- proto_docs/google/protobuf/timestamp.rb
|
128
|
+
- proto_docs/google/protobuf/wrappers.rb
|
129
|
+
- proto_docs/google/rpc/status.rb
|
130
|
+
- proto_docs/google/type/expr.rb
|
26
131
|
homepage: https://github.com/googleapis/google-cloud-ruby
|
27
132
|
licenses:
|
28
133
|
- Apache-2.0
|
@@ -35,7 +140,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
35
140
|
requirements:
|
36
141
|
- - ">="
|
37
142
|
- !ruby/object:Gem::Version
|
38
|
-
version: '
|
143
|
+
version: '2.7'
|
39
144
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
40
145
|
requirements:
|
41
146
|
- - ">="
|
@@ -45,5 +150,5 @@ requirements: []
|
|
45
150
|
rubygems_version: 3.5.6
|
46
151
|
signing_key:
|
47
152
|
specification_version: 4
|
48
|
-
summary:
|
153
|
+
summary: API Client library for the Backup and DR Service V1 API
|
49
154
|
test_files: []
|