google-cloud-recommendation_engine-v1beta1 0.1.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 +7 -0
- data/.yardopts +12 -0
- data/AUTHENTICATION.md +169 -0
- data/LICENSE.md +203 -0
- data/README.md +75 -0
- data/lib/google-cloud-recommendation_engine-v1beta1.rb +21 -0
- data/lib/google/cloud/recommendation_engine/v1beta1.rb +38 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/catalog_service.rb +50 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/catalog_service/client.rb +831 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/catalog_service/credentials.rb +51 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/catalog_service/operations.rb +570 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/catalog_service/paths.rb +73 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/prediction_api_key_registry.rb +53 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/prediction_api_key_registry/client.rb +554 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/prediction_api_key_registry/credentials.rb +51 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/prediction_api_key_registry/paths.rb +77 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/prediction_service.rb +49 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/prediction_service/client.rb +468 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/prediction_service/credentials.rb +51 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/prediction_service/paths.rb +56 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/user_event_service.rb +50 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/user_event_service/client.rb +820 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/user_event_service/credentials.rb +51 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/user_event_service/operations.rb +570 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/user_event_service/paths.rb +54 -0
- data/lib/google/cloud/recommendation_engine/v1beta1/version.rb +28 -0
- data/lib/google/cloud/recommendationengine/v1beta1/catalog_pb.rb +77 -0
- data/lib/google/cloud/recommendationengine/v1beta1/catalog_service_pb.rb +59 -0
- data/lib/google/cloud/recommendationengine/v1beta1/catalog_service_services_pb.rb +61 -0
- data/lib/google/cloud/recommendationengine/v1beta1/common_pb.rb +32 -0
- data/lib/google/cloud/recommendationengine/v1beta1/import_pb.rb +91 -0
- data/lib/google/cloud/recommendationengine/v1beta1/prediction_apikey_registry_service_pb.rb +48 -0
- data/lib/google/cloud/recommendationengine/v1beta1/prediction_apikey_registry_service_services_pb.rb +53 -0
- data/lib/google/cloud/recommendationengine/v1beta1/prediction_service_pb.rb +49 -0
- data/lib/google/cloud/recommendationengine/v1beta1/prediction_service_services_pb.rb +48 -0
- data/lib/google/cloud/recommendationengine/v1beta1/recommendationengine_resources_pb.rb +19 -0
- data/lib/google/cloud/recommendationengine/v1beta1/user_event_pb.rb +84 -0
- data/lib/google/cloud/recommendationengine/v1beta1/user_event_service_pb.rb +68 -0
- data/lib/google/cloud/recommendationengine/v1beta1/user_event_service_services_pb.rb +66 -0
- data/proto_docs/README.md +4 -0
- data/proto_docs/google/api/field_behavior.rb +59 -0
- data/proto_docs/google/api/httpbody.rb +75 -0
- data/proto_docs/google/api/resource.rb +283 -0
- data/proto_docs/google/cloud/recommendationengine/v1beta1/catalog.rb +214 -0
- data/proto_docs/google/cloud/recommendationengine/v1beta1/catalog_service.rb +110 -0
- data/proto_docs/google/cloud/recommendationengine/v1beta1/common.rb +89 -0
- data/proto_docs/google/cloud/recommendationengine/v1beta1/import.rb +206 -0
- data/proto_docs/google/cloud/recommendationengine/v1beta1/prediction_apikey_registry_service.rb +88 -0
- data/proto_docs/google/cloud/recommendationengine/v1beta1/prediction_service.rb +212 -0
- data/proto_docs/google/cloud/recommendationengine/v1beta1/user_event.rb +367 -0
- data/proto_docs/google/cloud/recommendationengine/v1beta1/user_event_service.rb +191 -0
- data/proto_docs/google/longrunning/operations.rb +150 -0
- data/proto_docs/google/protobuf/any.rb +138 -0
- data/proto_docs/google/protobuf/empty.rb +36 -0
- data/proto_docs/google/protobuf/field_mask.rb +229 -0
- data/proto_docs/google/protobuf/struct.rb +96 -0
- data/proto_docs/google/protobuf/timestamp.rb +120 -0
- data/proto_docs/google/rpc/status.rb +46 -0
- data/proto_docs/google/type/date.rb +50 -0
- metadata +242 -0
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2020 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 Cloud
|
|
22
|
+
module RecommendationEngine
|
|
23
|
+
module V1beta1
|
|
24
|
+
# Request message for PurgeUserEvents method.
|
|
25
|
+
# @!attribute [rw] parent
|
|
26
|
+
# @return [::String]
|
|
27
|
+
# Required. The resource name of the event_store under which the events are
|
|
28
|
+
# created. The format is
|
|
29
|
+
# "projects/$\\{projectId}/locations/global/catalogs/$\\{catalogId}/eventStores/$\\{eventStoreId}"
|
|
30
|
+
# @!attribute [rw] filter
|
|
31
|
+
# @return [::String]
|
|
32
|
+
# Required. The filter string to specify the events to be deleted. Empty
|
|
33
|
+
# string filter is not allowed. This filter can also be used with
|
|
34
|
+
# ListUserEvents API to list events that will be deleted. The eligible fields
|
|
35
|
+
# for filtering are:
|
|
36
|
+
# * eventType - UserEvent.eventType field of type string.
|
|
37
|
+
# * eventTime - in ISO 8601 "zulu" format.
|
|
38
|
+
# * visitorId - field of type string. Specifying this will delete all events
|
|
39
|
+
# associated with a visitor.
|
|
40
|
+
# * userId - field of type string. Specifying this will delete all events
|
|
41
|
+
# associated with a user.
|
|
42
|
+
# Example 1: Deleting all events in a time range.
|
|
43
|
+
# `eventTime > "2012-04-23T18:25:43.511Z" eventTime <
|
|
44
|
+
# "2012-04-23T18:30:43.511Z"`
|
|
45
|
+
# Example 2: Deleting specific eventType in time range.
|
|
46
|
+
# `eventTime > "2012-04-23T18:25:43.511Z" eventType = "detail-page-view"`
|
|
47
|
+
# Example 3: Deleting all events for a specific visitor
|
|
48
|
+
# `visitorId = visitor1024`
|
|
49
|
+
# The filtering fields are assumed to have an implicit AND.
|
|
50
|
+
# @!attribute [rw] force
|
|
51
|
+
# @return [::Boolean]
|
|
52
|
+
# Optional. The default value is false. Override this flag to true to
|
|
53
|
+
# actually perform the purge. If the field is not set to true, a sampling of
|
|
54
|
+
# events to be deleted will be returned.
|
|
55
|
+
class PurgeUserEventsRequest
|
|
56
|
+
include ::Google::Protobuf::MessageExts
|
|
57
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
# Metadata related to the progress of the PurgeUserEvents operation.
|
|
61
|
+
# This will be returned by the google.longrunning.Operation.metadata field.
|
|
62
|
+
# @!attribute [rw] operation_name
|
|
63
|
+
# @return [::String]
|
|
64
|
+
# The ID of the request / operation.
|
|
65
|
+
# @!attribute [rw] create_time
|
|
66
|
+
# @return [::Google::Protobuf::Timestamp]
|
|
67
|
+
# Operation create time.
|
|
68
|
+
class PurgeUserEventsMetadata
|
|
69
|
+
include ::Google::Protobuf::MessageExts
|
|
70
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
# Response of the PurgeUserEventsRequest. If the long running operation is
|
|
74
|
+
# successfully done, then this message is returned by the
|
|
75
|
+
# google.longrunning.Operations.response field.
|
|
76
|
+
# @!attribute [rw] purged_events_count
|
|
77
|
+
# @return [::Integer]
|
|
78
|
+
# The total count of events purged as a result of the operation.
|
|
79
|
+
# @!attribute [rw] user_events_sample
|
|
80
|
+
# @return [::Array<::Google::Cloud::RecommendationEngine::V1beta1::UserEvent>]
|
|
81
|
+
# A sampling of events deleted (or will be deleted) depending on the `force`
|
|
82
|
+
# property in the request. Max of 500 items will be returned.
|
|
83
|
+
class PurgeUserEventsResponse
|
|
84
|
+
include ::Google::Protobuf::MessageExts
|
|
85
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
# Request message for WriteUserEvent method.
|
|
89
|
+
# @!attribute [rw] parent
|
|
90
|
+
# @return [::String]
|
|
91
|
+
# Required. The parent eventStore resource name, such as
|
|
92
|
+
# "projects/1234/locations/global/catalogs/default_catalog/eventStores/default_event_store".
|
|
93
|
+
# @!attribute [rw] user_event
|
|
94
|
+
# @return [::Google::Cloud::RecommendationEngine::V1beta1::UserEvent]
|
|
95
|
+
# Required. User event to write.
|
|
96
|
+
class WriteUserEventRequest
|
|
97
|
+
include ::Google::Protobuf::MessageExts
|
|
98
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
# Request message for CollectUserEvent method.
|
|
102
|
+
# @!attribute [rw] parent
|
|
103
|
+
# @return [::String]
|
|
104
|
+
# Required. The parent eventStore name, such as
|
|
105
|
+
# "projects/1234/locations/global/catalogs/default_catalog/eventStores/default_event_store".
|
|
106
|
+
# @!attribute [rw] user_event
|
|
107
|
+
# @return [::String]
|
|
108
|
+
# Required. URL encoded UserEvent proto.
|
|
109
|
+
# @!attribute [rw] uri
|
|
110
|
+
# @return [::String]
|
|
111
|
+
# Optional. The url including cgi-parameters but excluding the hash fragment.
|
|
112
|
+
# The URL must be truncated to 1.5K bytes to conservatively be under the 2K
|
|
113
|
+
# bytes. This is often more useful than the referer url, because many
|
|
114
|
+
# browsers only send the domain for 3rd party requests.
|
|
115
|
+
# @!attribute [rw] ets
|
|
116
|
+
# @return [::Integer]
|
|
117
|
+
# Optional. The event timestamp in milliseconds. This prevents browser
|
|
118
|
+
# caching of otherwise identical get requests. The name is abbreviated to
|
|
119
|
+
# reduce the payload bytes.
|
|
120
|
+
class CollectUserEventRequest
|
|
121
|
+
include ::Google::Protobuf::MessageExts
|
|
122
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
# Request message for ListUserEvents method.
|
|
126
|
+
# @!attribute [rw] parent
|
|
127
|
+
# @return [::String]
|
|
128
|
+
# Required. The parent eventStore resource name, such as
|
|
129
|
+
# "projects/*/locations/*/catalogs/default_catalog/eventStores/default_event_store".
|
|
130
|
+
# @!attribute [rw] page_size
|
|
131
|
+
# @return [::Integer]
|
|
132
|
+
# Optional. Maximum number of results to return per page. If zero, the
|
|
133
|
+
# service will choose a reasonable default.
|
|
134
|
+
# @!attribute [rw] page_token
|
|
135
|
+
# @return [::String]
|
|
136
|
+
# Optional. The previous ListUserEventsResponse.next_page_token.
|
|
137
|
+
# @!attribute [rw] filter
|
|
138
|
+
# @return [::String]
|
|
139
|
+
# Optional. Filtering expression to specify restrictions over
|
|
140
|
+
# returned events. This is a sequence of terms, where each term applies some
|
|
141
|
+
# kind of a restriction to the returned user events. Use this expression to
|
|
142
|
+
# restrict results to a specific time range, or filter events by eventType.
|
|
143
|
+
# eg: eventTime > "2012-04-23T18:25:43.511Z" eventsMissingCatalogItems
|
|
144
|
+
# eventTime<"2012-04-23T18:25:43.511Z" eventType=search
|
|
145
|
+
#
|
|
146
|
+
# We expect only 3 types of fields:
|
|
147
|
+
#
|
|
148
|
+
# * eventTime: this can be specified a maximum of 2 times, once with a
|
|
149
|
+
# less than operator and once with a greater than operator. The
|
|
150
|
+
# eventTime restrict should result in one contiguous valid eventTime
|
|
151
|
+
# range.
|
|
152
|
+
#
|
|
153
|
+
# * eventType: only 1 eventType restriction can be specified.
|
|
154
|
+
#
|
|
155
|
+
# * eventsMissingCatalogItems: specififying this will restrict results
|
|
156
|
+
# to events for which catalog items were not found in the catalog. The
|
|
157
|
+
# default behavior is to return only those events for which catalog
|
|
158
|
+
# items were found.
|
|
159
|
+
#
|
|
160
|
+
# Some examples of valid filters expressions:
|
|
161
|
+
#
|
|
162
|
+
# * Example 1: eventTime > "2012-04-23T18:25:43.511Z"
|
|
163
|
+
# eventTime < "2012-04-23T18:30:43.511Z"
|
|
164
|
+
# * Example 2: eventTime > "2012-04-23T18:25:43.511Z"
|
|
165
|
+
# eventType = detail-page-view
|
|
166
|
+
# * Example 3: eventsMissingCatalogItems
|
|
167
|
+
# eventType = search eventTime < "2018-04-23T18:30:43.511Z"
|
|
168
|
+
# * Example 4: eventTime > "2012-04-23T18:25:43.511Z"
|
|
169
|
+
# * Example 5: eventType = search
|
|
170
|
+
# * Example 6: eventsMissingCatalogItems
|
|
171
|
+
class ListUserEventsRequest
|
|
172
|
+
include ::Google::Protobuf::MessageExts
|
|
173
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
174
|
+
end
|
|
175
|
+
|
|
176
|
+
# Response message for ListUserEvents method.
|
|
177
|
+
# @!attribute [rw] user_events
|
|
178
|
+
# @return [::Array<::Google::Cloud::RecommendationEngine::V1beta1::UserEvent>]
|
|
179
|
+
# The user events.
|
|
180
|
+
# @!attribute [rw] next_page_token
|
|
181
|
+
# @return [::String]
|
|
182
|
+
# If empty, the list is complete. If nonempty, the token to pass to the next
|
|
183
|
+
# request's ListUserEvents.page_token.
|
|
184
|
+
class ListUserEventsResponse
|
|
185
|
+
include ::Google::Protobuf::MessageExts
|
|
186
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
187
|
+
end
|
|
188
|
+
end
|
|
189
|
+
end
|
|
190
|
+
end
|
|
191
|
+
end
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2020 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 Longrunning
|
|
22
|
+
# This resource represents a long-running operation that is the result of a
|
|
23
|
+
# network API call.
|
|
24
|
+
# @!attribute [rw] name
|
|
25
|
+
# @return [::String]
|
|
26
|
+
# The server-assigned name, which is only unique within the same service that
|
|
27
|
+
# originally returns it. If you use the default HTTP mapping, the
|
|
28
|
+
# `name` should have the format of `operations/some/unique/name`.
|
|
29
|
+
# @!attribute [rw] metadata
|
|
30
|
+
# @return [::Google::Protobuf::Any]
|
|
31
|
+
# Service-specific metadata associated with the operation. It typically
|
|
32
|
+
# contains progress information and common metadata such as create time.
|
|
33
|
+
# Some services might not provide such metadata. Any method that returns a
|
|
34
|
+
# long-running operation should document the metadata type, if any.
|
|
35
|
+
# @!attribute [rw] done
|
|
36
|
+
# @return [::Boolean]
|
|
37
|
+
# If the value is `false`, it means the operation is still in progress.
|
|
38
|
+
# If true, the operation is completed, and either `error` or `response` is
|
|
39
|
+
# available.
|
|
40
|
+
# @!attribute [rw] error
|
|
41
|
+
# @return [::Google::Rpc::Status]
|
|
42
|
+
# The error result of the operation in case of failure or cancellation.
|
|
43
|
+
# @!attribute [rw] response
|
|
44
|
+
# @return [::Google::Protobuf::Any]
|
|
45
|
+
# The normal response of the operation in case of success. If the original
|
|
46
|
+
# method returns no data on success, such as `Delete`, the response is
|
|
47
|
+
# `google.protobuf.Empty`. If the original method is standard
|
|
48
|
+
# `Get`/`Create`/`Update`, the response should be the resource. For other
|
|
49
|
+
# methods, the response should have the type `XxxResponse`, where `Xxx`
|
|
50
|
+
# is the original method name. For example, if the original method name
|
|
51
|
+
# is `TakeSnapshot()`, the inferred response type is
|
|
52
|
+
# `TakeSnapshotResponse`.
|
|
53
|
+
class Operation
|
|
54
|
+
include ::Google::Protobuf::MessageExts
|
|
55
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# The request message for Operations.GetOperation.
|
|
59
|
+
# @!attribute [rw] name
|
|
60
|
+
# @return [::String]
|
|
61
|
+
# The name of the operation resource.
|
|
62
|
+
class GetOperationRequest
|
|
63
|
+
include ::Google::Protobuf::MessageExts
|
|
64
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
# The request message for Operations.ListOperations.
|
|
68
|
+
# @!attribute [rw] name
|
|
69
|
+
# @return [::String]
|
|
70
|
+
# The name of the operation collection.
|
|
71
|
+
# @!attribute [rw] filter
|
|
72
|
+
# @return [::String]
|
|
73
|
+
# The standard list filter.
|
|
74
|
+
# @!attribute [rw] page_size
|
|
75
|
+
# @return [::Integer]
|
|
76
|
+
# The standard list page size.
|
|
77
|
+
# @!attribute [rw] page_token
|
|
78
|
+
# @return [::String]
|
|
79
|
+
# The standard list page token.
|
|
80
|
+
class ListOperationsRequest
|
|
81
|
+
include ::Google::Protobuf::MessageExts
|
|
82
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
# The response message for Operations.ListOperations.
|
|
86
|
+
# @!attribute [rw] operations
|
|
87
|
+
# @return [::Array<::Google::Longrunning::Operation>]
|
|
88
|
+
# A list of operations that matches the specified filter in the request.
|
|
89
|
+
# @!attribute [rw] next_page_token
|
|
90
|
+
# @return [::String]
|
|
91
|
+
# The standard List next-page token.
|
|
92
|
+
class ListOperationsResponse
|
|
93
|
+
include ::Google::Protobuf::MessageExts
|
|
94
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
# The request message for Operations.CancelOperation.
|
|
98
|
+
# @!attribute [rw] name
|
|
99
|
+
# @return [::String]
|
|
100
|
+
# The name of the operation resource to be cancelled.
|
|
101
|
+
class CancelOperationRequest
|
|
102
|
+
include ::Google::Protobuf::MessageExts
|
|
103
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
# The request message for Operations.DeleteOperation.
|
|
107
|
+
# @!attribute [rw] name
|
|
108
|
+
# @return [::String]
|
|
109
|
+
# The name of the operation resource to be deleted.
|
|
110
|
+
class DeleteOperationRequest
|
|
111
|
+
include ::Google::Protobuf::MessageExts
|
|
112
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
# A message representing the message types used by a long-running operation.
|
|
116
|
+
#
|
|
117
|
+
# Example:
|
|
118
|
+
#
|
|
119
|
+
# rpc LongRunningRecognize(LongRunningRecognizeRequest)
|
|
120
|
+
# returns (google.longrunning.Operation) {
|
|
121
|
+
# option (google.longrunning.operation_info) = {
|
|
122
|
+
# response_type: "LongRunningRecognizeResponse"
|
|
123
|
+
# metadata_type: "LongRunningRecognizeMetadata"
|
|
124
|
+
# };
|
|
125
|
+
# }
|
|
126
|
+
# @!attribute [rw] response_type
|
|
127
|
+
# @return [::String]
|
|
128
|
+
# Required. The message name of the primary return type for this
|
|
129
|
+
# long-running operation.
|
|
130
|
+
# This type will be used to deserialize the LRO's response.
|
|
131
|
+
#
|
|
132
|
+
# If the response is in a different package from the rpc, a fully-qualified
|
|
133
|
+
# message name must be used (e.g. `google.protobuf.Struct`).
|
|
134
|
+
#
|
|
135
|
+
# Note: Altering this value constitutes a breaking change.
|
|
136
|
+
# @!attribute [rw] metadata_type
|
|
137
|
+
# @return [::String]
|
|
138
|
+
# Required. The message name of the metadata type for this long-running
|
|
139
|
+
# operation.
|
|
140
|
+
#
|
|
141
|
+
# If the response is in a different package from the rpc, a fully-qualified
|
|
142
|
+
# message name must be used (e.g. `google.protobuf.Struct`).
|
|
143
|
+
#
|
|
144
|
+
# Note: Altering this value constitutes a breaking change.
|
|
145
|
+
class OperationInfo
|
|
146
|
+
include ::Google::Protobuf::MessageExts
|
|
147
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
148
|
+
end
|
|
149
|
+
end
|
|
150
|
+
end
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2020 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 Protobuf
|
|
22
|
+
# `Any` contains an arbitrary serialized protocol buffer message along with a
|
|
23
|
+
# URL that describes the type of the serialized message.
|
|
24
|
+
#
|
|
25
|
+
# Protobuf library provides support to pack/unpack Any values in the form
|
|
26
|
+
# of utility functions or additional generated methods of the Any type.
|
|
27
|
+
#
|
|
28
|
+
# Example 1: Pack and unpack a message in C++.
|
|
29
|
+
#
|
|
30
|
+
# Foo foo = ...;
|
|
31
|
+
# Any any;
|
|
32
|
+
# any.PackFrom(foo);
|
|
33
|
+
# ...
|
|
34
|
+
# if (any.UnpackTo(&foo)) {
|
|
35
|
+
# ...
|
|
36
|
+
# }
|
|
37
|
+
#
|
|
38
|
+
# Example 2: Pack and unpack a message in Java.
|
|
39
|
+
#
|
|
40
|
+
# Foo foo = ...;
|
|
41
|
+
# Any any = Any.pack(foo);
|
|
42
|
+
# ...
|
|
43
|
+
# if (any.is(Foo.class)) {
|
|
44
|
+
# foo = any.unpack(Foo.class);
|
|
45
|
+
# }
|
|
46
|
+
#
|
|
47
|
+
# Example 3: Pack and unpack a message in Python.
|
|
48
|
+
#
|
|
49
|
+
# foo = Foo(...)
|
|
50
|
+
# any = Any()
|
|
51
|
+
# any.Pack(foo)
|
|
52
|
+
# ...
|
|
53
|
+
# if any.Is(Foo.DESCRIPTOR):
|
|
54
|
+
# any.Unpack(foo)
|
|
55
|
+
# ...
|
|
56
|
+
#
|
|
57
|
+
# Example 4: Pack and unpack a message in Go
|
|
58
|
+
#
|
|
59
|
+
# foo := &pb.Foo{...}
|
|
60
|
+
# any, err := ptypes.MarshalAny(foo)
|
|
61
|
+
# ...
|
|
62
|
+
# foo := &pb.Foo{}
|
|
63
|
+
# if err := ptypes.UnmarshalAny(any, foo); err != nil {
|
|
64
|
+
# ...
|
|
65
|
+
# }
|
|
66
|
+
#
|
|
67
|
+
# The pack methods provided by protobuf library will by default use
|
|
68
|
+
# 'type.googleapis.com/full.type.name' as the type URL and the unpack
|
|
69
|
+
# methods only use the fully qualified type name after the last '/'
|
|
70
|
+
# in the type URL, for example "foo.bar.com/x/y.z" will yield type
|
|
71
|
+
# name "y.z".
|
|
72
|
+
#
|
|
73
|
+
#
|
|
74
|
+
# JSON
|
|
75
|
+
# ====
|
|
76
|
+
# The JSON representation of an `Any` value uses the regular
|
|
77
|
+
# representation of the deserialized, embedded message, with an
|
|
78
|
+
# additional field `@type` which contains the type URL. Example:
|
|
79
|
+
#
|
|
80
|
+
# package google.profile;
|
|
81
|
+
# message Person {
|
|
82
|
+
# string first_name = 1;
|
|
83
|
+
# string last_name = 2;
|
|
84
|
+
# }
|
|
85
|
+
#
|
|
86
|
+
# {
|
|
87
|
+
# "@type": "type.googleapis.com/google.profile.Person",
|
|
88
|
+
# "firstName": <string>,
|
|
89
|
+
# "lastName": <string>
|
|
90
|
+
# }
|
|
91
|
+
#
|
|
92
|
+
# If the embedded message type is well-known and has a custom JSON
|
|
93
|
+
# representation, that representation will be embedded adding a field
|
|
94
|
+
# `value` which holds the custom JSON in addition to the `@type`
|
|
95
|
+
# field. Example (for message [google.protobuf.Duration][]):
|
|
96
|
+
#
|
|
97
|
+
# {
|
|
98
|
+
# "@type": "type.googleapis.com/google.protobuf.Duration",
|
|
99
|
+
# "value": "1.212s"
|
|
100
|
+
# }
|
|
101
|
+
# @!attribute [rw] type_url
|
|
102
|
+
# @return [::String]
|
|
103
|
+
# A URL/resource name that uniquely identifies the type of the serialized
|
|
104
|
+
# protocol buffer message. This string must contain at least
|
|
105
|
+
# one "/" character. The last segment of the URL's path must represent
|
|
106
|
+
# the fully qualified name of the type (as in
|
|
107
|
+
# `path/google.protobuf.Duration`). The name should be in a canonical form
|
|
108
|
+
# (e.g., leading "." is not accepted).
|
|
109
|
+
#
|
|
110
|
+
# In practice, teams usually precompile into the binary all types that they
|
|
111
|
+
# expect it to use in the context of Any. However, for URLs which use the
|
|
112
|
+
# scheme `http`, `https`, or no scheme, one can optionally set up a type
|
|
113
|
+
# server that maps type URLs to message definitions as follows:
|
|
114
|
+
#
|
|
115
|
+
# * If no scheme is provided, `https` is assumed.
|
|
116
|
+
# * An HTTP GET on the URL must yield a [google.protobuf.Type][]
|
|
117
|
+
# value in binary format, or produce an error.
|
|
118
|
+
# * Applications are allowed to cache lookup results based on the
|
|
119
|
+
# URL, or have them precompiled into a binary to avoid any
|
|
120
|
+
# lookup. Therefore, binary compatibility needs to be preserved
|
|
121
|
+
# on changes to types. (Use versioned type names to manage
|
|
122
|
+
# breaking changes.)
|
|
123
|
+
#
|
|
124
|
+
# Note: this functionality is not currently available in the official
|
|
125
|
+
# protobuf release, and it is not used for type URLs beginning with
|
|
126
|
+
# type.googleapis.com.
|
|
127
|
+
#
|
|
128
|
+
# Schemes other than `http`, `https` (or the empty scheme) might be
|
|
129
|
+
# used with implementation specific semantics.
|
|
130
|
+
# @!attribute [rw] value
|
|
131
|
+
# @return [::String]
|
|
132
|
+
# Must be a valid serialized protocol buffer of the above specified type.
|
|
133
|
+
class Any
|
|
134
|
+
include ::Google::Protobuf::MessageExts
|
|
135
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
136
|
+
end
|
|
137
|
+
end
|
|
138
|
+
end
|