google-cloud-migration_center-v1 0.a → 0.2.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 +12 -0
- data/AUTHENTICATION.md +122 -0
- data/README.md +144 -8
- data/lib/google/cloud/migration_center/v1/bindings_override.rb +102 -0
- data/lib/google/cloud/migration_center/v1/migration_center/client.rb +5600 -0
- data/lib/google/cloud/migration_center/v1/migration_center/credentials.rb +47 -0
- data/lib/google/cloud/migration_center/v1/migration_center/operations.rb +801 -0
- data/lib/google/cloud/migration_center/v1/migration_center/paths.rb +244 -0
- data/lib/google/cloud/migration_center/v1/migration_center/rest/client.rb +5237 -0
- data/lib/google/cloud/migration_center/v1/migration_center/rest/operations.rb +895 -0
- data/lib/google/cloud/migration_center/v1/migration_center/rest/service_stub.rb +2913 -0
- data/lib/google/cloud/migration_center/v1/migration_center/rest.rb +54 -0
- data/lib/google/cloud/migration_center/v1/migration_center.rb +56 -0
- data/lib/google/cloud/migration_center/v1/rest.rb +38 -0
- data/lib/google/cloud/migration_center/v1/version.rb +7 -2
- data/lib/google/cloud/migration_center/v1.rb +45 -0
- data/lib/google/cloud/migrationcenter/v1/migrationcenter_pb.rb +267 -0
- data/lib/google/cloud/migrationcenter/v1/migrationcenter_services_pb.rb +139 -0
- data/lib/google-cloud-migration_center-v1.rb +21 -0
- data/proto_docs/README.md +4 -0
- data/proto_docs/google/api/client.rb +395 -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/migrationcenter/v1/migrationcenter.rb +3956 -0
- data/proto_docs/google/longrunning/operations.rb +164 -0
- data/proto_docs/google/protobuf/any.rb +144 -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/rpc/status.rb +48 -0
- data/proto_docs/google/type/date.rb +53 -0
- data/proto_docs/google/type/money.rb +43 -0
- metadata +212 -13
@@ -0,0 +1,3956 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 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 MigrationCenter
|
23
|
+
module V1
|
24
|
+
# An asset represents a resource in your environment. Asset types include
|
25
|
+
# virtual machines and databases.
|
26
|
+
# @!attribute [r] name
|
27
|
+
# @return [::String]
|
28
|
+
# Output only. The full name of the asset.
|
29
|
+
# @!attribute [r] create_time
|
30
|
+
# @return [::Google::Protobuf::Timestamp]
|
31
|
+
# Output only. The timestamp when the asset was created.
|
32
|
+
# @!attribute [r] update_time
|
33
|
+
# @return [::Google::Protobuf::Timestamp]
|
34
|
+
# Output only. The timestamp when the asset was last updated.
|
35
|
+
# @!attribute [rw] labels
|
36
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
37
|
+
# Labels as key value pairs.
|
38
|
+
# @!attribute [rw] attributes
|
39
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
40
|
+
# Generic asset attributes.
|
41
|
+
# @!attribute [r] machine_details
|
42
|
+
# @return [::Google::Cloud::MigrationCenter::V1::MachineDetails]
|
43
|
+
# Output only. Asset information specific for virtual and physical
|
44
|
+
# machines.
|
45
|
+
# @!attribute [r] insight_list
|
46
|
+
# @return [::Google::Cloud::MigrationCenter::V1::InsightList]
|
47
|
+
# Output only. The list of insights associated with the asset.
|
48
|
+
# @!attribute [r] performance_data
|
49
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AssetPerformanceData]
|
50
|
+
# Output only. Performance data for the asset.
|
51
|
+
# @!attribute [r] sources
|
52
|
+
# @return [::Array<::String>]
|
53
|
+
# Output only. The list of sources contributing to the asset.
|
54
|
+
# @!attribute [r] assigned_groups
|
55
|
+
# @return [::Array<::String>]
|
56
|
+
# Output only. The list of groups that the asset is assigned to.
|
57
|
+
class Asset
|
58
|
+
include ::Google::Protobuf::MessageExts
|
59
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
60
|
+
|
61
|
+
# @!attribute [rw] key
|
62
|
+
# @return [::String]
|
63
|
+
# @!attribute [rw] value
|
64
|
+
# @return [::String]
|
65
|
+
class LabelsEntry
|
66
|
+
include ::Google::Protobuf::MessageExts
|
67
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
68
|
+
end
|
69
|
+
|
70
|
+
# @!attribute [rw] key
|
71
|
+
# @return [::String]
|
72
|
+
# @!attribute [rw] value
|
73
|
+
# @return [::String]
|
74
|
+
class AttributesEntry
|
75
|
+
include ::Google::Protobuf::MessageExts
|
76
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
# The preferences that apply to all assets in a given context.
|
81
|
+
# @!attribute [r] name
|
82
|
+
# @return [::String]
|
83
|
+
# Output only. Name of the preference set.
|
84
|
+
# @!attribute [r] create_time
|
85
|
+
# @return [::Google::Protobuf::Timestamp]
|
86
|
+
# Output only. The timestamp when the preference set was created.
|
87
|
+
# @!attribute [r] update_time
|
88
|
+
# @return [::Google::Protobuf::Timestamp]
|
89
|
+
# Output only. The timestamp when the preference set was last updated.
|
90
|
+
# @!attribute [rw] display_name
|
91
|
+
# @return [::String]
|
92
|
+
# User-friendly display name. Maximum length is 63 characters.
|
93
|
+
# @!attribute [rw] description
|
94
|
+
# @return [::String]
|
95
|
+
# A description of the preference set.
|
96
|
+
# @!attribute [rw] virtual_machine_preferences
|
97
|
+
# @return [::Google::Cloud::MigrationCenter::V1::VirtualMachinePreferences]
|
98
|
+
# A set of preferences that applies to all virtual machines in the context.
|
99
|
+
class PreferenceSet
|
100
|
+
include ::Google::Protobuf::MessageExts
|
101
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
102
|
+
end
|
103
|
+
|
104
|
+
# A resource that represents the background job that imports asset frames.
|
105
|
+
# @!attribute [r] name
|
106
|
+
# @return [::String]
|
107
|
+
# Output only. The full name of the import job.
|
108
|
+
# @!attribute [rw] display_name
|
109
|
+
# @return [::String]
|
110
|
+
# User-friendly display name. Maximum length is 63 characters.
|
111
|
+
# @!attribute [r] create_time
|
112
|
+
# @return [::Google::Protobuf::Timestamp]
|
113
|
+
# Output only. The timestamp when the import job was created.
|
114
|
+
# @!attribute [r] update_time
|
115
|
+
# @return [::Google::Protobuf::Timestamp]
|
116
|
+
# Output only. The timestamp when the import job was last updated.
|
117
|
+
# @!attribute [r] complete_time
|
118
|
+
# @return [::Google::Protobuf::Timestamp]
|
119
|
+
# Output only. The timestamp when the import job was completed.
|
120
|
+
# @!attribute [r] state
|
121
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ImportJob::ImportJobState]
|
122
|
+
# Output only. The state of the import job.
|
123
|
+
# @!attribute [rw] labels
|
124
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
125
|
+
# Labels as key value pairs.
|
126
|
+
# @!attribute [rw] asset_source
|
127
|
+
# @return [::String]
|
128
|
+
# Required. Reference to a source.
|
129
|
+
# @!attribute [r] validation_report
|
130
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ValidationReport]
|
131
|
+
# Output only. The report with the validation results of the import job.
|
132
|
+
# @!attribute [r] execution_report
|
133
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ExecutionReport]
|
134
|
+
# Output only. The report with the results of running the import job.
|
135
|
+
class ImportJob
|
136
|
+
include ::Google::Protobuf::MessageExts
|
137
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
138
|
+
|
139
|
+
# @!attribute [rw] key
|
140
|
+
# @return [::String]
|
141
|
+
# @!attribute [rw] value
|
142
|
+
# @return [::String]
|
143
|
+
class LabelsEntry
|
144
|
+
include ::Google::Protobuf::MessageExts
|
145
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
146
|
+
end
|
147
|
+
|
148
|
+
# Enumerates possible states of an import job.
|
149
|
+
module ImportJobState
|
150
|
+
# Default value.
|
151
|
+
IMPORT_JOB_STATE_UNSPECIFIED = 0
|
152
|
+
|
153
|
+
# The import job is pending.
|
154
|
+
IMPORT_JOB_STATE_PENDING = 1
|
155
|
+
|
156
|
+
# The processing of the import job is ongoing.
|
157
|
+
IMPORT_JOB_STATE_RUNNING = 2
|
158
|
+
|
159
|
+
# The import job processing has completed.
|
160
|
+
IMPORT_JOB_STATE_COMPLETED = 3
|
161
|
+
|
162
|
+
# The import job failed to be processed.
|
163
|
+
IMPORT_JOB_STATE_FAILED = 4
|
164
|
+
|
165
|
+
# The import job is being validated.
|
166
|
+
IMPORT_JOB_STATE_VALIDATING = 5
|
167
|
+
|
168
|
+
# The import job contains blocking errors.
|
169
|
+
IMPORT_JOB_STATE_FAILED_VALIDATION = 6
|
170
|
+
|
171
|
+
# The validation of the job completed with no blocking errors.
|
172
|
+
IMPORT_JOB_STATE_READY = 7
|
173
|
+
end
|
174
|
+
end
|
175
|
+
|
176
|
+
# A resource that represents a payload file in an import job.
|
177
|
+
# @!attribute [r] name
|
178
|
+
# @return [::String]
|
179
|
+
# Output only. The name of the file.
|
180
|
+
# @!attribute [rw] display_name
|
181
|
+
# @return [::String]
|
182
|
+
# User-friendly display name. Maximum length is 63 characters.
|
183
|
+
# @!attribute [rw] format
|
184
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ImportJobFormat]
|
185
|
+
# Required. The payload format.
|
186
|
+
# @!attribute [r] create_time
|
187
|
+
# @return [::Google::Protobuf::Timestamp]
|
188
|
+
# Output only. The timestamp when the file was created.
|
189
|
+
# @!attribute [r] state
|
190
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ImportDataFile::State]
|
191
|
+
# Output only. The state of the import data file.
|
192
|
+
# @!attribute [rw] upload_file_info
|
193
|
+
# @return [::Google::Cloud::MigrationCenter::V1::UploadFileInfo]
|
194
|
+
# Information about a file that is uploaded to a storage service.
|
195
|
+
class ImportDataFile
|
196
|
+
include ::Google::Protobuf::MessageExts
|
197
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
198
|
+
|
199
|
+
# Enumerates possible states of an import data file.
|
200
|
+
module State
|
201
|
+
# Default value.
|
202
|
+
STATE_UNSPECIFIED = 0
|
203
|
+
|
204
|
+
# The data file is being created.
|
205
|
+
CREATING = 1
|
206
|
+
|
207
|
+
# The data file completed initialization.
|
208
|
+
ACTIVE = 2
|
209
|
+
end
|
210
|
+
end
|
211
|
+
|
212
|
+
# A resource that represents an asset group.
|
213
|
+
# The purpose of an asset group is to bundle a set of assets that have
|
214
|
+
# something in common, while allowing users to add annotations to the group.
|
215
|
+
# An asset can belong to multiple groups.
|
216
|
+
# @!attribute [r] name
|
217
|
+
# @return [::String]
|
218
|
+
# Output only. The name of the group.
|
219
|
+
# @!attribute [r] create_time
|
220
|
+
# @return [::Google::Protobuf::Timestamp]
|
221
|
+
# Output only. The timestamp when the group was created.
|
222
|
+
# @!attribute [r] update_time
|
223
|
+
# @return [::Google::Protobuf::Timestamp]
|
224
|
+
# Output only. The timestamp when the group was last updated.
|
225
|
+
# @!attribute [rw] labels
|
226
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
227
|
+
# Labels as key value pairs.
|
228
|
+
# @!attribute [rw] display_name
|
229
|
+
# @return [::String]
|
230
|
+
# User-friendly display name.
|
231
|
+
# @!attribute [rw] description
|
232
|
+
# @return [::String]
|
233
|
+
# The description of the resource.
|
234
|
+
class Group
|
235
|
+
include ::Google::Protobuf::MessageExts
|
236
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
237
|
+
|
238
|
+
# @!attribute [rw] key
|
239
|
+
# @return [::String]
|
240
|
+
# @!attribute [rw] value
|
241
|
+
# @return [::String]
|
242
|
+
class LabelsEntry
|
243
|
+
include ::Google::Protobuf::MessageExts
|
244
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
245
|
+
end
|
246
|
+
end
|
247
|
+
|
248
|
+
# Message representing a frame which failed to be processed due to an error.
|
249
|
+
# @!attribute [r] name
|
250
|
+
# @return [::String]
|
251
|
+
# Output only. The identifier of the ErrorFrame.
|
252
|
+
# @!attribute [r] violations
|
253
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::FrameViolationEntry>]
|
254
|
+
# Output only. All the violations that were detected for the frame.
|
255
|
+
# @!attribute [r] original_frame
|
256
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AssetFrame]
|
257
|
+
# Output only. The frame that was originally reported.
|
258
|
+
# @!attribute [r] ingestion_time
|
259
|
+
# @return [::Google::Protobuf::Timestamp]
|
260
|
+
# Output only. Frame ingestion time.
|
261
|
+
class ErrorFrame
|
262
|
+
include ::Google::Protobuf::MessageExts
|
263
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
264
|
+
end
|
265
|
+
|
266
|
+
# Source represents an object from which asset information is
|
267
|
+
# streamed to Migration Center.
|
268
|
+
# @!attribute [r] name
|
269
|
+
# @return [::String]
|
270
|
+
# Output only. The full name of the source.
|
271
|
+
# @!attribute [r] create_time
|
272
|
+
# @return [::Google::Protobuf::Timestamp]
|
273
|
+
# Output only. The timestamp when the source was created.
|
274
|
+
# @!attribute [r] update_time
|
275
|
+
# @return [::Google::Protobuf::Timestamp]
|
276
|
+
# Output only. The timestamp when the source was last updated.
|
277
|
+
# @!attribute [rw] display_name
|
278
|
+
# @return [::String]
|
279
|
+
# User-friendly display name.
|
280
|
+
# @!attribute [rw] description
|
281
|
+
# @return [::String]
|
282
|
+
# Free-text description.
|
283
|
+
# @!attribute [rw] type
|
284
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Source::SourceType]
|
285
|
+
# Data source type.
|
286
|
+
# @!attribute [rw] priority
|
287
|
+
# @return [::Integer]
|
288
|
+
# The information confidence of the source.
|
289
|
+
# The higher the value, the higher the confidence.
|
290
|
+
# @!attribute [rw] managed
|
291
|
+
# @return [::Boolean]
|
292
|
+
# If `true`, the source is managed by other service(s).
|
293
|
+
# @!attribute [r] pending_frame_count
|
294
|
+
# @return [::Integer]
|
295
|
+
# Output only. Number of frames that are still being processed.
|
296
|
+
# @!attribute [r] error_frame_count
|
297
|
+
# @return [::Integer]
|
298
|
+
# Output only. The number of frames that were reported by the source and
|
299
|
+
# contained errors.
|
300
|
+
# @!attribute [r] state
|
301
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Source::State]
|
302
|
+
# Output only. The state of the source.
|
303
|
+
class Source
|
304
|
+
include ::Google::Protobuf::MessageExts
|
305
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
306
|
+
|
307
|
+
module SourceType
|
308
|
+
# Unspecified
|
309
|
+
SOURCE_TYPE_UNKNOWN = 0
|
310
|
+
|
311
|
+
# Manually uploaded file (e.g. CSV)
|
312
|
+
SOURCE_TYPE_UPLOAD = 1
|
313
|
+
|
314
|
+
# Guest-level info
|
315
|
+
SOURCE_TYPE_GUEST_OS_SCAN = 2
|
316
|
+
|
317
|
+
# Inventory-level scan
|
318
|
+
SOURCE_TYPE_INVENTORY_SCAN = 3
|
319
|
+
|
320
|
+
# Third-party owned sources.
|
321
|
+
SOURCE_TYPE_CUSTOM = 4
|
322
|
+
end
|
323
|
+
|
324
|
+
# Enumerates possible states of a source.
|
325
|
+
module State
|
326
|
+
# Unspecified.
|
327
|
+
STATE_UNSPECIFIED = 0
|
328
|
+
|
329
|
+
# The source is active and ready to be used.
|
330
|
+
ACTIVE = 1
|
331
|
+
|
332
|
+
# In the process of being deleted.
|
333
|
+
DELETING = 2
|
334
|
+
|
335
|
+
# Source is in an invalid state. Asset frames reported to it will be
|
336
|
+
# ignored.
|
337
|
+
INVALID = 3
|
338
|
+
end
|
339
|
+
end
|
340
|
+
|
341
|
+
# The groups and associated preference sets on which
|
342
|
+
# we can generate reports.
|
343
|
+
# @!attribute [r] name
|
344
|
+
# @return [::String]
|
345
|
+
# Output only. Name of resource.
|
346
|
+
# @!attribute [r] create_time
|
347
|
+
# @return [::Google::Protobuf::Timestamp]
|
348
|
+
# Output only. The timestamp when the resource was created.
|
349
|
+
# @!attribute [r] update_time
|
350
|
+
# @return [::Google::Protobuf::Timestamp]
|
351
|
+
# Output only. The timestamp when the resource was last updated.
|
352
|
+
# @!attribute [rw] display_name
|
353
|
+
# @return [::String]
|
354
|
+
# User-friendly display name. Maximum length is 63 characters.
|
355
|
+
# @!attribute [rw] description
|
356
|
+
# @return [::String]
|
357
|
+
# Free-text description.
|
358
|
+
# @!attribute [rw] group_preferenceset_assignments
|
359
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ReportConfig::GroupPreferenceSetAssignment>]
|
360
|
+
# Required. Collection of combinations of groups and preference sets.
|
361
|
+
class ReportConfig
|
362
|
+
include ::Google::Protobuf::MessageExts
|
363
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
364
|
+
|
365
|
+
# Represents a combination of a group with a preference set.
|
366
|
+
# @!attribute [rw] group
|
367
|
+
# @return [::String]
|
368
|
+
# Required. Name of the group.
|
369
|
+
# @!attribute [rw] preference_set
|
370
|
+
# @return [::String]
|
371
|
+
# Required. Name of the Preference Set.
|
372
|
+
class GroupPreferenceSetAssignment
|
373
|
+
include ::Google::Protobuf::MessageExts
|
374
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
375
|
+
end
|
376
|
+
end
|
377
|
+
|
378
|
+
# Report represents a point-in-time rendering of the ReportConfig results.
|
379
|
+
# @!attribute [r] name
|
380
|
+
# @return [::String]
|
381
|
+
# Output only. Name of resource.
|
382
|
+
# @!attribute [r] create_time
|
383
|
+
# @return [::Google::Protobuf::Timestamp]
|
384
|
+
# Output only. Creation timestamp.
|
385
|
+
# @!attribute [r] update_time
|
386
|
+
# @return [::Google::Protobuf::Timestamp]
|
387
|
+
# Output only. Last update timestamp.
|
388
|
+
# @!attribute [rw] display_name
|
389
|
+
# @return [::String]
|
390
|
+
# User-friendly display name. Maximum length is 63 characters.
|
391
|
+
# @!attribute [rw] description
|
392
|
+
# @return [::String]
|
393
|
+
# Free-text description.
|
394
|
+
# @!attribute [rw] type
|
395
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Report::Type]
|
396
|
+
# Report type.
|
397
|
+
# @!attribute [rw] state
|
398
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Report::State]
|
399
|
+
# Report creation state.
|
400
|
+
# @!attribute [r] summary
|
401
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary]
|
402
|
+
# Output only. Summary view of the Report.
|
403
|
+
class Report
|
404
|
+
include ::Google::Protobuf::MessageExts
|
405
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
406
|
+
|
407
|
+
# Report type.
|
408
|
+
module Type
|
409
|
+
# Default Report type.
|
410
|
+
TYPE_UNSPECIFIED = 0
|
411
|
+
|
412
|
+
# Total cost of ownership Report type.
|
413
|
+
TOTAL_COST_OF_OWNERSHIP = 1
|
414
|
+
end
|
415
|
+
|
416
|
+
# Report creation state.
|
417
|
+
module State
|
418
|
+
# Default Report creation state.
|
419
|
+
STATE_UNSPECIFIED = 0
|
420
|
+
|
421
|
+
# Creating Report.
|
422
|
+
PENDING = 1
|
423
|
+
|
424
|
+
# Successfully created Report.
|
425
|
+
SUCCEEDED = 2
|
426
|
+
|
427
|
+
# Failed to create Report.
|
428
|
+
FAILED = 3
|
429
|
+
end
|
430
|
+
end
|
431
|
+
|
432
|
+
# Represents the metadata of the long-running operation.
|
433
|
+
# @!attribute [r] create_time
|
434
|
+
# @return [::Google::Protobuf::Timestamp]
|
435
|
+
# Output only. The time the operation was created.
|
436
|
+
# @!attribute [r] end_time
|
437
|
+
# @return [::Google::Protobuf::Timestamp]
|
438
|
+
# Output only. The time the operation finished running.
|
439
|
+
# @!attribute [r] target
|
440
|
+
# @return [::String]
|
441
|
+
# Output only. Server-defined resource path for the target of the operation.
|
442
|
+
# @!attribute [r] verb
|
443
|
+
# @return [::String]
|
444
|
+
# Output only. Name of the verb executed by the operation.
|
445
|
+
# @!attribute [r] status_message
|
446
|
+
# @return [::String]
|
447
|
+
# Output only. Human-readable status of the operation, if any.
|
448
|
+
# @!attribute [r] requested_cancellation
|
449
|
+
# @return [::Boolean]
|
450
|
+
# Output only. Identifies whether the user has requested cancellation
|
451
|
+
# of the operation. Operations that have been cancelled successfully
|
452
|
+
# have [Operation.error][] value with a
|
453
|
+
# {::Google::Rpc::Status#code google.rpc.Status.code} of 1, corresponding to
|
454
|
+
# `Code.CANCELLED`.
|
455
|
+
# @!attribute [r] api_version
|
456
|
+
# @return [::String]
|
457
|
+
# Output only. API version used to start the operation.
|
458
|
+
class OperationMetadata
|
459
|
+
include ::Google::Protobuf::MessageExts
|
460
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
461
|
+
end
|
462
|
+
|
463
|
+
# Message for requesting a list of assets.
|
464
|
+
# @!attribute [rw] parent
|
465
|
+
# @return [::String]
|
466
|
+
# Required. Parent value for `ListAssetsRequest`.
|
467
|
+
# @!attribute [rw] page_size
|
468
|
+
# @return [::Integer]
|
469
|
+
# Requested page size. Server may return fewer items than requested.
|
470
|
+
# If unspecified, server will pick an appropriate default.
|
471
|
+
# @!attribute [rw] page_token
|
472
|
+
# @return [::String]
|
473
|
+
# A token identifying a page of results the server should return.
|
474
|
+
# @!attribute [rw] filter
|
475
|
+
# @return [::String]
|
476
|
+
# Filtering results.
|
477
|
+
# @!attribute [rw] order_by
|
478
|
+
# @return [::String]
|
479
|
+
# Field to sort by. See https://google.aip.dev/132#ordering for more details.
|
480
|
+
# @!attribute [rw] view
|
481
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AssetView]
|
482
|
+
# View of the assets. Defaults to BASIC.
|
483
|
+
class ListAssetsRequest
|
484
|
+
include ::Google::Protobuf::MessageExts
|
485
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
486
|
+
end
|
487
|
+
|
488
|
+
# Response message for listing assets.
|
489
|
+
# @!attribute [rw] assets
|
490
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::Asset>]
|
491
|
+
# A list of assets.
|
492
|
+
# @!attribute [rw] next_page_token
|
493
|
+
# @return [::String]
|
494
|
+
# A token identifying a page of results the server should return.
|
495
|
+
# @!attribute [rw] unreachable
|
496
|
+
# @return [::Array<::String>]
|
497
|
+
# Locations that could not be reached.
|
498
|
+
class ListAssetsResponse
|
499
|
+
include ::Google::Protobuf::MessageExts
|
500
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
501
|
+
end
|
502
|
+
|
503
|
+
# Message for getting a Asset.
|
504
|
+
# @!attribute [rw] name
|
505
|
+
# @return [::String]
|
506
|
+
# Required. Name of the resource.
|
507
|
+
# @!attribute [rw] view
|
508
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AssetView]
|
509
|
+
# View of the assets. Defaults to BASIC.
|
510
|
+
class GetAssetRequest
|
511
|
+
include ::Google::Protobuf::MessageExts
|
512
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
513
|
+
end
|
514
|
+
|
515
|
+
# A request to update an asset.
|
516
|
+
# @!attribute [rw] update_mask
|
517
|
+
# @return [::Google::Protobuf::FieldMask]
|
518
|
+
# Required. Field mask is used to specify the fields to be overwritten in the
|
519
|
+
# `Asset` resource by the update.
|
520
|
+
# The values specified in the `update_mask` field are relative to the
|
521
|
+
# resource, not the full request.
|
522
|
+
# A field will be overwritten if it is in the mask.
|
523
|
+
# A single * value in the mask lets you to overwrite all fields.
|
524
|
+
# @!attribute [rw] asset
|
525
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Asset]
|
526
|
+
# Required. The resource being updated.
|
527
|
+
# @!attribute [rw] request_id
|
528
|
+
# @return [::String]
|
529
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
530
|
+
# request ID so that if you must retry your request, the server will know to
|
531
|
+
# ignore the request if it has already been completed. The server will
|
532
|
+
# guarantee that for at least 60 minutes since the first request.
|
533
|
+
#
|
534
|
+
# For example, consider a situation where you make an initial request and
|
535
|
+
# the request times out. If you make the request again with the same request
|
536
|
+
# ID, the server can check if original operation with the same request ID
|
537
|
+
# was received, and if so, will ignore the second request. This prevents
|
538
|
+
# clients from accidentally creating duplicate commitments.
|
539
|
+
#
|
540
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
541
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
542
|
+
class UpdateAssetRequest
|
543
|
+
include ::Google::Protobuf::MessageExts
|
544
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
545
|
+
end
|
546
|
+
|
547
|
+
# A request to update a list of assets.
|
548
|
+
# @!attribute [rw] parent
|
549
|
+
# @return [::String]
|
550
|
+
# Required. Parent value for batch asset update.
|
551
|
+
# @!attribute [rw] requests
|
552
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::UpdateAssetRequest>]
|
553
|
+
# Required. The request message specifying the resources to update.
|
554
|
+
# A maximum of 1000 assets can be modified in a batch.
|
555
|
+
class BatchUpdateAssetsRequest
|
556
|
+
include ::Google::Protobuf::MessageExts
|
557
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
558
|
+
end
|
559
|
+
|
560
|
+
# Response for updating a list of assets.
|
561
|
+
# @!attribute [rw] assets
|
562
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::Asset>]
|
563
|
+
# Update asset content.
|
564
|
+
# The content only includes values after field mask being applied.
|
565
|
+
class BatchUpdateAssetsResponse
|
566
|
+
include ::Google::Protobuf::MessageExts
|
567
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
568
|
+
end
|
569
|
+
|
570
|
+
# A request to delete an asset.
|
571
|
+
# @!attribute [rw] name
|
572
|
+
# @return [::String]
|
573
|
+
# Required. Name of the resource.
|
574
|
+
# @!attribute [rw] request_id
|
575
|
+
# @return [::String]
|
576
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
577
|
+
# request ID so that if you must retry your request, the server will know to
|
578
|
+
# ignore the request if it has already been completed. The server will
|
579
|
+
# guarantee that for at least 60 minutes after the first request.
|
580
|
+
#
|
581
|
+
# For example, consider a situation where you make an initial request and
|
582
|
+
# the request times out. If you make the request again with the same request
|
583
|
+
# ID, the server can check if original operation with the same request ID
|
584
|
+
# was received, and if so, will ignore the second request. This prevents
|
585
|
+
# clients from accidentally creating duplicate commitments.
|
586
|
+
#
|
587
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
588
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
589
|
+
class DeleteAssetRequest
|
590
|
+
include ::Google::Protobuf::MessageExts
|
591
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
592
|
+
end
|
593
|
+
|
594
|
+
# A request to delete a list of asset.
|
595
|
+
# @!attribute [rw] parent
|
596
|
+
# @return [::String]
|
597
|
+
# Required. Parent value for batch asset delete.
|
598
|
+
# @!attribute [rw] names
|
599
|
+
# @return [::Array<::String>]
|
600
|
+
# Required. The IDs of the assets to delete.
|
601
|
+
# A maximum of 1000 assets can be deleted in a batch.
|
602
|
+
# Format: projects/\\{project}/locations/\\{location}/assets/\\{name}.
|
603
|
+
# @!attribute [rw] allow_missing
|
604
|
+
# @return [::Boolean]
|
605
|
+
# Optional. When this value is set to `true` the request is a no-op for
|
606
|
+
# non-existing assets. See https://google.aip.dev/135#delete-if-existing for
|
607
|
+
# additional details. Default value is `false`.
|
608
|
+
class BatchDeleteAssetsRequest
|
609
|
+
include ::Google::Protobuf::MessageExts
|
610
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
611
|
+
end
|
612
|
+
|
613
|
+
# A request to report a set of asset frames.
|
614
|
+
# @!attribute [rw] parent
|
615
|
+
# @return [::String]
|
616
|
+
# Required. Parent of the resource.
|
617
|
+
# @!attribute [rw] frames
|
618
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Frames]
|
619
|
+
# Collection of frames data.
|
620
|
+
# @!attribute [rw] source
|
621
|
+
# @return [::String]
|
622
|
+
# Required. Reference to a source.
|
623
|
+
class ReportAssetFramesRequest
|
624
|
+
include ::Google::Protobuf::MessageExts
|
625
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
626
|
+
end
|
627
|
+
|
628
|
+
# A response to a call to `ReportAssetFrame`.
|
629
|
+
class ReportAssetFramesResponse
|
630
|
+
include ::Google::Protobuf::MessageExts
|
631
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
632
|
+
end
|
633
|
+
|
634
|
+
# A request to aggregate one or more values.
|
635
|
+
# @!attribute [rw] parent
|
636
|
+
# @return [::String]
|
637
|
+
# Required. Parent value for `AggregateAssetsValuesRequest`.
|
638
|
+
# @!attribute [rw] aggregations
|
639
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::Aggregation>]
|
640
|
+
# Array of aggregations to perform.
|
641
|
+
# Up to 25 aggregations can be defined.
|
642
|
+
# @!attribute [rw] filter
|
643
|
+
# @return [::String]
|
644
|
+
# The aggregation will be performed on assets that match the provided filter.
|
645
|
+
class AggregateAssetsValuesRequest
|
646
|
+
include ::Google::Protobuf::MessageExts
|
647
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
648
|
+
end
|
649
|
+
|
650
|
+
# A response to a request to aggregated assets values.
|
651
|
+
# @!attribute [rw] results
|
652
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::AggregationResult>]
|
653
|
+
# The aggregation results.
|
654
|
+
class AggregateAssetsValuesResponse
|
655
|
+
include ::Google::Protobuf::MessageExts
|
656
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
657
|
+
end
|
658
|
+
|
659
|
+
# A request to create an import job.
|
660
|
+
# @!attribute [rw] parent
|
661
|
+
# @return [::String]
|
662
|
+
# Required. Value for parent.
|
663
|
+
# @!attribute [rw] import_job_id
|
664
|
+
# @return [::String]
|
665
|
+
# Required. ID of the import job.
|
666
|
+
# @!attribute [rw] import_job
|
667
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ImportJob]
|
668
|
+
# Required. The resource being created.
|
669
|
+
# @!attribute [rw] request_id
|
670
|
+
# @return [::String]
|
671
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
672
|
+
# request ID so that if you must retry your request, the server will know to
|
673
|
+
# ignore the request if it has already been completed. The server will
|
674
|
+
# guarantee that for at least 60 minutes since the first request.
|
675
|
+
#
|
676
|
+
# For example, consider a situation where you make an initial request and
|
677
|
+
# the request times out. If you make the request again with the same request
|
678
|
+
# ID, the server can check if original operation with the same request ID
|
679
|
+
# was received, and if so, will ignore the second request. This prevents
|
680
|
+
# clients from accidentally creating duplicate commitments.
|
681
|
+
#
|
682
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
683
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
684
|
+
class CreateImportJobRequest
|
685
|
+
include ::Google::Protobuf::MessageExts
|
686
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
687
|
+
end
|
688
|
+
|
689
|
+
# A request to list import jobs.
|
690
|
+
# @!attribute [rw] parent
|
691
|
+
# @return [::String]
|
692
|
+
# Required. Parent value for `ListImportJobsRequest`.
|
693
|
+
# @!attribute [rw] page_size
|
694
|
+
# @return [::Integer]
|
695
|
+
# Requested page size. Server may return fewer items than requested.
|
696
|
+
# If unspecified, server will pick an appropriate default.
|
697
|
+
# @!attribute [rw] page_token
|
698
|
+
# @return [::String]
|
699
|
+
# A token identifying a page of results the server should return.
|
700
|
+
# @!attribute [rw] filter
|
701
|
+
# @return [::String]
|
702
|
+
# Filtering results.
|
703
|
+
# @!attribute [rw] order_by
|
704
|
+
# @return [::String]
|
705
|
+
# Field to sort by. See https://google.aip.dev/132#ordering for more details.
|
706
|
+
# @!attribute [rw] view
|
707
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ImportJobView]
|
708
|
+
# Optional. The level of details of each import job.
|
709
|
+
# Default value is BASIC.
|
710
|
+
class ListImportJobsRequest
|
711
|
+
include ::Google::Protobuf::MessageExts
|
712
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
713
|
+
end
|
714
|
+
|
715
|
+
# A response for listing import jobs.
|
716
|
+
# @!attribute [rw] import_jobs
|
717
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ImportJob>]
|
718
|
+
# The list of import jobs.
|
719
|
+
# @!attribute [rw] next_page_token
|
720
|
+
# @return [::String]
|
721
|
+
# A token identifying a page of results the server should return.
|
722
|
+
# @!attribute [rw] unreachable
|
723
|
+
# @return [::Array<::String>]
|
724
|
+
# Locations that could not be reached.
|
725
|
+
class ListImportJobsResponse
|
726
|
+
include ::Google::Protobuf::MessageExts
|
727
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
728
|
+
end
|
729
|
+
|
730
|
+
# A request to get an import job.
|
731
|
+
# @!attribute [rw] name
|
732
|
+
# @return [::String]
|
733
|
+
# Required. Name of the resource.
|
734
|
+
# @!attribute [rw] view
|
735
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ImportJobView]
|
736
|
+
# Optional. The level of details of the import job.
|
737
|
+
# Default value is FULL.
|
738
|
+
class GetImportJobRequest
|
739
|
+
include ::Google::Protobuf::MessageExts
|
740
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
741
|
+
end
|
742
|
+
|
743
|
+
# A request to delete an import job.
|
744
|
+
# @!attribute [rw] name
|
745
|
+
# @return [::String]
|
746
|
+
# Required. Name of the resource.
|
747
|
+
# @!attribute [rw] request_id
|
748
|
+
# @return [::String]
|
749
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
750
|
+
# request ID so that if you must retry your request, the server will know to
|
751
|
+
# ignore the request if it has already been completed. The server will
|
752
|
+
# guarantee that for at least 60 minutes after the first request.
|
753
|
+
#
|
754
|
+
# For example, consider a situation where you make an initial request and
|
755
|
+
# the request times out. If you make the request again with the same request
|
756
|
+
# ID, the server can check if original operation with the same request ID
|
757
|
+
# was received, and if so, will ignore the second request. This prevents
|
758
|
+
# clients from accidentally creating duplicate commitments.
|
759
|
+
#
|
760
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
761
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
762
|
+
# @!attribute [rw] force
|
763
|
+
# @return [::Boolean]
|
764
|
+
# Optional. If set to `true`, any `ImportDataFiles` of this job will also be
|
765
|
+
# deleted If set to `false`, the request only works if the job has no data
|
766
|
+
# files.
|
767
|
+
class DeleteImportJobRequest
|
768
|
+
include ::Google::Protobuf::MessageExts
|
769
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
770
|
+
end
|
771
|
+
|
772
|
+
# A request to update an import job.
|
773
|
+
# @!attribute [rw] update_mask
|
774
|
+
# @return [::Google::Protobuf::FieldMask]
|
775
|
+
# Required. Field mask is used to specify the fields to be overwritten in the
|
776
|
+
# `Asset` resource by the update.
|
777
|
+
# The values specified in the `update_mask` field are relative to the
|
778
|
+
# resource, not the full request.
|
779
|
+
# A field will be overwritten if it is in the mask.
|
780
|
+
# A single * value in the mask lets you to overwrite all fields.
|
781
|
+
# @!attribute [rw] import_job
|
782
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ImportJob]
|
783
|
+
# Required. The resource being updated
|
784
|
+
# @!attribute [rw] request_id
|
785
|
+
# @return [::String]
|
786
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
787
|
+
# request ID so that if you must retry your request, the server will know to
|
788
|
+
# ignore the request if it has already been completed. The server will
|
789
|
+
# guarantee that for at least 60 minutes since the first request.
|
790
|
+
#
|
791
|
+
# For example, consider a situation where you make an initial request and
|
792
|
+
# the request times out. If you make the request again with the same request
|
793
|
+
# ID, the server can check if original operation with the same request ID
|
794
|
+
# was received, and if so, will ignore the second request. This prevents
|
795
|
+
# clients from accidentally creating duplicate commitments.
|
796
|
+
#
|
797
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
798
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
799
|
+
class UpdateImportJobRequest
|
800
|
+
include ::Google::Protobuf::MessageExts
|
801
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
802
|
+
end
|
803
|
+
|
804
|
+
# A request to validate an import job.
|
805
|
+
# @!attribute [rw] name
|
806
|
+
# @return [::String]
|
807
|
+
# Required. The name of the import job to validate.
|
808
|
+
# @!attribute [rw] request_id
|
809
|
+
# @return [::String]
|
810
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
811
|
+
# request ID so that if you must retry your request, the server will know to
|
812
|
+
# ignore the request if it has already been completed. The server will
|
813
|
+
# guarantee that for at least 60 minutes after the first request.
|
814
|
+
#
|
815
|
+
# For example, consider a situation where you make an initial request and
|
816
|
+
# the request times out. If you make the request again with the same request
|
817
|
+
# ID, the server can check if original operation with the same request ID
|
818
|
+
# was received, and if so, will ignore the second request. This prevents
|
819
|
+
# clients from accidentally creating duplicate commitments.
|
820
|
+
#
|
821
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
822
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
823
|
+
class ValidateImportJobRequest
|
824
|
+
include ::Google::Protobuf::MessageExts
|
825
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
826
|
+
end
|
827
|
+
|
828
|
+
# A request to run an import job.
|
829
|
+
# @!attribute [rw] name
|
830
|
+
# @return [::String]
|
831
|
+
# Required. The name of the import job to run.
|
832
|
+
# @!attribute [rw] request_id
|
833
|
+
# @return [::String]
|
834
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
835
|
+
# request ID so that if you must retry your request, the server will know to
|
836
|
+
# ignore the request if it has already been completed. The server will
|
837
|
+
# guarantee that for at least 60 minutes after the first request.
|
838
|
+
#
|
839
|
+
# For example, consider a situation where you make an initial request and
|
840
|
+
# the request times out. If you make the request again with the same request
|
841
|
+
# ID, the server can check if original operation with the same request ID
|
842
|
+
# was received, and if so, will ignore the second request. This prevents
|
843
|
+
# clients from accidentally creating duplicate commitments.
|
844
|
+
#
|
845
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
846
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
847
|
+
class RunImportJobRequest
|
848
|
+
include ::Google::Protobuf::MessageExts
|
849
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
850
|
+
end
|
851
|
+
|
852
|
+
# A request to get an import data file.
|
853
|
+
# @!attribute [rw] name
|
854
|
+
# @return [::String]
|
855
|
+
# Required. Name of the ImportDataFile.
|
856
|
+
class GetImportDataFileRequest
|
857
|
+
include ::Google::Protobuf::MessageExts
|
858
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
859
|
+
end
|
860
|
+
|
861
|
+
# A request to list import data files of an import job.
|
862
|
+
# @!attribute [rw] parent
|
863
|
+
# @return [::String]
|
864
|
+
# Required. Name of the parent of the `ImportDataFiles` resource.
|
865
|
+
# @!attribute [rw] page_size
|
866
|
+
# @return [::Integer]
|
867
|
+
# The maximum number of data files to return. The service may return
|
868
|
+
# fewer than this value. If unspecified, at most 500 data files will be
|
869
|
+
# returned. The maximum value is 1000; values above 1000 will be coerced to
|
870
|
+
# 1000.
|
871
|
+
# @!attribute [rw] page_token
|
872
|
+
# @return [::String]
|
873
|
+
# A page token, received from a previous `ListImportDataFiles` call.
|
874
|
+
# Provide this to retrieve the subsequent page.
|
875
|
+
#
|
876
|
+
# When paginating, all other parameters provided to `ListImportDataFiles`
|
877
|
+
# must match the call that provided the page token.
|
878
|
+
# @!attribute [rw] filter
|
879
|
+
# @return [::String]
|
880
|
+
# Filtering results.
|
881
|
+
# @!attribute [rw] order_by
|
882
|
+
# @return [::String]
|
883
|
+
# Field to sort by. See https://google.aip.dev/132#ordering for more details.
|
884
|
+
class ListImportDataFilesRequest
|
885
|
+
include ::Google::Protobuf::MessageExts
|
886
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
887
|
+
end
|
888
|
+
|
889
|
+
# Response for listing payload files of an import job.
|
890
|
+
# @!attribute [rw] import_data_files
|
891
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ImportDataFile>]
|
892
|
+
# The list of import data files.
|
893
|
+
# @!attribute [rw] next_page_token
|
894
|
+
# @return [::String]
|
895
|
+
# A token that can be sent as `page_token` to retrieve the next page.
|
896
|
+
# If this field is omitted, there are no subsequent pages.
|
897
|
+
# @!attribute [rw] unreachable
|
898
|
+
# @return [::Array<::String>]
|
899
|
+
# Locations that could not be reached.
|
900
|
+
class ListImportDataFilesResponse
|
901
|
+
include ::Google::Protobuf::MessageExts
|
902
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
903
|
+
end
|
904
|
+
|
905
|
+
# A request to create an `ImportDataFile` resource.
|
906
|
+
# @!attribute [rw] parent
|
907
|
+
# @return [::String]
|
908
|
+
# Required. Name of the parent of the ImportDataFile.
|
909
|
+
# @!attribute [rw] import_data_file_id
|
910
|
+
# @return [::String]
|
911
|
+
# Required. The ID of the new data file.
|
912
|
+
# @!attribute [rw] import_data_file
|
913
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ImportDataFile]
|
914
|
+
# Required. The resource being created.
|
915
|
+
# @!attribute [rw] request_id
|
916
|
+
# @return [::String]
|
917
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
918
|
+
# request ID so that if you must retry your request, the server will know to
|
919
|
+
# ignore the request if it has already been completed. The server will
|
920
|
+
# guarantee that for at least 60 minutes since the first request.
|
921
|
+
#
|
922
|
+
# For example, consider a situation where you make an initial request and
|
923
|
+
# the request times out. If you make the request again with the same request
|
924
|
+
# ID, the server can check if original operation with the same request ID
|
925
|
+
# was received, and if so, will ignore the second request. This prevents
|
926
|
+
# clients from accidentally creating duplicate commitments.
|
927
|
+
#
|
928
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
929
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
930
|
+
class CreateImportDataFileRequest
|
931
|
+
include ::Google::Protobuf::MessageExts
|
932
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
933
|
+
end
|
934
|
+
|
935
|
+
# A request to delete an `ImportDataFile` resource.
|
936
|
+
# @!attribute [rw] name
|
937
|
+
# @return [::String]
|
938
|
+
# Required. Name of the ImportDataFile to delete.
|
939
|
+
# @!attribute [rw] request_id
|
940
|
+
# @return [::String]
|
941
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
942
|
+
# request ID so that if you must retry your request, the server will know to
|
943
|
+
# ignore the request if it has already been completed. The server will
|
944
|
+
# guarantee that for at least 60 minutes after the first request.
|
945
|
+
#
|
946
|
+
# For example, consider a situation where you make an initial request and
|
947
|
+
# the request times out. If you make the request again with the same request
|
948
|
+
# ID, the server can check if original operation with the same request ID
|
949
|
+
# was received, and if so, will ignore the second request. This prevents
|
950
|
+
# clients from accidentally creating duplicate commitments.
|
951
|
+
#
|
952
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
953
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
954
|
+
class DeleteImportDataFileRequest
|
955
|
+
include ::Google::Protobuf::MessageExts
|
956
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
957
|
+
end
|
958
|
+
|
959
|
+
# A request to list groups.
|
960
|
+
# @!attribute [rw] parent
|
961
|
+
# @return [::String]
|
962
|
+
# Required. Parent value for `ListGroupsRequest`.
|
963
|
+
# @!attribute [rw] page_size
|
964
|
+
# @return [::Integer]
|
965
|
+
# Requested page size. Server may return fewer items than requested.
|
966
|
+
# If unspecified, server will pick an appropriate default.
|
967
|
+
# @!attribute [rw] page_token
|
968
|
+
# @return [::String]
|
969
|
+
# A token identifying a page of results the server should return.
|
970
|
+
# @!attribute [rw] filter
|
971
|
+
# @return [::String]
|
972
|
+
# Filtering results.
|
973
|
+
# @!attribute [rw] order_by
|
974
|
+
# @return [::String]
|
975
|
+
# Field to sort by. See https://google.aip.dev/132#ordering for more details.
|
976
|
+
class ListGroupsRequest
|
977
|
+
include ::Google::Protobuf::MessageExts
|
978
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
979
|
+
end
|
980
|
+
|
981
|
+
# A response for listing groups.
|
982
|
+
# @!attribute [rw] groups
|
983
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::Group>]
|
984
|
+
# The list of Group
|
985
|
+
# @!attribute [rw] next_page_token
|
986
|
+
# @return [::String]
|
987
|
+
# A token identifying a page of results the server should return.
|
988
|
+
# @!attribute [rw] unreachable
|
989
|
+
# @return [::Array<::String>]
|
990
|
+
# Locations that could not be reached.
|
991
|
+
class ListGroupsResponse
|
992
|
+
include ::Google::Protobuf::MessageExts
|
993
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
994
|
+
end
|
995
|
+
|
996
|
+
# A request to get a group.
|
997
|
+
# @!attribute [rw] name
|
998
|
+
# @return [::String]
|
999
|
+
# Required. Name of the resource.
|
1000
|
+
class GetGroupRequest
|
1001
|
+
include ::Google::Protobuf::MessageExts
|
1002
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1003
|
+
end
|
1004
|
+
|
1005
|
+
# A request to create a group.
|
1006
|
+
# @!attribute [rw] parent
|
1007
|
+
# @return [::String]
|
1008
|
+
# Required. Value for parent.
|
1009
|
+
# @!attribute [rw] group_id
|
1010
|
+
# @return [::String]
|
1011
|
+
# Required. User specified ID for the group. It will become the last
|
1012
|
+
# component of the group name. The ID must be unique within the project, must
|
1013
|
+
# conform with RFC-1034, is restricted to lower-cased letters, and has a
|
1014
|
+
# maximum length of 63 characters. The ID must match the regular expression:
|
1015
|
+
# `[a-z]([a-z0-9-]{0,61}[a-z0-9])?`.
|
1016
|
+
# @!attribute [rw] group
|
1017
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Group]
|
1018
|
+
# Required. The group resource being created.
|
1019
|
+
# @!attribute [rw] request_id
|
1020
|
+
# @return [::String]
|
1021
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
1022
|
+
# request ID so that if you must retry your request, the server will know to
|
1023
|
+
# ignore the request if it has already been completed. The server will
|
1024
|
+
# guarantee that for at least 60 minutes since the first request.
|
1025
|
+
#
|
1026
|
+
# For example, consider a situation where you make an initial request and
|
1027
|
+
# the request times out. If you make the request again with the same request
|
1028
|
+
# ID, the server can check if original operation with the same request ID
|
1029
|
+
# was received, and if so, will ignore the second request. This prevents
|
1030
|
+
# clients from accidentally creating duplicate commitments.
|
1031
|
+
#
|
1032
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
1033
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
1034
|
+
class CreateGroupRequest
|
1035
|
+
include ::Google::Protobuf::MessageExts
|
1036
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1037
|
+
end
|
1038
|
+
|
1039
|
+
# A request to update a group.
|
1040
|
+
# @!attribute [rw] update_mask
|
1041
|
+
# @return [::Google::Protobuf::FieldMask]
|
1042
|
+
# Required. Field mask is used to specify the fields to be overwritten in the
|
1043
|
+
# `Group` resource by the update.
|
1044
|
+
# The values specified in the `update_mask` are relative to the resource, not
|
1045
|
+
# the full request. A field will be overwritten if it is in the mask.
|
1046
|
+
# A single * value in the mask lets you to overwrite all fields.
|
1047
|
+
# @!attribute [rw] group
|
1048
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Group]
|
1049
|
+
# Required. The group resource being updated.
|
1050
|
+
# @!attribute [rw] request_id
|
1051
|
+
# @return [::String]
|
1052
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
1053
|
+
# request ID so that if you must retry your request, the server will know to
|
1054
|
+
# ignore the request if it has already been completed. The server will
|
1055
|
+
# guarantee that for at least 60 minutes since the first request.
|
1056
|
+
#
|
1057
|
+
# For example, consider a situation where you make an initial request and
|
1058
|
+
# the request times out. If you make the request again with the same request
|
1059
|
+
# ID, the server can check if original operation with the same request ID
|
1060
|
+
# was received, and if so, will ignore the second request. This prevents
|
1061
|
+
# clients from accidentally creating duplicate commitments.
|
1062
|
+
#
|
1063
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
1064
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
1065
|
+
class UpdateGroupRequest
|
1066
|
+
include ::Google::Protobuf::MessageExts
|
1067
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1068
|
+
end
|
1069
|
+
|
1070
|
+
# A request to delete a group.
|
1071
|
+
# @!attribute [rw] name
|
1072
|
+
# @return [::String]
|
1073
|
+
# Required. Name of the group resource.
|
1074
|
+
# @!attribute [rw] request_id
|
1075
|
+
# @return [::String]
|
1076
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
1077
|
+
# request ID so that if you must retry your request, the server will know to
|
1078
|
+
# ignore the request if it has already been completed. The server will
|
1079
|
+
# guarantee that for at least 60 minutes after the first request.
|
1080
|
+
#
|
1081
|
+
# For example, consider a situation where you make an initial request and
|
1082
|
+
# the request times out. If you make the request again with the same request
|
1083
|
+
# ID, the server can check if original operation with the same request ID
|
1084
|
+
# was received, and if so, will ignore the second request. This prevents
|
1085
|
+
# clients from accidentally creating duplicate commitments.
|
1086
|
+
#
|
1087
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
1088
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
1089
|
+
class DeleteGroupRequest
|
1090
|
+
include ::Google::Protobuf::MessageExts
|
1091
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
# A request to add assets to a group.
|
1095
|
+
# @!attribute [rw] group
|
1096
|
+
# @return [::String]
|
1097
|
+
# Required. Group reference.
|
1098
|
+
# @!attribute [rw] request_id
|
1099
|
+
# @return [::String]
|
1100
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
1101
|
+
# request ID so that if you must retry your request, the server will know to
|
1102
|
+
# ignore the request if it has already been completed. The server will
|
1103
|
+
# guarantee that for at least 60 minutes after the first request.
|
1104
|
+
#
|
1105
|
+
# For example, consider a situation where you make an initial request and
|
1106
|
+
# the request times out. If you make the request again with the same request
|
1107
|
+
# ID, the server can check if original operation with the same request ID
|
1108
|
+
# was received, and if so, will ignore the second request. This prevents
|
1109
|
+
# clients from accidentally creating duplicate commitments.
|
1110
|
+
#
|
1111
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
1112
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
1113
|
+
# @!attribute [rw] assets
|
1114
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AssetList]
|
1115
|
+
# Required. List of assets to be added.
|
1116
|
+
# The maximum number of assets that can be added in a single request is
|
1117
|
+
# 1000.
|
1118
|
+
# @!attribute [rw] allow_existing
|
1119
|
+
# @return [::Boolean]
|
1120
|
+
# Optional. When this value is set to `false` and one of the given assets is
|
1121
|
+
# already an existing member of the group, the operation fails with an
|
1122
|
+
# `Already Exists` error. When set to `true` this situation is silently
|
1123
|
+
# ignored by the server.
|
1124
|
+
#
|
1125
|
+
# Default value is `false`.
|
1126
|
+
class AddAssetsToGroupRequest
|
1127
|
+
include ::Google::Protobuf::MessageExts
|
1128
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1129
|
+
end
|
1130
|
+
|
1131
|
+
# A request to remove assets from a group.
|
1132
|
+
# @!attribute [rw] group
|
1133
|
+
# @return [::String]
|
1134
|
+
# Required. Group reference.
|
1135
|
+
# @!attribute [rw] request_id
|
1136
|
+
# @return [::String]
|
1137
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
1138
|
+
# request ID so that if you must retry your request, the server will know to
|
1139
|
+
# ignore the request if it has already been completed. The server will
|
1140
|
+
# guarantee that for at least 60 minutes after the first request.
|
1141
|
+
#
|
1142
|
+
# For example, consider a situation where you make an initial request and
|
1143
|
+
# the request times out. If you make the request again with the same request
|
1144
|
+
# ID, the server can check if original operation with the same request ID
|
1145
|
+
# was received, and if so, will ignore the second request. This prevents
|
1146
|
+
# clients from accidentally creating duplicate commitments.
|
1147
|
+
#
|
1148
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
1149
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
1150
|
+
# @!attribute [rw] assets
|
1151
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AssetList]
|
1152
|
+
# Required. List of assets to be removed.
|
1153
|
+
# The maximum number of assets that can be removed in a single request is
|
1154
|
+
# 1000.
|
1155
|
+
# @!attribute [rw] allow_missing
|
1156
|
+
# @return [::Boolean]
|
1157
|
+
# Optional. When this value is set to `false` and one of the given assets is
|
1158
|
+
# not an existing member of the group, the operation fails with a `Not Found`
|
1159
|
+
# error. When set to `true` this situation is silently ignored by the server.
|
1160
|
+
#
|
1161
|
+
# Default value is `false`.
|
1162
|
+
class RemoveAssetsFromGroupRequest
|
1163
|
+
include ::Google::Protobuf::MessageExts
|
1164
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1165
|
+
end
|
1166
|
+
|
1167
|
+
# A request to list error frames for a source.
|
1168
|
+
# @!attribute [rw] parent
|
1169
|
+
# @return [::String]
|
1170
|
+
# Required. Parent value (the source) for `ListErrorFramesRequest`.
|
1171
|
+
# @!attribute [rw] page_size
|
1172
|
+
# @return [::Integer]
|
1173
|
+
# Requested page size. Server may return fewer items than requested.
|
1174
|
+
# If unspecified, server will pick an appropriate default.
|
1175
|
+
# @!attribute [rw] page_token
|
1176
|
+
# @return [::String]
|
1177
|
+
# A token identifying a page of results the server should return.
|
1178
|
+
# @!attribute [rw] view
|
1179
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ErrorFrameView]
|
1180
|
+
# Optional. An optional view mode to control the level of details of each
|
1181
|
+
# error frame. The default is a BASIC frame view.
|
1182
|
+
class ListErrorFramesRequest
|
1183
|
+
include ::Google::Protobuf::MessageExts
|
1184
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1185
|
+
end
|
1186
|
+
|
1187
|
+
# A response for listing error frames.
|
1188
|
+
# @!attribute [rw] error_frames
|
1189
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ErrorFrame>]
|
1190
|
+
# The list of error frames.
|
1191
|
+
# @!attribute [rw] next_page_token
|
1192
|
+
# @return [::String]
|
1193
|
+
# A token identifying a page of results the server should return.
|
1194
|
+
# @!attribute [rw] unreachable
|
1195
|
+
# @return [::Array<::String>]
|
1196
|
+
# Locations that could not be reached.
|
1197
|
+
class ListErrorFramesResponse
|
1198
|
+
include ::Google::Protobuf::MessageExts
|
1199
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1200
|
+
end
|
1201
|
+
|
1202
|
+
# @!attribute [rw] name
|
1203
|
+
# @return [::String]
|
1204
|
+
# Required. The name of the frame to retrieve.
|
1205
|
+
# Format:
|
1206
|
+
# projects/\\{project}/locations/\\{location}/sources/\\{source}/errorFrames/\\{error_frame}
|
1207
|
+
# @!attribute [rw] view
|
1208
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ErrorFrameView]
|
1209
|
+
# Optional. An optional view mode to control the level of details for the
|
1210
|
+
# frame. The default is a basic frame view.
|
1211
|
+
class GetErrorFrameRequest
|
1212
|
+
include ::Google::Protobuf::MessageExts
|
1213
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1214
|
+
end
|
1215
|
+
|
1216
|
+
# A request for a list of sources.
|
1217
|
+
# @!attribute [rw] parent
|
1218
|
+
# @return [::String]
|
1219
|
+
# Required. Parent value for `ListSourcesRequest`.
|
1220
|
+
# @!attribute [rw] page_size
|
1221
|
+
# @return [::Integer]
|
1222
|
+
# Requested page size. The server may return fewer items than requested.
|
1223
|
+
# If unspecified, the server will pick an appropriate default value.
|
1224
|
+
# @!attribute [rw] page_token
|
1225
|
+
# @return [::String]
|
1226
|
+
# A token identifying a page of results that the server should return.
|
1227
|
+
# @!attribute [rw] filter
|
1228
|
+
# @return [::String]
|
1229
|
+
# Filtering results.
|
1230
|
+
# @!attribute [rw] order_by
|
1231
|
+
# @return [::String]
|
1232
|
+
# Field to sort by. See https://google.aip.dev/132#ordering for more details.
|
1233
|
+
class ListSourcesRequest
|
1234
|
+
include ::Google::Protobuf::MessageExts
|
1235
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1236
|
+
end
|
1237
|
+
|
1238
|
+
# Response message for listing sources.
|
1239
|
+
# @!attribute [rw] sources
|
1240
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::Source>]
|
1241
|
+
# The list of sources.
|
1242
|
+
# @!attribute [rw] next_page_token
|
1243
|
+
# @return [::String]
|
1244
|
+
# A token identifying a page of results the server should return.
|
1245
|
+
# @!attribute [rw] unreachable
|
1246
|
+
# @return [::Array<::String>]
|
1247
|
+
# Locations that could not be reached.
|
1248
|
+
class ListSourcesResponse
|
1249
|
+
include ::Google::Protobuf::MessageExts
|
1250
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1251
|
+
end
|
1252
|
+
|
1253
|
+
# A request to get a source.
|
1254
|
+
# @!attribute [rw] name
|
1255
|
+
# @return [::String]
|
1256
|
+
# Required. Name of the resource.
|
1257
|
+
class GetSourceRequest
|
1258
|
+
include ::Google::Protobuf::MessageExts
|
1259
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1260
|
+
end
|
1261
|
+
|
1262
|
+
# A request to create a source.
|
1263
|
+
# @!attribute [rw] parent
|
1264
|
+
# @return [::String]
|
1265
|
+
# Required. Value for parent.
|
1266
|
+
# @!attribute [rw] source_id
|
1267
|
+
# @return [::String]
|
1268
|
+
# Required. User specified ID for the source. It will become the last
|
1269
|
+
# component of the source name. The ID must be unique within the project,
|
1270
|
+
# must conform with RFC-1034, is restricted to lower-cased letters, and has a
|
1271
|
+
# maximum length of 63 characters. The ID must match the regular expression:
|
1272
|
+
# `[a-z]([a-z0-9-]{0,61}[a-z0-9])?`.
|
1273
|
+
# @!attribute [rw] source
|
1274
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Source]
|
1275
|
+
# Required. The resource being created.
|
1276
|
+
# @!attribute [rw] request_id
|
1277
|
+
# @return [::String]
|
1278
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
1279
|
+
# request ID so that if you must retry your request, the server will know to
|
1280
|
+
# ignore the request if it has already been completed. The server will
|
1281
|
+
# guarantee that for at least 60 minutes since the first request.
|
1282
|
+
#
|
1283
|
+
# For example, consider a situation where you make an initial request and
|
1284
|
+
# the request times out. If you make the request again with the same request
|
1285
|
+
# ID, the server can check if original operation with the same request ID
|
1286
|
+
# was received, and if so, will ignore the second request. This prevents
|
1287
|
+
# clients from accidentally creating duplicate commitments.
|
1288
|
+
#
|
1289
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
1290
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
1291
|
+
class CreateSourceRequest
|
1292
|
+
include ::Google::Protobuf::MessageExts
|
1293
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1294
|
+
end
|
1295
|
+
|
1296
|
+
# A request to update a source.
|
1297
|
+
# @!attribute [rw] update_mask
|
1298
|
+
# @return [::Google::Protobuf::FieldMask]
|
1299
|
+
# Required. Field mask is used to specify the fields to be overwritten in the
|
1300
|
+
# `Source` resource by the update.
|
1301
|
+
# The values specified in the `update_mask` field are relative to the
|
1302
|
+
# resource, not the full request.
|
1303
|
+
# A field will be overwritten if it is in the mask.
|
1304
|
+
# A single * value in the mask lets you to overwrite all fields.
|
1305
|
+
# @!attribute [rw] source
|
1306
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Source]
|
1307
|
+
# Required. The resource being updated
|
1308
|
+
# @!attribute [rw] request_id
|
1309
|
+
# @return [::String]
|
1310
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
1311
|
+
# request ID so that if you must retry your request, the server will know to
|
1312
|
+
# ignore the request if it has already been completed. The server will
|
1313
|
+
# guarantee that for at least 60 minutes since the first request.
|
1314
|
+
#
|
1315
|
+
# For example, consider a situation where you make an initial request and
|
1316
|
+
# the request times out. If you make the request again with the same request
|
1317
|
+
# ID, the server can check if original operation with the same request ID
|
1318
|
+
# was received, and if so, will ignore the second request. This prevents
|
1319
|
+
# clients from accidentally creating duplicate commitments.
|
1320
|
+
#
|
1321
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
1322
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
1323
|
+
class UpdateSourceRequest
|
1324
|
+
include ::Google::Protobuf::MessageExts
|
1325
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1326
|
+
end
|
1327
|
+
|
1328
|
+
# A request to delete a source.
|
1329
|
+
# @!attribute [rw] name
|
1330
|
+
# @return [::String]
|
1331
|
+
# Required. Name of the resource.
|
1332
|
+
# @!attribute [rw] request_id
|
1333
|
+
# @return [::String]
|
1334
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
1335
|
+
# request ID so that if you must retry your request, the server will know to
|
1336
|
+
# ignore the request if it has already been completed. The server will
|
1337
|
+
# guarantee that for at least 60 minutes after the first request.
|
1338
|
+
#
|
1339
|
+
# For example, consider a situation where you make an initial request and
|
1340
|
+
# the request times out. If you make the request again with the same request
|
1341
|
+
# ID, the server can check if original operation with the same request ID
|
1342
|
+
# was received, and if so, will ignore the second request. This prevents
|
1343
|
+
# clients from accidentally creating duplicate commitments.
|
1344
|
+
#
|
1345
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
1346
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
1347
|
+
class DeleteSourceRequest
|
1348
|
+
include ::Google::Protobuf::MessageExts
|
1349
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1350
|
+
end
|
1351
|
+
|
1352
|
+
# Request for listing preference sets.
|
1353
|
+
# @!attribute [rw] parent
|
1354
|
+
# @return [::String]
|
1355
|
+
# Required. Parent value for `ListPreferenceSetsRequest`.
|
1356
|
+
# @!attribute [rw] page_size
|
1357
|
+
# @return [::Integer]
|
1358
|
+
# Requested page size. Server may return fewer items than requested.
|
1359
|
+
# If unspecified, at most 500 preference sets will be returned.
|
1360
|
+
# The maximum value is 1000; values above 1000 will be coerced to 1000.
|
1361
|
+
# @!attribute [rw] page_token
|
1362
|
+
# @return [::String]
|
1363
|
+
# A token identifying a page of results the server should return.
|
1364
|
+
# @!attribute [rw] order_by
|
1365
|
+
# @return [::String]
|
1366
|
+
# Field to sort by. See https://google.aip.dev/132#ordering for more details.
|
1367
|
+
class ListPreferenceSetsRequest
|
1368
|
+
include ::Google::Protobuf::MessageExts
|
1369
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
# Response message for listing preference sets.
|
1373
|
+
# @!attribute [rw] preference_sets
|
1374
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::PreferenceSet>]
|
1375
|
+
# The list of PreferenceSets
|
1376
|
+
# @!attribute [rw] next_page_token
|
1377
|
+
# @return [::String]
|
1378
|
+
# A token identifying a page of results the server should return.
|
1379
|
+
# @!attribute [rw] unreachable
|
1380
|
+
# @return [::Array<::String>]
|
1381
|
+
# Locations that could not be reached.
|
1382
|
+
class ListPreferenceSetsResponse
|
1383
|
+
include ::Google::Protobuf::MessageExts
|
1384
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1385
|
+
end
|
1386
|
+
|
1387
|
+
# A request to get a preference set.
|
1388
|
+
# @!attribute [rw] name
|
1389
|
+
# @return [::String]
|
1390
|
+
# Required. Name of the resource.
|
1391
|
+
class GetPreferenceSetRequest
|
1392
|
+
include ::Google::Protobuf::MessageExts
|
1393
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1394
|
+
end
|
1395
|
+
|
1396
|
+
# A request to create a preference set.
|
1397
|
+
# @!attribute [rw] parent
|
1398
|
+
# @return [::String]
|
1399
|
+
# Required. Value for parent.
|
1400
|
+
# @!attribute [rw] preference_set_id
|
1401
|
+
# @return [::String]
|
1402
|
+
# Required. User specified ID for the preference set. It will become the last
|
1403
|
+
# component of the preference set name. The ID must be unique within the
|
1404
|
+
# project, must conform with RFC-1034, is restricted to lower-cased letters,
|
1405
|
+
# and has a maximum length of 63 characters. The ID must match the regular
|
1406
|
+
# expression
|
1407
|
+
# `[a-z]([a-z0-9-]{0,61}[a-z0-9])?`.
|
1408
|
+
# @!attribute [rw] preference_set
|
1409
|
+
# @return [::Google::Cloud::MigrationCenter::V1::PreferenceSet]
|
1410
|
+
# Required. The preference set resource being created.
|
1411
|
+
# @!attribute [rw] request_id
|
1412
|
+
# @return [::String]
|
1413
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
1414
|
+
# request ID so that if you must retry your request, the server will know to
|
1415
|
+
# ignore the request if it has already been completed. The server will
|
1416
|
+
# guarantee that for at least 60 minutes since the first request.
|
1417
|
+
#
|
1418
|
+
# For example, consider a situation where you make an initial request and
|
1419
|
+
# the request times out. If you make the request again with the same request
|
1420
|
+
# ID, the server can check if original operation with the same request ID
|
1421
|
+
# was received, and if so, will ignore the second request. This prevents
|
1422
|
+
# clients from accidentally creating duplicate commitments.
|
1423
|
+
#
|
1424
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
1425
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
1426
|
+
class CreatePreferenceSetRequest
|
1427
|
+
include ::Google::Protobuf::MessageExts
|
1428
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1429
|
+
end
|
1430
|
+
|
1431
|
+
# A request to update a preference set.
|
1432
|
+
# @!attribute [rw] update_mask
|
1433
|
+
# @return [::Google::Protobuf::FieldMask]
|
1434
|
+
# Required. Field mask is used to specify the fields to be overwritten in the
|
1435
|
+
# `PreferenceSet` resource by the update.
|
1436
|
+
# The values specified in the `update_mask` field are relative to the
|
1437
|
+
# resource, not the full request.
|
1438
|
+
# A field will be overwritten if it is in the mask.
|
1439
|
+
# A single * value in the mask lets you to overwrite all fields.
|
1440
|
+
# @!attribute [rw] preference_set
|
1441
|
+
# @return [::Google::Cloud::MigrationCenter::V1::PreferenceSet]
|
1442
|
+
# Required. The preference set resource being updated.
|
1443
|
+
# @!attribute [rw] request_id
|
1444
|
+
# @return [::String]
|
1445
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
1446
|
+
# request ID so that if you must retry your request, the server will know to
|
1447
|
+
# ignore the request if it has already been completed. The server will
|
1448
|
+
# guarantee that for at least 60 minutes since the first request.
|
1449
|
+
#
|
1450
|
+
# For example, consider a situation where you make an initial request and
|
1451
|
+
# the request times out. If you make the request again with the same request
|
1452
|
+
# ID, the server can check if original operation with the same request ID
|
1453
|
+
# was received, and if so, will ignore the second request. This prevents
|
1454
|
+
# clients from accidentally creating duplicate commitments.
|
1455
|
+
#
|
1456
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
1457
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
1458
|
+
class UpdatePreferenceSetRequest
|
1459
|
+
include ::Google::Protobuf::MessageExts
|
1460
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1461
|
+
end
|
1462
|
+
|
1463
|
+
# A request to delete a preference set.
|
1464
|
+
# @!attribute [rw] name
|
1465
|
+
# @return [::String]
|
1466
|
+
# Required. Name of the group resource.
|
1467
|
+
# @!attribute [rw] request_id
|
1468
|
+
# @return [::String]
|
1469
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
1470
|
+
# request ID so that if you must retry your request, the server will know to
|
1471
|
+
# ignore the request if it has already been completed. The server will
|
1472
|
+
# guarantee that for at least 60 minutes after the first request.
|
1473
|
+
#
|
1474
|
+
# For example, consider a situation where you make an initial request and
|
1475
|
+
# the request times out. If you make the request again with the same request
|
1476
|
+
# ID, the server can check if original operation with the same request ID
|
1477
|
+
# was received, and if so, will ignore the second request. This prevents
|
1478
|
+
# clients from accidentally creating duplicate commitments.
|
1479
|
+
#
|
1480
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
1481
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
1482
|
+
class DeletePreferenceSetRequest
|
1483
|
+
include ::Google::Protobuf::MessageExts
|
1484
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1485
|
+
end
|
1486
|
+
|
1487
|
+
# A request to get the settings.
|
1488
|
+
# @!attribute [rw] name
|
1489
|
+
# @return [::String]
|
1490
|
+
# Required. Name of the resource.
|
1491
|
+
class GetSettingsRequest
|
1492
|
+
include ::Google::Protobuf::MessageExts
|
1493
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1494
|
+
end
|
1495
|
+
|
1496
|
+
# A request to update the settings.
|
1497
|
+
# @!attribute [rw] update_mask
|
1498
|
+
# @return [::Google::Protobuf::FieldMask]
|
1499
|
+
# Required. Field mask is used to specify the fields to be overwritten in the
|
1500
|
+
# `Settings` resource by the update.
|
1501
|
+
# The values specified in the `update_mask` field are relative to the
|
1502
|
+
# resource, not the full request.
|
1503
|
+
# A field will be overwritten if it is in the mask.
|
1504
|
+
# A single * value in the mask lets you to overwrite all fields.
|
1505
|
+
# @!attribute [rw] settings
|
1506
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Settings]
|
1507
|
+
# Required. The project settings resource being updated.
|
1508
|
+
# @!attribute [rw] request_id
|
1509
|
+
# @return [::String]
|
1510
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
1511
|
+
# request ID so that if you must retry your request, the server will know to
|
1512
|
+
# ignore the request if it has already been completed. The server will
|
1513
|
+
# guarantee that for at least 60 minutes since the first request.
|
1514
|
+
#
|
1515
|
+
# For example, consider a situation where you make an initial request and
|
1516
|
+
# the request times out. If you make the request again with the same request
|
1517
|
+
# ID, the server can check if original operation with the same request ID
|
1518
|
+
# was received, and if so, will ignore the second request. This prevents
|
1519
|
+
# clients from accidentally creating duplicate commitments.
|
1520
|
+
#
|
1521
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
1522
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
1523
|
+
class UpdateSettingsRequest
|
1524
|
+
include ::Google::Protobuf::MessageExts
|
1525
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1526
|
+
end
|
1527
|
+
|
1528
|
+
# A request to create a `ReportConfig` resource.
|
1529
|
+
# @!attribute [rw] parent
|
1530
|
+
# @return [::String]
|
1531
|
+
# Required. Value for parent.
|
1532
|
+
# @!attribute [rw] report_config_id
|
1533
|
+
# @return [::String]
|
1534
|
+
# Required. User specified ID for the report config. It will become the last
|
1535
|
+
# component of the report config name. The ID must be unique within the
|
1536
|
+
# project, must conform with RFC-1034, is restricted to lower-cased letters,
|
1537
|
+
# and has a maximum length of 63 characters. The ID must match the regular
|
1538
|
+
# expression: [a-z]([a-z0-9-]\\{0,61}[a-z0-9])?.
|
1539
|
+
# @!attribute [rw] report_config
|
1540
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportConfig]
|
1541
|
+
# Required. The report config set resource being created.
|
1542
|
+
# @!attribute [rw] request_id
|
1543
|
+
# @return [::String]
|
1544
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
1545
|
+
# request ID so that if you must retry your request, the server will know to
|
1546
|
+
# ignore the request if it has already been completed. The server will
|
1547
|
+
# guarantee that for at least 60 minutes since the first request.
|
1548
|
+
#
|
1549
|
+
# For example, consider a situation where you make an initial request and
|
1550
|
+
# the request times out. If you make the request again with the same request
|
1551
|
+
# ID, the server can check if original operation with the same request ID
|
1552
|
+
# was received, and if so, will ignore the second request. This prevents
|
1553
|
+
# clients from accidentally creating duplicate commitments.
|
1554
|
+
#
|
1555
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
1556
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
1557
|
+
class CreateReportConfigRequest
|
1558
|
+
include ::Google::Protobuf::MessageExts
|
1559
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1560
|
+
end
|
1561
|
+
|
1562
|
+
# A request to delete a ReportConfig.
|
1563
|
+
# @!attribute [rw] name
|
1564
|
+
# @return [::String]
|
1565
|
+
# Required. Name of the resource.
|
1566
|
+
# @!attribute [rw] request_id
|
1567
|
+
# @return [::String]
|
1568
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
1569
|
+
# request ID so that if you must retry your request, the server will know to
|
1570
|
+
# ignore the request if it has already been completed. The server will
|
1571
|
+
# guarantee that for at least 60 minutes after the first request.
|
1572
|
+
#
|
1573
|
+
# For example, consider a situation where you make an initial request and
|
1574
|
+
# the request times out. If you make the request again with the same request
|
1575
|
+
# ID, the server can check if original operation with the same request ID
|
1576
|
+
# was received, and if so, will ignore the second request. This prevents
|
1577
|
+
# clients from accidentally creating duplicate commitments.
|
1578
|
+
#
|
1579
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
1580
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
1581
|
+
# @!attribute [rw] force
|
1582
|
+
# @return [::Boolean]
|
1583
|
+
# Optional. If set to `true`, any child `Reports` of this entity will also be
|
1584
|
+
# deleted. If set to `false`, the request only works if the resource has no
|
1585
|
+
# children.
|
1586
|
+
class DeleteReportConfigRequest
|
1587
|
+
include ::Google::Protobuf::MessageExts
|
1588
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1589
|
+
end
|
1590
|
+
|
1591
|
+
# A request to get a Report.
|
1592
|
+
# @!attribute [rw] name
|
1593
|
+
# @return [::String]
|
1594
|
+
# Required. Name of the resource.
|
1595
|
+
# @!attribute [rw] view
|
1596
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportView]
|
1597
|
+
# Determines what information to retrieve for the Report.
|
1598
|
+
class GetReportRequest
|
1599
|
+
include ::Google::Protobuf::MessageExts
|
1600
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1601
|
+
end
|
1602
|
+
|
1603
|
+
# A request for a list of Reports.
|
1604
|
+
# @!attribute [rw] parent
|
1605
|
+
# @return [::String]
|
1606
|
+
# Required. Parent value for `ListReportsRequest`.
|
1607
|
+
# @!attribute [rw] page_size
|
1608
|
+
# @return [::Integer]
|
1609
|
+
# Requested page size. The server may return fewer items than requested.
|
1610
|
+
# If unspecified, the server will pick an appropriate default value.
|
1611
|
+
# @!attribute [rw] page_token
|
1612
|
+
# @return [::String]
|
1613
|
+
# A token identifying a page of results that the server should return.
|
1614
|
+
# @!attribute [rw] filter
|
1615
|
+
# @return [::String]
|
1616
|
+
# Filtering results.
|
1617
|
+
# @!attribute [rw] order_by
|
1618
|
+
# @return [::String]
|
1619
|
+
# Field to sort by. See https://google.aip.dev/132#ordering for more details.
|
1620
|
+
# @!attribute [rw] view
|
1621
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportView]
|
1622
|
+
# Determines what information to retrieve for each Report.
|
1623
|
+
class ListReportsRequest
|
1624
|
+
include ::Google::Protobuf::MessageExts
|
1625
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1626
|
+
end
|
1627
|
+
|
1628
|
+
# Response message for listing Reports.
|
1629
|
+
# @!attribute [rw] reports
|
1630
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::Report>]
|
1631
|
+
# The list of Reports.
|
1632
|
+
# @!attribute [rw] next_page_token
|
1633
|
+
# @return [::String]
|
1634
|
+
# A token identifying a page of results the server should return.
|
1635
|
+
# @!attribute [rw] unreachable
|
1636
|
+
# @return [::Array<::String>]
|
1637
|
+
# Locations that could not be reached.
|
1638
|
+
class ListReportsResponse
|
1639
|
+
include ::Google::Protobuf::MessageExts
|
1640
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1641
|
+
end
|
1642
|
+
|
1643
|
+
# A request to delete a Report.
|
1644
|
+
# @!attribute [rw] name
|
1645
|
+
# @return [::String]
|
1646
|
+
# Required. Name of the resource.
|
1647
|
+
# @!attribute [rw] request_id
|
1648
|
+
# @return [::String]
|
1649
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
1650
|
+
# request ID so that if you must retry your request, the server will know to
|
1651
|
+
# ignore the request if it has already been completed. The server will
|
1652
|
+
# guarantee that for at least 60 minutes after the first request.
|
1653
|
+
#
|
1654
|
+
# For example, consider a situation where you make an initial request and
|
1655
|
+
# the request times out. If you make the request again with the same request
|
1656
|
+
# ID, the server can check if original operation with the same request ID
|
1657
|
+
# was received, and if so, will ignore the second request. This prevents
|
1658
|
+
# clients from accidentally creating duplicate commitments.
|
1659
|
+
#
|
1660
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
1661
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
1662
|
+
class DeleteReportRequest
|
1663
|
+
include ::Google::Protobuf::MessageExts
|
1664
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1665
|
+
end
|
1666
|
+
|
1667
|
+
# A request to get a `ReportConfig` resource.
|
1668
|
+
# @!attribute [rw] name
|
1669
|
+
# @return [::String]
|
1670
|
+
# Required. Name of the resource.
|
1671
|
+
class GetReportConfigRequest
|
1672
|
+
include ::Google::Protobuf::MessageExts
|
1673
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1674
|
+
end
|
1675
|
+
|
1676
|
+
# A request to get a list of `ReportConfig` resources.
|
1677
|
+
# @!attribute [rw] parent
|
1678
|
+
# @return [::String]
|
1679
|
+
# Required. Parent value for `ListReportConfigsRequest`.
|
1680
|
+
# @!attribute [rw] page_size
|
1681
|
+
# @return [::Integer]
|
1682
|
+
# Requested page size. Server may return fewer items than requested.
|
1683
|
+
# If unspecified, server will pick an appropriate default.
|
1684
|
+
# @!attribute [rw] page_token
|
1685
|
+
# @return [::String]
|
1686
|
+
# A token identifying a page of results the server should return.
|
1687
|
+
# @!attribute [rw] filter
|
1688
|
+
# @return [::String]
|
1689
|
+
# Filtering results.
|
1690
|
+
# @!attribute [rw] order_by
|
1691
|
+
# @return [::String]
|
1692
|
+
# Field to sort by. See https://google.aip.dev/132#ordering for more details.
|
1693
|
+
class ListReportConfigsRequest
|
1694
|
+
include ::Google::Protobuf::MessageExts
|
1695
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1696
|
+
end
|
1697
|
+
|
1698
|
+
# Response message for listing report configs.
|
1699
|
+
# @!attribute [rw] report_configs
|
1700
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ReportConfig>]
|
1701
|
+
# A list of report configs.
|
1702
|
+
# @!attribute [rw] next_page_token
|
1703
|
+
# @return [::String]
|
1704
|
+
# A token identifying a page of results the server should return.
|
1705
|
+
# @!attribute [rw] unreachable
|
1706
|
+
# @return [::Array<::String>]
|
1707
|
+
# Locations that could not be reached.
|
1708
|
+
class ListReportConfigsResponse
|
1709
|
+
include ::Google::Protobuf::MessageExts
|
1710
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1711
|
+
end
|
1712
|
+
|
1713
|
+
# Message for creating a Report.
|
1714
|
+
# @!attribute [rw] parent
|
1715
|
+
# @return [::String]
|
1716
|
+
# Required. Value for parent.
|
1717
|
+
# @!attribute [rw] report_id
|
1718
|
+
# @return [::String]
|
1719
|
+
# Required. User specified id for the report. It will become the last
|
1720
|
+
# component of the report name. The id must be unique within the project,
|
1721
|
+
# must conform with RFC-1034, is restricted to lower-cased letters, and has a
|
1722
|
+
# maximum length of 63 characters. The id must match the regular expression:
|
1723
|
+
# [a-z]([a-z0-9-]\\{0,61}[a-z0-9])?.
|
1724
|
+
# @!attribute [rw] report
|
1725
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Report]
|
1726
|
+
# Required. The report resource being created.
|
1727
|
+
# @!attribute [rw] request_id
|
1728
|
+
# @return [::String]
|
1729
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
1730
|
+
# request ID so that if you must retry your request, the server will know to
|
1731
|
+
# ignore the request if it has already been completed. The server will
|
1732
|
+
# guarantee that for at least 60 minutes since the first request.
|
1733
|
+
#
|
1734
|
+
# For example, consider a situation where you make an initial request and
|
1735
|
+
# the request times out. If you make the request again with the same request
|
1736
|
+
# ID, the server can check if original operation with the same request ID
|
1737
|
+
# was received, and if so, will ignore the second request. This prevents
|
1738
|
+
# clients from accidentally creating duplicate commitments.
|
1739
|
+
#
|
1740
|
+
# The request ID must be a valid UUID with the exception that zero UUID is
|
1741
|
+
# not supported (00000000-0000-0000-0000-000000000000).
|
1742
|
+
class CreateReportRequest
|
1743
|
+
include ::Google::Protobuf::MessageExts
|
1744
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1745
|
+
end
|
1746
|
+
|
1747
|
+
# Collection of frame data.
|
1748
|
+
# @!attribute [rw] frames_data
|
1749
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::AssetFrame>]
|
1750
|
+
# A repeated field of asset data.
|
1751
|
+
class Frames
|
1752
|
+
include ::Google::Protobuf::MessageExts
|
1753
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1754
|
+
end
|
1755
|
+
|
1756
|
+
# Contains data reported from an inventory source on an asset.
|
1757
|
+
# @!attribute [rw] machine_details
|
1758
|
+
# @return [::Google::Cloud::MigrationCenter::V1::MachineDetails]
|
1759
|
+
# Asset information specific for virtual machines.
|
1760
|
+
# @!attribute [rw] report_time
|
1761
|
+
# @return [::Google::Protobuf::Timestamp]
|
1762
|
+
# The time the data was reported.
|
1763
|
+
# @!attribute [rw] labels
|
1764
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
1765
|
+
# Labels as key value pairs.
|
1766
|
+
# @!attribute [rw] attributes
|
1767
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
1768
|
+
# Generic asset attributes.
|
1769
|
+
# @!attribute [rw] performance_samples
|
1770
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::PerformanceSample>]
|
1771
|
+
# Asset performance data samples.
|
1772
|
+
# Samples that are from more than 40 days ago or after tomorrow are ignored.
|
1773
|
+
# @!attribute [rw] trace_token
|
1774
|
+
# @return [::String]
|
1775
|
+
# Optional. Trace token is optionally provided to assist with debugging and
|
1776
|
+
# traceability.
|
1777
|
+
class AssetFrame
|
1778
|
+
include ::Google::Protobuf::MessageExts
|
1779
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1780
|
+
|
1781
|
+
# @!attribute [rw] key
|
1782
|
+
# @return [::String]
|
1783
|
+
# @!attribute [rw] value
|
1784
|
+
# @return [::String]
|
1785
|
+
class LabelsEntry
|
1786
|
+
include ::Google::Protobuf::MessageExts
|
1787
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1788
|
+
end
|
1789
|
+
|
1790
|
+
# @!attribute [rw] key
|
1791
|
+
# @return [::String]
|
1792
|
+
# @!attribute [rw] value
|
1793
|
+
# @return [::String]
|
1794
|
+
class AttributesEntry
|
1795
|
+
include ::Google::Protobuf::MessageExts
|
1796
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1797
|
+
end
|
1798
|
+
end
|
1799
|
+
|
1800
|
+
# Details of a machine.
|
1801
|
+
# @!attribute [rw] uuid
|
1802
|
+
# @return [::String]
|
1803
|
+
# Machine unique identifier.
|
1804
|
+
# @!attribute [rw] machine_name
|
1805
|
+
# @return [::String]
|
1806
|
+
# Machine name.
|
1807
|
+
# @!attribute [rw] create_time
|
1808
|
+
# @return [::Google::Protobuf::Timestamp]
|
1809
|
+
# Machine creation time.
|
1810
|
+
# @!attribute [rw] core_count
|
1811
|
+
# @return [::Integer]
|
1812
|
+
# Number of CPU cores in the machine. Must be non-negative.
|
1813
|
+
# @!attribute [rw] memory_mb
|
1814
|
+
# @return [::Integer]
|
1815
|
+
# The amount of memory in the machine. Must be non-negative.
|
1816
|
+
# @!attribute [rw] power_state
|
1817
|
+
# @return [::Google::Cloud::MigrationCenter::V1::MachineDetails::PowerState]
|
1818
|
+
# Power state of the machine.
|
1819
|
+
# @!attribute [rw] architecture
|
1820
|
+
# @return [::Google::Cloud::MigrationCenter::V1::MachineArchitectureDetails]
|
1821
|
+
# Architecture details (vendor, CPU architecture).
|
1822
|
+
# @!attribute [rw] guest_os
|
1823
|
+
# @return [::Google::Cloud::MigrationCenter::V1::GuestOsDetails]
|
1824
|
+
# Guest OS information.
|
1825
|
+
# @!attribute [rw] network
|
1826
|
+
# @return [::Google::Cloud::MigrationCenter::V1::MachineNetworkDetails]
|
1827
|
+
# Network details.
|
1828
|
+
# @!attribute [rw] disks
|
1829
|
+
# @return [::Google::Cloud::MigrationCenter::V1::MachineDiskDetails]
|
1830
|
+
# Disk details.
|
1831
|
+
# @!attribute [rw] platform
|
1832
|
+
# @return [::Google::Cloud::MigrationCenter::V1::PlatformDetails]
|
1833
|
+
# Platform specific information.
|
1834
|
+
class MachineDetails
|
1835
|
+
include ::Google::Protobuf::MessageExts
|
1836
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1837
|
+
|
1838
|
+
# Machine power state.
|
1839
|
+
module PowerState
|
1840
|
+
# Power state is unknown.
|
1841
|
+
POWER_STATE_UNSPECIFIED = 0
|
1842
|
+
|
1843
|
+
# The machine is preparing to enter the ACTIVE state. An instance may enter
|
1844
|
+
# the PENDING state when it launches for the first time, or when it is
|
1845
|
+
# started after being in the SUSPENDED state.
|
1846
|
+
PENDING = 1
|
1847
|
+
|
1848
|
+
# The machine is active.
|
1849
|
+
ACTIVE = 2
|
1850
|
+
|
1851
|
+
# The machine is being turned off.
|
1852
|
+
SUSPENDING = 3
|
1853
|
+
|
1854
|
+
# The machine is off.
|
1855
|
+
SUSPENDED = 4
|
1856
|
+
|
1857
|
+
# The machine is being deleted from the hosting platform.
|
1858
|
+
DELETING = 5
|
1859
|
+
|
1860
|
+
# The machine is deleted from the hosting platform.
|
1861
|
+
DELETED = 6
|
1862
|
+
end
|
1863
|
+
end
|
1864
|
+
|
1865
|
+
# Details of the machine architecture.
|
1866
|
+
# @!attribute [rw] cpu_architecture
|
1867
|
+
# @return [::String]
|
1868
|
+
# CPU architecture, e.g., "x64-based PC", "x86_64", "i686" etc.
|
1869
|
+
# @!attribute [rw] cpu_name
|
1870
|
+
# @return [::String]
|
1871
|
+
# CPU name, e.g., "Intel Xeon E5-2690", "AMD EPYC 7571" etc.
|
1872
|
+
# @!attribute [rw] vendor
|
1873
|
+
# @return [::String]
|
1874
|
+
# Hardware vendor.
|
1875
|
+
# @!attribute [rw] cpu_thread_count
|
1876
|
+
# @return [::Integer]
|
1877
|
+
# Number of CPU threads allocated to the machine.
|
1878
|
+
# @!attribute [rw] cpu_socket_count
|
1879
|
+
# @return [::Integer]
|
1880
|
+
# Number of processor sockets allocated to the machine.
|
1881
|
+
# @!attribute [rw] bios
|
1882
|
+
# @return [::Google::Cloud::MigrationCenter::V1::BiosDetails]
|
1883
|
+
# BIOS Details.
|
1884
|
+
# @!attribute [rw] firmware_type
|
1885
|
+
# @return [::Google::Cloud::MigrationCenter::V1::MachineArchitectureDetails::FirmwareType]
|
1886
|
+
# Firmware type.
|
1887
|
+
# @!attribute [rw] hyperthreading
|
1888
|
+
# @return [::Google::Cloud::MigrationCenter::V1::MachineArchitectureDetails::CpuHyperThreading]
|
1889
|
+
# CPU hyper-threading support.
|
1890
|
+
class MachineArchitectureDetails
|
1891
|
+
include ::Google::Protobuf::MessageExts
|
1892
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1893
|
+
|
1894
|
+
# Firmware type.
|
1895
|
+
module FirmwareType
|
1896
|
+
# Unspecified or unknown.
|
1897
|
+
FIRMWARE_TYPE_UNSPECIFIED = 0
|
1898
|
+
|
1899
|
+
# BIOS firmware.
|
1900
|
+
BIOS = 1
|
1901
|
+
|
1902
|
+
# EFI firmware.
|
1903
|
+
EFI = 2
|
1904
|
+
end
|
1905
|
+
|
1906
|
+
# CPU hyper-threading support.
|
1907
|
+
module CpuHyperThreading
|
1908
|
+
# Unspecified or unknown.
|
1909
|
+
CPU_HYPER_THREADING_UNSPECIFIED = 0
|
1910
|
+
|
1911
|
+
# Hyper-threading is disabled.
|
1912
|
+
DISABLED = 1
|
1913
|
+
|
1914
|
+
# Hyper-threading is enabled.
|
1915
|
+
ENABLED = 2
|
1916
|
+
end
|
1917
|
+
end
|
1918
|
+
|
1919
|
+
# Details about the BIOS.
|
1920
|
+
# @!attribute [rw] bios_name
|
1921
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
1922
|
+
# @return [::String]
|
1923
|
+
# BIOS name.
|
1924
|
+
# This fields is deprecated. Please use the `id` field instead.
|
1925
|
+
# @!attribute [rw] id
|
1926
|
+
# @return [::String]
|
1927
|
+
# BIOS ID.
|
1928
|
+
# @!attribute [rw] manufacturer
|
1929
|
+
# @return [::String]
|
1930
|
+
# BIOS manufacturer.
|
1931
|
+
# @!attribute [rw] version
|
1932
|
+
# @return [::String]
|
1933
|
+
# BIOS version.
|
1934
|
+
# @!attribute [rw] release_date
|
1935
|
+
# @return [::Google::Type::Date]
|
1936
|
+
# BIOS release date.
|
1937
|
+
# @!attribute [rw] smbios_uuid
|
1938
|
+
# @return [::String]
|
1939
|
+
# SMBIOS UUID.
|
1940
|
+
class BiosDetails
|
1941
|
+
include ::Google::Protobuf::MessageExts
|
1942
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1943
|
+
end
|
1944
|
+
|
1945
|
+
# Details of network adapters and settings.
|
1946
|
+
# @!attribute [rw] primary_ip_address
|
1947
|
+
# @return [::String]
|
1948
|
+
# The primary IP address of the machine.
|
1949
|
+
# @!attribute [rw] public_ip_address
|
1950
|
+
# @return [::String]
|
1951
|
+
# The public IP address of the machine.
|
1952
|
+
# @!attribute [rw] primary_mac_address
|
1953
|
+
# @return [::String]
|
1954
|
+
# MAC address of the machine.
|
1955
|
+
# This property is used to uniqly identify the machine.
|
1956
|
+
# @!attribute [rw] adapters
|
1957
|
+
# @return [::Google::Cloud::MigrationCenter::V1::NetworkAdapterList]
|
1958
|
+
# List of network adapters.
|
1959
|
+
class MachineNetworkDetails
|
1960
|
+
include ::Google::Protobuf::MessageExts
|
1961
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1962
|
+
end
|
1963
|
+
|
1964
|
+
# List of network adapters.
|
1965
|
+
# @!attribute [rw] entries
|
1966
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::NetworkAdapterDetails>]
|
1967
|
+
# Network adapter entries.
|
1968
|
+
class NetworkAdapterList
|
1969
|
+
include ::Google::Protobuf::MessageExts
|
1970
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1971
|
+
end
|
1972
|
+
|
1973
|
+
# Details of network adapter.
|
1974
|
+
# @!attribute [rw] adapter_type
|
1975
|
+
# @return [::String]
|
1976
|
+
# Network adapter type (e.g. VMXNET3).
|
1977
|
+
# @!attribute [rw] mac_address
|
1978
|
+
# @return [::String]
|
1979
|
+
# MAC address.
|
1980
|
+
# @!attribute [rw] addresses
|
1981
|
+
# @return [::Google::Cloud::MigrationCenter::V1::NetworkAddressList]
|
1982
|
+
# NetworkAddressList
|
1983
|
+
class NetworkAdapterDetails
|
1984
|
+
include ::Google::Protobuf::MessageExts
|
1985
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1986
|
+
end
|
1987
|
+
|
1988
|
+
# List of allocated/assigned network addresses.
|
1989
|
+
# @!attribute [rw] entries
|
1990
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::NetworkAddress>]
|
1991
|
+
# Network address entries.
|
1992
|
+
class NetworkAddressList
|
1993
|
+
include ::Google::Protobuf::MessageExts
|
1994
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1995
|
+
end
|
1996
|
+
|
1997
|
+
# Details of network address.
|
1998
|
+
# @!attribute [rw] ip_address
|
1999
|
+
# @return [::String]
|
2000
|
+
# Assigned or configured IP Address.
|
2001
|
+
# @!attribute [rw] subnet_mask
|
2002
|
+
# @return [::String]
|
2003
|
+
# Subnet mask.
|
2004
|
+
# @!attribute [rw] bcast
|
2005
|
+
# @return [::String]
|
2006
|
+
# Broadcast address.
|
2007
|
+
# @!attribute [rw] fqdn
|
2008
|
+
# @return [::String]
|
2009
|
+
# Fully qualified domain name.
|
2010
|
+
# @!attribute [rw] assignment
|
2011
|
+
# @return [::Google::Cloud::MigrationCenter::V1::NetworkAddress::AddressAssignment]
|
2012
|
+
# Whether DHCP is used to assign addresses.
|
2013
|
+
class NetworkAddress
|
2014
|
+
include ::Google::Protobuf::MessageExts
|
2015
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2016
|
+
|
2017
|
+
# Network address assignment.
|
2018
|
+
module AddressAssignment
|
2019
|
+
# Unknown (default value).
|
2020
|
+
ADDRESS_ASSIGNMENT_UNSPECIFIED = 0
|
2021
|
+
|
2022
|
+
# Staticly assigned IP.
|
2023
|
+
ADDRESS_ASSIGNMENT_STATIC = 1
|
2024
|
+
|
2025
|
+
# Dynamically assigned IP (DHCP).
|
2026
|
+
ADDRESS_ASSIGNMENT_DHCP = 2
|
2027
|
+
end
|
2028
|
+
end
|
2029
|
+
|
2030
|
+
# Details of machine disks.
|
2031
|
+
# @!attribute [rw] total_capacity_bytes
|
2032
|
+
# @return [::Integer]
|
2033
|
+
# Disk total Capacity.
|
2034
|
+
# @!attribute [rw] total_free_bytes
|
2035
|
+
# @return [::Integer]
|
2036
|
+
# Total disk free space.
|
2037
|
+
# @!attribute [rw] disks
|
2038
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DiskEntryList]
|
2039
|
+
# List of disks.
|
2040
|
+
class MachineDiskDetails
|
2041
|
+
include ::Google::Protobuf::MessageExts
|
2042
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2043
|
+
end
|
2044
|
+
|
2045
|
+
# VM disks.
|
2046
|
+
# @!attribute [rw] entries
|
2047
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::DiskEntry>]
|
2048
|
+
# Disk entries.
|
2049
|
+
class DiskEntryList
|
2050
|
+
include ::Google::Protobuf::MessageExts
|
2051
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2052
|
+
end
|
2053
|
+
|
2054
|
+
# Single disk entry.
|
2055
|
+
# @!attribute [rw] capacity_bytes
|
2056
|
+
# @return [::Integer]
|
2057
|
+
# Disk capacity.
|
2058
|
+
# @!attribute [rw] free_bytes
|
2059
|
+
# @return [::Integer]
|
2060
|
+
# Disk free space.
|
2061
|
+
# @!attribute [rw] disk_label
|
2062
|
+
# @return [::String]
|
2063
|
+
# Disk label.
|
2064
|
+
# @!attribute [rw] disk_label_type
|
2065
|
+
# @return [::String]
|
2066
|
+
# Disk label type (e.g. BIOS/GPT)
|
2067
|
+
# @!attribute [rw] interface_type
|
2068
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DiskEntry::InterfaceType]
|
2069
|
+
# Disks interface type.
|
2070
|
+
# @!attribute [rw] partitions
|
2071
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DiskPartitionList]
|
2072
|
+
# Partition layout.
|
2073
|
+
# @!attribute [rw] hw_address
|
2074
|
+
# @return [::String]
|
2075
|
+
# Disk hardware address (e.g. 0:1 for SCSI).
|
2076
|
+
# @!attribute [rw] vmware
|
2077
|
+
# @return [::Google::Cloud::MigrationCenter::V1::VmwareDiskConfig]
|
2078
|
+
# VMware disk details.
|
2079
|
+
class DiskEntry
|
2080
|
+
include ::Google::Protobuf::MessageExts
|
2081
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2082
|
+
|
2083
|
+
# Disks interface type.
|
2084
|
+
module InterfaceType
|
2085
|
+
# Interface type unknown or unspecified.
|
2086
|
+
INTERFACE_TYPE_UNSPECIFIED = 0
|
2087
|
+
|
2088
|
+
# IDE interface type.
|
2089
|
+
IDE = 1
|
2090
|
+
|
2091
|
+
# SATA interface type.
|
2092
|
+
SATA = 2
|
2093
|
+
|
2094
|
+
# SAS interface type.
|
2095
|
+
SAS = 3
|
2096
|
+
|
2097
|
+
# SCSI interface type.
|
2098
|
+
SCSI = 4
|
2099
|
+
|
2100
|
+
# NVME interface type.
|
2101
|
+
NVME = 5
|
2102
|
+
|
2103
|
+
# FC interface type.
|
2104
|
+
FC = 6
|
2105
|
+
|
2106
|
+
# iSCSI interface type.
|
2107
|
+
ISCSI = 7
|
2108
|
+
end
|
2109
|
+
end
|
2110
|
+
|
2111
|
+
# Disk partition list.
|
2112
|
+
# @!attribute [rw] entries
|
2113
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::DiskPartition>]
|
2114
|
+
# Partition entries.
|
2115
|
+
class DiskPartitionList
|
2116
|
+
include ::Google::Protobuf::MessageExts
|
2117
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2118
|
+
end
|
2119
|
+
|
2120
|
+
# Disk Partition details.
|
2121
|
+
# @!attribute [rw] type
|
2122
|
+
# @return [::String]
|
2123
|
+
# Partition type.
|
2124
|
+
# @!attribute [rw] file_system
|
2125
|
+
# @return [::String]
|
2126
|
+
# Partition file system.
|
2127
|
+
# @!attribute [rw] mount_point
|
2128
|
+
# @return [::String]
|
2129
|
+
# Mount pount (Linux/Windows) or drive letter (Windows).
|
2130
|
+
# @!attribute [rw] capacity_bytes
|
2131
|
+
# @return [::Integer]
|
2132
|
+
# Partition capacity.
|
2133
|
+
# @!attribute [rw] free_bytes
|
2134
|
+
# @return [::Integer]
|
2135
|
+
# Partition free space.
|
2136
|
+
# @!attribute [rw] uuid
|
2137
|
+
# @return [::String]
|
2138
|
+
# Partition UUID.
|
2139
|
+
# @!attribute [rw] sub_partitions
|
2140
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DiskPartitionList]
|
2141
|
+
# Sub-partitions.
|
2142
|
+
class DiskPartition
|
2143
|
+
include ::Google::Protobuf::MessageExts
|
2144
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2145
|
+
end
|
2146
|
+
|
2147
|
+
# VMware disk config details.
|
2148
|
+
# @!attribute [rw] backing_type
|
2149
|
+
# @return [::Google::Cloud::MigrationCenter::V1::VmwareDiskConfig::BackingType]
|
2150
|
+
# VMDK backing type.
|
2151
|
+
# @!attribute [rw] shared
|
2152
|
+
# @return [::Boolean]
|
2153
|
+
# Is VMDK shared with other VMs.
|
2154
|
+
# @!attribute [rw] vmdk_mode
|
2155
|
+
# @return [::Google::Cloud::MigrationCenter::V1::VmwareDiskConfig::VmdkMode]
|
2156
|
+
# VMDK disk mode.
|
2157
|
+
# @!attribute [rw] rdm_compatibility
|
2158
|
+
# @return [::Google::Cloud::MigrationCenter::V1::VmwareDiskConfig::RdmCompatibility]
|
2159
|
+
# RDM compatibility mode.
|
2160
|
+
class VmwareDiskConfig
|
2161
|
+
include ::Google::Protobuf::MessageExts
|
2162
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2163
|
+
|
2164
|
+
# VMDK backing type possible values.
|
2165
|
+
module BackingType
|
2166
|
+
# Default value.
|
2167
|
+
BACKING_TYPE_UNSPECIFIED = 0
|
2168
|
+
|
2169
|
+
# Flat v1.
|
2170
|
+
BACKING_TYPE_FLAT_V1 = 1
|
2171
|
+
|
2172
|
+
# Flat v2.
|
2173
|
+
BACKING_TYPE_FLAT_V2 = 2
|
2174
|
+
|
2175
|
+
# Persistent memory, also known as Non-Volatile Memory (NVM).
|
2176
|
+
BACKING_TYPE_PMEM = 3
|
2177
|
+
|
2178
|
+
# Raw Disk Memory v1.
|
2179
|
+
BACKING_TYPE_RDM_V1 = 4
|
2180
|
+
|
2181
|
+
# Raw Disk Memory v2.
|
2182
|
+
BACKING_TYPE_RDM_V2 = 5
|
2183
|
+
|
2184
|
+
# SEsparse is a snapshot format introduced in vSphere 5.5 for large disks.
|
2185
|
+
BACKING_TYPE_SESPARSE = 6
|
2186
|
+
|
2187
|
+
# SEsparse v1.
|
2188
|
+
BACKING_TYPE_SESPARSE_V1 = 7
|
2189
|
+
|
2190
|
+
# SEsparse v1.
|
2191
|
+
BACKING_TYPE_SESPARSE_V2 = 8
|
2192
|
+
end
|
2193
|
+
|
2194
|
+
# VMDK disk mode.
|
2195
|
+
module VmdkMode
|
2196
|
+
# VMDK disk mode unspecified or unknown.
|
2197
|
+
VMDK_MODE_UNSPECIFIED = 0
|
2198
|
+
|
2199
|
+
# Dependent disk mode.
|
2200
|
+
DEPENDENT = 1
|
2201
|
+
|
2202
|
+
# Independent - Persistent disk mode.
|
2203
|
+
INDEPENDENT_PERSISTENT = 2
|
2204
|
+
|
2205
|
+
# Independent - Nonpersistent disk mode.
|
2206
|
+
INDEPENDENT_NONPERSISTENT = 3
|
2207
|
+
end
|
2208
|
+
|
2209
|
+
# RDM compatibility mode.
|
2210
|
+
module RdmCompatibility
|
2211
|
+
# Compatibility mode unspecified or unknown.
|
2212
|
+
RDM_COMPATIBILITY_UNSPECIFIED = 0
|
2213
|
+
|
2214
|
+
# Physical compatibility mode.
|
2215
|
+
PHYSICAL_COMPATIBILITY = 1
|
2216
|
+
|
2217
|
+
# Virtual compatibility mode.
|
2218
|
+
VIRTUAL_COMPATIBILITY = 2
|
2219
|
+
end
|
2220
|
+
end
|
2221
|
+
|
2222
|
+
# Information from Guest-level collections.
|
2223
|
+
# @!attribute [rw] os_name
|
2224
|
+
# @return [::String]
|
2225
|
+
# The name of the operating system.
|
2226
|
+
# @!attribute [rw] family
|
2227
|
+
# @return [::Google::Cloud::MigrationCenter::V1::OperatingSystemFamily]
|
2228
|
+
# What family the OS belong to, if known.
|
2229
|
+
# @!attribute [rw] version
|
2230
|
+
# @return [::String]
|
2231
|
+
# The version of the operating system.
|
2232
|
+
# @!attribute [rw] config
|
2233
|
+
# @return [::Google::Cloud::MigrationCenter::V1::GuestConfigDetails]
|
2234
|
+
# OS and app configuration.
|
2235
|
+
# @!attribute [rw] runtime
|
2236
|
+
# @return [::Google::Cloud::MigrationCenter::V1::GuestRuntimeDetails]
|
2237
|
+
# Runtime information.
|
2238
|
+
class GuestOsDetails
|
2239
|
+
include ::Google::Protobuf::MessageExts
|
2240
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2241
|
+
end
|
2242
|
+
|
2243
|
+
# Guest OS config information.
|
2244
|
+
# @!attribute [rw] issue
|
2245
|
+
# @return [::String]
|
2246
|
+
# OS issue (typically /etc/issue in Linux).
|
2247
|
+
# @!attribute [rw] fstab
|
2248
|
+
# @return [::Google::Cloud::MigrationCenter::V1::FstabEntryList]
|
2249
|
+
# Mount list (Linux fstab).
|
2250
|
+
# @!attribute [rw] hosts
|
2251
|
+
# @return [::Google::Cloud::MigrationCenter::V1::HostsEntryList]
|
2252
|
+
# Hosts file (/etc/hosts).
|
2253
|
+
# @!attribute [rw] nfs_exports
|
2254
|
+
# @return [::Google::Cloud::MigrationCenter::V1::NfsExportList]
|
2255
|
+
# NFS exports.
|
2256
|
+
# @!attribute [rw] selinux_mode
|
2257
|
+
# @return [::Google::Cloud::MigrationCenter::V1::GuestConfigDetails::SeLinuxMode]
|
2258
|
+
# Security-Enhanced Linux (SELinux) mode.
|
2259
|
+
class GuestConfigDetails
|
2260
|
+
include ::Google::Protobuf::MessageExts
|
2261
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2262
|
+
|
2263
|
+
# Security-Enhanced Linux (SELinux) mode.
|
2264
|
+
module SeLinuxMode
|
2265
|
+
# SELinux mode unknown or unspecified.
|
2266
|
+
SE_LINUX_MODE_UNSPECIFIED = 0
|
2267
|
+
|
2268
|
+
# SELinux is disabled.
|
2269
|
+
SE_LINUX_MODE_DISABLED = 1
|
2270
|
+
|
2271
|
+
# SELinux permissive mode.
|
2272
|
+
SE_LINUX_MODE_PERMISSIVE = 2
|
2273
|
+
|
2274
|
+
# SELinux enforcing mode.
|
2275
|
+
SE_LINUX_MODE_ENFORCING = 3
|
2276
|
+
end
|
2277
|
+
end
|
2278
|
+
|
2279
|
+
# Fstab content.
|
2280
|
+
# @!attribute [rw] entries
|
2281
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::FstabEntry>]
|
2282
|
+
# Fstab entries.
|
2283
|
+
class FstabEntryList
|
2284
|
+
include ::Google::Protobuf::MessageExts
|
2285
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2286
|
+
end
|
2287
|
+
|
2288
|
+
# Single fstab entry.
|
2289
|
+
# @!attribute [rw] spec
|
2290
|
+
# @return [::String]
|
2291
|
+
# The block special device or remote filesystem to be mounted.
|
2292
|
+
# @!attribute [rw] file
|
2293
|
+
# @return [::String]
|
2294
|
+
# The mount point for the filesystem.
|
2295
|
+
# @!attribute [rw] vfstype
|
2296
|
+
# @return [::String]
|
2297
|
+
# The type of the filesystem.
|
2298
|
+
# @!attribute [rw] mntops
|
2299
|
+
# @return [::String]
|
2300
|
+
# Mount options associated with the filesystem.
|
2301
|
+
# @!attribute [rw] freq
|
2302
|
+
# @return [::Integer]
|
2303
|
+
# Used by dump to determine which filesystems need to be dumped.
|
2304
|
+
# @!attribute [rw] passno
|
2305
|
+
# @return [::Integer]
|
2306
|
+
# Used by the fsck(8) program to determine the order in which filesystem
|
2307
|
+
# checks are done at reboot time.
|
2308
|
+
class FstabEntry
|
2309
|
+
include ::Google::Protobuf::MessageExts
|
2310
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2311
|
+
end
|
2312
|
+
|
2313
|
+
# Hosts content.
|
2314
|
+
# @!attribute [rw] entries
|
2315
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::HostsEntry>]
|
2316
|
+
# Hosts entries.
|
2317
|
+
class HostsEntryList
|
2318
|
+
include ::Google::Protobuf::MessageExts
|
2319
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2320
|
+
end
|
2321
|
+
|
2322
|
+
# Single /etc/hosts entry.
|
2323
|
+
# @!attribute [rw] ip
|
2324
|
+
# @return [::String]
|
2325
|
+
# IP (raw, IPv4/6 agnostic).
|
2326
|
+
# @!attribute [rw] host_names
|
2327
|
+
# @return [::Array<::String>]
|
2328
|
+
# List of host names / aliases.
|
2329
|
+
class HostsEntry
|
2330
|
+
include ::Google::Protobuf::MessageExts
|
2331
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2332
|
+
end
|
2333
|
+
|
2334
|
+
# NFS exports.
|
2335
|
+
# @!attribute [rw] entries
|
2336
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::NfsExport>]
|
2337
|
+
# NFS export entries.
|
2338
|
+
class NfsExportList
|
2339
|
+
include ::Google::Protobuf::MessageExts
|
2340
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2341
|
+
end
|
2342
|
+
|
2343
|
+
# NFS export.
|
2344
|
+
# @!attribute [rw] export_directory
|
2345
|
+
# @return [::String]
|
2346
|
+
# The directory being exported.
|
2347
|
+
# @!attribute [rw] hosts
|
2348
|
+
# @return [::Array<::String>]
|
2349
|
+
# The hosts or networks to which the export is being shared.
|
2350
|
+
class NfsExport
|
2351
|
+
include ::Google::Protobuf::MessageExts
|
2352
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2353
|
+
end
|
2354
|
+
|
2355
|
+
# Guest OS runtime information.
|
2356
|
+
# @!attribute [rw] services
|
2357
|
+
# @return [::Google::Cloud::MigrationCenter::V1::RunningServiceList]
|
2358
|
+
# Running background services.
|
2359
|
+
# @!attribute [rw] processes
|
2360
|
+
# @return [::Google::Cloud::MigrationCenter::V1::RunningProcessList]
|
2361
|
+
# Running processes.
|
2362
|
+
# @!attribute [rw] network
|
2363
|
+
# @return [::Google::Cloud::MigrationCenter::V1::RuntimeNetworkInfo]
|
2364
|
+
# Runtime network information (connections, ports).
|
2365
|
+
# @!attribute [rw] last_boot_time
|
2366
|
+
# @return [::Google::Protobuf::Timestamp]
|
2367
|
+
# Last time the OS was booted.
|
2368
|
+
# @!attribute [rw] domain
|
2369
|
+
# @return [::String]
|
2370
|
+
# Domain, e.g. c.stratozone-development.internal.
|
2371
|
+
# @!attribute [rw] machine_name
|
2372
|
+
# @return [::String]
|
2373
|
+
# Machine name.
|
2374
|
+
# @!attribute [rw] installed_apps
|
2375
|
+
# @return [::Google::Cloud::MigrationCenter::V1::GuestInstalledApplicationList]
|
2376
|
+
# Installed applications information.
|
2377
|
+
# @!attribute [rw] open_file_list
|
2378
|
+
# @return [::Google::Cloud::MigrationCenter::V1::OpenFileList]
|
2379
|
+
# Open files information.
|
2380
|
+
class GuestRuntimeDetails
|
2381
|
+
include ::Google::Protobuf::MessageExts
|
2382
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2383
|
+
end
|
2384
|
+
|
2385
|
+
# List of running guest OS services.
|
2386
|
+
# @!attribute [rw] entries
|
2387
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::RunningService>]
|
2388
|
+
# Running service entries.
|
2389
|
+
class RunningServiceList
|
2390
|
+
include ::Google::Protobuf::MessageExts
|
2391
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2392
|
+
end
|
2393
|
+
|
2394
|
+
# Guest OS running service details.
|
2395
|
+
# @!attribute [rw] service_name
|
2396
|
+
# @return [::String]
|
2397
|
+
# Service name.
|
2398
|
+
# @!attribute [rw] state
|
2399
|
+
# @return [::Google::Cloud::MigrationCenter::V1::RunningService::State]
|
2400
|
+
# Service state (OS-agnostic).
|
2401
|
+
# @!attribute [rw] start_mode
|
2402
|
+
# @return [::Google::Cloud::MigrationCenter::V1::RunningService::StartMode]
|
2403
|
+
# Service start mode (OS-agnostic).
|
2404
|
+
# @!attribute [rw] exe_path
|
2405
|
+
# @return [::String]
|
2406
|
+
# Service binary path.
|
2407
|
+
# @!attribute [rw] cmdline
|
2408
|
+
# @return [::String]
|
2409
|
+
# Service command line.
|
2410
|
+
# @!attribute [rw] pid
|
2411
|
+
# @return [::Integer]
|
2412
|
+
# Service pid.
|
2413
|
+
class RunningService
|
2414
|
+
include ::Google::Protobuf::MessageExts
|
2415
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2416
|
+
|
2417
|
+
# Service state (OS-agnostic).
|
2418
|
+
module State
|
2419
|
+
# Service state unspecified.
|
2420
|
+
STATE_UNSPECIFIED = 0
|
2421
|
+
|
2422
|
+
# Service is active.
|
2423
|
+
ACTIVE = 1
|
2424
|
+
|
2425
|
+
# Service is paused.
|
2426
|
+
PAUSED = 2
|
2427
|
+
|
2428
|
+
# Service is stopped.
|
2429
|
+
STOPPED = 3
|
2430
|
+
end
|
2431
|
+
|
2432
|
+
# Service start mode (OS-agnostic).
|
2433
|
+
module StartMode
|
2434
|
+
# Start mode unspecified.
|
2435
|
+
START_MODE_UNSPECIFIED = 0
|
2436
|
+
|
2437
|
+
# The service is a device driver started by the system loader.
|
2438
|
+
BOOT = 1
|
2439
|
+
|
2440
|
+
# The service is a device driver started by the IOInitSystem function.
|
2441
|
+
SYSTEM = 2
|
2442
|
+
|
2443
|
+
# The service is started by the operating system, at system start-up
|
2444
|
+
AUTO = 3
|
2445
|
+
|
2446
|
+
# The service is started only manually, by a user.
|
2447
|
+
MANUAL = 4
|
2448
|
+
|
2449
|
+
# The service is disabled.
|
2450
|
+
DISABLED = 5
|
2451
|
+
end
|
2452
|
+
end
|
2453
|
+
|
2454
|
+
# List of running guest OS processes.
|
2455
|
+
# @!attribute [rw] entries
|
2456
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::RunningProcess>]
|
2457
|
+
# Running process entries.
|
2458
|
+
class RunningProcessList
|
2459
|
+
include ::Google::Protobuf::MessageExts
|
2460
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2461
|
+
end
|
2462
|
+
|
2463
|
+
# Guest OS running process details.
|
2464
|
+
# @!attribute [rw] pid
|
2465
|
+
# @return [::Integer]
|
2466
|
+
# Process ID.
|
2467
|
+
# @!attribute [rw] exe_path
|
2468
|
+
# @return [::String]
|
2469
|
+
# Process binary path.
|
2470
|
+
# @!attribute [rw] cmdline
|
2471
|
+
# @return [::String]
|
2472
|
+
# Process full command line.
|
2473
|
+
# @!attribute [rw] user
|
2474
|
+
# @return [::String]
|
2475
|
+
# User running the process.
|
2476
|
+
# @!attribute [rw] attributes
|
2477
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
2478
|
+
# Process extended attributes.
|
2479
|
+
class RunningProcess
|
2480
|
+
include ::Google::Protobuf::MessageExts
|
2481
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2482
|
+
|
2483
|
+
# @!attribute [rw] key
|
2484
|
+
# @return [::String]
|
2485
|
+
# @!attribute [rw] value
|
2486
|
+
# @return [::String]
|
2487
|
+
class AttributesEntry
|
2488
|
+
include ::Google::Protobuf::MessageExts
|
2489
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2490
|
+
end
|
2491
|
+
end
|
2492
|
+
|
2493
|
+
# Runtime networking information.
|
2494
|
+
# @!attribute [rw] scan_time
|
2495
|
+
# @return [::Google::Protobuf::Timestamp]
|
2496
|
+
# Time of the last network scan.
|
2497
|
+
# @!attribute [rw] connections
|
2498
|
+
# @return [::Google::Cloud::MigrationCenter::V1::NetworkConnectionList]
|
2499
|
+
# Network connections.
|
2500
|
+
class RuntimeNetworkInfo
|
2501
|
+
include ::Google::Protobuf::MessageExts
|
2502
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2503
|
+
end
|
2504
|
+
|
2505
|
+
# Network connection list.
|
2506
|
+
# @!attribute [rw] entries
|
2507
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::NetworkConnection>]
|
2508
|
+
# Network connection entries.
|
2509
|
+
class NetworkConnectionList
|
2510
|
+
include ::Google::Protobuf::MessageExts
|
2511
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2512
|
+
end
|
2513
|
+
|
2514
|
+
# @!attribute [rw] protocol
|
2515
|
+
# @return [::String]
|
2516
|
+
# Connection protocol (e.g. TCP/UDP).
|
2517
|
+
# @!attribute [rw] local_ip_address
|
2518
|
+
# @return [::String]
|
2519
|
+
# Local IP address.
|
2520
|
+
# @!attribute [rw] local_port
|
2521
|
+
# @return [::Integer]
|
2522
|
+
# Local port.
|
2523
|
+
# @!attribute [rw] remote_ip_address
|
2524
|
+
# @return [::String]
|
2525
|
+
# Remote IP address.
|
2526
|
+
# @!attribute [rw] remote_port
|
2527
|
+
# @return [::Integer]
|
2528
|
+
# Remote port.
|
2529
|
+
# @!attribute [rw] state
|
2530
|
+
# @return [::Google::Cloud::MigrationCenter::V1::NetworkConnection::State]
|
2531
|
+
# Network connection state.
|
2532
|
+
# @!attribute [rw] pid
|
2533
|
+
# @return [::Integer]
|
2534
|
+
# Process ID.
|
2535
|
+
# @!attribute [rw] process_name
|
2536
|
+
# @return [::String]
|
2537
|
+
# Process or service name.
|
2538
|
+
class NetworkConnection
|
2539
|
+
include ::Google::Protobuf::MessageExts
|
2540
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2541
|
+
|
2542
|
+
# Network connection state.
|
2543
|
+
module State
|
2544
|
+
# Connection state is unknown or unspecified.
|
2545
|
+
STATE_UNSPECIFIED = 0
|
2546
|
+
|
2547
|
+
# The connection is being opened.
|
2548
|
+
OPENING = 1
|
2549
|
+
|
2550
|
+
# The connection is open.
|
2551
|
+
OPEN = 2
|
2552
|
+
|
2553
|
+
# Listening for incoming connections.
|
2554
|
+
LISTEN = 3
|
2555
|
+
|
2556
|
+
# The connection is being closed.
|
2557
|
+
CLOSING = 4
|
2558
|
+
|
2559
|
+
# The connection is closed.
|
2560
|
+
CLOSED = 5
|
2561
|
+
end
|
2562
|
+
end
|
2563
|
+
|
2564
|
+
# Guest installed application list.
|
2565
|
+
# @!attribute [rw] entries
|
2566
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::GuestInstalledApplication>]
|
2567
|
+
# Application entries.
|
2568
|
+
class GuestInstalledApplicationList
|
2569
|
+
include ::Google::Protobuf::MessageExts
|
2570
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2571
|
+
end
|
2572
|
+
|
2573
|
+
# Guest installed application information.
|
2574
|
+
# @!attribute [rw] application_name
|
2575
|
+
# @return [::String]
|
2576
|
+
# Installed application name.
|
2577
|
+
# @!attribute [rw] vendor
|
2578
|
+
# @return [::String]
|
2579
|
+
# Installed application vendor.
|
2580
|
+
# @!attribute [rw] install_time
|
2581
|
+
# @return [::Google::Protobuf::Timestamp]
|
2582
|
+
# The time when the application was installed.
|
2583
|
+
# @!attribute [rw] path
|
2584
|
+
# @return [::String]
|
2585
|
+
# Source path.
|
2586
|
+
# @!attribute [rw] version
|
2587
|
+
# @return [::String]
|
2588
|
+
# Installed application version.
|
2589
|
+
class GuestInstalledApplication
|
2590
|
+
include ::Google::Protobuf::MessageExts
|
2591
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2592
|
+
end
|
2593
|
+
|
2594
|
+
# Open file list.
|
2595
|
+
# @!attribute [rw] entries
|
2596
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::OpenFileDetails>]
|
2597
|
+
# Open file details entries.
|
2598
|
+
class OpenFileList
|
2599
|
+
include ::Google::Protobuf::MessageExts
|
2600
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2601
|
+
end
|
2602
|
+
|
2603
|
+
# Open file Information.
|
2604
|
+
# @!attribute [rw] command
|
2605
|
+
# @return [::String]
|
2606
|
+
# Opened file command.
|
2607
|
+
# @!attribute [rw] user
|
2608
|
+
# @return [::String]
|
2609
|
+
# Opened file user.
|
2610
|
+
# @!attribute [rw] file_type
|
2611
|
+
# @return [::String]
|
2612
|
+
# Opened file file type.
|
2613
|
+
# @!attribute [rw] file_path
|
2614
|
+
# @return [::String]
|
2615
|
+
# Opened file file path.
|
2616
|
+
class OpenFileDetails
|
2617
|
+
include ::Google::Protobuf::MessageExts
|
2618
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2619
|
+
end
|
2620
|
+
|
2621
|
+
# Information about the platform.
|
2622
|
+
# @!attribute [rw] vmware_details
|
2623
|
+
# @return [::Google::Cloud::MigrationCenter::V1::VmwarePlatformDetails]
|
2624
|
+
# VMware specific details.
|
2625
|
+
# @!attribute [rw] aws_ec2_details
|
2626
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AwsEc2PlatformDetails]
|
2627
|
+
# AWS EC2 specific details.
|
2628
|
+
# @!attribute [rw] azure_vm_details
|
2629
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AzureVmPlatformDetails]
|
2630
|
+
# Azure VM specific details.
|
2631
|
+
# @!attribute [rw] generic_details
|
2632
|
+
# @return [::Google::Cloud::MigrationCenter::V1::GenericPlatformDetails]
|
2633
|
+
# Generic platform details.
|
2634
|
+
# @!attribute [rw] physical_details
|
2635
|
+
# @return [::Google::Cloud::MigrationCenter::V1::PhysicalPlatformDetails]
|
2636
|
+
# Physical machines platform details.
|
2637
|
+
class PlatformDetails
|
2638
|
+
include ::Google::Protobuf::MessageExts
|
2639
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2640
|
+
end
|
2641
|
+
|
2642
|
+
# VMware specific details.
|
2643
|
+
# @!attribute [rw] vcenter_version
|
2644
|
+
# @return [::String]
|
2645
|
+
# vCenter version.
|
2646
|
+
# @!attribute [rw] esx_version
|
2647
|
+
# @return [::String]
|
2648
|
+
# ESX version.
|
2649
|
+
# @!attribute [rw] osid
|
2650
|
+
# @return [::String]
|
2651
|
+
# VMware os enum -
|
2652
|
+
# https://vdc-repo.vmware.com/vmwb-repository/dcr-public/da47f910-60ac-438b-8b9b-6122f4d14524/16b7274a-bf8b-4b4c-a05e-746f2aa93c8c/doc/vim.vm.GuestOsDescriptor.GuestOsIdentifier.html.
|
2653
|
+
# @!attribute [rw] vcenter_folder
|
2654
|
+
# @return [::String]
|
2655
|
+
# Folder name in vCenter where asset resides.
|
2656
|
+
# @!attribute [rw] vcenter_uri
|
2657
|
+
# @return [::String]
|
2658
|
+
# vCenter URI used in collection.
|
2659
|
+
# @!attribute [rw] vcenter_vm_id
|
2660
|
+
# @return [::String]
|
2661
|
+
# vCenter VM ID.
|
2662
|
+
class VmwarePlatformDetails
|
2663
|
+
include ::Google::Protobuf::MessageExts
|
2664
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2665
|
+
end
|
2666
|
+
|
2667
|
+
# AWS EC2 specific details.
|
2668
|
+
# @!attribute [rw] machine_type_label
|
2669
|
+
# @return [::String]
|
2670
|
+
# AWS platform's machine type label.
|
2671
|
+
# @!attribute [rw] location
|
2672
|
+
# @return [::String]
|
2673
|
+
# The location of the machine in the AWS format.
|
2674
|
+
class AwsEc2PlatformDetails
|
2675
|
+
include ::Google::Protobuf::MessageExts
|
2676
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2677
|
+
end
|
2678
|
+
|
2679
|
+
# Azure VM specific details.
|
2680
|
+
# @!attribute [rw] machine_type_label
|
2681
|
+
# @return [::String]
|
2682
|
+
# Azure platform's machine type label.
|
2683
|
+
# @!attribute [rw] location
|
2684
|
+
# @return [::String]
|
2685
|
+
# The location of the machine in the Azure format.
|
2686
|
+
# @!attribute [rw] provisioning_state
|
2687
|
+
# @return [::String]
|
2688
|
+
# Azure platform's provisioning state.
|
2689
|
+
class AzureVmPlatformDetails
|
2690
|
+
include ::Google::Protobuf::MessageExts
|
2691
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2692
|
+
end
|
2693
|
+
|
2694
|
+
# Generic platform details.
|
2695
|
+
# @!attribute [rw] location
|
2696
|
+
# @return [::String]
|
2697
|
+
# Free text representation of the machine location.
|
2698
|
+
# The format of this field should not be relied on. Different VMs in the same
|
2699
|
+
# location may have different string values for this field.
|
2700
|
+
class GenericPlatformDetails
|
2701
|
+
include ::Google::Protobuf::MessageExts
|
2702
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2703
|
+
end
|
2704
|
+
|
2705
|
+
# Platform specific details for Physical Machines.
|
2706
|
+
# @!attribute [rw] location
|
2707
|
+
# @return [::String]
|
2708
|
+
# Free text representation of the machine location.
|
2709
|
+
# The format of this field should not be relied on. Different machines in the
|
2710
|
+
# same location may have different string values for this field.
|
2711
|
+
class PhysicalPlatformDetails
|
2712
|
+
include ::Google::Protobuf::MessageExts
|
2713
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2714
|
+
end
|
2715
|
+
|
2716
|
+
# Memory usage sample.
|
2717
|
+
# @!attribute [rw] utilized_percentage
|
2718
|
+
# @return [::Float]
|
2719
|
+
# Percentage of system memory utilized. Must be in the interval [0, 100].
|
2720
|
+
class MemoryUsageSample
|
2721
|
+
include ::Google::Protobuf::MessageExts
|
2722
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2723
|
+
end
|
2724
|
+
|
2725
|
+
# CPU usage sample.
|
2726
|
+
# @!attribute [rw] utilized_percentage
|
2727
|
+
# @return [::Float]
|
2728
|
+
# Percentage of total CPU capacity utilized. Must be in the interval [0,
|
2729
|
+
# 100]. On most systems can be calculated using 100 - idle percentage.
|
2730
|
+
class CpuUsageSample
|
2731
|
+
include ::Google::Protobuf::MessageExts
|
2732
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2733
|
+
end
|
2734
|
+
|
2735
|
+
# Network usage sample. Values are across all network interfaces.
|
2736
|
+
# @!attribute [rw] average_ingress_bps
|
2737
|
+
# @return [::Float]
|
2738
|
+
# Average network ingress in B/s sampled over a short window.
|
2739
|
+
# Must be non-negative.
|
2740
|
+
# @!attribute [rw] average_egress_bps
|
2741
|
+
# @return [::Float]
|
2742
|
+
# Average network egress in B/s sampled over a short window.
|
2743
|
+
# Must be non-negative.
|
2744
|
+
class NetworkUsageSample
|
2745
|
+
include ::Google::Protobuf::MessageExts
|
2746
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2747
|
+
end
|
2748
|
+
|
2749
|
+
# Disk usage sample. Values are across all disks.
|
2750
|
+
# @!attribute [rw] average_iops
|
2751
|
+
# @return [::Float]
|
2752
|
+
# Average IOPS sampled over a short window. Must be non-negative.
|
2753
|
+
class DiskUsageSample
|
2754
|
+
include ::Google::Protobuf::MessageExts
|
2755
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2756
|
+
end
|
2757
|
+
|
2758
|
+
# Performance data sample.
|
2759
|
+
# @!attribute [rw] sample_time
|
2760
|
+
# @return [::Google::Protobuf::Timestamp]
|
2761
|
+
# Time the sample was collected.
|
2762
|
+
# If omitted, the frame report time will be used.
|
2763
|
+
# @!attribute [rw] memory
|
2764
|
+
# @return [::Google::Cloud::MigrationCenter::V1::MemoryUsageSample]
|
2765
|
+
# Memory usage sample.
|
2766
|
+
# @!attribute [rw] cpu
|
2767
|
+
# @return [::Google::Cloud::MigrationCenter::V1::CpuUsageSample]
|
2768
|
+
# CPU usage sample.
|
2769
|
+
# @!attribute [rw] network
|
2770
|
+
# @return [::Google::Cloud::MigrationCenter::V1::NetworkUsageSample]
|
2771
|
+
# Network usage sample.
|
2772
|
+
# @!attribute [rw] disk
|
2773
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DiskUsageSample]
|
2774
|
+
# Disk usage sample.
|
2775
|
+
class PerformanceSample
|
2776
|
+
include ::Google::Protobuf::MessageExts
|
2777
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2778
|
+
end
|
2779
|
+
|
2780
|
+
# Performance data for an asset.
|
2781
|
+
# @!attribute [rw] daily_resource_usage_aggregations
|
2782
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation>]
|
2783
|
+
# Daily resource usage aggregations.
|
2784
|
+
# Contains all of the data available for an asset, up to the last 420 days.
|
2785
|
+
# Aggregations are sorted from oldest to most recent.
|
2786
|
+
class AssetPerformanceData
|
2787
|
+
include ::Google::Protobuf::MessageExts
|
2788
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2789
|
+
end
|
2790
|
+
|
2791
|
+
# Usage data aggregation for a single day.
|
2792
|
+
# @!attribute [rw] date
|
2793
|
+
# @return [::Google::Type::Date]
|
2794
|
+
# Aggregation date. Day boundaries are at midnight UTC.
|
2795
|
+
# @!attribute [rw] cpu
|
2796
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::CPU]
|
2797
|
+
# CPU usage.
|
2798
|
+
# @!attribute [rw] memory
|
2799
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::Memory]
|
2800
|
+
# Memory usage.
|
2801
|
+
# @!attribute [rw] network
|
2802
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::Network]
|
2803
|
+
# Network usage.
|
2804
|
+
# @!attribute [rw] disk
|
2805
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::Disk]
|
2806
|
+
# Disk usage.
|
2807
|
+
class DailyResourceUsageAggregation
|
2808
|
+
include ::Google::Protobuf::MessageExts
|
2809
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2810
|
+
|
2811
|
+
# Statistical aggregation of samples for a single resource usage.
|
2812
|
+
# @!attribute [rw] average
|
2813
|
+
# @return [::Float]
|
2814
|
+
# Average usage value.
|
2815
|
+
# @!attribute [rw] median
|
2816
|
+
# @return [::Float]
|
2817
|
+
# Median usage value.
|
2818
|
+
# @!attribute [rw] nintey_fifth_percentile
|
2819
|
+
# @return [::Float]
|
2820
|
+
# 95th percentile usage value.
|
2821
|
+
# @!attribute [rw] peak
|
2822
|
+
# @return [::Float]
|
2823
|
+
# Peak usage value.
|
2824
|
+
class Stats
|
2825
|
+
include ::Google::Protobuf::MessageExts
|
2826
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2827
|
+
end
|
2828
|
+
|
2829
|
+
# Statistical aggregation of CPU usage.
|
2830
|
+
# @!attribute [rw] utilization_percentage
|
2831
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::Stats]
|
2832
|
+
# CPU utilization percentage.
|
2833
|
+
class CPU
|
2834
|
+
include ::Google::Protobuf::MessageExts
|
2835
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2836
|
+
end
|
2837
|
+
|
2838
|
+
# Statistical aggregation of memory usage.
|
2839
|
+
# @!attribute [rw] utilization_percentage
|
2840
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::Stats]
|
2841
|
+
# Memory utilization percentage.
|
2842
|
+
class Memory
|
2843
|
+
include ::Google::Protobuf::MessageExts
|
2844
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2845
|
+
end
|
2846
|
+
|
2847
|
+
# Statistical aggregation of network usage.
|
2848
|
+
# @!attribute [rw] ingress_bps
|
2849
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::Stats]
|
2850
|
+
# Network ingress in B/s.
|
2851
|
+
# @!attribute [rw] egress_bps
|
2852
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::Stats]
|
2853
|
+
# Network egress in B/s.
|
2854
|
+
class Network
|
2855
|
+
include ::Google::Protobuf::MessageExts
|
2856
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2857
|
+
end
|
2858
|
+
|
2859
|
+
# Statistical aggregation of disk usage.
|
2860
|
+
# @!attribute [rw] iops
|
2861
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::Stats]
|
2862
|
+
# Disk I/O operations per second.
|
2863
|
+
class Disk
|
2864
|
+
include ::Google::Protobuf::MessageExts
|
2865
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2866
|
+
end
|
2867
|
+
end
|
2868
|
+
|
2869
|
+
# Message containing insights list.
|
2870
|
+
# @!attribute [r] insights
|
2871
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::Insight>]
|
2872
|
+
# Output only. Insights of the list.
|
2873
|
+
# @!attribute [r] update_time
|
2874
|
+
# @return [::Google::Protobuf::Timestamp]
|
2875
|
+
# Output only. Update timestamp.
|
2876
|
+
class InsightList
|
2877
|
+
include ::Google::Protobuf::MessageExts
|
2878
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2879
|
+
end
|
2880
|
+
|
2881
|
+
# An insight about an asset.
|
2882
|
+
# @!attribute [r] migration_insight
|
2883
|
+
# @return [::Google::Cloud::MigrationCenter::V1::MigrationInsight]
|
2884
|
+
# Output only. An insight about potential migrations for an asset.
|
2885
|
+
# @!attribute [r] generic_insight
|
2886
|
+
# @return [::Google::Cloud::MigrationCenter::V1::GenericInsight]
|
2887
|
+
# Output only. A generic insight about an asset
|
2888
|
+
class Insight
|
2889
|
+
include ::Google::Protobuf::MessageExts
|
2890
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2891
|
+
end
|
2892
|
+
|
2893
|
+
# A generic insight about an asset.
|
2894
|
+
# @!attribute [r] message_id
|
2895
|
+
# @return [::Integer]
|
2896
|
+
# Output only. Represents a globally unique message id for
|
2897
|
+
# this insight, can be used for localization purposes, in case message_code
|
2898
|
+
# is not yet known by the client use default_message instead.
|
2899
|
+
# @!attribute [r] default_message
|
2900
|
+
# @return [::String]
|
2901
|
+
# Output only. In case message_code is not yet known by the client
|
2902
|
+
# default_message will be the message to be used instead.
|
2903
|
+
# @!attribute [r] additional_information
|
2904
|
+
# @return [::Array<::String>]
|
2905
|
+
# Output only. Additional information about the insight, each entry can be a
|
2906
|
+
# logical entry and must make sense if it is displayed with line breaks
|
2907
|
+
# between each entry. Text can contain md style links.
|
2908
|
+
class GenericInsight
|
2909
|
+
include ::Google::Protobuf::MessageExts
|
2910
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2911
|
+
end
|
2912
|
+
|
2913
|
+
# An insight about potential migrations for an asset.
|
2914
|
+
# @!attribute [r] fit
|
2915
|
+
# @return [::Google::Cloud::MigrationCenter::V1::FitDescriptor]
|
2916
|
+
# Output only. Description of how well the asset this insight is associated
|
2917
|
+
# with fits the proposed migration.
|
2918
|
+
# @!attribute [r] compute_engine_target
|
2919
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ComputeEngineMigrationTarget]
|
2920
|
+
# Output only. A Google Compute Engine target.
|
2921
|
+
class MigrationInsight
|
2922
|
+
include ::Google::Protobuf::MessageExts
|
2923
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2924
|
+
end
|
2925
|
+
|
2926
|
+
# Compute engine migration target.
|
2927
|
+
# @!attribute [rw] shape
|
2928
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ComputeEngineShapeDescriptor]
|
2929
|
+
# Description of the suggested shape for the migration target.
|
2930
|
+
class ComputeEngineMigrationTarget
|
2931
|
+
include ::Google::Protobuf::MessageExts
|
2932
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2933
|
+
end
|
2934
|
+
|
2935
|
+
# Compute Engine target shape descriptor.
|
2936
|
+
# @!attribute [rw] memory_mb
|
2937
|
+
# @return [::Integer]
|
2938
|
+
# Memory in mebibytes.
|
2939
|
+
# @!attribute [rw] physical_core_count
|
2940
|
+
# @return [::Integer]
|
2941
|
+
# Number of physical cores.
|
2942
|
+
# @!attribute [rw] logical_core_count
|
2943
|
+
# @return [::Integer]
|
2944
|
+
# Number of logical cores.
|
2945
|
+
# @!attribute [rw] series
|
2946
|
+
# @return [::String]
|
2947
|
+
# Compute Engine machine series.
|
2948
|
+
# @!attribute [rw] machine_type
|
2949
|
+
# @return [::String]
|
2950
|
+
# Compute Engine machine type.
|
2951
|
+
# @!attribute [rw] storage
|
2952
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ComputeStorageDescriptor>]
|
2953
|
+
# Compute Engine storage. Never empty.
|
2954
|
+
class ComputeEngineShapeDescriptor
|
2955
|
+
include ::Google::Protobuf::MessageExts
|
2956
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2957
|
+
end
|
2958
|
+
|
2959
|
+
# Compute Engine storage option descriptor.
|
2960
|
+
# @!attribute [rw] type
|
2961
|
+
# @return [::Google::Cloud::MigrationCenter::V1::PersistentDiskType]
|
2962
|
+
# Disk type backing the storage.
|
2963
|
+
# @!attribute [rw] size_gb
|
2964
|
+
# @return [::Integer]
|
2965
|
+
# Disk size in GiB.
|
2966
|
+
class ComputeStorageDescriptor
|
2967
|
+
include ::Google::Protobuf::MessageExts
|
2968
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2969
|
+
end
|
2970
|
+
|
2971
|
+
# Describes the fit level of an asset for migration to a specific target.
|
2972
|
+
# @!attribute [rw] fit_level
|
2973
|
+
# @return [::Google::Cloud::MigrationCenter::V1::FitDescriptor::FitLevel]
|
2974
|
+
# Fit level.
|
2975
|
+
class FitDescriptor
|
2976
|
+
include ::Google::Protobuf::MessageExts
|
2977
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2978
|
+
|
2979
|
+
# Fit level.
|
2980
|
+
module FitLevel
|
2981
|
+
# Not enough information.
|
2982
|
+
FIT_LEVEL_UNSPECIFIED = 0
|
2983
|
+
|
2984
|
+
# Fit.
|
2985
|
+
FIT = 1
|
2986
|
+
|
2987
|
+
# No Fit.
|
2988
|
+
NO_FIT = 2
|
2989
|
+
|
2990
|
+
# Fit with effort.
|
2991
|
+
REQUIRES_EFFORT = 3
|
2992
|
+
end
|
2993
|
+
end
|
2994
|
+
|
2995
|
+
# Message describing an aggregation. The message includes the aggregation type,
|
2996
|
+
# parameters, and the field on which to perform the aggregation.
|
2997
|
+
# @!attribute [rw] field
|
2998
|
+
# @return [::String]
|
2999
|
+
# The name of the field on which to aggregate.
|
3000
|
+
# @!attribute [rw] count
|
3001
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Aggregation::Count]
|
3002
|
+
# Count the number of matching objects.
|
3003
|
+
# @!attribute [rw] sum
|
3004
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Aggregation::Sum]
|
3005
|
+
# Sum over a numeric field.
|
3006
|
+
# @!attribute [rw] histogram
|
3007
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Aggregation::Histogram]
|
3008
|
+
# Creates a bucketed histogram of field values.
|
3009
|
+
# @!attribute [rw] frequency
|
3010
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Aggregation::Frequency]
|
3011
|
+
# Creates a frequency distribution of all field values.
|
3012
|
+
class Aggregation
|
3013
|
+
include ::Google::Protobuf::MessageExts
|
3014
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3015
|
+
|
3016
|
+
# Object count.
|
3017
|
+
class Count
|
3018
|
+
include ::Google::Protobuf::MessageExts
|
3019
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3020
|
+
end
|
3021
|
+
|
3022
|
+
# Sum of field values.
|
3023
|
+
class Sum
|
3024
|
+
include ::Google::Protobuf::MessageExts
|
3025
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3026
|
+
end
|
3027
|
+
|
3028
|
+
# Histogram of bucketed assets counts by field value.
|
3029
|
+
# @!attribute [rw] lower_bounds
|
3030
|
+
# @return [::Array<::Float>]
|
3031
|
+
# Lower bounds of buckets.
|
3032
|
+
# The response will contain `n+1` buckets for `n` bounds.
|
3033
|
+
# The first bucket will count all assets for which the field value is
|
3034
|
+
# smaller than the first bound.
|
3035
|
+
# Subsequent buckets will count assets for which the field value is
|
3036
|
+
# greater or equal to a lower bound and smaller than the next one.
|
3037
|
+
# The last bucket will count assets for which the field value is greater or
|
3038
|
+
# equal to the final lower bound.
|
3039
|
+
# You can define up to 20 lower bounds.
|
3040
|
+
class Histogram
|
3041
|
+
include ::Google::Protobuf::MessageExts
|
3042
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3043
|
+
end
|
3044
|
+
|
3045
|
+
# Frequency distribution of all field values.
|
3046
|
+
class Frequency
|
3047
|
+
include ::Google::Protobuf::MessageExts
|
3048
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3049
|
+
end
|
3050
|
+
end
|
3051
|
+
|
3052
|
+
# Message describing a result of an aggregation.
|
3053
|
+
# @!attribute [rw] field
|
3054
|
+
# @return [::String]
|
3055
|
+
# @!attribute [rw] count
|
3056
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AggregationResult::Count]
|
3057
|
+
# @!attribute [rw] sum
|
3058
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AggregationResult::Sum]
|
3059
|
+
# @!attribute [rw] histogram
|
3060
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AggregationResult::Histogram]
|
3061
|
+
# @!attribute [rw] frequency
|
3062
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AggregationResult::Frequency]
|
3063
|
+
class AggregationResult
|
3064
|
+
include ::Google::Protobuf::MessageExts
|
3065
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3066
|
+
|
3067
|
+
# The result of a count aggregation.
|
3068
|
+
# @!attribute [rw] value
|
3069
|
+
# @return [::Integer]
|
3070
|
+
class Count
|
3071
|
+
include ::Google::Protobuf::MessageExts
|
3072
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3073
|
+
end
|
3074
|
+
|
3075
|
+
# The result of a sum aggregation.
|
3076
|
+
# @!attribute [rw] value
|
3077
|
+
# @return [::Float]
|
3078
|
+
class Sum
|
3079
|
+
include ::Google::Protobuf::MessageExts
|
3080
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3081
|
+
end
|
3082
|
+
|
3083
|
+
# The result of a bucketed histogram aggregation.
|
3084
|
+
# @!attribute [rw] buckets
|
3085
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::AggregationResult::Histogram::Bucket>]
|
3086
|
+
# Buckets in the histogram.
|
3087
|
+
# There will be `n+1` buckets matching `n` lower bounds in the request.
|
3088
|
+
# The first bucket will be from -infinity to the first bound.
|
3089
|
+
# Subsequent buckets will be between one bound and the next.
|
3090
|
+
# The final bucket will be from the final bound to infinity.
|
3091
|
+
class Histogram
|
3092
|
+
include ::Google::Protobuf::MessageExts
|
3093
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3094
|
+
|
3095
|
+
# A histogram bucket with a lower and upper bound, and a count of items
|
3096
|
+
# with a field value between those bounds.
|
3097
|
+
# The lower bound is inclusive and the upper bound is exclusive.
|
3098
|
+
# Lower bound may be -infinity and upper bound may be infinity.
|
3099
|
+
# @!attribute [rw] lower_bound
|
3100
|
+
# @return [::Float]
|
3101
|
+
# Lower bound - inclusive.
|
3102
|
+
# @!attribute [rw] upper_bound
|
3103
|
+
# @return [::Float]
|
3104
|
+
# Upper bound - exclusive.
|
3105
|
+
# @!attribute [rw] count
|
3106
|
+
# @return [::Integer]
|
3107
|
+
# Count of items in the bucket.
|
3108
|
+
class Bucket
|
3109
|
+
include ::Google::Protobuf::MessageExts
|
3110
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3111
|
+
end
|
3112
|
+
end
|
3113
|
+
|
3114
|
+
# The result of a frequency distribution aggregation.
|
3115
|
+
# @!attribute [rw] values
|
3116
|
+
# @return [::Google::Protobuf::Map{::String => ::Integer}]
|
3117
|
+
class Frequency
|
3118
|
+
include ::Google::Protobuf::MessageExts
|
3119
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3120
|
+
|
3121
|
+
# @!attribute [rw] key
|
3122
|
+
# @return [::String]
|
3123
|
+
# @!attribute [rw] value
|
3124
|
+
# @return [::Integer]
|
3125
|
+
class ValuesEntry
|
3126
|
+
include ::Google::Protobuf::MessageExts
|
3127
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3128
|
+
end
|
3129
|
+
end
|
3130
|
+
end
|
3131
|
+
|
3132
|
+
# A resource that aggregates the validation errors found in an import job file.
|
3133
|
+
# @!attribute [rw] file_name
|
3134
|
+
# @return [::String]
|
3135
|
+
# The name of the file.
|
3136
|
+
# @!attribute [rw] row_errors
|
3137
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ImportRowError>]
|
3138
|
+
# Partial list of rows that encountered validation error.
|
3139
|
+
# @!attribute [rw] partial_report
|
3140
|
+
# @return [::Boolean]
|
3141
|
+
# Flag indicating that processing was aborted due to maximum number of
|
3142
|
+
# errors.
|
3143
|
+
# @!attribute [rw] file_errors
|
3144
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ImportError>]
|
3145
|
+
# List of file level errors.
|
3146
|
+
class FileValidationReport
|
3147
|
+
include ::Google::Protobuf::MessageExts
|
3148
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3149
|
+
end
|
3150
|
+
|
3151
|
+
# A resource that aggregates errors across import job files.
|
3152
|
+
# @!attribute [rw] file_validations
|
3153
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::FileValidationReport>]
|
3154
|
+
# List of errors found in files.
|
3155
|
+
# @!attribute [rw] job_errors
|
3156
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ImportError>]
|
3157
|
+
# List of job level errors.
|
3158
|
+
class ValidationReport
|
3159
|
+
include ::Google::Protobuf::MessageExts
|
3160
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3161
|
+
end
|
3162
|
+
|
3163
|
+
# A resource that reports result of the import job execution.
|
3164
|
+
# @!attribute [rw] frames_reported
|
3165
|
+
# @return [::Integer]
|
3166
|
+
# Total number of asset frames reported for the import job.
|
3167
|
+
# @!attribute [rw] execution_errors
|
3168
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ValidationReport]
|
3169
|
+
# Validation errors encountered during the execution of the import job.
|
3170
|
+
# @!attribute [r] total_rows_count
|
3171
|
+
# @return [::Integer]
|
3172
|
+
# Output only. Total number of rows in the import job.
|
3173
|
+
class ExecutionReport
|
3174
|
+
include ::Google::Protobuf::MessageExts
|
3175
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3176
|
+
end
|
3177
|
+
|
3178
|
+
# A resource that reports the errors encountered while processing an
|
3179
|
+
# import job.
|
3180
|
+
# @!attribute [rw] error_details
|
3181
|
+
# @return [::String]
|
3182
|
+
# The error information.
|
3183
|
+
# @!attribute [rw] severity
|
3184
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ImportError::Severity]
|
3185
|
+
# The severity of the error.
|
3186
|
+
class ImportError
|
3187
|
+
include ::Google::Protobuf::MessageExts
|
3188
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3189
|
+
|
3190
|
+
# Enumerate possible error severity.
|
3191
|
+
module Severity
|
3192
|
+
SEVERITY_UNSPECIFIED = 0
|
3193
|
+
|
3194
|
+
ERROR = 1
|
3195
|
+
|
3196
|
+
WARNING = 2
|
3197
|
+
|
3198
|
+
INFO = 3
|
3199
|
+
end
|
3200
|
+
end
|
3201
|
+
|
3202
|
+
# A resource that reports the import job errors at row level.
|
3203
|
+
# @!attribute [rw] row_number
|
3204
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
3205
|
+
# @return [::Integer]
|
3206
|
+
# The row number where the error was detected.
|
3207
|
+
# @!attribute [rw] vm_name
|
3208
|
+
# @return [::String]
|
3209
|
+
# The name of the VM in the row.
|
3210
|
+
# @!attribute [rw] vm_uuid
|
3211
|
+
# @return [::String]
|
3212
|
+
# The VM UUID.
|
3213
|
+
# @!attribute [rw] errors
|
3214
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ImportError>]
|
3215
|
+
# The list of errors detected in the row.
|
3216
|
+
class ImportRowError
|
3217
|
+
include ::Google::Protobuf::MessageExts
|
3218
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3219
|
+
end
|
3220
|
+
|
3221
|
+
# A resource that contains a URI to which a data file can be uploaded.
|
3222
|
+
# @!attribute [r] signed_uri
|
3223
|
+
# @return [::String]
|
3224
|
+
# Output only. Upload URI for the file.
|
3225
|
+
# @!attribute [r] headers
|
3226
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
3227
|
+
# Output only. The headers that were used to sign the URI.
|
3228
|
+
# @!attribute [r] uri_expiration_time
|
3229
|
+
# @return [::Google::Protobuf::Timestamp]
|
3230
|
+
# Output only. Expiration time of the upload URI.
|
3231
|
+
class UploadFileInfo
|
3232
|
+
include ::Google::Protobuf::MessageExts
|
3233
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3234
|
+
|
3235
|
+
# @!attribute [rw] key
|
3236
|
+
# @return [::String]
|
3237
|
+
# @!attribute [rw] value
|
3238
|
+
# @return [::String]
|
3239
|
+
class HeadersEntry
|
3240
|
+
include ::Google::Protobuf::MessageExts
|
3241
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3242
|
+
end
|
3243
|
+
end
|
3244
|
+
|
3245
|
+
# Lists the asset IDs of all assets.
|
3246
|
+
# @!attribute [rw] asset_ids
|
3247
|
+
# @return [::Array<::String>]
|
3248
|
+
# Required. A list of asset IDs
|
3249
|
+
class AssetList
|
3250
|
+
include ::Google::Protobuf::MessageExts
|
3251
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3252
|
+
end
|
3253
|
+
|
3254
|
+
# A resource that contains a single violation of a reported `AssetFrame`
|
3255
|
+
# resource.
|
3256
|
+
# @!attribute [rw] field
|
3257
|
+
# @return [::String]
|
3258
|
+
# The field of the original frame where the violation occurred.
|
3259
|
+
# @!attribute [rw] violation
|
3260
|
+
# @return [::String]
|
3261
|
+
# A message describing the violation.
|
3262
|
+
class FrameViolationEntry
|
3263
|
+
include ::Google::Protobuf::MessageExts
|
3264
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3265
|
+
end
|
3266
|
+
|
3267
|
+
# VirtualMachinePreferences enables you to create sets of assumptions, for
|
3268
|
+
# example, a geographical location and pricing track, for your migrated virtual
|
3269
|
+
# machines. The set of preferences influence recommendations for migrating
|
3270
|
+
# virtual machine assets.
|
3271
|
+
# @!attribute [rw] target_product
|
3272
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ComputeMigrationTargetProduct]
|
3273
|
+
# Target product for assets using this preference set.
|
3274
|
+
# Specify either target product or business goal, but
|
3275
|
+
# not both.
|
3276
|
+
# @!attribute [rw] region_preferences
|
3277
|
+
# @return [::Google::Cloud::MigrationCenter::V1::RegionPreferences]
|
3278
|
+
# Region preferences for assets using this preference set.
|
3279
|
+
# If you are unsure which value to set, the migration service API region is
|
3280
|
+
# often a good value to start with.
|
3281
|
+
# @!attribute [rw] commitment_plan
|
3282
|
+
# @return [::Google::Cloud::MigrationCenter::V1::CommitmentPlan]
|
3283
|
+
# Commitment plan to consider when calculating costs for virtual machine
|
3284
|
+
# insights and recommendations.
|
3285
|
+
# If you are unsure which value to set, a 3 year commitment plan is often a
|
3286
|
+
# good value to start with.
|
3287
|
+
# @!attribute [rw] sizing_optimization_strategy
|
3288
|
+
# @return [::Google::Cloud::MigrationCenter::V1::SizingOptimizationStrategy]
|
3289
|
+
# Sizing optimization strategy specifies the preferred strategy used when
|
3290
|
+
# extrapolating usage data to calculate insights and recommendations for a
|
3291
|
+
# virtual machine.
|
3292
|
+
# If you are unsure which value to set, a moderate sizing optimization
|
3293
|
+
# strategy is often a good value to start with.
|
3294
|
+
# @!attribute [rw] compute_engine_preferences
|
3295
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ComputeEnginePreferences]
|
3296
|
+
# Compute Engine preferences concern insights and recommendations for Compute
|
3297
|
+
# Engine target.
|
3298
|
+
# @!attribute [rw] vmware_engine_preferences
|
3299
|
+
# @return [::Google::Cloud::MigrationCenter::V1::VmwareEnginePreferences]
|
3300
|
+
# Preferences concerning insights and recommendations for
|
3301
|
+
# Google Cloud VMware Engine.
|
3302
|
+
# @!attribute [rw] sole_tenancy_preferences
|
3303
|
+
# @return [::Google::Cloud::MigrationCenter::V1::SoleTenancyPreferences]
|
3304
|
+
# Preferences concerning Sole Tenant nodes and virtual machines.
|
3305
|
+
class VirtualMachinePreferences
|
3306
|
+
include ::Google::Protobuf::MessageExts
|
3307
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3308
|
+
end
|
3309
|
+
|
3310
|
+
# The user preferences relating to Compute Engine target platform.
|
3311
|
+
# @!attribute [rw] machine_preferences
|
3312
|
+
# @return [::Google::Cloud::MigrationCenter::V1::MachinePreferences]
|
3313
|
+
# Preferences concerning the machine types to consider on Compute Engine.
|
3314
|
+
# @!attribute [rw] license_type
|
3315
|
+
# @return [::Google::Cloud::MigrationCenter::V1::LicenseType]
|
3316
|
+
# License type to consider when calculating costs for virtual machine
|
3317
|
+
# insights and recommendations. If unspecified, costs are calculated
|
3318
|
+
# based on the default licensing plan.
|
3319
|
+
class ComputeEnginePreferences
|
3320
|
+
include ::Google::Protobuf::MessageExts
|
3321
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3322
|
+
end
|
3323
|
+
|
3324
|
+
# The type of machines to consider when calculating virtual machine migration
|
3325
|
+
# insights and recommendations.
|
3326
|
+
# Not all machine types are available in all zones and regions.
|
3327
|
+
# @!attribute [rw] allowed_machine_series
|
3328
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::MachineSeries>]
|
3329
|
+
# Compute Engine machine series to consider for insights and recommendations.
|
3330
|
+
# If empty, no restriction is applied on the machine series.
|
3331
|
+
class MachinePreferences
|
3332
|
+
include ::Google::Protobuf::MessageExts
|
3333
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3334
|
+
end
|
3335
|
+
|
3336
|
+
# A Compute Engine machine series.
|
3337
|
+
# @!attribute [rw] code
|
3338
|
+
# @return [::String]
|
3339
|
+
# Code to identify a Compute Engine machine series. Consult
|
3340
|
+
# https://cloud.google.com/compute/docs/machine-resource#machine_type_comparison
|
3341
|
+
# for more details on the available series.
|
3342
|
+
class MachineSeries
|
3343
|
+
include ::Google::Protobuf::MessageExts
|
3344
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3345
|
+
end
|
3346
|
+
|
3347
|
+
# The user preferences relating to Google Cloud VMware Engine target platform.
|
3348
|
+
# @!attribute [rw] cpu_overcommit_ratio
|
3349
|
+
# @return [::Float]
|
3350
|
+
# CPU overcommit ratio.
|
3351
|
+
# Acceptable values are between 1.0 and 8.0, with 0.1 increment.
|
3352
|
+
# @!attribute [rw] memory_overcommit_ratio
|
3353
|
+
# @return [::Float]
|
3354
|
+
# Memory overcommit ratio.
|
3355
|
+
# Acceptable values are 1.0, 1.25, 1.5, 1.75 and 2.0.
|
3356
|
+
# @!attribute [rw] storage_deduplication_compression_ratio
|
3357
|
+
# @return [::Float]
|
3358
|
+
# The Deduplication and Compression ratio is based on the logical (Used
|
3359
|
+
# Before) space required to store data before applying deduplication and
|
3360
|
+
# compression, in relation to the physical (Used After) space required after
|
3361
|
+
# applying deduplication and compression. Specifically, the ratio is the Used
|
3362
|
+
# Before space divided by the Used After space. For example, if the Used
|
3363
|
+
# Before space is 3 GB, but the physical Used After space is 1 GB, the
|
3364
|
+
# deduplication and compression ratio is 3x. Acceptable values are
|
3365
|
+
# between 1.0 and 4.0.
|
3366
|
+
# @!attribute [rw] commitment_plan
|
3367
|
+
# @return [::Google::Cloud::MigrationCenter::V1::VmwareEnginePreferences::CommitmentPlan]
|
3368
|
+
# Commitment plan to consider when calculating costs for virtual machine
|
3369
|
+
# insights and recommendations.
|
3370
|
+
# If you are unsure which value to set, a 3 year commitment plan is often a
|
3371
|
+
# good value to start with.
|
3372
|
+
class VmwareEnginePreferences
|
3373
|
+
include ::Google::Protobuf::MessageExts
|
3374
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3375
|
+
|
3376
|
+
# Type of committed use discount.
|
3377
|
+
module CommitmentPlan
|
3378
|
+
# Unspecified commitment plan.
|
3379
|
+
COMMITMENT_PLAN_UNSPECIFIED = 0
|
3380
|
+
|
3381
|
+
# No commitment plan (on-demand usage).
|
3382
|
+
ON_DEMAND = 1
|
3383
|
+
|
3384
|
+
# 1 year commitment (monthly payments).
|
3385
|
+
COMMITMENT_1_YEAR_MONTHLY_PAYMENTS = 2
|
3386
|
+
|
3387
|
+
# 3 year commitment (monthly payments).
|
3388
|
+
COMMITMENT_3_YEAR_MONTHLY_PAYMENTS = 3
|
3389
|
+
|
3390
|
+
# 1 year commitment (upfront payment).
|
3391
|
+
COMMITMENT_1_YEAR_UPFRONT_PAYMENT = 4
|
3392
|
+
|
3393
|
+
# 3 years commitment (upfront payment).
|
3394
|
+
COMMITMENT_3_YEAR_UPFRONT_PAYMENT = 5
|
3395
|
+
end
|
3396
|
+
end
|
3397
|
+
|
3398
|
+
# Preferences concerning Sole Tenancy nodes and VMs.
|
3399
|
+
# @!attribute [rw] cpu_overcommit_ratio
|
3400
|
+
# @return [::Float]
|
3401
|
+
# CPU overcommit ratio.
|
3402
|
+
# Acceptable values are between 1.0 and 2.0 inclusive.
|
3403
|
+
# @!attribute [rw] host_maintenance_policy
|
3404
|
+
# @return [::Google::Cloud::MigrationCenter::V1::SoleTenancyPreferences::HostMaintenancePolicy]
|
3405
|
+
# Sole Tenancy nodes maintenance policy.
|
3406
|
+
# @!attribute [rw] commitment_plan
|
3407
|
+
# @return [::Google::Cloud::MigrationCenter::V1::SoleTenancyPreferences::CommitmentPlan]
|
3408
|
+
# Commitment plan to consider when calculating costs for virtual machine
|
3409
|
+
# insights and recommendations.
|
3410
|
+
# If you are unsure which value to set, a 3 year commitment plan is often a
|
3411
|
+
# good value to start with.
|
3412
|
+
# @!attribute [rw] node_types
|
3413
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::SoleTenantNodeType>]
|
3414
|
+
# A list of sole tenant node types.
|
3415
|
+
# An empty list means that all possible node types will be considered.
|
3416
|
+
class SoleTenancyPreferences
|
3417
|
+
include ::Google::Protobuf::MessageExts
|
3418
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3419
|
+
|
3420
|
+
# Sole Tenancy nodes maintenance policy.
|
3421
|
+
module HostMaintenancePolicy
|
3422
|
+
# Unspecified host maintenance policy.
|
3423
|
+
HOST_MAINTENANCE_POLICY_UNSPECIFIED = 0
|
3424
|
+
|
3425
|
+
# Default host maintenance policy.
|
3426
|
+
HOST_MAINTENANCE_POLICY_DEFAULT = 1
|
3427
|
+
|
3428
|
+
# Restart in place host maintenance policy.
|
3429
|
+
HOST_MAINTENANCE_POLICY_RESTART_IN_PLACE = 2
|
3430
|
+
|
3431
|
+
# Migrate within node group host maintenance policy.
|
3432
|
+
HOST_MAINTENANCE_POLICY_MIGRATE_WITHIN_NODE_GROUP = 3
|
3433
|
+
end
|
3434
|
+
|
3435
|
+
# Type of committed use discount.
|
3436
|
+
module CommitmentPlan
|
3437
|
+
# Unspecified commitment plan.
|
3438
|
+
COMMITMENT_PLAN_UNSPECIFIED = 0
|
3439
|
+
|
3440
|
+
# No commitment plan (on-demand usage).
|
3441
|
+
ON_DEMAND = 1
|
3442
|
+
|
3443
|
+
# 1 year commitment.
|
3444
|
+
COMMITMENT_1_YEAR = 2
|
3445
|
+
|
3446
|
+
# 3 years commitment.
|
3447
|
+
COMMITMENT_3_YEAR = 3
|
3448
|
+
end
|
3449
|
+
end
|
3450
|
+
|
3451
|
+
# A Sole Tenant node type.
|
3452
|
+
# @!attribute [rw] node_name
|
3453
|
+
# @return [::String]
|
3454
|
+
# Name of the Sole Tenant node. Consult
|
3455
|
+
# https://cloud.google.com/compute/docs/nodes/sole-tenant-nodes
|
3456
|
+
class SoleTenantNodeType
|
3457
|
+
include ::Google::Protobuf::MessageExts
|
3458
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3459
|
+
end
|
3460
|
+
|
3461
|
+
# The user preferences relating to target regions.
|
3462
|
+
# @!attribute [rw] preferred_regions
|
3463
|
+
# @return [::Array<::String>]
|
3464
|
+
# A list of preferred regions,
|
3465
|
+
# ordered by the most preferred region first.
|
3466
|
+
# Set only valid Google Cloud region names.
|
3467
|
+
# See https://cloud.google.com/compute/docs/regions-zones
|
3468
|
+
# for available regions.
|
3469
|
+
class RegionPreferences
|
3470
|
+
include ::Google::Protobuf::MessageExts
|
3471
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3472
|
+
end
|
3473
|
+
|
3474
|
+
# Describes the Migration Center settings related to the project.
|
3475
|
+
# @!attribute [r] name
|
3476
|
+
# @return [::String]
|
3477
|
+
# Output only. The name of the resource.
|
3478
|
+
# @!attribute [rw] preference_set
|
3479
|
+
# @return [::String]
|
3480
|
+
# The preference set used by default for a project.
|
3481
|
+
class Settings
|
3482
|
+
include ::Google::Protobuf::MessageExts
|
3483
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3484
|
+
end
|
3485
|
+
|
3486
|
+
# Describes the Summary view of a Report, which contains aggregated values
|
3487
|
+
# for all the groups and preference sets included in this Report.
|
3488
|
+
# @!attribute [rw] all_assets_stats
|
3489
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::AssetAggregateStats]
|
3490
|
+
# Aggregate statistics for all the assets across all the groups.
|
3491
|
+
# @!attribute [rw] group_findings
|
3492
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::GroupFinding>]
|
3493
|
+
# Findings for each Group included in this report.
|
3494
|
+
class ReportSummary
|
3495
|
+
include ::Google::Protobuf::MessageExts
|
3496
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3497
|
+
|
3498
|
+
# Describes a collection of data points rendered as a Chart.
|
3499
|
+
# @!attribute [rw] data_points
|
3500
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::ChartData::DataPoint>]
|
3501
|
+
# Each data point in the chart is represented as a name-value pair
|
3502
|
+
# with the name being the x-axis label, and the value being the y-axis
|
3503
|
+
# value.
|
3504
|
+
class ChartData
|
3505
|
+
include ::Google::Protobuf::MessageExts
|
3506
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3507
|
+
|
3508
|
+
# Describes a single data point in the Chart.
|
3509
|
+
# @!attribute [rw] label
|
3510
|
+
# @return [::String]
|
3511
|
+
# The X-axis label for this data point.
|
3512
|
+
# @!attribute [rw] value
|
3513
|
+
# @return [::Float]
|
3514
|
+
# The Y-axis value for this data point.
|
3515
|
+
class DataPoint
|
3516
|
+
include ::Google::Protobuf::MessageExts
|
3517
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3518
|
+
end
|
3519
|
+
end
|
3520
|
+
|
3521
|
+
# Utilization Chart is a specific type of visualization which displays
|
3522
|
+
# a metric classified into "Used" and "Free" buckets.
|
3523
|
+
# @!attribute [rw] used
|
3524
|
+
# @return [::Integer]
|
3525
|
+
# Aggregate value which falls into the "Used" bucket.
|
3526
|
+
# @!attribute [rw] free
|
3527
|
+
# @return [::Integer]
|
3528
|
+
# Aggregate value which falls into the "Free" bucket.
|
3529
|
+
class UtilizationChartData
|
3530
|
+
include ::Google::Protobuf::MessageExts
|
3531
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3532
|
+
end
|
3533
|
+
|
3534
|
+
# A Histogram Chart shows a distribution of values into buckets, showing
|
3535
|
+
# a count of values which fall into a bucket.
|
3536
|
+
# @!attribute [rw] buckets
|
3537
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::HistogramChartData::Bucket>]
|
3538
|
+
# Buckets in the histogram.
|
3539
|
+
# There will be `n+1` buckets matching `n` lower bounds in the request.
|
3540
|
+
# The first bucket will be from -infinity to the first bound.
|
3541
|
+
# Subsequent buckets will be between one bound and the next.
|
3542
|
+
# The final bucket will be from the final bound to infinity.
|
3543
|
+
class HistogramChartData
|
3544
|
+
include ::Google::Protobuf::MessageExts
|
3545
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3546
|
+
|
3547
|
+
# A histogram bucket with a lower and upper bound, and a count of items
|
3548
|
+
# with a field value between those bounds.
|
3549
|
+
# The lower bound is inclusive and the upper bound is exclusive.
|
3550
|
+
# Lower bound may be -infinity and upper bound may be infinity.
|
3551
|
+
# @!attribute [rw] lower_bound
|
3552
|
+
# @return [::Integer]
|
3553
|
+
# Lower bound - inclusive.
|
3554
|
+
# @!attribute [rw] upper_bound
|
3555
|
+
# @return [::Integer]
|
3556
|
+
# Upper bound - exclusive.
|
3557
|
+
# @!attribute [rw] count
|
3558
|
+
# @return [::Integer]
|
3559
|
+
# Count of items in the bucket.
|
3560
|
+
class Bucket
|
3561
|
+
include ::Google::Protobuf::MessageExts
|
3562
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3563
|
+
end
|
3564
|
+
end
|
3565
|
+
|
3566
|
+
# Aggregate statistics for a collection of assets.
|
3567
|
+
# @!attribute [rw] total_memory_bytes
|
3568
|
+
# @return [::Integer]
|
3569
|
+
# Sum of the memory in bytes of all the assets in this collection.
|
3570
|
+
# @!attribute [rw] total_storage_bytes
|
3571
|
+
# @return [::Integer]
|
3572
|
+
# Sum of persistent storage in bytes of all the assets in this collection.
|
3573
|
+
# @!attribute [rw] total_cores
|
3574
|
+
# @return [::Integer]
|
3575
|
+
# Sum of the CPU core count of all the assets in this collection.
|
3576
|
+
# @!attribute [rw] total_assets
|
3577
|
+
# @return [::Integer]
|
3578
|
+
# Count of the number of unique assets in this collection.
|
3579
|
+
# @!attribute [rw] memory_utilization_chart
|
3580
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::UtilizationChartData]
|
3581
|
+
# Total memory split into Used/Free buckets.
|
3582
|
+
# @!attribute [rw] storage_utilization_chart
|
3583
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::UtilizationChartData]
|
3584
|
+
# Total memory split into Used/Free buckets.
|
3585
|
+
# @!attribute [rw] operating_system
|
3586
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::ChartData]
|
3587
|
+
# Count of assets grouped by Operating System families.
|
3588
|
+
# @!attribute [rw] core_count_histogram
|
3589
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::HistogramChartData]
|
3590
|
+
# Histogram showing a distribution of CPU core counts.
|
3591
|
+
# @!attribute [rw] memory_bytes_histogram
|
3592
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::HistogramChartData]
|
3593
|
+
# Histogram showing a distribution of memory sizes.
|
3594
|
+
# @!attribute [rw] storage_bytes_histogram
|
3595
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::HistogramChartData]
|
3596
|
+
# Histogram showing a distribution of memory sizes.
|
3597
|
+
class AssetAggregateStats
|
3598
|
+
include ::Google::Protobuf::MessageExts
|
3599
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3600
|
+
end
|
3601
|
+
|
3602
|
+
# Represents a data point tracking the count of assets allocated for a
|
3603
|
+
# specific Machine Series.
|
3604
|
+
# @!attribute [rw] machine_series
|
3605
|
+
# @return [::Google::Cloud::MigrationCenter::V1::MachineSeries]
|
3606
|
+
# The Machine Series (e.g. "E2", "N2")
|
3607
|
+
# @!attribute [rw] allocated_asset_count
|
3608
|
+
# @return [::Integer]
|
3609
|
+
# Count of assets allocated to this machine series.
|
3610
|
+
class MachineSeriesAllocation
|
3611
|
+
include ::Google::Protobuf::MessageExts
|
3612
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3613
|
+
end
|
3614
|
+
|
3615
|
+
# A set of findings that applies to assets destined for Compute Engine.
|
3616
|
+
# @!attribute [rw] allocated_regions
|
3617
|
+
# @return [::Array<::String>]
|
3618
|
+
# Set of regions in which the assets were allocated.
|
3619
|
+
# @!attribute [rw] allocated_asset_count
|
3620
|
+
# @return [::Integer]
|
3621
|
+
# Count of assets which were allocated.
|
3622
|
+
# @!attribute [rw] machine_series_allocations
|
3623
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::MachineSeriesAllocation>]
|
3624
|
+
# Distribution of assets based on the Machine Series.
|
3625
|
+
# @!attribute [rw] allocated_disk_types
|
3626
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::PersistentDiskType>]
|
3627
|
+
# Set of disk types allocated to assets.
|
3628
|
+
class ComputeEngineFinding
|
3629
|
+
include ::Google::Protobuf::MessageExts
|
3630
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3631
|
+
end
|
3632
|
+
|
3633
|
+
# A set of findings that applies to assets destined for VMWare Engine.
|
3634
|
+
# @!attribute [rw] allocated_regions
|
3635
|
+
# @return [::Array<::String>]
|
3636
|
+
# Set of regions in which the assets were allocated
|
3637
|
+
# @!attribute [rw] allocated_asset_count
|
3638
|
+
# @return [::Integer]
|
3639
|
+
# Count of assets which are allocated
|
3640
|
+
# @!attribute [rw] node_allocations
|
3641
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::VmwareNodeAllocation>]
|
3642
|
+
# Set of per-nodetype allocation records
|
3643
|
+
class VmwareEngineFinding
|
3644
|
+
include ::Google::Protobuf::MessageExts
|
3645
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3646
|
+
end
|
3647
|
+
|
3648
|
+
# Represents assets allocated to a specific VMWare Node type.
|
3649
|
+
# @!attribute [rw] vmware_node
|
3650
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::VmwareNode]
|
3651
|
+
# VMWare node type, e.g. "ve1-standard-72"
|
3652
|
+
# @!attribute [rw] node_count
|
3653
|
+
# @return [::Integer]
|
3654
|
+
# Count of this node type to be provisioned
|
3655
|
+
# @!attribute [rw] allocated_asset_count
|
3656
|
+
# @return [::Integer]
|
3657
|
+
# Count of assets allocated to these nodes
|
3658
|
+
class VmwareNodeAllocation
|
3659
|
+
include ::Google::Protobuf::MessageExts
|
3660
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3661
|
+
end
|
3662
|
+
|
3663
|
+
# A VMWare Engine Node
|
3664
|
+
# @!attribute [rw] code
|
3665
|
+
# @return [::String]
|
3666
|
+
# Code to identify VMware Engine node series, e.g. "ve1-standard-72". Based
|
3667
|
+
# on the displayName of
|
3668
|
+
# cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.nodeTypes
|
3669
|
+
class VmwareNode
|
3670
|
+
include ::Google::Protobuf::MessageExts
|
3671
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3672
|
+
end
|
3673
|
+
|
3674
|
+
# A set of findings that applies to assets destined for Sole-Tenant nodes.
|
3675
|
+
# @!attribute [rw] allocated_regions
|
3676
|
+
# @return [::Array<::String>]
|
3677
|
+
# Set of regions in which the assets are allocated
|
3678
|
+
# @!attribute [rw] allocated_asset_count
|
3679
|
+
# @return [::Integer]
|
3680
|
+
# Count of assets which are allocated
|
3681
|
+
# @!attribute [rw] node_allocations
|
3682
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::SoleTenantNodeAllocation>]
|
3683
|
+
# Set of per-nodetype allocation records
|
3684
|
+
class SoleTenantFinding
|
3685
|
+
include ::Google::Protobuf::MessageExts
|
3686
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3687
|
+
end
|
3688
|
+
|
3689
|
+
# Represents the assets allocated to a specific Sole-Tenant node type.
|
3690
|
+
# @!attribute [rw] node
|
3691
|
+
# @return [::Google::Cloud::MigrationCenter::V1::SoleTenantNodeType]
|
3692
|
+
# Sole Tenant node type, e.g. "m3-node-128-3904"
|
3693
|
+
# @!attribute [rw] node_count
|
3694
|
+
# @return [::Integer]
|
3695
|
+
# Count of this node type to be provisioned
|
3696
|
+
# @!attribute [rw] allocated_asset_count
|
3697
|
+
# @return [::Integer]
|
3698
|
+
# Count of assets allocated to these nodes
|
3699
|
+
class SoleTenantNodeAllocation
|
3700
|
+
include ::Google::Protobuf::MessageExts
|
3701
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3702
|
+
end
|
3703
|
+
|
3704
|
+
# Summary Findings for a specific Group/PreferenceSet combination.
|
3705
|
+
# @!attribute [rw] display_name
|
3706
|
+
# @return [::String]
|
3707
|
+
# Display Name of the Preference Set
|
3708
|
+
# @!attribute [rw] description
|
3709
|
+
# @return [::String]
|
3710
|
+
# Description for the Preference Set.
|
3711
|
+
# @!attribute [rw] machine_preferences
|
3712
|
+
# @return [::Google::Cloud::MigrationCenter::V1::VirtualMachinePreferences]
|
3713
|
+
# A set of preferences that applies to all machines in the context.
|
3714
|
+
# @!attribute [rw] monthly_cost_total
|
3715
|
+
# @return [::Google::Type::Money]
|
3716
|
+
# Total monthly cost for this preference set.
|
3717
|
+
# @!attribute [rw] monthly_cost_compute
|
3718
|
+
# @return [::Google::Type::Money]
|
3719
|
+
# Compute monthly cost for this preference set.
|
3720
|
+
# @!attribute [rw] monthly_cost_os_license
|
3721
|
+
# @return [::Google::Type::Money]
|
3722
|
+
# Licensing monthly cost for this preference set.
|
3723
|
+
# @!attribute [rw] monthly_cost_network_egress
|
3724
|
+
# @return [::Google::Type::Money]
|
3725
|
+
# Network Egress monthly cost for this preference set.
|
3726
|
+
# @!attribute [rw] monthly_cost_storage
|
3727
|
+
# @return [::Google::Type::Money]
|
3728
|
+
# Storage monthly cost for this preference set.
|
3729
|
+
# @!attribute [rw] monthly_cost_other
|
3730
|
+
# @return [::Google::Type::Money]
|
3731
|
+
# Miscellaneous monthly cost for this preference set.
|
3732
|
+
# @!attribute [rw] compute_engine_finding
|
3733
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::ComputeEngineFinding]
|
3734
|
+
# A set of findings that applies to Compute Engine machines in the input.
|
3735
|
+
# @!attribute [rw] vmware_engine_finding
|
3736
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::VmwareEngineFinding]
|
3737
|
+
# A set of findings that applies to VMWare machines in the input.
|
3738
|
+
# @!attribute [rw] sole_tenant_finding
|
3739
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::SoleTenantFinding]
|
3740
|
+
# A set of findings that applies to Sole-Tenant machines in the input.
|
3741
|
+
class GroupPreferenceSetFinding
|
3742
|
+
include ::Google::Protobuf::MessageExts
|
3743
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3744
|
+
end
|
3745
|
+
|
3746
|
+
# Summary Findings for a specific Group.
|
3747
|
+
# @!attribute [rw] display_name
|
3748
|
+
# @return [::String]
|
3749
|
+
# Display Name for the Group.
|
3750
|
+
# @!attribute [rw] description
|
3751
|
+
# @return [::String]
|
3752
|
+
# Description for the Group.
|
3753
|
+
# @!attribute [rw] asset_aggregate_stats
|
3754
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::AssetAggregateStats]
|
3755
|
+
# Summary statistics for all the assets in this group.
|
3756
|
+
# @!attribute [rw] overlapping_asset_count
|
3757
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
3758
|
+
# @return [::Integer]
|
3759
|
+
# This field is deprecated, do not rely on it having a value.
|
3760
|
+
# @!attribute [rw] preference_set_findings
|
3761
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::GroupPreferenceSetFinding>]
|
3762
|
+
# Findings for each of the PreferenceSets for this group.
|
3763
|
+
class GroupFinding
|
3764
|
+
include ::Google::Protobuf::MessageExts
|
3765
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3766
|
+
end
|
3767
|
+
end
|
3768
|
+
|
3769
|
+
# Specifies the types of asset views that provide complete or partial details
|
3770
|
+
# of an asset.
|
3771
|
+
module AssetView
|
3772
|
+
# The asset view is not specified. The API displays the basic view by
|
3773
|
+
# default.
|
3774
|
+
ASSET_VIEW_UNSPECIFIED = 0
|
3775
|
+
|
3776
|
+
# The asset view includes only basic metadata of the asset.
|
3777
|
+
ASSET_VIEW_BASIC = 1
|
3778
|
+
|
3779
|
+
# The asset view includes all the metadata of an asset and performance data.
|
3780
|
+
ASSET_VIEW_FULL = 2
|
3781
|
+
end
|
3782
|
+
|
3783
|
+
# Known categories of operating systems.
|
3784
|
+
module OperatingSystemFamily
|
3785
|
+
OS_FAMILY_UNKNOWN = 0
|
3786
|
+
|
3787
|
+
# Microsoft Windows Server and Desktop.
|
3788
|
+
OS_FAMILY_WINDOWS = 1
|
3789
|
+
|
3790
|
+
# Various Linux flavors.
|
3791
|
+
OS_FAMILY_LINUX = 2
|
3792
|
+
|
3793
|
+
# Non-Linux Unix flavors.
|
3794
|
+
OS_FAMILY_UNIX = 3
|
3795
|
+
end
|
3796
|
+
|
3797
|
+
# Specifies the data formats supported by Migration Center.
|
3798
|
+
module ImportJobFormat
|
3799
|
+
# Default value.
|
3800
|
+
IMPORT_JOB_FORMAT_UNSPECIFIED = 0
|
3801
|
+
|
3802
|
+
# RVTools format (XLSX).
|
3803
|
+
IMPORT_JOB_FORMAT_RVTOOLS_XLSX = 1
|
3804
|
+
|
3805
|
+
# RVTools format (CSV).
|
3806
|
+
IMPORT_JOB_FORMAT_RVTOOLS_CSV = 2
|
3807
|
+
|
3808
|
+
# CSV format exported from AWS using the
|
3809
|
+
# [AWS collection
|
3810
|
+
# script][https://github.com/GoogleCloudPlatform/aws-to-stratozone-export].
|
3811
|
+
IMPORT_JOB_FORMAT_EXPORTED_AWS_CSV = 4
|
3812
|
+
|
3813
|
+
# CSV format exported from Azure using the
|
3814
|
+
# [Azure collection
|
3815
|
+
# script][https://github.com/GoogleCloudPlatform/azure-to-stratozone-export].
|
3816
|
+
IMPORT_JOB_FORMAT_EXPORTED_AZURE_CSV = 5
|
3817
|
+
|
3818
|
+
# CSV format created manually and following the StratoZone format. For more
|
3819
|
+
# information, see [Manually create and upload data
|
3820
|
+
# tables][https://cloud.google.com/migrate/stratozone/docs/import-data-portal].
|
3821
|
+
IMPORT_JOB_FORMAT_STRATOZONE_CSV = 6
|
3822
|
+
end
|
3823
|
+
|
3824
|
+
# Specifies the types of import job views that provide complete or partial
|
3825
|
+
# details of an import job.
|
3826
|
+
module ImportJobView
|
3827
|
+
# The import job view is not specified. The API displays the basic view by
|
3828
|
+
# default.
|
3829
|
+
IMPORT_JOB_VIEW_UNSPECIFIED = 0
|
3830
|
+
|
3831
|
+
# The import job view includes basic metadata of an import job.
|
3832
|
+
# This view does not include payload information.
|
3833
|
+
IMPORT_JOB_VIEW_BASIC = 1
|
3834
|
+
|
3835
|
+
# The import job view includes all metadata of an import job.
|
3836
|
+
IMPORT_JOB_VIEW_FULL = 2
|
3837
|
+
end
|
3838
|
+
|
3839
|
+
# ErrorFrameView can be specified in ErrorFrames List and Get requests to
|
3840
|
+
# control the level of details that is returned for the original frame.
|
3841
|
+
module ErrorFrameView
|
3842
|
+
# Value is unset. The system will fallback to the default value.
|
3843
|
+
ERROR_FRAME_VIEW_UNSPECIFIED = 0
|
3844
|
+
|
3845
|
+
# Include basic frame data, but not the full contents.
|
3846
|
+
ERROR_FRAME_VIEW_BASIC = 1
|
3847
|
+
|
3848
|
+
# Include everything.
|
3849
|
+
ERROR_FRAME_VIEW_FULL = 2
|
3850
|
+
end
|
3851
|
+
|
3852
|
+
# The persistent disk (PD) types of Compute Engine virtual machines.
|
3853
|
+
module PersistentDiskType
|
3854
|
+
# Unspecified (default value).
|
3855
|
+
# Selecting this value allows the system to use any disk type according
|
3856
|
+
# to reported usage. This a good value to start with.
|
3857
|
+
PERSISTENT_DISK_TYPE_UNSPECIFIED = 0
|
3858
|
+
|
3859
|
+
# Standard HDD Persistent Disk.
|
3860
|
+
PERSISTENT_DISK_TYPE_STANDARD = 1
|
3861
|
+
|
3862
|
+
# Balanced Persistent Disk.
|
3863
|
+
PERSISTENT_DISK_TYPE_BALANCED = 2
|
3864
|
+
|
3865
|
+
# SSD Persistent Disk.
|
3866
|
+
PERSISTENT_DISK_TYPE_SSD = 3
|
3867
|
+
end
|
3868
|
+
|
3869
|
+
# The License type for premium images (RHEL, RHEL for SAP, SLES, SLES for SAP,
|
3870
|
+
# Windows Server).
|
3871
|
+
module LicenseType
|
3872
|
+
# Unspecified (default value).
|
3873
|
+
LICENSE_TYPE_UNSPECIFIED = 0
|
3874
|
+
|
3875
|
+
# Default Google Cloud licensing plan. Licensing is charged per usage.
|
3876
|
+
# This a good value to start with.
|
3877
|
+
LICENSE_TYPE_DEFAULT = 1
|
3878
|
+
|
3879
|
+
# Bring-your-own-license (BYOL) plan. User provides the OS license.
|
3880
|
+
LICENSE_TYPE_BRING_YOUR_OWN_LICENSE = 2
|
3881
|
+
end
|
3882
|
+
|
3883
|
+
# The sizing optimization strategy preferences of a virtual machine. This
|
3884
|
+
# strategy, in addition to actual usage data of the virtual machine, can help
|
3885
|
+
# determine the recommended shape on the target platform.
|
3886
|
+
module SizingOptimizationStrategy
|
3887
|
+
# Unspecified (default value).
|
3888
|
+
SIZING_OPTIMIZATION_STRATEGY_UNSPECIFIED = 0
|
3889
|
+
|
3890
|
+
# No optimization applied. Virtual machine sizing matches as closely as
|
3891
|
+
# possible the machine shape on the source site, not considering any actual
|
3892
|
+
# performance data.
|
3893
|
+
SIZING_OPTIMIZATION_STRATEGY_SAME_AS_SOURCE = 1
|
3894
|
+
|
3895
|
+
# Virtual machine sizing will match the reported usage and shape, with some
|
3896
|
+
# slack. This a good value to start with.
|
3897
|
+
SIZING_OPTIMIZATION_STRATEGY_MODERATE = 2
|
3898
|
+
|
3899
|
+
# Virtual machine sizing will match the reported usage, with little slack.
|
3900
|
+
# Using this option can help reduce costs.
|
3901
|
+
SIZING_OPTIMIZATION_STRATEGY_AGGRESSIVE = 3
|
3902
|
+
end
|
3903
|
+
|
3904
|
+
# The plan of commitments for VM resource-based committed use discount (CUD).
|
3905
|
+
module CommitmentPlan
|
3906
|
+
# Unspecified commitment plan.
|
3907
|
+
COMMITMENT_PLAN_UNSPECIFIED = 0
|
3908
|
+
|
3909
|
+
# No commitment plan.
|
3910
|
+
COMMITMENT_PLAN_NONE = 1
|
3911
|
+
|
3912
|
+
# 1 year commitment.
|
3913
|
+
COMMITMENT_PLAN_ONE_YEAR = 2
|
3914
|
+
|
3915
|
+
# 3 years commitment.
|
3916
|
+
COMMITMENT_PLAN_THREE_YEARS = 3
|
3917
|
+
end
|
3918
|
+
|
3919
|
+
# The preference for a specific Google Cloud product platform.
|
3920
|
+
module ComputeMigrationTargetProduct
|
3921
|
+
# Unspecified (default value).
|
3922
|
+
COMPUTE_MIGRATION_TARGET_PRODUCT_UNSPECIFIED = 0
|
3923
|
+
|
3924
|
+
# Prefer to migrate to Google Cloud Compute Engine.
|
3925
|
+
COMPUTE_MIGRATION_TARGET_PRODUCT_COMPUTE_ENGINE = 1
|
3926
|
+
|
3927
|
+
# Prefer to migrate to Google Cloud VMware Engine.
|
3928
|
+
COMPUTE_MIGRATION_TARGET_PRODUCT_VMWARE_ENGINE = 2
|
3929
|
+
|
3930
|
+
# Prefer to migrate to Google Cloud Sole Tenant Nodes.
|
3931
|
+
COMPUTE_MIGRATION_TARGET_PRODUCT_SOLE_TENANCY = 3
|
3932
|
+
end
|
3933
|
+
|
3934
|
+
# Specifies the types of views that provide complete or partial details
|
3935
|
+
# of a Report.
|
3936
|
+
module ReportView
|
3937
|
+
# The report view is not specified. The API displays the basic view by
|
3938
|
+
# default.
|
3939
|
+
REPORT_VIEW_UNSPECIFIED = 0
|
3940
|
+
|
3941
|
+
# The report view includes only basic metadata of the Report. Useful for
|
3942
|
+
# list views.
|
3943
|
+
REPORT_VIEW_BASIC = 1
|
3944
|
+
|
3945
|
+
# The report view includes all the metadata of the Report. Useful for
|
3946
|
+
# preview.
|
3947
|
+
REPORT_VIEW_FULL = 2
|
3948
|
+
|
3949
|
+
# The report view includes the standard metadata of an report. Useful for
|
3950
|
+
# detail view.
|
3951
|
+
REPORT_VIEW_STANDARD = 3
|
3952
|
+
end
|
3953
|
+
end
|
3954
|
+
end
|
3955
|
+
end
|
3956
|
+
end
|