google-apis-recommender_v1 0.40.0 → 0.41.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0def83d7d22b35120fb1dc98790e87adbc1009f2d7cea528d86f2809c0cbd509
|
|
4
|
+
data.tar.gz: '0886bb8c0f63fa108bcefbc57bb6e60452037c4cca5909b46dd03351c686ebcf'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b24e6750a289f1f6cb1beefb2f7e1e93038ca930c5382caf975d694e9d45615be9208bb939c50ce85d1e4f4a56443e311d8ce46560c7ed1e35e1df3ff3824d40
|
|
7
|
+
data.tar.gz: 7f11239469a708c48a633cdc138c7531486825ecad0efcb8b31fc7d65d3771ea88ca4eaaac0b3b140958ab715a35bdcf4b4d22576ac5928f4a3d08bdcd927397
|
data/CHANGELOG.md
CHANGED
|
@@ -22,6 +22,326 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module RecommenderV1
|
|
24
24
|
|
|
25
|
+
#
|
|
26
|
+
class CloudRecommendationsRecommendersDatabasesV1ContentChunk
|
|
27
|
+
include Google::Apis::Core::Hashable
|
|
28
|
+
|
|
29
|
+
# Field for adding custom complex table
|
|
30
|
+
# Corresponds to the JSON property `table`
|
|
31
|
+
# @return [Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1Table]
|
|
32
|
+
attr_accessor :table
|
|
33
|
+
|
|
34
|
+
def initialize(**args)
|
|
35
|
+
update!(**args)
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
# Update properties of this object
|
|
39
|
+
def update!(**args)
|
|
40
|
+
@table = args[:table] if args.key?(:table)
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
#
|
|
45
|
+
class CloudRecommendationsRecommendersDatabasesV1CtaConfig
|
|
46
|
+
include Google::Apis::Core::Hashable
|
|
47
|
+
|
|
48
|
+
#
|
|
49
|
+
# Corresponds to the JSON property `isPrimary`
|
|
50
|
+
# @return [Boolean]
|
|
51
|
+
attr_accessor :is_primary
|
|
52
|
+
alias_method :is_primary?, :is_primary
|
|
53
|
+
|
|
54
|
+
# Enum used to map to the string to be shown in the UI for the button.
|
|
55
|
+
# Corresponds to the JSON property `label`
|
|
56
|
+
# @return [String]
|
|
57
|
+
attr_accessor :label
|
|
58
|
+
|
|
59
|
+
#
|
|
60
|
+
# Corresponds to the JSON property `redirectPage`
|
|
61
|
+
# @return [String]
|
|
62
|
+
attr_accessor :redirect_page
|
|
63
|
+
|
|
64
|
+
def initialize(**args)
|
|
65
|
+
update!(**args)
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
# Update properties of this object
|
|
69
|
+
def update!(**args)
|
|
70
|
+
@is_primary = args[:is_primary] if args.key?(:is_primary)
|
|
71
|
+
@label = args[:label] if args.key?(:label)
|
|
72
|
+
@redirect_page = args[:redirect_page] if args.key?(:redirect_page)
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
# Presentational config that maps to the UI components of templatized issue
|
|
77
|
+
# subtasks.
|
|
78
|
+
class CloudRecommendationsRecommendersDatabasesV1DatabasesPresentationConfig
|
|
79
|
+
include Google::Apis::Core::Hashable
|
|
80
|
+
|
|
81
|
+
# Call to action buttons for the issue.
|
|
82
|
+
# Corresponds to the JSON property `ctaConfigs`
|
|
83
|
+
# @return [Array<Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1CtaConfig>]
|
|
84
|
+
attr_accessor :cta_configs
|
|
85
|
+
|
|
86
|
+
# Content chunks for the issue.
|
|
87
|
+
# Corresponds to the JSON property `issueContentChunks`
|
|
88
|
+
# @return [Array<Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1ContentChunk>]
|
|
89
|
+
attr_accessor :issue_content_chunks
|
|
90
|
+
|
|
91
|
+
# Issue description for the issue.
|
|
92
|
+
# Corresponds to the JSON property `issueDescription`
|
|
93
|
+
# @return [Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1Description]
|
|
94
|
+
attr_accessor :issue_description
|
|
95
|
+
|
|
96
|
+
# Fields for the table containing metadata associated with the issue.
|
|
97
|
+
# Corresponds to the JSON property `issueTableFields`
|
|
98
|
+
# @return [Array<Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1TableField>]
|
|
99
|
+
attr_accessor :issue_table_fields
|
|
100
|
+
|
|
101
|
+
# Content chunks for the next steps.
|
|
102
|
+
# Corresponds to the JSON property `nextStepsContentChunks`
|
|
103
|
+
# @return [Array<Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1ContentChunk>]
|
|
104
|
+
attr_accessor :next_steps_content_chunks
|
|
105
|
+
|
|
106
|
+
# Next steps description for the issue.
|
|
107
|
+
# Corresponds to the JSON property `nextStepsDescription`
|
|
108
|
+
# @return [Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1Description]
|
|
109
|
+
attr_accessor :next_steps_description
|
|
110
|
+
|
|
111
|
+
# Fields for the table containing metadata associated with the next steps.
|
|
112
|
+
# Corresponds to the JSON property `nextStepsTableFields`
|
|
113
|
+
# @return [Array<Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1TableField>]
|
|
114
|
+
attr_accessor :next_steps_table_fields
|
|
115
|
+
|
|
116
|
+
# Playbook links for the issue.
|
|
117
|
+
# Corresponds to the JSON property `playbookLinks`
|
|
118
|
+
# @return [Array<Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1PlaybookLink>]
|
|
119
|
+
attr_accessor :playbook_links
|
|
120
|
+
|
|
121
|
+
def initialize(**args)
|
|
122
|
+
update!(**args)
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
# Update properties of this object
|
|
126
|
+
def update!(**args)
|
|
127
|
+
@cta_configs = args[:cta_configs] if args.key?(:cta_configs)
|
|
128
|
+
@issue_content_chunks = args[:issue_content_chunks] if args.key?(:issue_content_chunks)
|
|
129
|
+
@issue_description = args[:issue_description] if args.key?(:issue_description)
|
|
130
|
+
@issue_table_fields = args[:issue_table_fields] if args.key?(:issue_table_fields)
|
|
131
|
+
@next_steps_content_chunks = args[:next_steps_content_chunks] if args.key?(:next_steps_content_chunks)
|
|
132
|
+
@next_steps_description = args[:next_steps_description] if args.key?(:next_steps_description)
|
|
133
|
+
@next_steps_table_fields = args[:next_steps_table_fields] if args.key?(:next_steps_table_fields)
|
|
134
|
+
@playbook_links = args[:playbook_links] if args.key?(:playbook_links)
|
|
135
|
+
end
|
|
136
|
+
end
|
|
137
|
+
|
|
138
|
+
#
|
|
139
|
+
class CloudRecommendationsRecommendersDatabasesV1Description
|
|
140
|
+
include Google::Apis::Core::Hashable
|
|
141
|
+
|
|
142
|
+
# Enum used to map to the html template to be shown in the UI.
|
|
143
|
+
# Corresponds to the JSON property `descriptionEnum`
|
|
144
|
+
# @return [String]
|
|
145
|
+
attr_accessor :description_enum
|
|
146
|
+
|
|
147
|
+
def initialize(**args)
|
|
148
|
+
update!(**args)
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
# Update properties of this object
|
|
152
|
+
def update!(**args)
|
|
153
|
+
@description_enum = args[:description_enum] if args.key?(:description_enum)
|
|
154
|
+
end
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
#
|
|
158
|
+
class CloudRecommendationsRecommendersDatabasesV1Link
|
|
159
|
+
include Google::Apis::Core::Hashable
|
|
160
|
+
|
|
161
|
+
# String label for the link. This value is not translated
|
|
162
|
+
# Corresponds to the JSON property `label`
|
|
163
|
+
# @return [String]
|
|
164
|
+
attr_accessor :label
|
|
165
|
+
|
|
166
|
+
# Enum used to map to the redirect page for the link.
|
|
167
|
+
# Corresponds to the JSON property `redirectPage`
|
|
168
|
+
# @return [String]
|
|
169
|
+
attr_accessor :redirect_page
|
|
170
|
+
|
|
171
|
+
# Resource name for the table cell. This is used to construct the link.
|
|
172
|
+
# Corresponds to the JSON property `resourceName`
|
|
173
|
+
# @return [String]
|
|
174
|
+
attr_accessor :resource_name
|
|
175
|
+
|
|
176
|
+
def initialize(**args)
|
|
177
|
+
update!(**args)
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
# Update properties of this object
|
|
181
|
+
def update!(**args)
|
|
182
|
+
@label = args[:label] if args.key?(:label)
|
|
183
|
+
@redirect_page = args[:redirect_page] if args.key?(:redirect_page)
|
|
184
|
+
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
|
185
|
+
end
|
|
186
|
+
end
|
|
187
|
+
|
|
188
|
+
#
|
|
189
|
+
class CloudRecommendationsRecommendersDatabasesV1PlaybookLink
|
|
190
|
+
include Google::Apis::Core::Hashable
|
|
191
|
+
|
|
192
|
+
# Enum used to map to the string to be shown in the UI for the link.
|
|
193
|
+
# Corresponds to the JSON property `label`
|
|
194
|
+
# @return [String]
|
|
195
|
+
attr_accessor :label
|
|
196
|
+
|
|
197
|
+
#
|
|
198
|
+
# Corresponds to the JSON property `link`
|
|
199
|
+
# @return [String]
|
|
200
|
+
attr_accessor :link
|
|
201
|
+
|
|
202
|
+
def initialize(**args)
|
|
203
|
+
update!(**args)
|
|
204
|
+
end
|
|
205
|
+
|
|
206
|
+
# Update properties of this object
|
|
207
|
+
def update!(**args)
|
|
208
|
+
@label = args[:label] if args.key?(:label)
|
|
209
|
+
@link = args[:link] if args.key?(:link)
|
|
210
|
+
end
|
|
211
|
+
end
|
|
212
|
+
|
|
213
|
+
#
|
|
214
|
+
class CloudRecommendationsRecommendersDatabasesV1SimpleValue
|
|
215
|
+
include Google::Apis::Core::Hashable
|
|
216
|
+
|
|
217
|
+
# Enum value for the table cell. This should be used when value MUST be
|
|
218
|
+
# translated and represents common status/field like Enabled, Disabled, Success,
|
|
219
|
+
# Failure, etc.
|
|
220
|
+
# Corresponds to the JSON property `enumValue`
|
|
221
|
+
# @return [String]
|
|
222
|
+
attr_accessor :enum_value
|
|
223
|
+
|
|
224
|
+
# Link value for the table cell.
|
|
225
|
+
# Corresponds to the JSON property `linkValue`
|
|
226
|
+
# @return [Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1Link]
|
|
227
|
+
attr_accessor :link_value
|
|
228
|
+
|
|
229
|
+
# Number value for the table cell.
|
|
230
|
+
# Corresponds to the JSON property `numberValue`
|
|
231
|
+
# @return [Float]
|
|
232
|
+
attr_accessor :number_value
|
|
233
|
+
|
|
234
|
+
# String value for the table cell. This should be used when value doesn't need
|
|
235
|
+
# to be translated.
|
|
236
|
+
# Corresponds to the JSON property `stringValue`
|
|
237
|
+
# @return [String]
|
|
238
|
+
attr_accessor :string_value
|
|
239
|
+
|
|
240
|
+
# Timestamp value for the table cell.
|
|
241
|
+
# Corresponds to the JSON property `timestampValue`
|
|
242
|
+
# @return [String]
|
|
243
|
+
attr_accessor :timestamp_value
|
|
244
|
+
|
|
245
|
+
def initialize(**args)
|
|
246
|
+
update!(**args)
|
|
247
|
+
end
|
|
248
|
+
|
|
249
|
+
# Update properties of this object
|
|
250
|
+
def update!(**args)
|
|
251
|
+
@enum_value = args[:enum_value] if args.key?(:enum_value)
|
|
252
|
+
@link_value = args[:link_value] if args.key?(:link_value)
|
|
253
|
+
@number_value = args[:number_value] if args.key?(:number_value)
|
|
254
|
+
@string_value = args[:string_value] if args.key?(:string_value)
|
|
255
|
+
@timestamp_value = args[:timestamp_value] if args.key?(:timestamp_value)
|
|
256
|
+
end
|
|
257
|
+
end
|
|
258
|
+
|
|
259
|
+
# Field for adding custom complex table
|
|
260
|
+
class CloudRecommendationsRecommendersDatabasesV1Table
|
|
261
|
+
include Google::Apis::Core::Hashable
|
|
262
|
+
|
|
263
|
+
# Headers for the table. IMPORTANT: Each header defines a column and its title.
|
|
264
|
+
# All Headers must be unique and shouldn't be used more than once within the
|
|
265
|
+
# same list.
|
|
266
|
+
# Corresponds to the JSON property `headers`
|
|
267
|
+
# @return [Array<String>]
|
|
268
|
+
attr_accessor :headers
|
|
269
|
+
|
|
270
|
+
# Rows for the table. Ensure that the order of the cells in the row matches the
|
|
271
|
+
# order of the headers.
|
|
272
|
+
# Corresponds to the JSON property `rows`
|
|
273
|
+
# @return [Array<Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1TableRow>]
|
|
274
|
+
attr_accessor :rows
|
|
275
|
+
|
|
276
|
+
def initialize(**args)
|
|
277
|
+
update!(**args)
|
|
278
|
+
end
|
|
279
|
+
|
|
280
|
+
# Update properties of this object
|
|
281
|
+
def update!(**args)
|
|
282
|
+
@headers = args[:headers] if args.key?(:headers)
|
|
283
|
+
@rows = args[:rows] if args.key?(:rows)
|
|
284
|
+
end
|
|
285
|
+
end
|
|
286
|
+
|
|
287
|
+
#
|
|
288
|
+
class CloudRecommendationsRecommendersDatabasesV1TableField
|
|
289
|
+
include Google::Apis::Core::Hashable
|
|
290
|
+
|
|
291
|
+
# Enum used to map to the string to be shown in the UI for the field.
|
|
292
|
+
# Corresponds to the JSON property `key`
|
|
293
|
+
# @return [String]
|
|
294
|
+
attr_accessor :key
|
|
295
|
+
|
|
296
|
+
# Number value for the table field.
|
|
297
|
+
# Corresponds to the JSON property `numberValue`
|
|
298
|
+
# @return [Float]
|
|
299
|
+
attr_accessor :number_value
|
|
300
|
+
|
|
301
|
+
# String value for the table field. Note that this string won't be translated.
|
|
302
|
+
# It is advised to provide values that don't require translation.
|
|
303
|
+
# Corresponds to the JSON property `stringValue`
|
|
304
|
+
# @return [String]
|
|
305
|
+
attr_accessor :string_value
|
|
306
|
+
|
|
307
|
+
# Timestamp value for the table field. Timestamp will be shown in the user's
|
|
308
|
+
# timezone with the format: "Feb 27, 2009 3:22:54 PM".
|
|
309
|
+
# Corresponds to the JSON property `timestampValue`
|
|
310
|
+
# @return [String]
|
|
311
|
+
attr_accessor :timestamp_value
|
|
312
|
+
|
|
313
|
+
def initialize(**args)
|
|
314
|
+
update!(**args)
|
|
315
|
+
end
|
|
316
|
+
|
|
317
|
+
# Update properties of this object
|
|
318
|
+
def update!(**args)
|
|
319
|
+
@key = args[:key] if args.key?(:key)
|
|
320
|
+
@number_value = args[:number_value] if args.key?(:number_value)
|
|
321
|
+
@string_value = args[:string_value] if args.key?(:string_value)
|
|
322
|
+
@timestamp_value = args[:timestamp_value] if args.key?(:timestamp_value)
|
|
323
|
+
end
|
|
324
|
+
end
|
|
325
|
+
|
|
326
|
+
# Table row for a table
|
|
327
|
+
class CloudRecommendationsRecommendersDatabasesV1TableRow
|
|
328
|
+
include Google::Apis::Core::Hashable
|
|
329
|
+
|
|
330
|
+
# Table cells for the table row.
|
|
331
|
+
# Corresponds to the JSON property `cells`
|
|
332
|
+
# @return [Array<Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1SimpleValue>]
|
|
333
|
+
attr_accessor :cells
|
|
334
|
+
|
|
335
|
+
def initialize(**args)
|
|
336
|
+
update!(**args)
|
|
337
|
+
end
|
|
338
|
+
|
|
339
|
+
# Update properties of this object
|
|
340
|
+
def update!(**args)
|
|
341
|
+
@cells = args[:cells] if args.key?(:cells)
|
|
342
|
+
end
|
|
343
|
+
end
|
|
344
|
+
|
|
25
345
|
# Contains metadata about how much money a recommendation can save or incur.
|
|
26
346
|
class GoogleCloudRecommenderV1CostProjection
|
|
27
347
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module RecommenderV1
|
|
18
18
|
# Version of the google-apis-recommender_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.41.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260913"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -22,6 +22,66 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module RecommenderV1
|
|
24
24
|
|
|
25
|
+
class CloudRecommendationsRecommendersDatabasesV1ContentChunk
|
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
|
+
|
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
class CloudRecommendationsRecommendersDatabasesV1CtaConfig
|
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
33
|
+
|
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
class CloudRecommendationsRecommendersDatabasesV1DatabasesPresentationConfig
|
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
39
|
+
|
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
class CloudRecommendationsRecommendersDatabasesV1Description
|
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
45
|
+
|
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
class CloudRecommendationsRecommendersDatabasesV1Link
|
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
51
|
+
|
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
class CloudRecommendationsRecommendersDatabasesV1PlaybookLink
|
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
57
|
+
|
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
class CloudRecommendationsRecommendersDatabasesV1SimpleValue
|
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
63
|
+
|
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
class CloudRecommendationsRecommendersDatabasesV1Table
|
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
|
+
|
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
class CloudRecommendationsRecommendersDatabasesV1TableField
|
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
75
|
+
|
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
class CloudRecommendationsRecommendersDatabasesV1TableRow
|
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
81
|
+
|
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
83
|
+
end
|
|
84
|
+
|
|
25
85
|
class GoogleCloudRecommenderV1CostProjection
|
|
26
86
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
87
|
|
|
@@ -184,6 +244,108 @@ module Google
|
|
|
184
244
|
include Google::Apis::Core::JsonObjectSupport
|
|
185
245
|
end
|
|
186
246
|
|
|
247
|
+
class CloudRecommendationsRecommendersDatabasesV1ContentChunk
|
|
248
|
+
# @private
|
|
249
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
250
|
+
property :table, as: 'table', class: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1Table, decorator: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1Table::Representation
|
|
251
|
+
|
|
252
|
+
end
|
|
253
|
+
end
|
|
254
|
+
|
|
255
|
+
class CloudRecommendationsRecommendersDatabasesV1CtaConfig
|
|
256
|
+
# @private
|
|
257
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
258
|
+
property :is_primary, as: 'isPrimary'
|
|
259
|
+
property :label, as: 'label'
|
|
260
|
+
property :redirect_page, as: 'redirectPage'
|
|
261
|
+
end
|
|
262
|
+
end
|
|
263
|
+
|
|
264
|
+
class CloudRecommendationsRecommendersDatabasesV1DatabasesPresentationConfig
|
|
265
|
+
# @private
|
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
267
|
+
collection :cta_configs, as: 'ctaConfigs', class: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1CtaConfig, decorator: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1CtaConfig::Representation
|
|
268
|
+
|
|
269
|
+
collection :issue_content_chunks, as: 'issueContentChunks', class: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1ContentChunk, decorator: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1ContentChunk::Representation
|
|
270
|
+
|
|
271
|
+
property :issue_description, as: 'issueDescription', class: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1Description, decorator: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1Description::Representation
|
|
272
|
+
|
|
273
|
+
collection :issue_table_fields, as: 'issueTableFields', class: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1TableField, decorator: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1TableField::Representation
|
|
274
|
+
|
|
275
|
+
collection :next_steps_content_chunks, as: 'nextStepsContentChunks', class: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1ContentChunk, decorator: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1ContentChunk::Representation
|
|
276
|
+
|
|
277
|
+
property :next_steps_description, as: 'nextStepsDescription', class: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1Description, decorator: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1Description::Representation
|
|
278
|
+
|
|
279
|
+
collection :next_steps_table_fields, as: 'nextStepsTableFields', class: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1TableField, decorator: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1TableField::Representation
|
|
280
|
+
|
|
281
|
+
collection :playbook_links, as: 'playbookLinks', class: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1PlaybookLink, decorator: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1PlaybookLink::Representation
|
|
282
|
+
|
|
283
|
+
end
|
|
284
|
+
end
|
|
285
|
+
|
|
286
|
+
class CloudRecommendationsRecommendersDatabasesV1Description
|
|
287
|
+
# @private
|
|
288
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
289
|
+
property :description_enum, as: 'descriptionEnum'
|
|
290
|
+
end
|
|
291
|
+
end
|
|
292
|
+
|
|
293
|
+
class CloudRecommendationsRecommendersDatabasesV1Link
|
|
294
|
+
# @private
|
|
295
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
296
|
+
property :label, as: 'label'
|
|
297
|
+
property :redirect_page, as: 'redirectPage'
|
|
298
|
+
property :resource_name, as: 'resourceName'
|
|
299
|
+
end
|
|
300
|
+
end
|
|
301
|
+
|
|
302
|
+
class CloudRecommendationsRecommendersDatabasesV1PlaybookLink
|
|
303
|
+
# @private
|
|
304
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
305
|
+
property :label, as: 'label'
|
|
306
|
+
property :link, as: 'link'
|
|
307
|
+
end
|
|
308
|
+
end
|
|
309
|
+
|
|
310
|
+
class CloudRecommendationsRecommendersDatabasesV1SimpleValue
|
|
311
|
+
# @private
|
|
312
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
313
|
+
property :enum_value, as: 'enumValue'
|
|
314
|
+
property :link_value, as: 'linkValue', class: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1Link, decorator: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1Link::Representation
|
|
315
|
+
|
|
316
|
+
property :number_value, as: 'numberValue'
|
|
317
|
+
property :string_value, as: 'stringValue'
|
|
318
|
+
property :timestamp_value, as: 'timestampValue'
|
|
319
|
+
end
|
|
320
|
+
end
|
|
321
|
+
|
|
322
|
+
class CloudRecommendationsRecommendersDatabasesV1Table
|
|
323
|
+
# @private
|
|
324
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
325
|
+
collection :headers, as: 'headers'
|
|
326
|
+
collection :rows, as: 'rows', class: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1TableRow, decorator: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1TableRow::Representation
|
|
327
|
+
|
|
328
|
+
end
|
|
329
|
+
end
|
|
330
|
+
|
|
331
|
+
class CloudRecommendationsRecommendersDatabasesV1TableField
|
|
332
|
+
# @private
|
|
333
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
334
|
+
property :key, as: 'key'
|
|
335
|
+
property :number_value, as: 'numberValue'
|
|
336
|
+
property :string_value, as: 'stringValue'
|
|
337
|
+
property :timestamp_value, as: 'timestampValue'
|
|
338
|
+
end
|
|
339
|
+
end
|
|
340
|
+
|
|
341
|
+
class CloudRecommendationsRecommendersDatabasesV1TableRow
|
|
342
|
+
# @private
|
|
343
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
344
|
+
collection :cells, as: 'cells', class: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1SimpleValue, decorator: Google::Apis::RecommenderV1::CloudRecommendationsRecommendersDatabasesV1SimpleValue::Representation
|
|
345
|
+
|
|
346
|
+
end
|
|
347
|
+
end
|
|
348
|
+
|
|
187
349
|
class GoogleCloudRecommenderV1CostProjection
|
|
188
350
|
# @private
|
|
189
351
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-recommender_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.41.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-recommender_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-recommender_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-recommender_v1/v0.41.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-recommender_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|