google-cloud-migration_center-v1 0.a → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +12 -0
- data/AUTHENTICATION.md +149 -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 +5575 -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 +779 -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 +5209 -0
- data/lib/google/cloud/migration_center/v1/migration_center/rest/operations.rb +870 -0
- data/lib/google/cloud/migration_center/v1/migration_center/rest/service_stub.rb +2901 -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 +381 -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 +3953 -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 +211 -12
@@ -0,0 +1,3953 @@
|
|
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
|
+
# @return [::String]
|
1922
|
+
# BIOS name.
|
1923
|
+
# This fields is deprecated. Please use the `id` field instead.
|
1924
|
+
# @!attribute [rw] id
|
1925
|
+
# @return [::String]
|
1926
|
+
# BIOS ID.
|
1927
|
+
# @!attribute [rw] manufacturer
|
1928
|
+
# @return [::String]
|
1929
|
+
# BIOS manufacturer.
|
1930
|
+
# @!attribute [rw] version
|
1931
|
+
# @return [::String]
|
1932
|
+
# BIOS version.
|
1933
|
+
# @!attribute [rw] release_date
|
1934
|
+
# @return [::Google::Type::Date]
|
1935
|
+
# BIOS release date.
|
1936
|
+
# @!attribute [rw] smbios_uuid
|
1937
|
+
# @return [::String]
|
1938
|
+
# SMBIOS UUID.
|
1939
|
+
class BiosDetails
|
1940
|
+
include ::Google::Protobuf::MessageExts
|
1941
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1942
|
+
end
|
1943
|
+
|
1944
|
+
# Details of network adapters and settings.
|
1945
|
+
# @!attribute [rw] primary_ip_address
|
1946
|
+
# @return [::String]
|
1947
|
+
# The primary IP address of the machine.
|
1948
|
+
# @!attribute [rw] public_ip_address
|
1949
|
+
# @return [::String]
|
1950
|
+
# The public IP address of the machine.
|
1951
|
+
# @!attribute [rw] primary_mac_address
|
1952
|
+
# @return [::String]
|
1953
|
+
# MAC address of the machine.
|
1954
|
+
# This property is used to uniqly identify the machine.
|
1955
|
+
# @!attribute [rw] adapters
|
1956
|
+
# @return [::Google::Cloud::MigrationCenter::V1::NetworkAdapterList]
|
1957
|
+
# List of network adapters.
|
1958
|
+
class MachineNetworkDetails
|
1959
|
+
include ::Google::Protobuf::MessageExts
|
1960
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1961
|
+
end
|
1962
|
+
|
1963
|
+
# List of network adapters.
|
1964
|
+
# @!attribute [rw] entries
|
1965
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::NetworkAdapterDetails>]
|
1966
|
+
# Network adapter entries.
|
1967
|
+
class NetworkAdapterList
|
1968
|
+
include ::Google::Protobuf::MessageExts
|
1969
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1970
|
+
end
|
1971
|
+
|
1972
|
+
# Details of network adapter.
|
1973
|
+
# @!attribute [rw] adapter_type
|
1974
|
+
# @return [::String]
|
1975
|
+
# Network adapter type (e.g. VMXNET3).
|
1976
|
+
# @!attribute [rw] mac_address
|
1977
|
+
# @return [::String]
|
1978
|
+
# MAC address.
|
1979
|
+
# @!attribute [rw] addresses
|
1980
|
+
# @return [::Google::Cloud::MigrationCenter::V1::NetworkAddressList]
|
1981
|
+
# NetworkAddressList
|
1982
|
+
class NetworkAdapterDetails
|
1983
|
+
include ::Google::Protobuf::MessageExts
|
1984
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1985
|
+
end
|
1986
|
+
|
1987
|
+
# List of allocated/assigned network addresses.
|
1988
|
+
# @!attribute [rw] entries
|
1989
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::NetworkAddress>]
|
1990
|
+
# Network address entries.
|
1991
|
+
class NetworkAddressList
|
1992
|
+
include ::Google::Protobuf::MessageExts
|
1993
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1994
|
+
end
|
1995
|
+
|
1996
|
+
# Details of network address.
|
1997
|
+
# @!attribute [rw] ip_address
|
1998
|
+
# @return [::String]
|
1999
|
+
# Assigned or configured IP Address.
|
2000
|
+
# @!attribute [rw] subnet_mask
|
2001
|
+
# @return [::String]
|
2002
|
+
# Subnet mask.
|
2003
|
+
# @!attribute [rw] bcast
|
2004
|
+
# @return [::String]
|
2005
|
+
# Broadcast address.
|
2006
|
+
# @!attribute [rw] fqdn
|
2007
|
+
# @return [::String]
|
2008
|
+
# Fully qualified domain name.
|
2009
|
+
# @!attribute [rw] assignment
|
2010
|
+
# @return [::Google::Cloud::MigrationCenter::V1::NetworkAddress::AddressAssignment]
|
2011
|
+
# Whether DHCP is used to assign addresses.
|
2012
|
+
class NetworkAddress
|
2013
|
+
include ::Google::Protobuf::MessageExts
|
2014
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2015
|
+
|
2016
|
+
# Network address assignment.
|
2017
|
+
module AddressAssignment
|
2018
|
+
# Unknown (default value).
|
2019
|
+
ADDRESS_ASSIGNMENT_UNSPECIFIED = 0
|
2020
|
+
|
2021
|
+
# Staticly assigned IP.
|
2022
|
+
ADDRESS_ASSIGNMENT_STATIC = 1
|
2023
|
+
|
2024
|
+
# Dynamically assigned IP (DHCP).
|
2025
|
+
ADDRESS_ASSIGNMENT_DHCP = 2
|
2026
|
+
end
|
2027
|
+
end
|
2028
|
+
|
2029
|
+
# Details of machine disks.
|
2030
|
+
# @!attribute [rw] total_capacity_bytes
|
2031
|
+
# @return [::Integer]
|
2032
|
+
# Disk total Capacity.
|
2033
|
+
# @!attribute [rw] total_free_bytes
|
2034
|
+
# @return [::Integer]
|
2035
|
+
# Total disk free space.
|
2036
|
+
# @!attribute [rw] disks
|
2037
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DiskEntryList]
|
2038
|
+
# List of disks.
|
2039
|
+
class MachineDiskDetails
|
2040
|
+
include ::Google::Protobuf::MessageExts
|
2041
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2042
|
+
end
|
2043
|
+
|
2044
|
+
# VM disks.
|
2045
|
+
# @!attribute [rw] entries
|
2046
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::DiskEntry>]
|
2047
|
+
# Disk entries.
|
2048
|
+
class DiskEntryList
|
2049
|
+
include ::Google::Protobuf::MessageExts
|
2050
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2051
|
+
end
|
2052
|
+
|
2053
|
+
# Single disk entry.
|
2054
|
+
# @!attribute [rw] capacity_bytes
|
2055
|
+
# @return [::Integer]
|
2056
|
+
# Disk capacity.
|
2057
|
+
# @!attribute [rw] free_bytes
|
2058
|
+
# @return [::Integer]
|
2059
|
+
# Disk free space.
|
2060
|
+
# @!attribute [rw] disk_label
|
2061
|
+
# @return [::String]
|
2062
|
+
# Disk label.
|
2063
|
+
# @!attribute [rw] disk_label_type
|
2064
|
+
# @return [::String]
|
2065
|
+
# Disk label type (e.g. BIOS/GPT)
|
2066
|
+
# @!attribute [rw] interface_type
|
2067
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DiskEntry::InterfaceType]
|
2068
|
+
# Disks interface type.
|
2069
|
+
# @!attribute [rw] partitions
|
2070
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DiskPartitionList]
|
2071
|
+
# Partition layout.
|
2072
|
+
# @!attribute [rw] hw_address
|
2073
|
+
# @return [::String]
|
2074
|
+
# Disk hardware address (e.g. 0:1 for SCSI).
|
2075
|
+
# @!attribute [rw] vmware
|
2076
|
+
# @return [::Google::Cloud::MigrationCenter::V1::VmwareDiskConfig]
|
2077
|
+
# VMware disk details.
|
2078
|
+
class DiskEntry
|
2079
|
+
include ::Google::Protobuf::MessageExts
|
2080
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2081
|
+
|
2082
|
+
# Disks interface type.
|
2083
|
+
module InterfaceType
|
2084
|
+
# Interface type unknown or unspecified.
|
2085
|
+
INTERFACE_TYPE_UNSPECIFIED = 0
|
2086
|
+
|
2087
|
+
# IDE interface type.
|
2088
|
+
IDE = 1
|
2089
|
+
|
2090
|
+
# SATA interface type.
|
2091
|
+
SATA = 2
|
2092
|
+
|
2093
|
+
# SAS interface type.
|
2094
|
+
SAS = 3
|
2095
|
+
|
2096
|
+
# SCSI interface type.
|
2097
|
+
SCSI = 4
|
2098
|
+
|
2099
|
+
# NVME interface type.
|
2100
|
+
NVME = 5
|
2101
|
+
|
2102
|
+
# FC interface type.
|
2103
|
+
FC = 6
|
2104
|
+
|
2105
|
+
# iSCSI interface type.
|
2106
|
+
ISCSI = 7
|
2107
|
+
end
|
2108
|
+
end
|
2109
|
+
|
2110
|
+
# Disk partition list.
|
2111
|
+
# @!attribute [rw] entries
|
2112
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::DiskPartition>]
|
2113
|
+
# Partition entries.
|
2114
|
+
class DiskPartitionList
|
2115
|
+
include ::Google::Protobuf::MessageExts
|
2116
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2117
|
+
end
|
2118
|
+
|
2119
|
+
# Disk Partition details.
|
2120
|
+
# @!attribute [rw] type
|
2121
|
+
# @return [::String]
|
2122
|
+
# Partition type.
|
2123
|
+
# @!attribute [rw] file_system
|
2124
|
+
# @return [::String]
|
2125
|
+
# Partition file system.
|
2126
|
+
# @!attribute [rw] mount_point
|
2127
|
+
# @return [::String]
|
2128
|
+
# Mount pount (Linux/Windows) or drive letter (Windows).
|
2129
|
+
# @!attribute [rw] capacity_bytes
|
2130
|
+
# @return [::Integer]
|
2131
|
+
# Partition capacity.
|
2132
|
+
# @!attribute [rw] free_bytes
|
2133
|
+
# @return [::Integer]
|
2134
|
+
# Partition free space.
|
2135
|
+
# @!attribute [rw] uuid
|
2136
|
+
# @return [::String]
|
2137
|
+
# Partition UUID.
|
2138
|
+
# @!attribute [rw] sub_partitions
|
2139
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DiskPartitionList]
|
2140
|
+
# Sub-partitions.
|
2141
|
+
class DiskPartition
|
2142
|
+
include ::Google::Protobuf::MessageExts
|
2143
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2144
|
+
end
|
2145
|
+
|
2146
|
+
# VMware disk config details.
|
2147
|
+
# @!attribute [rw] backing_type
|
2148
|
+
# @return [::Google::Cloud::MigrationCenter::V1::VmwareDiskConfig::BackingType]
|
2149
|
+
# VMDK backing type.
|
2150
|
+
# @!attribute [rw] shared
|
2151
|
+
# @return [::Boolean]
|
2152
|
+
# Is VMDK shared with other VMs.
|
2153
|
+
# @!attribute [rw] vmdk_mode
|
2154
|
+
# @return [::Google::Cloud::MigrationCenter::V1::VmwareDiskConfig::VmdkMode]
|
2155
|
+
# VMDK disk mode.
|
2156
|
+
# @!attribute [rw] rdm_compatibility
|
2157
|
+
# @return [::Google::Cloud::MigrationCenter::V1::VmwareDiskConfig::RdmCompatibility]
|
2158
|
+
# RDM compatibility mode.
|
2159
|
+
class VmwareDiskConfig
|
2160
|
+
include ::Google::Protobuf::MessageExts
|
2161
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2162
|
+
|
2163
|
+
# VMDK backing type possible values.
|
2164
|
+
module BackingType
|
2165
|
+
# Default value.
|
2166
|
+
BACKING_TYPE_UNSPECIFIED = 0
|
2167
|
+
|
2168
|
+
# Flat v1.
|
2169
|
+
BACKING_TYPE_FLAT_V1 = 1
|
2170
|
+
|
2171
|
+
# Flat v2.
|
2172
|
+
BACKING_TYPE_FLAT_V2 = 2
|
2173
|
+
|
2174
|
+
# Persistent memory, also known as Non-Volatile Memory (NVM).
|
2175
|
+
BACKING_TYPE_PMEM = 3
|
2176
|
+
|
2177
|
+
# Raw Disk Memory v1.
|
2178
|
+
BACKING_TYPE_RDM_V1 = 4
|
2179
|
+
|
2180
|
+
# Raw Disk Memory v2.
|
2181
|
+
BACKING_TYPE_RDM_V2 = 5
|
2182
|
+
|
2183
|
+
# SEsparse is a snapshot format introduced in vSphere 5.5 for large disks.
|
2184
|
+
BACKING_TYPE_SESPARSE = 6
|
2185
|
+
|
2186
|
+
# SEsparse v1.
|
2187
|
+
BACKING_TYPE_SESPARSE_V1 = 7
|
2188
|
+
|
2189
|
+
# SEsparse v1.
|
2190
|
+
BACKING_TYPE_SESPARSE_V2 = 8
|
2191
|
+
end
|
2192
|
+
|
2193
|
+
# VMDK disk mode.
|
2194
|
+
module VmdkMode
|
2195
|
+
# VMDK disk mode unspecified or unknown.
|
2196
|
+
VMDK_MODE_UNSPECIFIED = 0
|
2197
|
+
|
2198
|
+
# Dependent disk mode.
|
2199
|
+
DEPENDENT = 1
|
2200
|
+
|
2201
|
+
# Independent - Persistent disk mode.
|
2202
|
+
INDEPENDENT_PERSISTENT = 2
|
2203
|
+
|
2204
|
+
# Independent - Nonpersistent disk mode.
|
2205
|
+
INDEPENDENT_NONPERSISTENT = 3
|
2206
|
+
end
|
2207
|
+
|
2208
|
+
# RDM compatibility mode.
|
2209
|
+
module RdmCompatibility
|
2210
|
+
# Compatibility mode unspecified or unknown.
|
2211
|
+
RDM_COMPATIBILITY_UNSPECIFIED = 0
|
2212
|
+
|
2213
|
+
# Physical compatibility mode.
|
2214
|
+
PHYSICAL_COMPATIBILITY = 1
|
2215
|
+
|
2216
|
+
# Virtual compatibility mode.
|
2217
|
+
VIRTUAL_COMPATIBILITY = 2
|
2218
|
+
end
|
2219
|
+
end
|
2220
|
+
|
2221
|
+
# Information from Guest-level collections.
|
2222
|
+
# @!attribute [rw] os_name
|
2223
|
+
# @return [::String]
|
2224
|
+
# The name of the operating system.
|
2225
|
+
# @!attribute [rw] family
|
2226
|
+
# @return [::Google::Cloud::MigrationCenter::V1::OperatingSystemFamily]
|
2227
|
+
# What family the OS belong to, if known.
|
2228
|
+
# @!attribute [rw] version
|
2229
|
+
# @return [::String]
|
2230
|
+
# The version of the operating system.
|
2231
|
+
# @!attribute [rw] config
|
2232
|
+
# @return [::Google::Cloud::MigrationCenter::V1::GuestConfigDetails]
|
2233
|
+
# OS and app configuration.
|
2234
|
+
# @!attribute [rw] runtime
|
2235
|
+
# @return [::Google::Cloud::MigrationCenter::V1::GuestRuntimeDetails]
|
2236
|
+
# Runtime information.
|
2237
|
+
class GuestOsDetails
|
2238
|
+
include ::Google::Protobuf::MessageExts
|
2239
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2240
|
+
end
|
2241
|
+
|
2242
|
+
# Guest OS config information.
|
2243
|
+
# @!attribute [rw] issue
|
2244
|
+
# @return [::String]
|
2245
|
+
# OS issue (typically /etc/issue in Linux).
|
2246
|
+
# @!attribute [rw] fstab
|
2247
|
+
# @return [::Google::Cloud::MigrationCenter::V1::FstabEntryList]
|
2248
|
+
# Mount list (Linux fstab).
|
2249
|
+
# @!attribute [rw] hosts
|
2250
|
+
# @return [::Google::Cloud::MigrationCenter::V1::HostsEntryList]
|
2251
|
+
# Hosts file (/etc/hosts).
|
2252
|
+
# @!attribute [rw] nfs_exports
|
2253
|
+
# @return [::Google::Cloud::MigrationCenter::V1::NfsExportList]
|
2254
|
+
# NFS exports.
|
2255
|
+
# @!attribute [rw] selinux_mode
|
2256
|
+
# @return [::Google::Cloud::MigrationCenter::V1::GuestConfigDetails::SeLinuxMode]
|
2257
|
+
# Security-Enhanced Linux (SELinux) mode.
|
2258
|
+
class GuestConfigDetails
|
2259
|
+
include ::Google::Protobuf::MessageExts
|
2260
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2261
|
+
|
2262
|
+
# Security-Enhanced Linux (SELinux) mode.
|
2263
|
+
module SeLinuxMode
|
2264
|
+
# SELinux mode unknown or unspecified.
|
2265
|
+
SE_LINUX_MODE_UNSPECIFIED = 0
|
2266
|
+
|
2267
|
+
# SELinux is disabled.
|
2268
|
+
SE_LINUX_MODE_DISABLED = 1
|
2269
|
+
|
2270
|
+
# SELinux permissive mode.
|
2271
|
+
SE_LINUX_MODE_PERMISSIVE = 2
|
2272
|
+
|
2273
|
+
# SELinux enforcing mode.
|
2274
|
+
SE_LINUX_MODE_ENFORCING = 3
|
2275
|
+
end
|
2276
|
+
end
|
2277
|
+
|
2278
|
+
# Fstab content.
|
2279
|
+
# @!attribute [rw] entries
|
2280
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::FstabEntry>]
|
2281
|
+
# Fstab entries.
|
2282
|
+
class FstabEntryList
|
2283
|
+
include ::Google::Protobuf::MessageExts
|
2284
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2285
|
+
end
|
2286
|
+
|
2287
|
+
# Single fstab entry.
|
2288
|
+
# @!attribute [rw] spec
|
2289
|
+
# @return [::String]
|
2290
|
+
# The block special device or remote filesystem to be mounted.
|
2291
|
+
# @!attribute [rw] file
|
2292
|
+
# @return [::String]
|
2293
|
+
# The mount point for the filesystem.
|
2294
|
+
# @!attribute [rw] vfstype
|
2295
|
+
# @return [::String]
|
2296
|
+
# The type of the filesystem.
|
2297
|
+
# @!attribute [rw] mntops
|
2298
|
+
# @return [::String]
|
2299
|
+
# Mount options associated with the filesystem.
|
2300
|
+
# @!attribute [rw] freq
|
2301
|
+
# @return [::Integer]
|
2302
|
+
# Used by dump to determine which filesystems need to be dumped.
|
2303
|
+
# @!attribute [rw] passno
|
2304
|
+
# @return [::Integer]
|
2305
|
+
# Used by the fsck(8) program to determine the order in which filesystem
|
2306
|
+
# checks are done at reboot time.
|
2307
|
+
class FstabEntry
|
2308
|
+
include ::Google::Protobuf::MessageExts
|
2309
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2310
|
+
end
|
2311
|
+
|
2312
|
+
# Hosts content.
|
2313
|
+
# @!attribute [rw] entries
|
2314
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::HostsEntry>]
|
2315
|
+
# Hosts entries.
|
2316
|
+
class HostsEntryList
|
2317
|
+
include ::Google::Protobuf::MessageExts
|
2318
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2319
|
+
end
|
2320
|
+
|
2321
|
+
# Single /etc/hosts entry.
|
2322
|
+
# @!attribute [rw] ip
|
2323
|
+
# @return [::String]
|
2324
|
+
# IP (raw, IPv4/6 agnostic).
|
2325
|
+
# @!attribute [rw] host_names
|
2326
|
+
# @return [::Array<::String>]
|
2327
|
+
# List of host names / aliases.
|
2328
|
+
class HostsEntry
|
2329
|
+
include ::Google::Protobuf::MessageExts
|
2330
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2331
|
+
end
|
2332
|
+
|
2333
|
+
# NFS exports.
|
2334
|
+
# @!attribute [rw] entries
|
2335
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::NfsExport>]
|
2336
|
+
# NFS export entries.
|
2337
|
+
class NfsExportList
|
2338
|
+
include ::Google::Protobuf::MessageExts
|
2339
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2340
|
+
end
|
2341
|
+
|
2342
|
+
# NFS export.
|
2343
|
+
# @!attribute [rw] export_directory
|
2344
|
+
# @return [::String]
|
2345
|
+
# The directory being exported.
|
2346
|
+
# @!attribute [rw] hosts
|
2347
|
+
# @return [::Array<::String>]
|
2348
|
+
# The hosts or networks to which the export is being shared.
|
2349
|
+
class NfsExport
|
2350
|
+
include ::Google::Protobuf::MessageExts
|
2351
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2352
|
+
end
|
2353
|
+
|
2354
|
+
# Guest OS runtime information.
|
2355
|
+
# @!attribute [rw] services
|
2356
|
+
# @return [::Google::Cloud::MigrationCenter::V1::RunningServiceList]
|
2357
|
+
# Running background services.
|
2358
|
+
# @!attribute [rw] processes
|
2359
|
+
# @return [::Google::Cloud::MigrationCenter::V1::RunningProcessList]
|
2360
|
+
# Running processes.
|
2361
|
+
# @!attribute [rw] network
|
2362
|
+
# @return [::Google::Cloud::MigrationCenter::V1::RuntimeNetworkInfo]
|
2363
|
+
# Runtime network information (connections, ports).
|
2364
|
+
# @!attribute [rw] last_boot_time
|
2365
|
+
# @return [::Google::Protobuf::Timestamp]
|
2366
|
+
# Last time the OS was booted.
|
2367
|
+
# @!attribute [rw] domain
|
2368
|
+
# @return [::String]
|
2369
|
+
# Domain, e.g. c.stratozone-development.internal.
|
2370
|
+
# @!attribute [rw] machine_name
|
2371
|
+
# @return [::String]
|
2372
|
+
# Machine name.
|
2373
|
+
# @!attribute [rw] installed_apps
|
2374
|
+
# @return [::Google::Cloud::MigrationCenter::V1::GuestInstalledApplicationList]
|
2375
|
+
# Installed applications information.
|
2376
|
+
# @!attribute [rw] open_file_list
|
2377
|
+
# @return [::Google::Cloud::MigrationCenter::V1::OpenFileList]
|
2378
|
+
# Open files information.
|
2379
|
+
class GuestRuntimeDetails
|
2380
|
+
include ::Google::Protobuf::MessageExts
|
2381
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2382
|
+
end
|
2383
|
+
|
2384
|
+
# List of running guest OS services.
|
2385
|
+
# @!attribute [rw] entries
|
2386
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::RunningService>]
|
2387
|
+
# Running service entries.
|
2388
|
+
class RunningServiceList
|
2389
|
+
include ::Google::Protobuf::MessageExts
|
2390
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2391
|
+
end
|
2392
|
+
|
2393
|
+
# Guest OS running service details.
|
2394
|
+
# @!attribute [rw] service_name
|
2395
|
+
# @return [::String]
|
2396
|
+
# Service name.
|
2397
|
+
# @!attribute [rw] state
|
2398
|
+
# @return [::Google::Cloud::MigrationCenter::V1::RunningService::State]
|
2399
|
+
# Service state (OS-agnostic).
|
2400
|
+
# @!attribute [rw] start_mode
|
2401
|
+
# @return [::Google::Cloud::MigrationCenter::V1::RunningService::StartMode]
|
2402
|
+
# Service start mode (OS-agnostic).
|
2403
|
+
# @!attribute [rw] exe_path
|
2404
|
+
# @return [::String]
|
2405
|
+
# Service binary path.
|
2406
|
+
# @!attribute [rw] cmdline
|
2407
|
+
# @return [::String]
|
2408
|
+
# Service command line.
|
2409
|
+
# @!attribute [rw] pid
|
2410
|
+
# @return [::Integer]
|
2411
|
+
# Service pid.
|
2412
|
+
class RunningService
|
2413
|
+
include ::Google::Protobuf::MessageExts
|
2414
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2415
|
+
|
2416
|
+
# Service state (OS-agnostic).
|
2417
|
+
module State
|
2418
|
+
# Service state unspecified.
|
2419
|
+
STATE_UNSPECIFIED = 0
|
2420
|
+
|
2421
|
+
# Service is active.
|
2422
|
+
ACTIVE = 1
|
2423
|
+
|
2424
|
+
# Service is paused.
|
2425
|
+
PAUSED = 2
|
2426
|
+
|
2427
|
+
# Service is stopped.
|
2428
|
+
STOPPED = 3
|
2429
|
+
end
|
2430
|
+
|
2431
|
+
# Service start mode (OS-agnostic).
|
2432
|
+
module StartMode
|
2433
|
+
# Start mode unspecified.
|
2434
|
+
START_MODE_UNSPECIFIED = 0
|
2435
|
+
|
2436
|
+
# The service is a device driver started by the system loader.
|
2437
|
+
BOOT = 1
|
2438
|
+
|
2439
|
+
# The service is a device driver started by the IOInitSystem function.
|
2440
|
+
SYSTEM = 2
|
2441
|
+
|
2442
|
+
# The service is started by the operating system, at system start-up
|
2443
|
+
AUTO = 3
|
2444
|
+
|
2445
|
+
# The service is started only manually, by a user.
|
2446
|
+
MANUAL = 4
|
2447
|
+
|
2448
|
+
# The service is disabled.
|
2449
|
+
DISABLED = 5
|
2450
|
+
end
|
2451
|
+
end
|
2452
|
+
|
2453
|
+
# List of running guest OS processes.
|
2454
|
+
# @!attribute [rw] entries
|
2455
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::RunningProcess>]
|
2456
|
+
# Running process entries.
|
2457
|
+
class RunningProcessList
|
2458
|
+
include ::Google::Protobuf::MessageExts
|
2459
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2460
|
+
end
|
2461
|
+
|
2462
|
+
# Guest OS running process details.
|
2463
|
+
# @!attribute [rw] pid
|
2464
|
+
# @return [::Integer]
|
2465
|
+
# Process ID.
|
2466
|
+
# @!attribute [rw] exe_path
|
2467
|
+
# @return [::String]
|
2468
|
+
# Process binary path.
|
2469
|
+
# @!attribute [rw] cmdline
|
2470
|
+
# @return [::String]
|
2471
|
+
# Process full command line.
|
2472
|
+
# @!attribute [rw] user
|
2473
|
+
# @return [::String]
|
2474
|
+
# User running the process.
|
2475
|
+
# @!attribute [rw] attributes
|
2476
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
2477
|
+
# Process extended attributes.
|
2478
|
+
class RunningProcess
|
2479
|
+
include ::Google::Protobuf::MessageExts
|
2480
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2481
|
+
|
2482
|
+
# @!attribute [rw] key
|
2483
|
+
# @return [::String]
|
2484
|
+
# @!attribute [rw] value
|
2485
|
+
# @return [::String]
|
2486
|
+
class AttributesEntry
|
2487
|
+
include ::Google::Protobuf::MessageExts
|
2488
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2489
|
+
end
|
2490
|
+
end
|
2491
|
+
|
2492
|
+
# Runtime networking information.
|
2493
|
+
# @!attribute [rw] scan_time
|
2494
|
+
# @return [::Google::Protobuf::Timestamp]
|
2495
|
+
# Time of the last network scan.
|
2496
|
+
# @!attribute [rw] connections
|
2497
|
+
# @return [::Google::Cloud::MigrationCenter::V1::NetworkConnectionList]
|
2498
|
+
# Network connections.
|
2499
|
+
class RuntimeNetworkInfo
|
2500
|
+
include ::Google::Protobuf::MessageExts
|
2501
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2502
|
+
end
|
2503
|
+
|
2504
|
+
# Network connection list.
|
2505
|
+
# @!attribute [rw] entries
|
2506
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::NetworkConnection>]
|
2507
|
+
# Network connection entries.
|
2508
|
+
class NetworkConnectionList
|
2509
|
+
include ::Google::Protobuf::MessageExts
|
2510
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2511
|
+
end
|
2512
|
+
|
2513
|
+
# @!attribute [rw] protocol
|
2514
|
+
# @return [::String]
|
2515
|
+
# Connection protocol (e.g. TCP/UDP).
|
2516
|
+
# @!attribute [rw] local_ip_address
|
2517
|
+
# @return [::String]
|
2518
|
+
# Local IP address.
|
2519
|
+
# @!attribute [rw] local_port
|
2520
|
+
# @return [::Integer]
|
2521
|
+
# Local port.
|
2522
|
+
# @!attribute [rw] remote_ip_address
|
2523
|
+
# @return [::String]
|
2524
|
+
# Remote IP address.
|
2525
|
+
# @!attribute [rw] remote_port
|
2526
|
+
# @return [::Integer]
|
2527
|
+
# Remote port.
|
2528
|
+
# @!attribute [rw] state
|
2529
|
+
# @return [::Google::Cloud::MigrationCenter::V1::NetworkConnection::State]
|
2530
|
+
# Network connection state.
|
2531
|
+
# @!attribute [rw] pid
|
2532
|
+
# @return [::Integer]
|
2533
|
+
# Process ID.
|
2534
|
+
# @!attribute [rw] process_name
|
2535
|
+
# @return [::String]
|
2536
|
+
# Process or service name.
|
2537
|
+
class NetworkConnection
|
2538
|
+
include ::Google::Protobuf::MessageExts
|
2539
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2540
|
+
|
2541
|
+
# Network connection state.
|
2542
|
+
module State
|
2543
|
+
# Connection state is unknown or unspecified.
|
2544
|
+
STATE_UNSPECIFIED = 0
|
2545
|
+
|
2546
|
+
# The connection is being opened.
|
2547
|
+
OPENING = 1
|
2548
|
+
|
2549
|
+
# The connection is open.
|
2550
|
+
OPEN = 2
|
2551
|
+
|
2552
|
+
# Listening for incoming connections.
|
2553
|
+
LISTEN = 3
|
2554
|
+
|
2555
|
+
# The connection is being closed.
|
2556
|
+
CLOSING = 4
|
2557
|
+
|
2558
|
+
# The connection is closed.
|
2559
|
+
CLOSED = 5
|
2560
|
+
end
|
2561
|
+
end
|
2562
|
+
|
2563
|
+
# Guest installed application list.
|
2564
|
+
# @!attribute [rw] entries
|
2565
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::GuestInstalledApplication>]
|
2566
|
+
# Application entries.
|
2567
|
+
class GuestInstalledApplicationList
|
2568
|
+
include ::Google::Protobuf::MessageExts
|
2569
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2570
|
+
end
|
2571
|
+
|
2572
|
+
# Guest installed application information.
|
2573
|
+
# @!attribute [rw] application_name
|
2574
|
+
# @return [::String]
|
2575
|
+
# Installed application name.
|
2576
|
+
# @!attribute [rw] vendor
|
2577
|
+
# @return [::String]
|
2578
|
+
# Installed application vendor.
|
2579
|
+
# @!attribute [rw] install_time
|
2580
|
+
# @return [::Google::Protobuf::Timestamp]
|
2581
|
+
# The time when the application was installed.
|
2582
|
+
# @!attribute [rw] path
|
2583
|
+
# @return [::String]
|
2584
|
+
# Source path.
|
2585
|
+
# @!attribute [rw] version
|
2586
|
+
# @return [::String]
|
2587
|
+
# Installed application version.
|
2588
|
+
class GuestInstalledApplication
|
2589
|
+
include ::Google::Protobuf::MessageExts
|
2590
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2591
|
+
end
|
2592
|
+
|
2593
|
+
# Open file list.
|
2594
|
+
# @!attribute [rw] entries
|
2595
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::OpenFileDetails>]
|
2596
|
+
# Open file details entries.
|
2597
|
+
class OpenFileList
|
2598
|
+
include ::Google::Protobuf::MessageExts
|
2599
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2600
|
+
end
|
2601
|
+
|
2602
|
+
# Open file Information.
|
2603
|
+
# @!attribute [rw] command
|
2604
|
+
# @return [::String]
|
2605
|
+
# Opened file command.
|
2606
|
+
# @!attribute [rw] user
|
2607
|
+
# @return [::String]
|
2608
|
+
# Opened file user.
|
2609
|
+
# @!attribute [rw] file_type
|
2610
|
+
# @return [::String]
|
2611
|
+
# Opened file file type.
|
2612
|
+
# @!attribute [rw] file_path
|
2613
|
+
# @return [::String]
|
2614
|
+
# Opened file file path.
|
2615
|
+
class OpenFileDetails
|
2616
|
+
include ::Google::Protobuf::MessageExts
|
2617
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2618
|
+
end
|
2619
|
+
|
2620
|
+
# Information about the platform.
|
2621
|
+
# @!attribute [rw] vmware_details
|
2622
|
+
# @return [::Google::Cloud::MigrationCenter::V1::VmwarePlatformDetails]
|
2623
|
+
# VMware specific details.
|
2624
|
+
# @!attribute [rw] aws_ec2_details
|
2625
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AwsEc2PlatformDetails]
|
2626
|
+
# AWS EC2 specific details.
|
2627
|
+
# @!attribute [rw] azure_vm_details
|
2628
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AzureVmPlatformDetails]
|
2629
|
+
# Azure VM specific details.
|
2630
|
+
# @!attribute [rw] generic_details
|
2631
|
+
# @return [::Google::Cloud::MigrationCenter::V1::GenericPlatformDetails]
|
2632
|
+
# Generic platform details.
|
2633
|
+
# @!attribute [rw] physical_details
|
2634
|
+
# @return [::Google::Cloud::MigrationCenter::V1::PhysicalPlatformDetails]
|
2635
|
+
# Physical machines platform details.
|
2636
|
+
class PlatformDetails
|
2637
|
+
include ::Google::Protobuf::MessageExts
|
2638
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2639
|
+
end
|
2640
|
+
|
2641
|
+
# VMware specific details.
|
2642
|
+
# @!attribute [rw] vcenter_version
|
2643
|
+
# @return [::String]
|
2644
|
+
# vCenter version.
|
2645
|
+
# @!attribute [rw] esx_version
|
2646
|
+
# @return [::String]
|
2647
|
+
# ESX version.
|
2648
|
+
# @!attribute [rw] osid
|
2649
|
+
# @return [::String]
|
2650
|
+
# VMware os enum -
|
2651
|
+
# 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.
|
2652
|
+
# @!attribute [rw] vcenter_folder
|
2653
|
+
# @return [::String]
|
2654
|
+
# Folder name in vCenter where asset resides.
|
2655
|
+
# @!attribute [rw] vcenter_uri
|
2656
|
+
# @return [::String]
|
2657
|
+
# vCenter URI used in collection.
|
2658
|
+
# @!attribute [rw] vcenter_vm_id
|
2659
|
+
# @return [::String]
|
2660
|
+
# vCenter VM ID.
|
2661
|
+
class VmwarePlatformDetails
|
2662
|
+
include ::Google::Protobuf::MessageExts
|
2663
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2664
|
+
end
|
2665
|
+
|
2666
|
+
# AWS EC2 specific details.
|
2667
|
+
# @!attribute [rw] machine_type_label
|
2668
|
+
# @return [::String]
|
2669
|
+
# AWS platform's machine type label.
|
2670
|
+
# @!attribute [rw] location
|
2671
|
+
# @return [::String]
|
2672
|
+
# The location of the machine in the AWS format.
|
2673
|
+
class AwsEc2PlatformDetails
|
2674
|
+
include ::Google::Protobuf::MessageExts
|
2675
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2676
|
+
end
|
2677
|
+
|
2678
|
+
# Azure VM specific details.
|
2679
|
+
# @!attribute [rw] machine_type_label
|
2680
|
+
# @return [::String]
|
2681
|
+
# Azure platform's machine type label.
|
2682
|
+
# @!attribute [rw] location
|
2683
|
+
# @return [::String]
|
2684
|
+
# The location of the machine in the Azure format.
|
2685
|
+
# @!attribute [rw] provisioning_state
|
2686
|
+
# @return [::String]
|
2687
|
+
# Azure platform's provisioning state.
|
2688
|
+
class AzureVmPlatformDetails
|
2689
|
+
include ::Google::Protobuf::MessageExts
|
2690
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2691
|
+
end
|
2692
|
+
|
2693
|
+
# Generic platform details.
|
2694
|
+
# @!attribute [rw] location
|
2695
|
+
# @return [::String]
|
2696
|
+
# Free text representation of the machine location.
|
2697
|
+
# The format of this field should not be relied on. Different VMs in the same
|
2698
|
+
# location may have different string values for this field.
|
2699
|
+
class GenericPlatformDetails
|
2700
|
+
include ::Google::Protobuf::MessageExts
|
2701
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2702
|
+
end
|
2703
|
+
|
2704
|
+
# Platform specific details for Physical Machines.
|
2705
|
+
# @!attribute [rw] location
|
2706
|
+
# @return [::String]
|
2707
|
+
# Free text representation of the machine location.
|
2708
|
+
# The format of this field should not be relied on. Different machines in the
|
2709
|
+
# same location may have different string values for this field.
|
2710
|
+
class PhysicalPlatformDetails
|
2711
|
+
include ::Google::Protobuf::MessageExts
|
2712
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2713
|
+
end
|
2714
|
+
|
2715
|
+
# Memory usage sample.
|
2716
|
+
# @!attribute [rw] utilized_percentage
|
2717
|
+
# @return [::Float]
|
2718
|
+
# Percentage of system memory utilized. Must be in the interval [0, 100].
|
2719
|
+
class MemoryUsageSample
|
2720
|
+
include ::Google::Protobuf::MessageExts
|
2721
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2722
|
+
end
|
2723
|
+
|
2724
|
+
# CPU usage sample.
|
2725
|
+
# @!attribute [rw] utilized_percentage
|
2726
|
+
# @return [::Float]
|
2727
|
+
# Percentage of total CPU capacity utilized. Must be in the interval [0,
|
2728
|
+
# 100]. On most systems can be calculated using 100 - idle percentage.
|
2729
|
+
class CpuUsageSample
|
2730
|
+
include ::Google::Protobuf::MessageExts
|
2731
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2732
|
+
end
|
2733
|
+
|
2734
|
+
# Network usage sample. Values are across all network interfaces.
|
2735
|
+
# @!attribute [rw] average_ingress_bps
|
2736
|
+
# @return [::Float]
|
2737
|
+
# Average network ingress in B/s sampled over a short window.
|
2738
|
+
# Must be non-negative.
|
2739
|
+
# @!attribute [rw] average_egress_bps
|
2740
|
+
# @return [::Float]
|
2741
|
+
# Average network egress in B/s sampled over a short window.
|
2742
|
+
# Must be non-negative.
|
2743
|
+
class NetworkUsageSample
|
2744
|
+
include ::Google::Protobuf::MessageExts
|
2745
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2746
|
+
end
|
2747
|
+
|
2748
|
+
# Disk usage sample. Values are across all disks.
|
2749
|
+
# @!attribute [rw] average_iops
|
2750
|
+
# @return [::Float]
|
2751
|
+
# Average IOPS sampled over a short window. Must be non-negative.
|
2752
|
+
class DiskUsageSample
|
2753
|
+
include ::Google::Protobuf::MessageExts
|
2754
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2755
|
+
end
|
2756
|
+
|
2757
|
+
# Performance data sample.
|
2758
|
+
# @!attribute [rw] sample_time
|
2759
|
+
# @return [::Google::Protobuf::Timestamp]
|
2760
|
+
# Time the sample was collected.
|
2761
|
+
# If omitted, the frame report time will be used.
|
2762
|
+
# @!attribute [rw] memory
|
2763
|
+
# @return [::Google::Cloud::MigrationCenter::V1::MemoryUsageSample]
|
2764
|
+
# Memory usage sample.
|
2765
|
+
# @!attribute [rw] cpu
|
2766
|
+
# @return [::Google::Cloud::MigrationCenter::V1::CpuUsageSample]
|
2767
|
+
# CPU usage sample.
|
2768
|
+
# @!attribute [rw] network
|
2769
|
+
# @return [::Google::Cloud::MigrationCenter::V1::NetworkUsageSample]
|
2770
|
+
# Network usage sample.
|
2771
|
+
# @!attribute [rw] disk
|
2772
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DiskUsageSample]
|
2773
|
+
# Disk usage sample.
|
2774
|
+
class PerformanceSample
|
2775
|
+
include ::Google::Protobuf::MessageExts
|
2776
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2777
|
+
end
|
2778
|
+
|
2779
|
+
# Performance data for an asset.
|
2780
|
+
# @!attribute [rw] daily_resource_usage_aggregations
|
2781
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation>]
|
2782
|
+
# Daily resource usage aggregations.
|
2783
|
+
# Contains all of the data available for an asset, up to the last 420 days.
|
2784
|
+
# Aggregations are sorted from oldest to most recent.
|
2785
|
+
class AssetPerformanceData
|
2786
|
+
include ::Google::Protobuf::MessageExts
|
2787
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2788
|
+
end
|
2789
|
+
|
2790
|
+
# Usage data aggregation for a single day.
|
2791
|
+
# @!attribute [rw] date
|
2792
|
+
# @return [::Google::Type::Date]
|
2793
|
+
# Aggregation date. Day boundaries are at midnight UTC.
|
2794
|
+
# @!attribute [rw] cpu
|
2795
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::CPU]
|
2796
|
+
# CPU usage.
|
2797
|
+
# @!attribute [rw] memory
|
2798
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::Memory]
|
2799
|
+
# Memory usage.
|
2800
|
+
# @!attribute [rw] network
|
2801
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::Network]
|
2802
|
+
# Network usage.
|
2803
|
+
# @!attribute [rw] disk
|
2804
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::Disk]
|
2805
|
+
# Disk usage.
|
2806
|
+
class DailyResourceUsageAggregation
|
2807
|
+
include ::Google::Protobuf::MessageExts
|
2808
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2809
|
+
|
2810
|
+
# Statistical aggregation of samples for a single resource usage.
|
2811
|
+
# @!attribute [rw] average
|
2812
|
+
# @return [::Float]
|
2813
|
+
# Average usage value.
|
2814
|
+
# @!attribute [rw] median
|
2815
|
+
# @return [::Float]
|
2816
|
+
# Median usage value.
|
2817
|
+
# @!attribute [rw] nintey_fifth_percentile
|
2818
|
+
# @return [::Float]
|
2819
|
+
# 95th percentile usage value.
|
2820
|
+
# @!attribute [rw] peak
|
2821
|
+
# @return [::Float]
|
2822
|
+
# Peak usage value.
|
2823
|
+
class Stats
|
2824
|
+
include ::Google::Protobuf::MessageExts
|
2825
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2826
|
+
end
|
2827
|
+
|
2828
|
+
# Statistical aggregation of CPU usage.
|
2829
|
+
# @!attribute [rw] utilization_percentage
|
2830
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::Stats]
|
2831
|
+
# CPU utilization percentage.
|
2832
|
+
class CPU
|
2833
|
+
include ::Google::Protobuf::MessageExts
|
2834
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2835
|
+
end
|
2836
|
+
|
2837
|
+
# Statistical aggregation of memory usage.
|
2838
|
+
# @!attribute [rw] utilization_percentage
|
2839
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::Stats]
|
2840
|
+
# Memory utilization percentage.
|
2841
|
+
class Memory
|
2842
|
+
include ::Google::Protobuf::MessageExts
|
2843
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2844
|
+
end
|
2845
|
+
|
2846
|
+
# Statistical aggregation of network usage.
|
2847
|
+
# @!attribute [rw] ingress_bps
|
2848
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::Stats]
|
2849
|
+
# Network ingress in B/s.
|
2850
|
+
# @!attribute [rw] egress_bps
|
2851
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::Stats]
|
2852
|
+
# Network egress in B/s.
|
2853
|
+
class Network
|
2854
|
+
include ::Google::Protobuf::MessageExts
|
2855
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2856
|
+
end
|
2857
|
+
|
2858
|
+
# Statistical aggregation of disk usage.
|
2859
|
+
# @!attribute [rw] iops
|
2860
|
+
# @return [::Google::Cloud::MigrationCenter::V1::DailyResourceUsageAggregation::Stats]
|
2861
|
+
# Disk I/O operations per second.
|
2862
|
+
class Disk
|
2863
|
+
include ::Google::Protobuf::MessageExts
|
2864
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2865
|
+
end
|
2866
|
+
end
|
2867
|
+
|
2868
|
+
# Message containing insights list.
|
2869
|
+
# @!attribute [r] insights
|
2870
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::Insight>]
|
2871
|
+
# Output only. Insights of the list.
|
2872
|
+
# @!attribute [r] update_time
|
2873
|
+
# @return [::Google::Protobuf::Timestamp]
|
2874
|
+
# Output only. Update timestamp.
|
2875
|
+
class InsightList
|
2876
|
+
include ::Google::Protobuf::MessageExts
|
2877
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2878
|
+
end
|
2879
|
+
|
2880
|
+
# An insight about an asset.
|
2881
|
+
# @!attribute [r] migration_insight
|
2882
|
+
# @return [::Google::Cloud::MigrationCenter::V1::MigrationInsight]
|
2883
|
+
# Output only. An insight about potential migrations for an asset.
|
2884
|
+
# @!attribute [r] generic_insight
|
2885
|
+
# @return [::Google::Cloud::MigrationCenter::V1::GenericInsight]
|
2886
|
+
# Output only. A generic insight about an asset
|
2887
|
+
class Insight
|
2888
|
+
include ::Google::Protobuf::MessageExts
|
2889
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2890
|
+
end
|
2891
|
+
|
2892
|
+
# A generic insight about an asset.
|
2893
|
+
# @!attribute [r] message_id
|
2894
|
+
# @return [::Integer]
|
2895
|
+
# Output only. Represents a globally unique message id for
|
2896
|
+
# this insight, can be used for localization purposes, in case message_code
|
2897
|
+
# is not yet known by the client use default_message instead.
|
2898
|
+
# @!attribute [r] default_message
|
2899
|
+
# @return [::String]
|
2900
|
+
# Output only. In case message_code is not yet known by the client
|
2901
|
+
# default_message will be the message to be used instead.
|
2902
|
+
# @!attribute [r] additional_information
|
2903
|
+
# @return [::Array<::String>]
|
2904
|
+
# Output only. Additional information about the insight, each entry can be a
|
2905
|
+
# logical entry and must make sense if it is displayed with line breaks
|
2906
|
+
# between each entry. Text can contain md style links.
|
2907
|
+
class GenericInsight
|
2908
|
+
include ::Google::Protobuf::MessageExts
|
2909
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2910
|
+
end
|
2911
|
+
|
2912
|
+
# An insight about potential migrations for an asset.
|
2913
|
+
# @!attribute [r] fit
|
2914
|
+
# @return [::Google::Cloud::MigrationCenter::V1::FitDescriptor]
|
2915
|
+
# Output only. Description of how well the asset this insight is associated
|
2916
|
+
# with fits the proposed migration.
|
2917
|
+
# @!attribute [r] compute_engine_target
|
2918
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ComputeEngineMigrationTarget]
|
2919
|
+
# Output only. A Google Compute Engine target.
|
2920
|
+
class MigrationInsight
|
2921
|
+
include ::Google::Protobuf::MessageExts
|
2922
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2923
|
+
end
|
2924
|
+
|
2925
|
+
# Compute engine migration target.
|
2926
|
+
# @!attribute [rw] shape
|
2927
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ComputeEngineShapeDescriptor]
|
2928
|
+
# Description of the suggested shape for the migration target.
|
2929
|
+
class ComputeEngineMigrationTarget
|
2930
|
+
include ::Google::Protobuf::MessageExts
|
2931
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2932
|
+
end
|
2933
|
+
|
2934
|
+
# Compute Engine target shape descriptor.
|
2935
|
+
# @!attribute [rw] memory_mb
|
2936
|
+
# @return [::Integer]
|
2937
|
+
# Memory in mebibytes.
|
2938
|
+
# @!attribute [rw] physical_core_count
|
2939
|
+
# @return [::Integer]
|
2940
|
+
# Number of physical cores.
|
2941
|
+
# @!attribute [rw] logical_core_count
|
2942
|
+
# @return [::Integer]
|
2943
|
+
# Number of logical cores.
|
2944
|
+
# @!attribute [rw] series
|
2945
|
+
# @return [::String]
|
2946
|
+
# Compute Engine machine series.
|
2947
|
+
# @!attribute [rw] machine_type
|
2948
|
+
# @return [::String]
|
2949
|
+
# Compute Engine machine type.
|
2950
|
+
# @!attribute [rw] storage
|
2951
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ComputeStorageDescriptor>]
|
2952
|
+
# Compute Engine storage. Never empty.
|
2953
|
+
class ComputeEngineShapeDescriptor
|
2954
|
+
include ::Google::Protobuf::MessageExts
|
2955
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2956
|
+
end
|
2957
|
+
|
2958
|
+
# Compute Engine storage option descriptor.
|
2959
|
+
# @!attribute [rw] type
|
2960
|
+
# @return [::Google::Cloud::MigrationCenter::V1::PersistentDiskType]
|
2961
|
+
# Disk type backing the storage.
|
2962
|
+
# @!attribute [rw] size_gb
|
2963
|
+
# @return [::Integer]
|
2964
|
+
# Disk size in GiB.
|
2965
|
+
class ComputeStorageDescriptor
|
2966
|
+
include ::Google::Protobuf::MessageExts
|
2967
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2968
|
+
end
|
2969
|
+
|
2970
|
+
# Describes the fit level of an asset for migration to a specific target.
|
2971
|
+
# @!attribute [rw] fit_level
|
2972
|
+
# @return [::Google::Cloud::MigrationCenter::V1::FitDescriptor::FitLevel]
|
2973
|
+
# Fit level.
|
2974
|
+
class FitDescriptor
|
2975
|
+
include ::Google::Protobuf::MessageExts
|
2976
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2977
|
+
|
2978
|
+
# Fit level.
|
2979
|
+
module FitLevel
|
2980
|
+
# Not enough information.
|
2981
|
+
FIT_LEVEL_UNSPECIFIED = 0
|
2982
|
+
|
2983
|
+
# Fit.
|
2984
|
+
FIT = 1
|
2985
|
+
|
2986
|
+
# No Fit.
|
2987
|
+
NO_FIT = 2
|
2988
|
+
|
2989
|
+
# Fit with effort.
|
2990
|
+
REQUIRES_EFFORT = 3
|
2991
|
+
end
|
2992
|
+
end
|
2993
|
+
|
2994
|
+
# Message describing an aggregation. The message includes the aggregation type,
|
2995
|
+
# parameters, and the field on which to perform the aggregation.
|
2996
|
+
# @!attribute [rw] field
|
2997
|
+
# @return [::String]
|
2998
|
+
# The name of the field on which to aggregate.
|
2999
|
+
# @!attribute [rw] count
|
3000
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Aggregation::Count]
|
3001
|
+
# Count the number of matching objects.
|
3002
|
+
# @!attribute [rw] sum
|
3003
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Aggregation::Sum]
|
3004
|
+
# Sum over a numeric field.
|
3005
|
+
# @!attribute [rw] histogram
|
3006
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Aggregation::Histogram]
|
3007
|
+
# Creates a bucketed histogram of field values.
|
3008
|
+
# @!attribute [rw] frequency
|
3009
|
+
# @return [::Google::Cloud::MigrationCenter::V1::Aggregation::Frequency]
|
3010
|
+
# Creates a frequency distribution of all field values.
|
3011
|
+
class Aggregation
|
3012
|
+
include ::Google::Protobuf::MessageExts
|
3013
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3014
|
+
|
3015
|
+
# Object count.
|
3016
|
+
class Count
|
3017
|
+
include ::Google::Protobuf::MessageExts
|
3018
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3019
|
+
end
|
3020
|
+
|
3021
|
+
# Sum of field values.
|
3022
|
+
class Sum
|
3023
|
+
include ::Google::Protobuf::MessageExts
|
3024
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3025
|
+
end
|
3026
|
+
|
3027
|
+
# Histogram of bucketed assets counts by field value.
|
3028
|
+
# @!attribute [rw] lower_bounds
|
3029
|
+
# @return [::Array<::Float>]
|
3030
|
+
# Lower bounds of buckets.
|
3031
|
+
# The response will contain `n+1` buckets for `n` bounds.
|
3032
|
+
# The first bucket will count all assets for which the field value is
|
3033
|
+
# smaller than the first bound.
|
3034
|
+
# Subsequent buckets will count assets for which the field value is
|
3035
|
+
# greater or equal to a lower bound and smaller than the next one.
|
3036
|
+
# The last bucket will count assets for which the field value is greater or
|
3037
|
+
# equal to the final lower bound.
|
3038
|
+
# You can define up to 20 lower bounds.
|
3039
|
+
class Histogram
|
3040
|
+
include ::Google::Protobuf::MessageExts
|
3041
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3042
|
+
end
|
3043
|
+
|
3044
|
+
# Frequency distribution of all field values.
|
3045
|
+
class Frequency
|
3046
|
+
include ::Google::Protobuf::MessageExts
|
3047
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3048
|
+
end
|
3049
|
+
end
|
3050
|
+
|
3051
|
+
# Message describing a result of an aggregation.
|
3052
|
+
# @!attribute [rw] field
|
3053
|
+
# @return [::String]
|
3054
|
+
# @!attribute [rw] count
|
3055
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AggregationResult::Count]
|
3056
|
+
# @!attribute [rw] sum
|
3057
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AggregationResult::Sum]
|
3058
|
+
# @!attribute [rw] histogram
|
3059
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AggregationResult::Histogram]
|
3060
|
+
# @!attribute [rw] frequency
|
3061
|
+
# @return [::Google::Cloud::MigrationCenter::V1::AggregationResult::Frequency]
|
3062
|
+
class AggregationResult
|
3063
|
+
include ::Google::Protobuf::MessageExts
|
3064
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3065
|
+
|
3066
|
+
# The result of a count aggregation.
|
3067
|
+
# @!attribute [rw] value
|
3068
|
+
# @return [::Integer]
|
3069
|
+
class Count
|
3070
|
+
include ::Google::Protobuf::MessageExts
|
3071
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3072
|
+
end
|
3073
|
+
|
3074
|
+
# The result of a sum aggregation.
|
3075
|
+
# @!attribute [rw] value
|
3076
|
+
# @return [::Float]
|
3077
|
+
class Sum
|
3078
|
+
include ::Google::Protobuf::MessageExts
|
3079
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3080
|
+
end
|
3081
|
+
|
3082
|
+
# The result of a bucketed histogram aggregation.
|
3083
|
+
# @!attribute [rw] buckets
|
3084
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::AggregationResult::Histogram::Bucket>]
|
3085
|
+
# Buckets in the histogram.
|
3086
|
+
# There will be `n+1` buckets matching `n` lower bounds in the request.
|
3087
|
+
# The first bucket will be from -infinity to the first bound.
|
3088
|
+
# Subsequent buckets will be between one bound and the next.
|
3089
|
+
# The final bucket will be from the final bound to infinity.
|
3090
|
+
class Histogram
|
3091
|
+
include ::Google::Protobuf::MessageExts
|
3092
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3093
|
+
|
3094
|
+
# A histogram bucket with a lower and upper bound, and a count of items
|
3095
|
+
# with a field value between those bounds.
|
3096
|
+
# The lower bound is inclusive and the upper bound is exclusive.
|
3097
|
+
# Lower bound may be -infinity and upper bound may be infinity.
|
3098
|
+
# @!attribute [rw] lower_bound
|
3099
|
+
# @return [::Float]
|
3100
|
+
# Lower bound - inclusive.
|
3101
|
+
# @!attribute [rw] upper_bound
|
3102
|
+
# @return [::Float]
|
3103
|
+
# Upper bound - exclusive.
|
3104
|
+
# @!attribute [rw] count
|
3105
|
+
# @return [::Integer]
|
3106
|
+
# Count of items in the bucket.
|
3107
|
+
class Bucket
|
3108
|
+
include ::Google::Protobuf::MessageExts
|
3109
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3110
|
+
end
|
3111
|
+
end
|
3112
|
+
|
3113
|
+
# The result of a frequency distribution aggregation.
|
3114
|
+
# @!attribute [rw] values
|
3115
|
+
# @return [::Google::Protobuf::Map{::String => ::Integer}]
|
3116
|
+
class Frequency
|
3117
|
+
include ::Google::Protobuf::MessageExts
|
3118
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3119
|
+
|
3120
|
+
# @!attribute [rw] key
|
3121
|
+
# @return [::String]
|
3122
|
+
# @!attribute [rw] value
|
3123
|
+
# @return [::Integer]
|
3124
|
+
class ValuesEntry
|
3125
|
+
include ::Google::Protobuf::MessageExts
|
3126
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3127
|
+
end
|
3128
|
+
end
|
3129
|
+
end
|
3130
|
+
|
3131
|
+
# A resource that aggregates the validation errors found in an import job file.
|
3132
|
+
# @!attribute [rw] file_name
|
3133
|
+
# @return [::String]
|
3134
|
+
# The name of the file.
|
3135
|
+
# @!attribute [rw] row_errors
|
3136
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ImportRowError>]
|
3137
|
+
# Partial list of rows that encountered validation error.
|
3138
|
+
# @!attribute [rw] partial_report
|
3139
|
+
# @return [::Boolean]
|
3140
|
+
# Flag indicating that processing was aborted due to maximum number of
|
3141
|
+
# errors.
|
3142
|
+
# @!attribute [rw] file_errors
|
3143
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ImportError>]
|
3144
|
+
# List of file level errors.
|
3145
|
+
class FileValidationReport
|
3146
|
+
include ::Google::Protobuf::MessageExts
|
3147
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3148
|
+
end
|
3149
|
+
|
3150
|
+
# A resource that aggregates errors across import job files.
|
3151
|
+
# @!attribute [rw] file_validations
|
3152
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::FileValidationReport>]
|
3153
|
+
# List of errors found in files.
|
3154
|
+
# @!attribute [rw] job_errors
|
3155
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ImportError>]
|
3156
|
+
# List of job level errors.
|
3157
|
+
class ValidationReport
|
3158
|
+
include ::Google::Protobuf::MessageExts
|
3159
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3160
|
+
end
|
3161
|
+
|
3162
|
+
# A resource that reports result of the import job execution.
|
3163
|
+
# @!attribute [rw] frames_reported
|
3164
|
+
# @return [::Integer]
|
3165
|
+
# Total number of asset frames reported for the import job.
|
3166
|
+
# @!attribute [rw] execution_errors
|
3167
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ValidationReport]
|
3168
|
+
# Validation errors encountered during the execution of the import job.
|
3169
|
+
# @!attribute [r] total_rows_count
|
3170
|
+
# @return [::Integer]
|
3171
|
+
# Output only. Total number of rows in the import job.
|
3172
|
+
class ExecutionReport
|
3173
|
+
include ::Google::Protobuf::MessageExts
|
3174
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3175
|
+
end
|
3176
|
+
|
3177
|
+
# A resource that reports the errors encountered while processing an
|
3178
|
+
# import job.
|
3179
|
+
# @!attribute [rw] error_details
|
3180
|
+
# @return [::String]
|
3181
|
+
# The error information.
|
3182
|
+
# @!attribute [rw] severity
|
3183
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ImportError::Severity]
|
3184
|
+
# The severity of the error.
|
3185
|
+
class ImportError
|
3186
|
+
include ::Google::Protobuf::MessageExts
|
3187
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3188
|
+
|
3189
|
+
# Enumerate possible error severity.
|
3190
|
+
module Severity
|
3191
|
+
SEVERITY_UNSPECIFIED = 0
|
3192
|
+
|
3193
|
+
ERROR = 1
|
3194
|
+
|
3195
|
+
WARNING = 2
|
3196
|
+
|
3197
|
+
INFO = 3
|
3198
|
+
end
|
3199
|
+
end
|
3200
|
+
|
3201
|
+
# A resource that reports the import job errors at row level.
|
3202
|
+
# @!attribute [rw] row_number
|
3203
|
+
# @return [::Integer]
|
3204
|
+
# The row number where the error was detected.
|
3205
|
+
# @!attribute [rw] vm_name
|
3206
|
+
# @return [::String]
|
3207
|
+
# The name of the VM in the row.
|
3208
|
+
# @!attribute [rw] vm_uuid
|
3209
|
+
# @return [::String]
|
3210
|
+
# The VM UUID.
|
3211
|
+
# @!attribute [rw] errors
|
3212
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ImportError>]
|
3213
|
+
# The list of errors detected in the row.
|
3214
|
+
class ImportRowError
|
3215
|
+
include ::Google::Protobuf::MessageExts
|
3216
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3217
|
+
end
|
3218
|
+
|
3219
|
+
# A resource that contains a URI to which a data file can be uploaded.
|
3220
|
+
# @!attribute [r] signed_uri
|
3221
|
+
# @return [::String]
|
3222
|
+
# Output only. Upload URI for the file.
|
3223
|
+
# @!attribute [r] headers
|
3224
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
3225
|
+
# Output only. The headers that were used to sign the URI.
|
3226
|
+
# @!attribute [r] uri_expiration_time
|
3227
|
+
# @return [::Google::Protobuf::Timestamp]
|
3228
|
+
# Output only. Expiration time of the upload URI.
|
3229
|
+
class UploadFileInfo
|
3230
|
+
include ::Google::Protobuf::MessageExts
|
3231
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3232
|
+
|
3233
|
+
# @!attribute [rw] key
|
3234
|
+
# @return [::String]
|
3235
|
+
# @!attribute [rw] value
|
3236
|
+
# @return [::String]
|
3237
|
+
class HeadersEntry
|
3238
|
+
include ::Google::Protobuf::MessageExts
|
3239
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3240
|
+
end
|
3241
|
+
end
|
3242
|
+
|
3243
|
+
# Lists the asset IDs of all assets.
|
3244
|
+
# @!attribute [rw] asset_ids
|
3245
|
+
# @return [::Array<::String>]
|
3246
|
+
# Required. A list of asset IDs
|
3247
|
+
class AssetList
|
3248
|
+
include ::Google::Protobuf::MessageExts
|
3249
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3250
|
+
end
|
3251
|
+
|
3252
|
+
# A resource that contains a single violation of a reported `AssetFrame`
|
3253
|
+
# resource.
|
3254
|
+
# @!attribute [rw] field
|
3255
|
+
# @return [::String]
|
3256
|
+
# The field of the original frame where the violation occurred.
|
3257
|
+
# @!attribute [rw] violation
|
3258
|
+
# @return [::String]
|
3259
|
+
# A message describing the violation.
|
3260
|
+
class FrameViolationEntry
|
3261
|
+
include ::Google::Protobuf::MessageExts
|
3262
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3263
|
+
end
|
3264
|
+
|
3265
|
+
# VirtualMachinePreferences enables you to create sets of assumptions, for
|
3266
|
+
# example, a geographical location and pricing track, for your migrated virtual
|
3267
|
+
# machines. The set of preferences influence recommendations for migrating
|
3268
|
+
# virtual machine assets.
|
3269
|
+
# @!attribute [rw] target_product
|
3270
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ComputeMigrationTargetProduct]
|
3271
|
+
# Target product for assets using this preference set.
|
3272
|
+
# Specify either target product or business goal, but
|
3273
|
+
# not both.
|
3274
|
+
# @!attribute [rw] region_preferences
|
3275
|
+
# @return [::Google::Cloud::MigrationCenter::V1::RegionPreferences]
|
3276
|
+
# Region preferences for assets using this preference set.
|
3277
|
+
# If you are unsure which value to set, the migration service API region is
|
3278
|
+
# often a good value to start with.
|
3279
|
+
# @!attribute [rw] commitment_plan
|
3280
|
+
# @return [::Google::Cloud::MigrationCenter::V1::CommitmentPlan]
|
3281
|
+
# Commitment plan to consider when calculating costs for virtual machine
|
3282
|
+
# insights and recommendations.
|
3283
|
+
# If you are unsure which value to set, a 3 year commitment plan is often a
|
3284
|
+
# good value to start with.
|
3285
|
+
# @!attribute [rw] sizing_optimization_strategy
|
3286
|
+
# @return [::Google::Cloud::MigrationCenter::V1::SizingOptimizationStrategy]
|
3287
|
+
# Sizing optimization strategy specifies the preferred strategy used when
|
3288
|
+
# extrapolating usage data to calculate insights and recommendations for a
|
3289
|
+
# virtual machine.
|
3290
|
+
# If you are unsure which value to set, a moderate sizing optimization
|
3291
|
+
# strategy is often a good value to start with.
|
3292
|
+
# @!attribute [rw] compute_engine_preferences
|
3293
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ComputeEnginePreferences]
|
3294
|
+
# Compute Engine preferences concern insights and recommendations for Compute
|
3295
|
+
# Engine target.
|
3296
|
+
# @!attribute [rw] vmware_engine_preferences
|
3297
|
+
# @return [::Google::Cloud::MigrationCenter::V1::VmwareEnginePreferences]
|
3298
|
+
# Preferences concerning insights and recommendations for
|
3299
|
+
# Google Cloud VMware Engine.
|
3300
|
+
# @!attribute [rw] sole_tenancy_preferences
|
3301
|
+
# @return [::Google::Cloud::MigrationCenter::V1::SoleTenancyPreferences]
|
3302
|
+
# Preferences concerning Sole Tenant nodes and virtual machines.
|
3303
|
+
class VirtualMachinePreferences
|
3304
|
+
include ::Google::Protobuf::MessageExts
|
3305
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3306
|
+
end
|
3307
|
+
|
3308
|
+
# The user preferences relating to Compute Engine target platform.
|
3309
|
+
# @!attribute [rw] machine_preferences
|
3310
|
+
# @return [::Google::Cloud::MigrationCenter::V1::MachinePreferences]
|
3311
|
+
# Preferences concerning the machine types to consider on Compute Engine.
|
3312
|
+
# @!attribute [rw] license_type
|
3313
|
+
# @return [::Google::Cloud::MigrationCenter::V1::LicenseType]
|
3314
|
+
# License type to consider when calculating costs for virtual machine
|
3315
|
+
# insights and recommendations. If unspecified, costs are calculated
|
3316
|
+
# based on the default licensing plan.
|
3317
|
+
class ComputeEnginePreferences
|
3318
|
+
include ::Google::Protobuf::MessageExts
|
3319
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3320
|
+
end
|
3321
|
+
|
3322
|
+
# The type of machines to consider when calculating virtual machine migration
|
3323
|
+
# insights and recommendations.
|
3324
|
+
# Not all machine types are available in all zones and regions.
|
3325
|
+
# @!attribute [rw] allowed_machine_series
|
3326
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::MachineSeries>]
|
3327
|
+
# Compute Engine machine series to consider for insights and recommendations.
|
3328
|
+
# If empty, no restriction is applied on the machine series.
|
3329
|
+
class MachinePreferences
|
3330
|
+
include ::Google::Protobuf::MessageExts
|
3331
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3332
|
+
end
|
3333
|
+
|
3334
|
+
# A Compute Engine machine series.
|
3335
|
+
# @!attribute [rw] code
|
3336
|
+
# @return [::String]
|
3337
|
+
# Code to identify a Compute Engine machine series. Consult
|
3338
|
+
# https://cloud.google.com/compute/docs/machine-resource#machine_type_comparison
|
3339
|
+
# for more details on the available series.
|
3340
|
+
class MachineSeries
|
3341
|
+
include ::Google::Protobuf::MessageExts
|
3342
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3343
|
+
end
|
3344
|
+
|
3345
|
+
# The user preferences relating to Google Cloud VMware Engine target platform.
|
3346
|
+
# @!attribute [rw] cpu_overcommit_ratio
|
3347
|
+
# @return [::Float]
|
3348
|
+
# CPU overcommit ratio.
|
3349
|
+
# Acceptable values are between 1.0 and 8.0, with 0.1 increment.
|
3350
|
+
# @!attribute [rw] memory_overcommit_ratio
|
3351
|
+
# @return [::Float]
|
3352
|
+
# Memory overcommit ratio.
|
3353
|
+
# Acceptable values are 1.0, 1.25, 1.5, 1.75 and 2.0.
|
3354
|
+
# @!attribute [rw] storage_deduplication_compression_ratio
|
3355
|
+
# @return [::Float]
|
3356
|
+
# The Deduplication and Compression ratio is based on the logical (Used
|
3357
|
+
# Before) space required to store data before applying deduplication and
|
3358
|
+
# compression, in relation to the physical (Used After) space required after
|
3359
|
+
# applying deduplication and compression. Specifically, the ratio is the Used
|
3360
|
+
# Before space divided by the Used After space. For example, if the Used
|
3361
|
+
# Before space is 3 GB, but the physical Used After space is 1 GB, the
|
3362
|
+
# deduplication and compression ratio is 3x. Acceptable values are
|
3363
|
+
# between 1.0 and 4.0.
|
3364
|
+
# @!attribute [rw] commitment_plan
|
3365
|
+
# @return [::Google::Cloud::MigrationCenter::V1::VmwareEnginePreferences::CommitmentPlan]
|
3366
|
+
# Commitment plan to consider when calculating costs for virtual machine
|
3367
|
+
# insights and recommendations.
|
3368
|
+
# If you are unsure which value to set, a 3 year commitment plan is often a
|
3369
|
+
# good value to start with.
|
3370
|
+
class VmwareEnginePreferences
|
3371
|
+
include ::Google::Protobuf::MessageExts
|
3372
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3373
|
+
|
3374
|
+
# Type of committed use discount.
|
3375
|
+
module CommitmentPlan
|
3376
|
+
# Unspecified commitment plan.
|
3377
|
+
COMMITMENT_PLAN_UNSPECIFIED = 0
|
3378
|
+
|
3379
|
+
# No commitment plan (on-demand usage).
|
3380
|
+
ON_DEMAND = 1
|
3381
|
+
|
3382
|
+
# 1 year commitment (monthly payments).
|
3383
|
+
COMMITMENT_1_YEAR_MONTHLY_PAYMENTS = 2
|
3384
|
+
|
3385
|
+
# 3 year commitment (monthly payments).
|
3386
|
+
COMMITMENT_3_YEAR_MONTHLY_PAYMENTS = 3
|
3387
|
+
|
3388
|
+
# 1 year commitment (upfront payment).
|
3389
|
+
COMMITMENT_1_YEAR_UPFRONT_PAYMENT = 4
|
3390
|
+
|
3391
|
+
# 3 years commitment (upfront payment).
|
3392
|
+
COMMITMENT_3_YEAR_UPFRONT_PAYMENT = 5
|
3393
|
+
end
|
3394
|
+
end
|
3395
|
+
|
3396
|
+
# Preferences concerning Sole Tenancy nodes and VMs.
|
3397
|
+
# @!attribute [rw] cpu_overcommit_ratio
|
3398
|
+
# @return [::Float]
|
3399
|
+
# CPU overcommit ratio.
|
3400
|
+
# Acceptable values are between 1.0 and 2.0 inclusive.
|
3401
|
+
# @!attribute [rw] host_maintenance_policy
|
3402
|
+
# @return [::Google::Cloud::MigrationCenter::V1::SoleTenancyPreferences::HostMaintenancePolicy]
|
3403
|
+
# Sole Tenancy nodes maintenance policy.
|
3404
|
+
# @!attribute [rw] commitment_plan
|
3405
|
+
# @return [::Google::Cloud::MigrationCenter::V1::SoleTenancyPreferences::CommitmentPlan]
|
3406
|
+
# Commitment plan to consider when calculating costs for virtual machine
|
3407
|
+
# insights and recommendations.
|
3408
|
+
# If you are unsure which value to set, a 3 year commitment plan is often a
|
3409
|
+
# good value to start with.
|
3410
|
+
# @!attribute [rw] node_types
|
3411
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::SoleTenantNodeType>]
|
3412
|
+
# A list of sole tenant node types.
|
3413
|
+
# An empty list means that all possible node types will be considered.
|
3414
|
+
class SoleTenancyPreferences
|
3415
|
+
include ::Google::Protobuf::MessageExts
|
3416
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3417
|
+
|
3418
|
+
# Sole Tenancy nodes maintenance policy.
|
3419
|
+
module HostMaintenancePolicy
|
3420
|
+
# Unspecified host maintenance policy.
|
3421
|
+
HOST_MAINTENANCE_POLICY_UNSPECIFIED = 0
|
3422
|
+
|
3423
|
+
# Default host maintenance policy.
|
3424
|
+
HOST_MAINTENANCE_POLICY_DEFAULT = 1
|
3425
|
+
|
3426
|
+
# Restart in place host maintenance policy.
|
3427
|
+
HOST_MAINTENANCE_POLICY_RESTART_IN_PLACE = 2
|
3428
|
+
|
3429
|
+
# Migrate within node group host maintenance policy.
|
3430
|
+
HOST_MAINTENANCE_POLICY_MIGRATE_WITHIN_NODE_GROUP = 3
|
3431
|
+
end
|
3432
|
+
|
3433
|
+
# Type of committed use discount.
|
3434
|
+
module CommitmentPlan
|
3435
|
+
# Unspecified commitment plan.
|
3436
|
+
COMMITMENT_PLAN_UNSPECIFIED = 0
|
3437
|
+
|
3438
|
+
# No commitment plan (on-demand usage).
|
3439
|
+
ON_DEMAND = 1
|
3440
|
+
|
3441
|
+
# 1 year commitment.
|
3442
|
+
COMMITMENT_1_YEAR = 2
|
3443
|
+
|
3444
|
+
# 3 years commitment.
|
3445
|
+
COMMITMENT_3_YEAR = 3
|
3446
|
+
end
|
3447
|
+
end
|
3448
|
+
|
3449
|
+
# A Sole Tenant node type.
|
3450
|
+
# @!attribute [rw] node_name
|
3451
|
+
# @return [::String]
|
3452
|
+
# Name of the Sole Tenant node. Consult
|
3453
|
+
# https://cloud.google.com/compute/docs/nodes/sole-tenant-nodes
|
3454
|
+
class SoleTenantNodeType
|
3455
|
+
include ::Google::Protobuf::MessageExts
|
3456
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3457
|
+
end
|
3458
|
+
|
3459
|
+
# The user preferences relating to target regions.
|
3460
|
+
# @!attribute [rw] preferred_regions
|
3461
|
+
# @return [::Array<::String>]
|
3462
|
+
# A list of preferred regions,
|
3463
|
+
# ordered by the most preferred region first.
|
3464
|
+
# Set only valid Google Cloud region names.
|
3465
|
+
# See https://cloud.google.com/compute/docs/regions-zones
|
3466
|
+
# for available regions.
|
3467
|
+
class RegionPreferences
|
3468
|
+
include ::Google::Protobuf::MessageExts
|
3469
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3470
|
+
end
|
3471
|
+
|
3472
|
+
# Describes the Migration Center settings related to the project.
|
3473
|
+
# @!attribute [r] name
|
3474
|
+
# @return [::String]
|
3475
|
+
# Output only. The name of the resource.
|
3476
|
+
# @!attribute [rw] preference_set
|
3477
|
+
# @return [::String]
|
3478
|
+
# The preference set used by default for a project.
|
3479
|
+
class Settings
|
3480
|
+
include ::Google::Protobuf::MessageExts
|
3481
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3482
|
+
end
|
3483
|
+
|
3484
|
+
# Describes the Summary view of a Report, which contains aggregated values
|
3485
|
+
# for all the groups and preference sets included in this Report.
|
3486
|
+
# @!attribute [rw] all_assets_stats
|
3487
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::AssetAggregateStats]
|
3488
|
+
# Aggregate statistics for all the assets across all the groups.
|
3489
|
+
# @!attribute [rw] group_findings
|
3490
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::GroupFinding>]
|
3491
|
+
# Findings for each Group included in this report.
|
3492
|
+
class ReportSummary
|
3493
|
+
include ::Google::Protobuf::MessageExts
|
3494
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3495
|
+
|
3496
|
+
# Describes a collection of data points rendered as a Chart.
|
3497
|
+
# @!attribute [rw] data_points
|
3498
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::ChartData::DataPoint>]
|
3499
|
+
# Each data point in the chart is represented as a name-value pair
|
3500
|
+
# with the name being the x-axis label, and the value being the y-axis
|
3501
|
+
# value.
|
3502
|
+
class ChartData
|
3503
|
+
include ::Google::Protobuf::MessageExts
|
3504
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3505
|
+
|
3506
|
+
# Describes a single data point in the Chart.
|
3507
|
+
# @!attribute [rw] label
|
3508
|
+
# @return [::String]
|
3509
|
+
# The X-axis label for this data point.
|
3510
|
+
# @!attribute [rw] value
|
3511
|
+
# @return [::Float]
|
3512
|
+
# The Y-axis value for this data point.
|
3513
|
+
class DataPoint
|
3514
|
+
include ::Google::Protobuf::MessageExts
|
3515
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3516
|
+
end
|
3517
|
+
end
|
3518
|
+
|
3519
|
+
# Utilization Chart is a specific type of visualization which displays
|
3520
|
+
# a metric classified into "Used" and "Free" buckets.
|
3521
|
+
# @!attribute [rw] used
|
3522
|
+
# @return [::Integer]
|
3523
|
+
# Aggregate value which falls into the "Used" bucket.
|
3524
|
+
# @!attribute [rw] free
|
3525
|
+
# @return [::Integer]
|
3526
|
+
# Aggregate value which falls into the "Free" bucket.
|
3527
|
+
class UtilizationChartData
|
3528
|
+
include ::Google::Protobuf::MessageExts
|
3529
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3530
|
+
end
|
3531
|
+
|
3532
|
+
# A Histogram Chart shows a distribution of values into buckets, showing
|
3533
|
+
# a count of values which fall into a bucket.
|
3534
|
+
# @!attribute [rw] buckets
|
3535
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::HistogramChartData::Bucket>]
|
3536
|
+
# Buckets in the histogram.
|
3537
|
+
# There will be `n+1` buckets matching `n` lower bounds in the request.
|
3538
|
+
# The first bucket will be from -infinity to the first bound.
|
3539
|
+
# Subsequent buckets will be between one bound and the next.
|
3540
|
+
# The final bucket will be from the final bound to infinity.
|
3541
|
+
class HistogramChartData
|
3542
|
+
include ::Google::Protobuf::MessageExts
|
3543
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3544
|
+
|
3545
|
+
# A histogram bucket with a lower and upper bound, and a count of items
|
3546
|
+
# with a field value between those bounds.
|
3547
|
+
# The lower bound is inclusive and the upper bound is exclusive.
|
3548
|
+
# Lower bound may be -infinity and upper bound may be infinity.
|
3549
|
+
# @!attribute [rw] lower_bound
|
3550
|
+
# @return [::Integer]
|
3551
|
+
# Lower bound - inclusive.
|
3552
|
+
# @!attribute [rw] upper_bound
|
3553
|
+
# @return [::Integer]
|
3554
|
+
# Upper bound - exclusive.
|
3555
|
+
# @!attribute [rw] count
|
3556
|
+
# @return [::Integer]
|
3557
|
+
# Count of items in the bucket.
|
3558
|
+
class Bucket
|
3559
|
+
include ::Google::Protobuf::MessageExts
|
3560
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3561
|
+
end
|
3562
|
+
end
|
3563
|
+
|
3564
|
+
# Aggregate statistics for a collection of assets.
|
3565
|
+
# @!attribute [rw] total_memory_bytes
|
3566
|
+
# @return [::Integer]
|
3567
|
+
# Sum of the memory in bytes of all the assets in this collection.
|
3568
|
+
# @!attribute [rw] total_storage_bytes
|
3569
|
+
# @return [::Integer]
|
3570
|
+
# Sum of persistent storage in bytes of all the assets in this collection.
|
3571
|
+
# @!attribute [rw] total_cores
|
3572
|
+
# @return [::Integer]
|
3573
|
+
# Sum of the CPU core count of all the assets in this collection.
|
3574
|
+
# @!attribute [rw] total_assets
|
3575
|
+
# @return [::Integer]
|
3576
|
+
# Count of the number of unique assets in this collection.
|
3577
|
+
# @!attribute [rw] memory_utilization_chart
|
3578
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::UtilizationChartData]
|
3579
|
+
# Total memory split into Used/Free buckets.
|
3580
|
+
# @!attribute [rw] storage_utilization_chart
|
3581
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::UtilizationChartData]
|
3582
|
+
# Total memory split into Used/Free buckets.
|
3583
|
+
# @!attribute [rw] operating_system
|
3584
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::ChartData]
|
3585
|
+
# Count of assets grouped by Operating System families.
|
3586
|
+
# @!attribute [rw] core_count_histogram
|
3587
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::HistogramChartData]
|
3588
|
+
# Histogram showing a distribution of CPU core counts.
|
3589
|
+
# @!attribute [rw] memory_bytes_histogram
|
3590
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::HistogramChartData]
|
3591
|
+
# Histogram showing a distribution of memory sizes.
|
3592
|
+
# @!attribute [rw] storage_bytes_histogram
|
3593
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::HistogramChartData]
|
3594
|
+
# Histogram showing a distribution of memory sizes.
|
3595
|
+
class AssetAggregateStats
|
3596
|
+
include ::Google::Protobuf::MessageExts
|
3597
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3598
|
+
end
|
3599
|
+
|
3600
|
+
# Represents a data point tracking the count of assets allocated for a
|
3601
|
+
# specific Machine Series.
|
3602
|
+
# @!attribute [rw] machine_series
|
3603
|
+
# @return [::Google::Cloud::MigrationCenter::V1::MachineSeries]
|
3604
|
+
# The Machine Series (e.g. "E2", "N2")
|
3605
|
+
# @!attribute [rw] allocated_asset_count
|
3606
|
+
# @return [::Integer]
|
3607
|
+
# Count of assets allocated to this machine series.
|
3608
|
+
class MachineSeriesAllocation
|
3609
|
+
include ::Google::Protobuf::MessageExts
|
3610
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3611
|
+
end
|
3612
|
+
|
3613
|
+
# A set of findings that applies to assets destined for Compute Engine.
|
3614
|
+
# @!attribute [rw] allocated_regions
|
3615
|
+
# @return [::Array<::String>]
|
3616
|
+
# Set of regions in which the assets were allocated.
|
3617
|
+
# @!attribute [rw] allocated_asset_count
|
3618
|
+
# @return [::Integer]
|
3619
|
+
# Count of assets which were allocated.
|
3620
|
+
# @!attribute [rw] machine_series_allocations
|
3621
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::MachineSeriesAllocation>]
|
3622
|
+
# Distribution of assets based on the Machine Series.
|
3623
|
+
# @!attribute [rw] allocated_disk_types
|
3624
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::PersistentDiskType>]
|
3625
|
+
# Set of disk types allocated to assets.
|
3626
|
+
class ComputeEngineFinding
|
3627
|
+
include ::Google::Protobuf::MessageExts
|
3628
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3629
|
+
end
|
3630
|
+
|
3631
|
+
# A set of findings that applies to assets destined for VMWare Engine.
|
3632
|
+
# @!attribute [rw] allocated_regions
|
3633
|
+
# @return [::Array<::String>]
|
3634
|
+
# Set of regions in which the assets were allocated
|
3635
|
+
# @!attribute [rw] allocated_asset_count
|
3636
|
+
# @return [::Integer]
|
3637
|
+
# Count of assets which are allocated
|
3638
|
+
# @!attribute [rw] node_allocations
|
3639
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::VmwareNodeAllocation>]
|
3640
|
+
# Set of per-nodetype allocation records
|
3641
|
+
class VmwareEngineFinding
|
3642
|
+
include ::Google::Protobuf::MessageExts
|
3643
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3644
|
+
end
|
3645
|
+
|
3646
|
+
# Represents assets allocated to a specific VMWare Node type.
|
3647
|
+
# @!attribute [rw] vmware_node
|
3648
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::VmwareNode]
|
3649
|
+
# VMWare node type, e.g. "ve1-standard-72"
|
3650
|
+
# @!attribute [rw] node_count
|
3651
|
+
# @return [::Integer]
|
3652
|
+
# Count of this node type to be provisioned
|
3653
|
+
# @!attribute [rw] allocated_asset_count
|
3654
|
+
# @return [::Integer]
|
3655
|
+
# Count of assets allocated to these nodes
|
3656
|
+
class VmwareNodeAllocation
|
3657
|
+
include ::Google::Protobuf::MessageExts
|
3658
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3659
|
+
end
|
3660
|
+
|
3661
|
+
# A VMWare Engine Node
|
3662
|
+
# @!attribute [rw] code
|
3663
|
+
# @return [::String]
|
3664
|
+
# Code to identify VMware Engine node series, e.g. "ve1-standard-72". Based
|
3665
|
+
# on the displayName of
|
3666
|
+
# cloud.google.com/vmware-engine/docs/reference/rest/v1/projects.locations.nodeTypes
|
3667
|
+
class VmwareNode
|
3668
|
+
include ::Google::Protobuf::MessageExts
|
3669
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3670
|
+
end
|
3671
|
+
|
3672
|
+
# A set of findings that applies to assets destined for Sole-Tenant nodes.
|
3673
|
+
# @!attribute [rw] allocated_regions
|
3674
|
+
# @return [::Array<::String>]
|
3675
|
+
# Set of regions in which the assets are allocated
|
3676
|
+
# @!attribute [rw] allocated_asset_count
|
3677
|
+
# @return [::Integer]
|
3678
|
+
# Count of assets which are allocated
|
3679
|
+
# @!attribute [rw] node_allocations
|
3680
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::SoleTenantNodeAllocation>]
|
3681
|
+
# Set of per-nodetype allocation records
|
3682
|
+
class SoleTenantFinding
|
3683
|
+
include ::Google::Protobuf::MessageExts
|
3684
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3685
|
+
end
|
3686
|
+
|
3687
|
+
# Represents the assets allocated to a specific Sole-Tenant node type.
|
3688
|
+
# @!attribute [rw] node
|
3689
|
+
# @return [::Google::Cloud::MigrationCenter::V1::SoleTenantNodeType]
|
3690
|
+
# Sole Tenant node type, e.g. "m3-node-128-3904"
|
3691
|
+
# @!attribute [rw] node_count
|
3692
|
+
# @return [::Integer]
|
3693
|
+
# Count of this node type to be provisioned
|
3694
|
+
# @!attribute [rw] allocated_asset_count
|
3695
|
+
# @return [::Integer]
|
3696
|
+
# Count of assets allocated to these nodes
|
3697
|
+
class SoleTenantNodeAllocation
|
3698
|
+
include ::Google::Protobuf::MessageExts
|
3699
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3700
|
+
end
|
3701
|
+
|
3702
|
+
# Summary Findings for a specific Group/PreferenceSet combination.
|
3703
|
+
# @!attribute [rw] display_name
|
3704
|
+
# @return [::String]
|
3705
|
+
# Display Name of the Preference Set
|
3706
|
+
# @!attribute [rw] description
|
3707
|
+
# @return [::String]
|
3708
|
+
# Description for the Preference Set.
|
3709
|
+
# @!attribute [rw] machine_preferences
|
3710
|
+
# @return [::Google::Cloud::MigrationCenter::V1::VirtualMachinePreferences]
|
3711
|
+
# A set of preferences that applies to all machines in the context.
|
3712
|
+
# @!attribute [rw] monthly_cost_total
|
3713
|
+
# @return [::Google::Type::Money]
|
3714
|
+
# Total monthly cost for this preference set.
|
3715
|
+
# @!attribute [rw] monthly_cost_compute
|
3716
|
+
# @return [::Google::Type::Money]
|
3717
|
+
# Compute monthly cost for this preference set.
|
3718
|
+
# @!attribute [rw] monthly_cost_os_license
|
3719
|
+
# @return [::Google::Type::Money]
|
3720
|
+
# Licensing monthly cost for this preference set.
|
3721
|
+
# @!attribute [rw] monthly_cost_network_egress
|
3722
|
+
# @return [::Google::Type::Money]
|
3723
|
+
# Network Egress monthly cost for this preference set.
|
3724
|
+
# @!attribute [rw] monthly_cost_storage
|
3725
|
+
# @return [::Google::Type::Money]
|
3726
|
+
# Storage monthly cost for this preference set.
|
3727
|
+
# @!attribute [rw] monthly_cost_other
|
3728
|
+
# @return [::Google::Type::Money]
|
3729
|
+
# Miscellaneous monthly cost for this preference set.
|
3730
|
+
# @!attribute [rw] compute_engine_finding
|
3731
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::ComputeEngineFinding]
|
3732
|
+
# A set of findings that applies to Compute Engine machines in the input.
|
3733
|
+
# @!attribute [rw] vmware_engine_finding
|
3734
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::VmwareEngineFinding]
|
3735
|
+
# A set of findings that applies to VMWare machines in the input.
|
3736
|
+
# @!attribute [rw] sole_tenant_finding
|
3737
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::SoleTenantFinding]
|
3738
|
+
# A set of findings that applies to Sole-Tenant machines in the input.
|
3739
|
+
class GroupPreferenceSetFinding
|
3740
|
+
include ::Google::Protobuf::MessageExts
|
3741
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3742
|
+
end
|
3743
|
+
|
3744
|
+
# Summary Findings for a specific Group.
|
3745
|
+
# @!attribute [rw] display_name
|
3746
|
+
# @return [::String]
|
3747
|
+
# Display Name for the Group.
|
3748
|
+
# @!attribute [rw] description
|
3749
|
+
# @return [::String]
|
3750
|
+
# Description for the Group.
|
3751
|
+
# @!attribute [rw] asset_aggregate_stats
|
3752
|
+
# @return [::Google::Cloud::MigrationCenter::V1::ReportSummary::AssetAggregateStats]
|
3753
|
+
# Summary statistics for all the assets in this group.
|
3754
|
+
# @!attribute [rw] overlapping_asset_count
|
3755
|
+
# @return [::Integer]
|
3756
|
+
# This field is deprecated, do not rely on it having a value.
|
3757
|
+
# @!attribute [rw] preference_set_findings
|
3758
|
+
# @return [::Array<::Google::Cloud::MigrationCenter::V1::ReportSummary::GroupPreferenceSetFinding>]
|
3759
|
+
# Findings for each of the PreferenceSets for this group.
|
3760
|
+
class GroupFinding
|
3761
|
+
include ::Google::Protobuf::MessageExts
|
3762
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3763
|
+
end
|
3764
|
+
end
|
3765
|
+
|
3766
|
+
# Specifies the types of asset views that provide complete or partial details
|
3767
|
+
# of an asset.
|
3768
|
+
module AssetView
|
3769
|
+
# The asset view is not specified. The API displays the basic view by
|
3770
|
+
# default.
|
3771
|
+
ASSET_VIEW_UNSPECIFIED = 0
|
3772
|
+
|
3773
|
+
# The asset view includes only basic metadata of the asset.
|
3774
|
+
ASSET_VIEW_BASIC = 1
|
3775
|
+
|
3776
|
+
# The asset view includes all the metadata of an asset and performance data.
|
3777
|
+
ASSET_VIEW_FULL = 2
|
3778
|
+
end
|
3779
|
+
|
3780
|
+
# Known categories of operating systems.
|
3781
|
+
module OperatingSystemFamily
|
3782
|
+
OS_FAMILY_UNKNOWN = 0
|
3783
|
+
|
3784
|
+
# Microsoft Windows Server and Desktop.
|
3785
|
+
OS_FAMILY_WINDOWS = 1
|
3786
|
+
|
3787
|
+
# Various Linux flavors.
|
3788
|
+
OS_FAMILY_LINUX = 2
|
3789
|
+
|
3790
|
+
# Non-Linux Unix flavors.
|
3791
|
+
OS_FAMILY_UNIX = 3
|
3792
|
+
end
|
3793
|
+
|
3794
|
+
# Specifies the data formats supported by Migration Center.
|
3795
|
+
module ImportJobFormat
|
3796
|
+
# Default value.
|
3797
|
+
IMPORT_JOB_FORMAT_UNSPECIFIED = 0
|
3798
|
+
|
3799
|
+
# RVTools format (XLSX).
|
3800
|
+
IMPORT_JOB_FORMAT_RVTOOLS_XLSX = 1
|
3801
|
+
|
3802
|
+
# RVTools format (CSV).
|
3803
|
+
IMPORT_JOB_FORMAT_RVTOOLS_CSV = 2
|
3804
|
+
|
3805
|
+
# CSV format exported from AWS using the
|
3806
|
+
# [AWS collection
|
3807
|
+
# script][https://github.com/GoogleCloudPlatform/aws-to-stratozone-export].
|
3808
|
+
IMPORT_JOB_FORMAT_EXPORTED_AWS_CSV = 4
|
3809
|
+
|
3810
|
+
# CSV format exported from Azure using the
|
3811
|
+
# [Azure collection
|
3812
|
+
# script][https://github.com/GoogleCloudPlatform/azure-to-stratozone-export].
|
3813
|
+
IMPORT_JOB_FORMAT_EXPORTED_AZURE_CSV = 5
|
3814
|
+
|
3815
|
+
# CSV format created manually and following the StratoZone format. For more
|
3816
|
+
# information, see [Manually create and upload data
|
3817
|
+
# tables][https://cloud.google.com/migrate/stratozone/docs/import-data-portal].
|
3818
|
+
IMPORT_JOB_FORMAT_STRATOZONE_CSV = 6
|
3819
|
+
end
|
3820
|
+
|
3821
|
+
# Specifies the types of import job views that provide complete or partial
|
3822
|
+
# details of an import job.
|
3823
|
+
module ImportJobView
|
3824
|
+
# The import job view is not specified. The API displays the basic view by
|
3825
|
+
# default.
|
3826
|
+
IMPORT_JOB_VIEW_UNSPECIFIED = 0
|
3827
|
+
|
3828
|
+
# The import job view includes basic metadata of an import job.
|
3829
|
+
# This view does not include payload information.
|
3830
|
+
IMPORT_JOB_VIEW_BASIC = 1
|
3831
|
+
|
3832
|
+
# The import job view includes all metadata of an import job.
|
3833
|
+
IMPORT_JOB_VIEW_FULL = 2
|
3834
|
+
end
|
3835
|
+
|
3836
|
+
# ErrorFrameView can be specified in ErrorFrames List and Get requests to
|
3837
|
+
# control the level of details that is returned for the original frame.
|
3838
|
+
module ErrorFrameView
|
3839
|
+
# Value is unset. The system will fallback to the default value.
|
3840
|
+
ERROR_FRAME_VIEW_UNSPECIFIED = 0
|
3841
|
+
|
3842
|
+
# Include basic frame data, but not the full contents.
|
3843
|
+
ERROR_FRAME_VIEW_BASIC = 1
|
3844
|
+
|
3845
|
+
# Include everything.
|
3846
|
+
ERROR_FRAME_VIEW_FULL = 2
|
3847
|
+
end
|
3848
|
+
|
3849
|
+
# The persistent disk (PD) types of Compute Engine virtual machines.
|
3850
|
+
module PersistentDiskType
|
3851
|
+
# Unspecified (default value).
|
3852
|
+
# Selecting this value allows the system to use any disk type according
|
3853
|
+
# to reported usage. This a good value to start with.
|
3854
|
+
PERSISTENT_DISK_TYPE_UNSPECIFIED = 0
|
3855
|
+
|
3856
|
+
# Standard HDD Persistent Disk.
|
3857
|
+
PERSISTENT_DISK_TYPE_STANDARD = 1
|
3858
|
+
|
3859
|
+
# Balanced Persistent Disk.
|
3860
|
+
PERSISTENT_DISK_TYPE_BALANCED = 2
|
3861
|
+
|
3862
|
+
# SSD Persistent Disk.
|
3863
|
+
PERSISTENT_DISK_TYPE_SSD = 3
|
3864
|
+
end
|
3865
|
+
|
3866
|
+
# The License type for premium images (RHEL, RHEL for SAP, SLES, SLES for SAP,
|
3867
|
+
# Windows Server).
|
3868
|
+
module LicenseType
|
3869
|
+
# Unspecified (default value).
|
3870
|
+
LICENSE_TYPE_UNSPECIFIED = 0
|
3871
|
+
|
3872
|
+
# Default Google Cloud licensing plan. Licensing is charged per usage.
|
3873
|
+
# This a good value to start with.
|
3874
|
+
LICENSE_TYPE_DEFAULT = 1
|
3875
|
+
|
3876
|
+
# Bring-your-own-license (BYOL) plan. User provides the OS license.
|
3877
|
+
LICENSE_TYPE_BRING_YOUR_OWN_LICENSE = 2
|
3878
|
+
end
|
3879
|
+
|
3880
|
+
# The sizing optimization strategy preferences of a virtual machine. This
|
3881
|
+
# strategy, in addition to actual usage data of the virtual machine, can help
|
3882
|
+
# determine the recommended shape on the target platform.
|
3883
|
+
module SizingOptimizationStrategy
|
3884
|
+
# Unspecified (default value).
|
3885
|
+
SIZING_OPTIMIZATION_STRATEGY_UNSPECIFIED = 0
|
3886
|
+
|
3887
|
+
# No optimization applied. Virtual machine sizing matches as closely as
|
3888
|
+
# possible the machine shape on the source site, not considering any actual
|
3889
|
+
# performance data.
|
3890
|
+
SIZING_OPTIMIZATION_STRATEGY_SAME_AS_SOURCE = 1
|
3891
|
+
|
3892
|
+
# Virtual machine sizing will match the reported usage and shape, with some
|
3893
|
+
# slack. This a good value to start with.
|
3894
|
+
SIZING_OPTIMIZATION_STRATEGY_MODERATE = 2
|
3895
|
+
|
3896
|
+
# Virtual machine sizing will match the reported usage, with little slack.
|
3897
|
+
# Using this option can help reduce costs.
|
3898
|
+
SIZING_OPTIMIZATION_STRATEGY_AGGRESSIVE = 3
|
3899
|
+
end
|
3900
|
+
|
3901
|
+
# The plan of commitments for VM resource-based committed use discount (CUD).
|
3902
|
+
module CommitmentPlan
|
3903
|
+
# Unspecified commitment plan.
|
3904
|
+
COMMITMENT_PLAN_UNSPECIFIED = 0
|
3905
|
+
|
3906
|
+
# No commitment plan.
|
3907
|
+
COMMITMENT_PLAN_NONE = 1
|
3908
|
+
|
3909
|
+
# 1 year commitment.
|
3910
|
+
COMMITMENT_PLAN_ONE_YEAR = 2
|
3911
|
+
|
3912
|
+
# 3 years commitment.
|
3913
|
+
COMMITMENT_PLAN_THREE_YEARS = 3
|
3914
|
+
end
|
3915
|
+
|
3916
|
+
# The preference for a specific Google Cloud product platform.
|
3917
|
+
module ComputeMigrationTargetProduct
|
3918
|
+
# Unspecified (default value).
|
3919
|
+
COMPUTE_MIGRATION_TARGET_PRODUCT_UNSPECIFIED = 0
|
3920
|
+
|
3921
|
+
# Prefer to migrate to Google Cloud Compute Engine.
|
3922
|
+
COMPUTE_MIGRATION_TARGET_PRODUCT_COMPUTE_ENGINE = 1
|
3923
|
+
|
3924
|
+
# Prefer to migrate to Google Cloud VMware Engine.
|
3925
|
+
COMPUTE_MIGRATION_TARGET_PRODUCT_VMWARE_ENGINE = 2
|
3926
|
+
|
3927
|
+
# Prefer to migrate to Google Cloud Sole Tenant Nodes.
|
3928
|
+
COMPUTE_MIGRATION_TARGET_PRODUCT_SOLE_TENANCY = 3
|
3929
|
+
end
|
3930
|
+
|
3931
|
+
# Specifies the types of views that provide complete or partial details
|
3932
|
+
# of a Report.
|
3933
|
+
module ReportView
|
3934
|
+
# The report view is not specified. The API displays the basic view by
|
3935
|
+
# default.
|
3936
|
+
REPORT_VIEW_UNSPECIFIED = 0
|
3937
|
+
|
3938
|
+
# The report view includes only basic metadata of the Report. Useful for
|
3939
|
+
# list views.
|
3940
|
+
REPORT_VIEW_BASIC = 1
|
3941
|
+
|
3942
|
+
# The report view includes all the metadata of the Report. Useful for
|
3943
|
+
# preview.
|
3944
|
+
REPORT_VIEW_FULL = 2
|
3945
|
+
|
3946
|
+
# The report view includes the standard metadata of an report. Useful for
|
3947
|
+
# detail view.
|
3948
|
+
REPORT_VIEW_STANDARD = 3
|
3949
|
+
end
|
3950
|
+
end
|
3951
|
+
end
|
3952
|
+
end
|
3953
|
+
end
|