google-apis-datamigration_v1 0.29.0 → 0.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DatamigrationV1
|
18
18
|
# Version of the google-apis-datamigration_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.30.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230222"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -40,6 +40,12 @@ module Google
|
|
40
40
|
include Google::Apis::Core::JsonObjectSupport
|
41
41
|
end
|
42
42
|
|
43
|
+
class ApplyJobDetails
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
43
49
|
class AuditConfig
|
44
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
51
|
|
@@ -124,6 +130,12 @@ module Google
|
|
124
130
|
include Google::Apis::Core::JsonObjectSupport
|
125
131
|
end
|
126
132
|
|
133
|
+
class ConvertJobDetails
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
|
+
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
137
|
+
end
|
138
|
+
|
127
139
|
class DatabaseEngineInfo
|
128
140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
141
|
|
@@ -190,6 +202,12 @@ module Google
|
|
190
202
|
include Google::Apis::Core::JsonObjectSupport
|
191
203
|
end
|
192
204
|
|
205
|
+
class FetchStaticIpsResponse
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
|
+
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
209
|
+
end
|
210
|
+
|
193
211
|
class ForwardSshTunnelConnectivity
|
194
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
213
|
|
@@ -585,6 +603,14 @@ module Google
|
|
585
603
|
end
|
586
604
|
end
|
587
605
|
|
606
|
+
class ApplyJobDetails
|
607
|
+
# @private
|
608
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
609
|
+
property :connection_profile, as: 'connectionProfile'
|
610
|
+
property :filter, as: 'filter'
|
611
|
+
end
|
612
|
+
end
|
613
|
+
|
588
614
|
class AuditConfig
|
589
615
|
# @private
|
590
616
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -605,8 +631,12 @@ module Google
|
|
605
631
|
class BackgroundJobLogEntry
|
606
632
|
# @private
|
607
633
|
class Representation < Google::Apis::Core::JsonRepresentation
|
634
|
+
property :apply_job_details, as: 'applyJobDetails', class: Google::Apis::DatamigrationV1::ApplyJobDetails, decorator: Google::Apis::DatamigrationV1::ApplyJobDetails::Representation
|
635
|
+
|
608
636
|
property :completion_comment, as: 'completionComment'
|
609
637
|
property :completion_state, as: 'completionState'
|
638
|
+
property :convert_job_details, as: 'convertJobDetails', class: Google::Apis::DatamigrationV1::ConvertJobDetails, decorator: Google::Apis::DatamigrationV1::ConvertJobDetails::Representation
|
639
|
+
|
610
640
|
property :finish_time, as: 'finishTime'
|
611
641
|
property :id, as: 'id'
|
612
642
|
property :import_rules_job_details, as: 'importRulesJobDetails', class: Google::Apis::DatamigrationV1::ImportRulesJobDetails, decorator: Google::Apis::DatamigrationV1::ImportRulesJobDetails::Representation
|
@@ -775,6 +805,13 @@ module Google
|
|
775
805
|
end
|
776
806
|
end
|
777
807
|
|
808
|
+
class ConvertJobDetails
|
809
|
+
# @private
|
810
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
811
|
+
property :filter, as: 'filter'
|
812
|
+
end
|
813
|
+
end
|
814
|
+
|
778
815
|
class DatabaseEngineInfo
|
779
816
|
# @private
|
780
817
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -887,6 +924,14 @@ module Google
|
|
887
924
|
end
|
888
925
|
end
|
889
926
|
|
927
|
+
class FetchStaticIpsResponse
|
928
|
+
# @private
|
929
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
930
|
+
property :next_page_token, as: 'nextPageToken'
|
931
|
+
collection :static_ips, as: 'staticIps'
|
932
|
+
end
|
933
|
+
end
|
934
|
+
|
890
935
|
class ForwardSshTunnelConnectivity
|
891
936
|
# @private
|
892
937
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -49,6 +49,44 @@ module Google
|
|
49
49
|
@batch_path = 'batch'
|
50
50
|
end
|
51
51
|
|
52
|
+
# Fetches a set of static IP addresses that need to be allowlisted by the
|
53
|
+
# customer when using the static-IP connectivity method.
|
54
|
+
# @param [String] name
|
55
|
+
# Required. The resource name for the location for which static IPs should be
|
56
|
+
# returned. Must be in the format `projects/*/locations/*`.
|
57
|
+
# @param [Fixnum] page_size
|
58
|
+
# Maximum number of IPs to return.
|
59
|
+
# @param [String] page_token
|
60
|
+
# A page token, received from a previous `FetchStaticIps` call.
|
61
|
+
# @param [String] fields
|
62
|
+
# Selector specifying which fields to include in a partial response.
|
63
|
+
# @param [String] quota_user
|
64
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
65
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
66
|
+
# @param [Google::Apis::RequestOptions] options
|
67
|
+
# Request-specific options
|
68
|
+
#
|
69
|
+
# @yield [result, err] Result & error if block supplied
|
70
|
+
# @yieldparam result [Google::Apis::DatamigrationV1::FetchStaticIpsResponse] parsed result object
|
71
|
+
# @yieldparam err [StandardError] error object if request failed
|
72
|
+
#
|
73
|
+
# @return [Google::Apis::DatamigrationV1::FetchStaticIpsResponse]
|
74
|
+
#
|
75
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
76
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
77
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
78
|
+
def fetch_project_location_static_ips(name, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
79
|
+
command = make_simple_command(:get, 'v1/{+name}:fetchStaticIps', options)
|
80
|
+
command.response_representation = Google::Apis::DatamigrationV1::FetchStaticIpsResponse::Representation
|
81
|
+
command.response_class = Google::Apis::DatamigrationV1::FetchStaticIpsResponse
|
82
|
+
command.params['name'] = name unless name.nil?
|
83
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
84
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
85
|
+
command.query['fields'] = fields unless fields.nil?
|
86
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
87
|
+
execute_or_queue_command(command, &block)
|
88
|
+
end
|
89
|
+
|
52
90
|
# Gets information about a location.
|
53
91
|
# @param [String] name
|
54
92
|
# Resource name for the location.
|
@@ -124,14 +162,14 @@ module Google
|
|
124
162
|
|
125
163
|
# Creates a new connection profile in a given project and location.
|
126
164
|
# @param [String] parent
|
127
|
-
# Required. The parent
|
165
|
+
# Required. The parent which owns this collection of connection profiles.
|
128
166
|
# @param [Google::Apis::DatamigrationV1::ConnectionProfile] connection_profile_object
|
129
167
|
# @param [String] connection_profile_id
|
130
168
|
# Required. The connection profile identifier.
|
131
169
|
# @param [String] request_id
|
132
|
-
# Optional. A unique
|
133
|
-
# requests with the same
|
134
|
-
# recommended to always set this value to a UUID. The
|
170
|
+
# Optional. A unique ID used to identify the request. If the server receives two
|
171
|
+
# requests with the same ID, then the second request is ignored. It is
|
172
|
+
# recommended to always set this value to a UUID. The ID must contain only
|
135
173
|
# letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The
|
136
174
|
# maximum length is 40 characters.
|
137
175
|
# @param [Boolean] skip_validation
|
@@ -181,10 +219,10 @@ module Google
|
|
181
219
|
# In case of force delete, the CloudSQL replica database is also deleted (only
|
182
220
|
# for CloudSQL connection profile).
|
183
221
|
# @param [String] request_id
|
184
|
-
# A unique
|
185
|
-
# with the same
|
186
|
-
#
|
187
|
-
#
|
222
|
+
# A unique ID used to identify the request. If the server receives two requests
|
223
|
+
# with the same ID, then the second request is ignored. It is recommended to
|
224
|
+
# always set this value to a UUID. The ID must contain only letters (a-z, A-Z),
|
225
|
+
# numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40
|
188
226
|
# characters.
|
189
227
|
# @param [String] fields
|
190
228
|
# Selector specifying which fields to include in a partial response.
|
@@ -292,7 +330,7 @@ module Google
|
|
292
330
|
|
293
331
|
# Retrieves a list of all connection profiles in a given project and location.
|
294
332
|
# @param [String] parent
|
295
|
-
# Required. The parent
|
333
|
+
# Required. The parent which owns this collection of connection profiles.
|
296
334
|
# @param [String] filter
|
297
335
|
# A filter expression that filters connection profiles listed in the response.
|
298
336
|
# The expression must specify the field name, a comparison operator, and the
|
@@ -307,7 +345,7 @@ module Google
|
|
307
345
|
# @param [Fixnum] page_size
|
308
346
|
# The maximum number of connection profiles to return. The service may return
|
309
347
|
# fewer than this value. If unspecified, at most 50 connection profiles will be
|
310
|
-
# returned. The maximum value is 1000; values above 1000
|
348
|
+
# returned. The maximum value is 1000; values above 1000 are coerced to 1000.
|
311
349
|
# @param [String] page_token
|
312
350
|
# A page token, received from a previous `ListConnectionProfiles` call. Provide
|
313
351
|
# this to retrieve the subsequent page. When paginating, all other parameters
|
@@ -350,17 +388,17 @@ module Google
|
|
350
388
|
# locations/`location`/connectionProfiles/`connectionProfile`.
|
351
389
|
# @param [Google::Apis::DatamigrationV1::ConnectionProfile] connection_profile_object
|
352
390
|
# @param [String] request_id
|
353
|
-
# Optional. A unique
|
354
|
-
# requests with the same
|
355
|
-
# recommended to always set this value to a UUID. The
|
391
|
+
# Optional. A unique ID used to identify the request. If the server receives two
|
392
|
+
# requests with the same ID, then the second request is ignored. It is
|
393
|
+
# recommended to always set this value to a UUID. The ID must contain only
|
356
394
|
# letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The
|
357
395
|
# maximum length is 40 characters.
|
358
396
|
# @param [Boolean] skip_validation
|
359
397
|
# Optional. Update the connection profile without validating it. The default is
|
360
398
|
# false. Only supported for Oracle connection profiles.
|
361
399
|
# @param [String] update_mask
|
362
|
-
# Required. Field mask is used to specify the fields to be overwritten
|
363
|
-
#
|
400
|
+
# Required. Field mask is used to specify the fields to be overwritten by the
|
401
|
+
# update in the conversion workspace resource.
|
364
402
|
# @param [Boolean] validate_only
|
365
403
|
# Optional. Only validate the connection profile, but don't update any resources.
|
366
404
|
# The default is false. Only supported for Oracle connection profiles.
|
@@ -473,10 +511,10 @@ module Google
|
|
473
511
|
execute_or_queue_command(command, &block)
|
474
512
|
end
|
475
513
|
|
476
|
-
#
|
514
|
+
# Applies draft tree onto a specific destination database.
|
477
515
|
# @param [String] name
|
478
|
-
# Required.
|
479
|
-
#
|
516
|
+
# Required. The name of the conversion workspace resource for which to apply the
|
517
|
+
# draft tree. Must be in the form of: projects/`project`/locations/`location`/
|
480
518
|
# conversionWorkspaces/`conversion_workspace`.
|
481
519
|
# @param [Google::Apis::DatamigrationV1::ApplyConversionWorkspaceRequest] apply_conversion_workspace_request_object
|
482
520
|
# @param [String] fields
|
@@ -577,15 +615,15 @@ module Google
|
|
577
615
|
|
578
616
|
# Creates a new conversion workspace in a given project and location.
|
579
617
|
# @param [String] parent
|
580
|
-
# Required. The parent
|
618
|
+
# Required. The parent which owns this collection of conversion workspaces.
|
581
619
|
# @param [Google::Apis::DatamigrationV1::ConversionWorkspace] conversion_workspace_object
|
582
620
|
# @param [String] conversion_workspace_id
|
583
621
|
# Required. The ID of the conversion workspace to create.
|
584
622
|
# @param [String] request_id
|
585
|
-
# A unique
|
586
|
-
# with the same
|
587
|
-
#
|
588
|
-
#
|
623
|
+
# A unique ID used to identify the request. If the server receives two requests
|
624
|
+
# with the same ID, then the second request is ignored. It is recommended to
|
625
|
+
# always set this value to a UUID. The ID must contain only letters (a-z, A-Z),
|
626
|
+
# numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40
|
589
627
|
# characters.
|
590
628
|
# @param [String] fields
|
591
629
|
# Selector specifying which fields to include in a partial response.
|
@@ -622,10 +660,10 @@ module Google
|
|
622
660
|
# @param [String] name
|
623
661
|
# Required. Name of the conversion workspace resource to delete.
|
624
662
|
# @param [String] request_id
|
625
|
-
# A unique
|
626
|
-
# with the same
|
627
|
-
#
|
628
|
-
#
|
663
|
+
# A unique ID used to identify the request. If the server receives two requests
|
664
|
+
# with the same ID, then the second request is ignored. It is recommended to
|
665
|
+
# always set this value to a UUID. The ID must contain only letters (a-z, A-Z),
|
666
|
+
# numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40
|
629
667
|
# characters.
|
630
668
|
# @param [String] fields
|
631
669
|
# Selector specifying which fields to include in a partial response.
|
@@ -658,10 +696,10 @@ module Google
|
|
658
696
|
# Retrieves a list of committed revisions of a specific conversion workspace.
|
659
697
|
# @param [String] conversion_workspace
|
660
698
|
# Required. Name of the conversion workspace resource whose revisions are listed.
|
661
|
-
# in the form of: projects/`project`/locations/`location`/
|
662
|
-
# conversion_workspace`.
|
699
|
+
# Must be in the form of: projects/`project`/locations/`location`/
|
700
|
+
# conversionWorkspaces/`conversion_workspace`.
|
663
701
|
# @param [String] commit_id
|
664
|
-
# Optional. Optional filter to request a specific commit
|
702
|
+
# Optional. Optional filter to request a specific commit ID.
|
665
703
|
# @param [String] fields
|
666
704
|
# Selector specifying which fields to include in a partial response.
|
667
705
|
# @param [String] quota_user
|
@@ -690,23 +728,23 @@ module Google
|
|
690
728
|
execute_or_queue_command(command, &block)
|
691
729
|
end
|
692
730
|
|
693
|
-
#
|
694
|
-
#
|
695
|
-
#
|
696
|
-
#
|
697
|
-
#
|
731
|
+
# Describes the database entities tree for a specific conversion workspace and a
|
732
|
+
# specific tree type. Database entities are not resources like conversion
|
733
|
+
# workspaces or mapping rules, and they can't be created, updated or deleted.
|
734
|
+
# Instead, they are simple data objects describing the structure of the client
|
735
|
+
# database.
|
698
736
|
# @param [String] conversion_workspace
|
699
|
-
# Required. Name of the conversion workspace resource whose
|
700
|
-
# described in the form of: projects/`project`/locations/`location`/
|
737
|
+
# Required. Name of the conversion workspace resource whose database entities
|
738
|
+
# are described. Must be in the form of: projects/`project`/locations/`location`/
|
701
739
|
# conversionWorkspaces/`conversion_workspace`.
|
702
740
|
# @param [String] commit_id
|
703
|
-
# Request a specific commit
|
741
|
+
# Request a specific commit ID. If not specified, the entities from the latest
|
704
742
|
# commit are returned.
|
705
743
|
# @param [String] filter
|
706
744
|
# Filter the returned entities based on AIP-160 standard.
|
707
745
|
# @param [Fixnum] page_size
|
708
|
-
# The maximum number of entities to return. The service may return fewer
|
709
|
-
#
|
746
|
+
# The maximum number of entities to return. The service may return fewer
|
747
|
+
# entities than the value specifies.
|
710
748
|
# @param [String] page_token
|
711
749
|
# The nextPageToken value received in the previous call to conversionWorkspace.
|
712
750
|
# describeDatabaseEntities, used in the subsequent request to retrieve the next
|
@@ -828,7 +866,7 @@ module Google
|
|
828
866
|
|
829
867
|
# Lists conversion workspaces in a given project and location.
|
830
868
|
# @param [String] parent
|
831
|
-
# Required. The parent
|
869
|
+
# Required. The parent which owns this collection of conversion workspaces.
|
832
870
|
# @param [String] filter
|
833
871
|
# A filter expression that filters conversion workspaces listed in the response.
|
834
872
|
# The expression must specify the field name, a comparison operator, and the
|
@@ -837,10 +875,10 @@ module Google
|
|
837
875
|
# example, list conversion workspaces created this year by specifying **
|
838
876
|
# createTime %gt; 2020-01-01T00:00:00.000000000Z.** You can also filter nested
|
839
877
|
# fields. For example, you could specify **source.version = "12.c.1"** to select
|
840
|
-
# all conversion workspaces with source database version equal to 12.c.1
|
878
|
+
# all conversion workspaces with source database version equal to 12.c.1.
|
841
879
|
# @param [Fixnum] page_size
|
842
880
|
# The maximum number of conversion workspaces to return. The service may return
|
843
|
-
# fewer than this value. If unspecified, at most 50 sets
|
881
|
+
# fewer than this value. If unspecified, at most 50 sets are returned.
|
844
882
|
# @param [String] page_token
|
845
883
|
# The nextPageToken value received in the previous call to conversionWorkspaces.
|
846
884
|
# list, used in the subsequent request to retrieve the next page of results. On
|
@@ -883,14 +921,14 @@ module Google
|
|
883
921
|
# locations/`location`/conversionWorkspaces/`conversion_workspace`.
|
884
922
|
# @param [Google::Apis::DatamigrationV1::ConversionWorkspace] conversion_workspace_object
|
885
923
|
# @param [String] request_id
|
886
|
-
# A unique
|
887
|
-
# with the same
|
888
|
-
#
|
889
|
-
#
|
924
|
+
# A unique ID used to identify the request. If the server receives two requests
|
925
|
+
# with the same ID, then the second request is ignored. It is recommended to
|
926
|
+
# always set this value to a UUID. The ID must contain only letters (a-z, A-Z),
|
927
|
+
# numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40
|
890
928
|
# characters.
|
891
929
|
# @param [String] update_mask
|
892
|
-
# Required. Field mask is used to specify the fields to be overwritten
|
893
|
-
# conversion workspace resource
|
930
|
+
# Required. Field mask is used to specify the fields to be overwritten by the
|
931
|
+
# update in the conversion workspace resource.
|
894
932
|
# @param [String] fields
|
895
933
|
# Selector specifying which fields to include in a partial response.
|
896
934
|
# @param [String] quota_user
|
@@ -922,9 +960,9 @@ module Google
|
|
922
960
|
execute_or_queue_command(command, &block)
|
923
961
|
end
|
924
962
|
|
925
|
-
#
|
963
|
+
# Rolls back a conversion workspace to the last committed snapshot.
|
926
964
|
# @param [String] name
|
927
|
-
# Required. Name of the conversion workspace resource to
|
965
|
+
# Required. Name of the conversion workspace resource to roll back to.
|
928
966
|
# @param [Google::Apis::DatamigrationV1::RollbackConversionWorkspaceRequest] rollback_conversion_workspace_request_object
|
929
967
|
# @param [String] fields
|
930
968
|
# Selector specifying which fields to include in a partial response.
|
@@ -955,23 +993,23 @@ module Google
|
|
955
993
|
execute_or_queue_command(command, &block)
|
956
994
|
end
|
957
995
|
|
958
|
-
#
|
959
|
-
#
|
960
|
-
#
|
961
|
-
#
|
996
|
+
# Searches/lists the background jobs for a specific conversion workspace. The
|
997
|
+
# background jobs are not resources like conversion workspaces or mapping rules,
|
998
|
+
# and they can't be created, updated or deleted. Instead, they are a way to
|
999
|
+
# expose the data plane jobs log.
|
962
1000
|
# @param [String] conversion_workspace
|
963
|
-
# Required. Name of the conversion workspace resource
|
1001
|
+
# Required. Name of the conversion workspace resource whose jobs are listed, in
|
964
1002
|
# the form of: projects/`project`/locations/`location`/conversionWorkspaces/`
|
965
1003
|
# conversion_workspace`.
|
966
1004
|
# @param [String] completed_until_time
|
967
|
-
# Optional. If
|
968
|
-
#
|
1005
|
+
# Optional. If provided, only returns jobs that completed until (not including)
|
1006
|
+
# the given timestamp.
|
969
1007
|
# @param [Fixnum] max_size
|
970
1008
|
# Optional. The maximum number of jobs to return. The service may return fewer
|
971
|
-
# than this value. If unspecified, at most 100 jobs
|
972
|
-
#
|
1009
|
+
# than this value. If unspecified, at most 100 jobs are returned. The maximum
|
1010
|
+
# value is 100; values above 100 are coerced to 100.
|
973
1011
|
# @param [Boolean] return_most_recent_per_job_type
|
974
|
-
# Optional. Whether or not to return just the most recent job per job type
|
1012
|
+
# Optional. Whether or not to return just the most recent job per job type,
|
975
1013
|
# @param [String] fields
|
976
1014
|
# Selector specifying which fields to include in a partial response.
|
977
1015
|
# @param [String] quota_user
|
@@ -1004,7 +1042,7 @@ module Google
|
|
1004
1042
|
|
1005
1043
|
# Imports a snapshot of the source database into the conversion workspace.
|
1006
1044
|
# @param [String] name
|
1007
|
-
# Name of the conversion workspace resource to seed with new database structure
|
1045
|
+
# Name of the conversion workspace resource to seed with new database structure,
|
1008
1046
|
# in the form of: projects/`project`/locations/`location`/conversionWorkspaces/`
|
1009
1047
|
# conversion_workspace`.
|
1010
1048
|
# @param [Google::Apis::DatamigrationV1::SeedConversionWorkspaceRequest] seed_conversion_workspace_request_object
|
@@ -1151,15 +1189,15 @@ module Google
|
|
1151
1189
|
|
1152
1190
|
# Creates a new migration job in a given project and location.
|
1153
1191
|
# @param [String] parent
|
1154
|
-
# Required. The parent
|
1192
|
+
# Required. The parent which owns this collection of migration jobs.
|
1155
1193
|
# @param [Google::Apis::DatamigrationV1::MigrationJob] migration_job_object
|
1156
1194
|
# @param [String] migration_job_id
|
1157
1195
|
# Required. The ID of the instance to create.
|
1158
1196
|
# @param [String] request_id
|
1159
|
-
# A unique
|
1160
|
-
# with the same
|
1161
|
-
#
|
1162
|
-
#
|
1197
|
+
# A unique ID used to identify the request. If the server receives two requests
|
1198
|
+
# with the same ID, then the second request is ignored. It is recommended to
|
1199
|
+
# always set this value to a UUID. The ID must contain only letters (a-z, A-Z),
|
1200
|
+
# numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40
|
1163
1201
|
# characters.
|
1164
1202
|
# @param [String] fields
|
1165
1203
|
# Selector specifying which fields to include in a partial response.
|
@@ -1200,10 +1238,10 @@ module Google
|
|
1200
1238
|
# migration job. In case of force delete, the destination CloudSQL replica
|
1201
1239
|
# database is also deleted.
|
1202
1240
|
# @param [String] request_id
|
1203
|
-
# A unique
|
1204
|
-
# with the same
|
1205
|
-
#
|
1206
|
-
#
|
1241
|
+
# A unique ID used to identify the request. If the server receives two requests
|
1242
|
+
# with the same ID, then the second request is ignored. It is recommended to
|
1243
|
+
# always set this value to a UUID. The ID must contain only letters (a-z, A-Z),
|
1244
|
+
# numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40
|
1207
1245
|
# characters.
|
1208
1246
|
# @param [String] fields
|
1209
1247
|
# Selector specifying which fields to include in a partial response.
|
@@ -1344,7 +1382,7 @@ module Google
|
|
1344
1382
|
|
1345
1383
|
# Lists migration jobs in a given project and location.
|
1346
1384
|
# @param [String] parent
|
1347
|
-
# Required. The parent
|
1385
|
+
# Required. The parent which owns this collection of migrationJobs.
|
1348
1386
|
# @param [String] filter
|
1349
1387
|
# A filter expression that filters migration jobs listed in the response. The
|
1350
1388
|
# expression must specify the field name, a comparison operator, and the value
|
@@ -1360,7 +1398,7 @@ module Google
|
|
1360
1398
|
# @param [Fixnum] page_size
|
1361
1399
|
# The maximum number of migration jobs to return. The service may return fewer
|
1362
1400
|
# than this value. If unspecified, at most 50 migration jobs will be returned.
|
1363
|
-
# The maximum value is 1000; values above 1000
|
1401
|
+
# The maximum value is 1000; values above 1000 are coerced to 1000.
|
1364
1402
|
# @param [String] page_token
|
1365
1403
|
# The nextPageToken value received in the previous call to migrationJobs.list,
|
1366
1404
|
# used in the subsequent request to retrieve the next page of results. On first
|
@@ -1403,14 +1441,14 @@ module Google
|
|
1403
1441
|
# project`/locations/`location`/migrationJobs/`migrationJob`.
|
1404
1442
|
# @param [Google::Apis::DatamigrationV1::MigrationJob] migration_job_object
|
1405
1443
|
# @param [String] request_id
|
1406
|
-
# A unique
|
1407
|
-
# with the same
|
1408
|
-
#
|
1409
|
-
#
|
1444
|
+
# A unique ID used to identify the request. If the server receives two requests
|
1445
|
+
# with the same ID, then the second request is ignored. It is recommended to
|
1446
|
+
# always set this value to a UUID. The ID must contain only letters (a-z, A-Z),
|
1447
|
+
# numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40
|
1410
1448
|
# characters.
|
1411
1449
|
# @param [String] update_mask
|
1412
|
-
# Required. Field mask is used to specify the fields to be overwritten
|
1413
|
-
#
|
1450
|
+
# Required. Field mask is used to specify the fields to be overwritten by the
|
1451
|
+
# update in the conversion workspace resource.
|
1414
1452
|
# @param [String] fields
|
1415
1453
|
# Selector specifying which fields to include in a partial response.
|
1416
1454
|
# @param [String] quota_user
|
@@ -1877,9 +1915,9 @@ module Google
|
|
1877
1915
|
# @param [String] private_connection_id
|
1878
1916
|
# Required. The private connection identifier.
|
1879
1917
|
# @param [String] request_id
|
1880
|
-
# Optional. A unique
|
1881
|
-
# requests with the same
|
1882
|
-
# recommended to always set this value to a UUID. The
|
1918
|
+
# Optional. A unique ID used to identify the request. If the server receives two
|
1919
|
+
# requests with the same ID, then the second request is ignored. It is
|
1920
|
+
# recommended to always set this value to a UUID. The ID must contain only
|
1883
1921
|
# letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The
|
1884
1922
|
# maximum length is 40 characters.
|
1885
1923
|
# @param [Boolean] skip_validation
|
@@ -1920,9 +1958,9 @@ module Google
|
|
1920
1958
|
# @param [String] name
|
1921
1959
|
# Required. The name of the private connection to delete.
|
1922
1960
|
# @param [String] request_id
|
1923
|
-
# Optional. A unique
|
1924
|
-
# requests with the same
|
1925
|
-
# recommended to always set this value to a UUID. The
|
1961
|
+
# Optional. A unique ID used to identify the request. If the server receives two
|
1962
|
+
# requests with the same ID, then the second request is ignored. It is
|
1963
|
+
# recommended to always set this value to a UUID. The ID must contain only
|
1926
1964
|
# letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The
|
1927
1965
|
# maximum length is 40 characters.
|
1928
1966
|
# @param [String] fields
|
@@ -1997,8 +2035,8 @@ module Google
|
|
1997
2035
|
# Order by fields for the result.
|
1998
2036
|
# @param [Fixnum] page_size
|
1999
2037
|
# Maximum number of private connections to return. If unspecified, at most 50
|
2000
|
-
# private connections that
|
2001
|
-
#
|
2038
|
+
# private connections that are returned. The maximum value is 1000; values above
|
2039
|
+
# 1000 are coerced to 1000.
|
2002
2040
|
# @param [String] page_token
|
2003
2041
|
# Page token received from a previous `ListPrivateConnections` call. Provide
|
2004
2042
|
# this to retrieve the subsequent page. When paginating, all other parameters
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-datamigration_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.30.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.11.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.11.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.30.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|