pulumi-oci 1.42.0a1719642398__py3-none-any.whl → 2.0.0__py3-none-any.whl

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.
@@ -10,398 +10,14 @@ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
10
  from .. import _utilities
11
11
 
12
12
  __all__ = [
13
- 'ConnectionAdminCredentialsArgs',
14
- 'ConnectionConnectDescriptorArgs',
15
- 'ConnectionPrivateEndpointArgs',
16
- 'ConnectionReplicationCredentialsArgs',
17
- 'ConnectionSshDetailsArgs',
18
- 'ConnectionVaultDetailsArgs',
19
13
  'JobProgressArgs',
20
14
  'JobProgressPhaseArgs',
21
15
  'JobProgressPhaseExtractArgs',
22
16
  'JobProgressPhaseLogLocationArgs',
23
17
  'JobUnsupportedObjectArgs',
24
- 'MigrationAdvisorSettingsArgs',
25
- 'MigrationDataTransferMediumDetailsArgs',
26
- 'MigrationDataTransferMediumDetailsDatabaseLinkDetailsArgs',
27
- 'MigrationDataTransferMediumDetailsDatabaseLinkDetailsWalletBucketArgs',
28
- 'MigrationDataTransferMediumDetailsObjectStorageDetailsArgs',
29
- 'MigrationDataTransferMediumDetailsV2Args',
30
- 'MigrationDataTransferMediumDetailsV2ObjectStorageBucketArgs',
31
- 'MigrationDatapumpSettingsArgs',
32
- 'MigrationDatapumpSettingsDataPumpParametersArgs',
33
- 'MigrationDatapumpSettingsExportDirectoryObjectArgs',
34
- 'MigrationDatapumpSettingsImportDirectoryObjectArgs',
35
- 'MigrationDatapumpSettingsMetadataRemapArgs',
36
- 'MigrationDumpTransferDetailsArgs',
37
- 'MigrationDumpTransferDetailsSourceArgs',
38
- 'MigrationDumpTransferDetailsTargetArgs',
39
- 'MigrationExcludeObjectArgs',
40
- 'MigrationGoldenGateDetailsArgs',
41
- 'MigrationGoldenGateDetailsHubArgs',
42
- 'MigrationGoldenGateDetailsHubRestAdminCredentialsArgs',
43
- 'MigrationGoldenGateDetailsHubSourceContainerDbAdminCredentialsArgs',
44
- 'MigrationGoldenGateDetailsHubSourceDbAdminCredentialsArgs',
45
- 'MigrationGoldenGateDetailsHubTargetDbAdminCredentialsArgs',
46
- 'MigrationGoldenGateDetailsSettingsArgs',
47
- 'MigrationGoldenGateDetailsSettingsExtractArgs',
48
- 'MigrationGoldenGateDetailsSettingsReplicatArgs',
49
- 'MigrationGoldenGateServiceDetailsArgs',
50
- 'MigrationGoldenGateServiceDetailsGgsDeploymentArgs',
51
- 'MigrationGoldenGateServiceDetailsSettingsArgs',
52
- 'MigrationGoldenGateServiceDetailsSettingsExtractArgs',
53
- 'MigrationGoldenGateServiceDetailsSettingsReplicatArgs',
54
- 'MigrationGoldenGateServiceDetailsSourceContainerDbCredentialsArgs',
55
- 'MigrationGoldenGateServiceDetailsSourceDbCredentialsArgs',
56
- 'MigrationGoldenGateServiceDetailsTargetDbCredentialsArgs',
57
- 'MigrationIncludeObjectArgs',
58
- 'MigrationVaultDetailsArgs',
59
- 'GetConnectionsFilterArgs',
60
18
  'GetMigrationObjectTypesFilterArgs',
61
- 'GetMigrationsFilterArgs',
62
19
  ]
63
20
 
64
- @pulumi.input_type
65
- class ConnectionAdminCredentialsArgs:
66
- def __init__(__self__, *,
67
- password: pulumi.Input[str],
68
- username: pulumi.Input[str]):
69
- """
70
- :param pulumi.Input[str] password: (Updatable) Administrator password
71
- :param pulumi.Input[str] username: (Updatable) Administrator username
72
- """
73
- pulumi.set(__self__, "password", password)
74
- pulumi.set(__self__, "username", username)
75
-
76
- @property
77
- @pulumi.getter
78
- def password(self) -> pulumi.Input[str]:
79
- """
80
- (Updatable) Administrator password
81
- """
82
- return pulumi.get(self, "password")
83
-
84
- @password.setter
85
- def password(self, value: pulumi.Input[str]):
86
- pulumi.set(self, "password", value)
87
-
88
- @property
89
- @pulumi.getter
90
- def username(self) -> pulumi.Input[str]:
91
- """
92
- (Updatable) Administrator username
93
- """
94
- return pulumi.get(self, "username")
95
-
96
- @username.setter
97
- def username(self, value: pulumi.Input[str]):
98
- pulumi.set(self, "username", value)
99
-
100
-
101
- @pulumi.input_type
102
- class ConnectionConnectDescriptorArgs:
103
- def __init__(__self__, *,
104
- connect_string: Optional[pulumi.Input[str]] = None,
105
- database_service_name: Optional[pulumi.Input[str]] = None,
106
- host: Optional[pulumi.Input[str]] = None,
107
- port: Optional[pulumi.Input[int]] = None):
108
- """
109
- :param pulumi.Input[str] connect_string: (Updatable) Connect String. Required if no host, port nor databaseServiceName were specified. If a Private Endpoint was specified in the Connection, the host entry should be a valid IP address. Supported formats: Easy connect: <host>:<port>/<db_service_name> Long format: (description= (address=(port=<port>)(host=<host>))(connect_data=(service_name=<db_service_name>)))
110
- :param pulumi.Input[str] database_service_name: (Updatable) Database service name. Required if no connectString was specified.
111
- :param pulumi.Input[str] host: (Updatable) Host or IP address of the connect descriptor. Required if no connectString was specified.
112
- :param pulumi.Input[int] port: (Updatable) Port of the connect descriptor. Required if no connectString was specified.
113
- """
114
- if connect_string is not None:
115
- pulumi.set(__self__, "connect_string", connect_string)
116
- if database_service_name is not None:
117
- pulumi.set(__self__, "database_service_name", database_service_name)
118
- if host is not None:
119
- pulumi.set(__self__, "host", host)
120
- if port is not None:
121
- pulumi.set(__self__, "port", port)
122
-
123
- @property
124
- @pulumi.getter(name="connectString")
125
- def connect_string(self) -> Optional[pulumi.Input[str]]:
126
- """
127
- (Updatable) Connect String. Required if no host, port nor databaseServiceName were specified. If a Private Endpoint was specified in the Connection, the host entry should be a valid IP address. Supported formats: Easy connect: <host>:<port>/<db_service_name> Long format: (description= (address=(port=<port>)(host=<host>))(connect_data=(service_name=<db_service_name>)))
128
- """
129
- return pulumi.get(self, "connect_string")
130
-
131
- @connect_string.setter
132
- def connect_string(self, value: Optional[pulumi.Input[str]]):
133
- pulumi.set(self, "connect_string", value)
134
-
135
- @property
136
- @pulumi.getter(name="databaseServiceName")
137
- def database_service_name(self) -> Optional[pulumi.Input[str]]:
138
- """
139
- (Updatable) Database service name. Required if no connectString was specified.
140
- """
141
- return pulumi.get(self, "database_service_name")
142
-
143
- @database_service_name.setter
144
- def database_service_name(self, value: Optional[pulumi.Input[str]]):
145
- pulumi.set(self, "database_service_name", value)
146
-
147
- @property
148
- @pulumi.getter
149
- def host(self) -> Optional[pulumi.Input[str]]:
150
- """
151
- (Updatable) Host or IP address of the connect descriptor. Required if no connectString was specified.
152
- """
153
- return pulumi.get(self, "host")
154
-
155
- @host.setter
156
- def host(self, value: Optional[pulumi.Input[str]]):
157
- pulumi.set(self, "host", value)
158
-
159
- @property
160
- @pulumi.getter
161
- def port(self) -> Optional[pulumi.Input[int]]:
162
- """
163
- (Updatable) Port of the connect descriptor. Required if no connectString was specified.
164
- """
165
- return pulumi.get(self, "port")
166
-
167
- @port.setter
168
- def port(self, value: Optional[pulumi.Input[int]]):
169
- pulumi.set(self, "port", value)
170
-
171
-
172
- @pulumi.input_type
173
- class ConnectionPrivateEndpointArgs:
174
- def __init__(__self__, *,
175
- compartment_id: pulumi.Input[str],
176
- subnet_id: pulumi.Input[str],
177
- vcn_id: pulumi.Input[str],
178
- id: Optional[pulumi.Input[str]] = None):
179
- """
180
- :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the private endpoint.
181
- :param pulumi.Input[str] subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer's subnet where the private endpoint VNIC will reside.
182
- :param pulumi.Input[str] vcn_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VCN where the Private Endpoint will be bound to.
183
- :param pulumi.Input[str] id: [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a previously created Private Endpoint.
184
- """
185
- pulumi.set(__self__, "compartment_id", compartment_id)
186
- pulumi.set(__self__, "subnet_id", subnet_id)
187
- pulumi.set(__self__, "vcn_id", vcn_id)
188
- if id is not None:
189
- pulumi.set(__self__, "id", id)
190
-
191
- @property
192
- @pulumi.getter(name="compartmentId")
193
- def compartment_id(self) -> pulumi.Input[str]:
194
- """
195
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the private endpoint.
196
- """
197
- return pulumi.get(self, "compartment_id")
198
-
199
- @compartment_id.setter
200
- def compartment_id(self, value: pulumi.Input[str]):
201
- pulumi.set(self, "compartment_id", value)
202
-
203
- @property
204
- @pulumi.getter(name="subnetId")
205
- def subnet_id(self) -> pulumi.Input[str]:
206
- """
207
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer's subnet where the private endpoint VNIC will reside.
208
- """
209
- return pulumi.get(self, "subnet_id")
210
-
211
- @subnet_id.setter
212
- def subnet_id(self, value: pulumi.Input[str]):
213
- pulumi.set(self, "subnet_id", value)
214
-
215
- @property
216
- @pulumi.getter(name="vcnId")
217
- def vcn_id(self) -> pulumi.Input[str]:
218
- """
219
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VCN where the Private Endpoint will be bound to.
220
- """
221
- return pulumi.get(self, "vcn_id")
222
-
223
- @vcn_id.setter
224
- def vcn_id(self, value: pulumi.Input[str]):
225
- pulumi.set(self, "vcn_id", value)
226
-
227
- @property
228
- @pulumi.getter
229
- def id(self) -> Optional[pulumi.Input[str]]:
230
- """
231
- [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a previously created Private Endpoint.
232
- """
233
- return pulumi.get(self, "id")
234
-
235
- @id.setter
236
- def id(self, value: Optional[pulumi.Input[str]]):
237
- pulumi.set(self, "id", value)
238
-
239
-
240
- @pulumi.input_type
241
- class ConnectionReplicationCredentialsArgs:
242
- def __init__(__self__, *,
243
- password: pulumi.Input[str],
244
- username: pulumi.Input[str]):
245
- """
246
- :param pulumi.Input[str] password: (Updatable) Administrator password
247
- :param pulumi.Input[str] username: (Updatable) Administrator username
248
- """
249
- pulumi.set(__self__, "password", password)
250
- pulumi.set(__self__, "username", username)
251
-
252
- @property
253
- @pulumi.getter
254
- def password(self) -> pulumi.Input[str]:
255
- """
256
- (Updatable) Administrator password
257
- """
258
- return pulumi.get(self, "password")
259
-
260
- @password.setter
261
- def password(self, value: pulumi.Input[str]):
262
- pulumi.set(self, "password", value)
263
-
264
- @property
265
- @pulumi.getter
266
- def username(self) -> pulumi.Input[str]:
267
- """
268
- (Updatable) Administrator username
269
- """
270
- return pulumi.get(self, "username")
271
-
272
- @username.setter
273
- def username(self, value: pulumi.Input[str]):
274
- pulumi.set(self, "username", value)
275
-
276
-
277
- @pulumi.input_type
278
- class ConnectionSshDetailsArgs:
279
- def __init__(__self__, *,
280
- host: pulumi.Input[str],
281
- sshkey: pulumi.Input[str],
282
- user: pulumi.Input[str],
283
- sudo_location: Optional[pulumi.Input[str]] = None):
284
- """
285
- :param pulumi.Input[str] host: (Updatable) Name of the host the SSH key is valid for.
286
- :param pulumi.Input[str] sshkey: (Updatable) Private SSH key string.
287
- :param pulumi.Input[str] user: (Updatable) SSH user
288
- :param pulumi.Input[str] sudo_location: (Updatable) Sudo location
289
- """
290
- pulumi.set(__self__, "host", host)
291
- pulumi.set(__self__, "sshkey", sshkey)
292
- pulumi.set(__self__, "user", user)
293
- if sudo_location is not None:
294
- pulumi.set(__self__, "sudo_location", sudo_location)
295
-
296
- @property
297
- @pulumi.getter
298
- def host(self) -> pulumi.Input[str]:
299
- """
300
- (Updatable) Name of the host the SSH key is valid for.
301
- """
302
- return pulumi.get(self, "host")
303
-
304
- @host.setter
305
- def host(self, value: pulumi.Input[str]):
306
- pulumi.set(self, "host", value)
307
-
308
- @property
309
- @pulumi.getter
310
- def sshkey(self) -> pulumi.Input[str]:
311
- """
312
- (Updatable) Private SSH key string.
313
- """
314
- return pulumi.get(self, "sshkey")
315
-
316
- @sshkey.setter
317
- def sshkey(self, value: pulumi.Input[str]):
318
- pulumi.set(self, "sshkey", value)
319
-
320
- @property
321
- @pulumi.getter
322
- def user(self) -> pulumi.Input[str]:
323
- """
324
- (Updatable) SSH user
325
- """
326
- return pulumi.get(self, "user")
327
-
328
- @user.setter
329
- def user(self, value: pulumi.Input[str]):
330
- pulumi.set(self, "user", value)
331
-
332
- @property
333
- @pulumi.getter(name="sudoLocation")
334
- def sudo_location(self) -> Optional[pulumi.Input[str]]:
335
- """
336
- (Updatable) Sudo location
337
- """
338
- return pulumi.get(self, "sudo_location")
339
-
340
- @sudo_location.setter
341
- def sudo_location(self, value: Optional[pulumi.Input[str]]):
342
- pulumi.set(self, "sudo_location", value)
343
-
344
-
345
- @pulumi.input_type
346
- class ConnectionVaultDetailsArgs:
347
- def __init__(__self__, *,
348
- compartment_id: pulumi.Input[str],
349
- key_id: pulumi.Input[str],
350
- vault_id: pulumi.Input[str]):
351
- """
352
- :param pulumi.Input[str] compartment_id: (Updatable) OCID of the compartment where the secret containing the credentials will be created.
353
- :param pulumi.Input[str] key_id: (Updatable) OCID of the vault encryption key
354
- :param pulumi.Input[str] vault_id: (Updatable) OCID of the vault
355
-
356
-
357
- ** IMPORTANT **
358
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
359
- """
360
- pulumi.set(__self__, "compartment_id", compartment_id)
361
- pulumi.set(__self__, "key_id", key_id)
362
- pulumi.set(__self__, "vault_id", vault_id)
363
-
364
- @property
365
- @pulumi.getter(name="compartmentId")
366
- def compartment_id(self) -> pulumi.Input[str]:
367
- """
368
- (Updatable) OCID of the compartment where the secret containing the credentials will be created.
369
- """
370
- return pulumi.get(self, "compartment_id")
371
-
372
- @compartment_id.setter
373
- def compartment_id(self, value: pulumi.Input[str]):
374
- pulumi.set(self, "compartment_id", value)
375
-
376
- @property
377
- @pulumi.getter(name="keyId")
378
- def key_id(self) -> pulumi.Input[str]:
379
- """
380
- (Updatable) OCID of the vault encryption key
381
- """
382
- return pulumi.get(self, "key_id")
383
-
384
- @key_id.setter
385
- def key_id(self, value: pulumi.Input[str]):
386
- pulumi.set(self, "key_id", value)
387
-
388
- @property
389
- @pulumi.getter(name="vaultId")
390
- def vault_id(self) -> pulumi.Input[str]:
391
- """
392
- (Updatable) OCID of the vault
393
-
394
-
395
- ** IMPORTANT **
396
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
397
- """
398
- return pulumi.get(self, "vault_id")
399
-
400
- @vault_id.setter
401
- def vault_id(self, value: pulumi.Input[str]):
402
- pulumi.set(self, "vault_id", value)
403
-
404
-
405
21
  @pulumi.input_type
406
22
  class JobProgressArgs:
407
23
  def __init__(__self__, *,
@@ -758,1942 +374,22 @@ class JobUnsupportedObjectArgs:
758
374
 
759
375
 
760
376
  @pulumi.input_type
761
- class MigrationAdvisorSettingsArgs:
762
- def __init__(__self__, *,
763
- is_ignore_errors: Optional[pulumi.Input[bool]] = None,
764
- is_skip_advisor: Optional[pulumi.Input[bool]] = None):
765
- """
766
- :param pulumi.Input[bool] is_ignore_errors: (Updatable) True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
767
- :param pulumi.Input[bool] is_skip_advisor: (Updatable) True to skip the Pre-Migration Advisor execution. Default is false.
768
- """
769
- if is_ignore_errors is not None:
770
- pulumi.set(__self__, "is_ignore_errors", is_ignore_errors)
771
- if is_skip_advisor is not None:
772
- pulumi.set(__self__, "is_skip_advisor", is_skip_advisor)
773
-
774
- @property
775
- @pulumi.getter(name="isIgnoreErrors")
776
- def is_ignore_errors(self) -> Optional[pulumi.Input[bool]]:
777
- """
778
- (Updatable) True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
779
- """
780
- return pulumi.get(self, "is_ignore_errors")
781
-
782
- @is_ignore_errors.setter
783
- def is_ignore_errors(self, value: Optional[pulumi.Input[bool]]):
784
- pulumi.set(self, "is_ignore_errors", value)
785
-
786
- @property
787
- @pulumi.getter(name="isSkipAdvisor")
788
- def is_skip_advisor(self) -> Optional[pulumi.Input[bool]]:
789
- """
790
- (Updatable) True to skip the Pre-Migration Advisor execution. Default is false.
791
- """
792
- return pulumi.get(self, "is_skip_advisor")
793
-
794
- @is_skip_advisor.setter
795
- def is_skip_advisor(self, value: Optional[pulumi.Input[bool]]):
796
- pulumi.set(self, "is_skip_advisor", value)
797
-
798
-
799
- @pulumi.input_type
800
- class MigrationDataTransferMediumDetailsArgs:
801
- def __init__(__self__, *,
802
- database_link_details: Optional[pulumi.Input['MigrationDataTransferMediumDetailsDatabaseLinkDetailsArgs']] = None,
803
- object_storage_details: Optional[pulumi.Input['MigrationDataTransferMediumDetailsObjectStorageDetailsArgs']] = None):
804
- """
805
- :param pulumi.Input['MigrationDataTransferMediumDetailsDatabaseLinkDetailsArgs'] database_link_details: (Updatable) Optional details for creating a network database link from Oracle Cloud Infrastructure database to on-premise database.
806
- :param pulumi.Input['MigrationDataTransferMediumDetailsObjectStorageDetailsArgs'] object_storage_details: (Updatable) In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
807
- """
808
- if database_link_details is not None:
809
- pulumi.set(__self__, "database_link_details", database_link_details)
810
- if object_storage_details is not None:
811
- pulumi.set(__self__, "object_storage_details", object_storage_details)
812
-
813
- @property
814
- @pulumi.getter(name="databaseLinkDetails")
815
- def database_link_details(self) -> Optional[pulumi.Input['MigrationDataTransferMediumDetailsDatabaseLinkDetailsArgs']]:
816
- """
817
- (Updatable) Optional details for creating a network database link from Oracle Cloud Infrastructure database to on-premise database.
818
- """
819
- return pulumi.get(self, "database_link_details")
820
-
821
- @database_link_details.setter
822
- def database_link_details(self, value: Optional[pulumi.Input['MigrationDataTransferMediumDetailsDatabaseLinkDetailsArgs']]):
823
- pulumi.set(self, "database_link_details", value)
824
-
825
- @property
826
- @pulumi.getter(name="objectStorageDetails")
827
- def object_storage_details(self) -> Optional[pulumi.Input['MigrationDataTransferMediumDetailsObjectStorageDetailsArgs']]:
828
- """
829
- (Updatable) In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
830
- """
831
- return pulumi.get(self, "object_storage_details")
832
-
833
- @object_storage_details.setter
834
- def object_storage_details(self, value: Optional[pulumi.Input['MigrationDataTransferMediumDetailsObjectStorageDetailsArgs']]):
835
- pulumi.set(self, "object_storage_details", value)
836
-
837
-
838
- @pulumi.input_type
839
- class MigrationDataTransferMediumDetailsDatabaseLinkDetailsArgs:
840
- def __init__(__self__, *,
841
- name: Optional[pulumi.Input[str]] = None,
842
- wallet_bucket: Optional[pulumi.Input['MigrationDataTransferMediumDetailsDatabaseLinkDetailsWalletBucketArgs']] = None):
843
- """
844
- :param pulumi.Input[str] name: (Updatable) Name of database link from Oracle Cloud Infrastructure database to on-premise database. ODMS will create link, if the link does not already exist.
845
- :param pulumi.Input['MigrationDataTransferMediumDetailsDatabaseLinkDetailsWalletBucketArgs'] wallet_bucket: (Updatable) In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
846
- """
847
- if name is not None:
848
- pulumi.set(__self__, "name", name)
849
- if wallet_bucket is not None:
850
- pulumi.set(__self__, "wallet_bucket", wallet_bucket)
851
-
852
- @property
853
- @pulumi.getter
854
- def name(self) -> Optional[pulumi.Input[str]]:
855
- """
856
- (Updatable) Name of database link from Oracle Cloud Infrastructure database to on-premise database. ODMS will create link, if the link does not already exist.
857
- """
858
- return pulumi.get(self, "name")
859
-
860
- @name.setter
861
- def name(self, value: Optional[pulumi.Input[str]]):
862
- pulumi.set(self, "name", value)
863
-
864
- @property
865
- @pulumi.getter(name="walletBucket")
866
- def wallet_bucket(self) -> Optional[pulumi.Input['MigrationDataTransferMediumDetailsDatabaseLinkDetailsWalletBucketArgs']]:
867
- """
868
- (Updatable) In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
869
- """
870
- return pulumi.get(self, "wallet_bucket")
871
-
872
- @wallet_bucket.setter
873
- def wallet_bucket(self, value: Optional[pulumi.Input['MigrationDataTransferMediumDetailsDatabaseLinkDetailsWalletBucketArgs']]):
874
- pulumi.set(self, "wallet_bucket", value)
875
-
876
-
877
- @pulumi.input_type
878
- class MigrationDataTransferMediumDetailsDatabaseLinkDetailsWalletBucketArgs:
879
- def __init__(__self__, *,
880
- bucket: pulumi.Input[str],
881
- namespace: pulumi.Input[str]):
882
- """
883
- :param pulumi.Input[str] bucket: (Updatable) Bucket name.
884
- :param pulumi.Input[str] namespace: (Updatable) Namespace name of the object store bucket.
885
- """
886
- pulumi.set(__self__, "bucket", bucket)
887
- pulumi.set(__self__, "namespace", namespace)
888
-
889
- @property
890
- @pulumi.getter
891
- def bucket(self) -> pulumi.Input[str]:
892
- """
893
- (Updatable) Bucket name.
894
- """
895
- return pulumi.get(self, "bucket")
896
-
897
- @bucket.setter
898
- def bucket(self, value: pulumi.Input[str]):
899
- pulumi.set(self, "bucket", value)
900
-
901
- @property
902
- @pulumi.getter
903
- def namespace(self) -> pulumi.Input[str]:
904
- """
905
- (Updatable) Namespace name of the object store bucket.
906
- """
907
- return pulumi.get(self, "namespace")
908
-
909
- @namespace.setter
910
- def namespace(self, value: pulumi.Input[str]):
911
- pulumi.set(self, "namespace", value)
912
-
913
-
914
- @pulumi.input_type
915
- class MigrationDataTransferMediumDetailsObjectStorageDetailsArgs:
377
+ class GetMigrationObjectTypesFilterArgs:
916
378
  def __init__(__self__, *,
917
- bucket: pulumi.Input[str],
918
- namespace: pulumi.Input[str]):
919
- """
920
- :param pulumi.Input[str] bucket: (Updatable) Bucket name.
921
- :param pulumi.Input[str] namespace: (Updatable) Namespace name of the object store bucket.
922
- """
923
- pulumi.set(__self__, "bucket", bucket)
924
- pulumi.set(__self__, "namespace", namespace)
925
-
926
- @property
927
- @pulumi.getter
928
- def bucket(self) -> pulumi.Input[str]:
379
+ name: str,
380
+ values: Sequence[str],
381
+ regex: Optional[bool] = None):
929
382
  """
930
- (Updatable) Bucket name.
383
+ :param str name: Object type name
931
384
  """
932
- return pulumi.get(self, "bucket")
933
-
934
- @bucket.setter
935
- def bucket(self, value: pulumi.Input[str]):
936
- pulumi.set(self, "bucket", value)
385
+ pulumi.set(__self__, "name", name)
386
+ pulumi.set(__self__, "values", values)
387
+ if regex is not None:
388
+ pulumi.set(__self__, "regex", regex)
937
389
 
938
390
  @property
939
391
  @pulumi.getter
940
- def namespace(self) -> pulumi.Input[str]:
941
- """
942
- (Updatable) Namespace name of the object store bucket.
943
- """
944
- return pulumi.get(self, "namespace")
945
-
946
- @namespace.setter
947
- def namespace(self, value: pulumi.Input[str]):
948
- pulumi.set(self, "namespace", value)
949
-
950
-
951
- @pulumi.input_type
952
- class MigrationDataTransferMediumDetailsV2Args:
953
- def __init__(__self__, *,
954
- type: pulumi.Input[str],
955
- access_key_id: Optional[pulumi.Input[str]] = None,
956
- name: Optional[pulumi.Input[str]] = None,
957
- object_storage_bucket: Optional[pulumi.Input['MigrationDataTransferMediumDetailsV2ObjectStorageBucketArgs']] = None,
958
- region: Optional[pulumi.Input[str]] = None,
959
- secret_access_key: Optional[pulumi.Input[str]] = None):
960
- """
961
- :param pulumi.Input[str] type: (Updatable) Type of the data transfer medium to use for the datapump
962
- :param pulumi.Input[str] access_key_id: (Updatable) AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
963
- :param pulumi.Input[str] name: (Updatable) Name of database link from Oracle Cloud Infrastructure database to on-premise database. ODMS will create link, if the link does not already exist.
964
- :param pulumi.Input['MigrationDataTransferMediumDetailsV2ObjectStorageBucketArgs'] object_storage_bucket: (Updatable) In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
965
- :param pulumi.Input[str] region: (Updatable) AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
966
- :param pulumi.Input[str] secret_access_key: (Updatable) AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
967
- """
968
- pulumi.set(__self__, "type", type)
969
- if access_key_id is not None:
970
- pulumi.set(__self__, "access_key_id", access_key_id)
971
- if name is not None:
972
- pulumi.set(__self__, "name", name)
973
- if object_storage_bucket is not None:
974
- pulumi.set(__self__, "object_storage_bucket", object_storage_bucket)
975
- if region is not None:
976
- pulumi.set(__self__, "region", region)
977
- if secret_access_key is not None:
978
- pulumi.set(__self__, "secret_access_key", secret_access_key)
979
-
980
- @property
981
- @pulumi.getter
982
- def type(self) -> pulumi.Input[str]:
983
- """
984
- (Updatable) Type of the data transfer medium to use for the datapump
985
- """
986
- return pulumi.get(self, "type")
987
-
988
- @type.setter
989
- def type(self, value: pulumi.Input[str]):
990
- pulumi.set(self, "type", value)
991
-
992
- @property
993
- @pulumi.getter(name="accessKeyId")
994
- def access_key_id(self) -> Optional[pulumi.Input[str]]:
995
- """
996
- (Updatable) AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
997
- """
998
- return pulumi.get(self, "access_key_id")
999
-
1000
- @access_key_id.setter
1001
- def access_key_id(self, value: Optional[pulumi.Input[str]]):
1002
- pulumi.set(self, "access_key_id", value)
1003
-
1004
- @property
1005
- @pulumi.getter
1006
- def name(self) -> Optional[pulumi.Input[str]]:
1007
- """
1008
- (Updatable) Name of database link from Oracle Cloud Infrastructure database to on-premise database. ODMS will create link, if the link does not already exist.
1009
- """
1010
- return pulumi.get(self, "name")
1011
-
1012
- @name.setter
1013
- def name(self, value: Optional[pulumi.Input[str]]):
1014
- pulumi.set(self, "name", value)
1015
-
1016
- @property
1017
- @pulumi.getter(name="objectStorageBucket")
1018
- def object_storage_bucket(self) -> Optional[pulumi.Input['MigrationDataTransferMediumDetailsV2ObjectStorageBucketArgs']]:
1019
- """
1020
- (Updatable) In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
1021
- """
1022
- return pulumi.get(self, "object_storage_bucket")
1023
-
1024
- @object_storage_bucket.setter
1025
- def object_storage_bucket(self, value: Optional[pulumi.Input['MigrationDataTransferMediumDetailsV2ObjectStorageBucketArgs']]):
1026
- pulumi.set(self, "object_storage_bucket", value)
1027
-
1028
- @property
1029
- @pulumi.getter
1030
- def region(self) -> Optional[pulumi.Input[str]]:
1031
- """
1032
- (Updatable) AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
1033
- """
1034
- return pulumi.get(self, "region")
1035
-
1036
- @region.setter
1037
- def region(self, value: Optional[pulumi.Input[str]]):
1038
- pulumi.set(self, "region", value)
1039
-
1040
- @property
1041
- @pulumi.getter(name="secretAccessKey")
1042
- def secret_access_key(self) -> Optional[pulumi.Input[str]]:
1043
- """
1044
- (Updatable) AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
1045
- """
1046
- return pulumi.get(self, "secret_access_key")
1047
-
1048
- @secret_access_key.setter
1049
- def secret_access_key(self, value: Optional[pulumi.Input[str]]):
1050
- pulumi.set(self, "secret_access_key", value)
1051
-
1052
-
1053
- @pulumi.input_type
1054
- class MigrationDataTransferMediumDetailsV2ObjectStorageBucketArgs:
1055
- def __init__(__self__, *,
1056
- bucket: Optional[pulumi.Input[str]] = None,
1057
- namespace: Optional[pulumi.Input[str]] = None):
1058
- """
1059
- :param pulumi.Input[str] bucket: (Updatable) Bucket name.
1060
- :param pulumi.Input[str] namespace: (Updatable) Namespace name of the object store bucket.
1061
- """
1062
- if bucket is not None:
1063
- pulumi.set(__self__, "bucket", bucket)
1064
- if namespace is not None:
1065
- pulumi.set(__self__, "namespace", namespace)
1066
-
1067
- @property
1068
- @pulumi.getter
1069
- def bucket(self) -> Optional[pulumi.Input[str]]:
1070
- """
1071
- (Updatable) Bucket name.
1072
- """
1073
- return pulumi.get(self, "bucket")
1074
-
1075
- @bucket.setter
1076
- def bucket(self, value: Optional[pulumi.Input[str]]):
1077
- pulumi.set(self, "bucket", value)
1078
-
1079
- @property
1080
- @pulumi.getter
1081
- def namespace(self) -> Optional[pulumi.Input[str]]:
1082
- """
1083
- (Updatable) Namespace name of the object store bucket.
1084
- """
1085
- return pulumi.get(self, "namespace")
1086
-
1087
- @namespace.setter
1088
- def namespace(self, value: Optional[pulumi.Input[str]]):
1089
- pulumi.set(self, "namespace", value)
1090
-
1091
-
1092
- @pulumi.input_type
1093
- class MigrationDatapumpSettingsArgs:
1094
- def __init__(__self__, *,
1095
- data_pump_parameters: Optional[pulumi.Input['MigrationDatapumpSettingsDataPumpParametersArgs']] = None,
1096
- export_directory_object: Optional[pulumi.Input['MigrationDatapumpSettingsExportDirectoryObjectArgs']] = None,
1097
- import_directory_object: Optional[pulumi.Input['MigrationDatapumpSettingsImportDirectoryObjectArgs']] = None,
1098
- job_mode: Optional[pulumi.Input[str]] = None,
1099
- metadata_remaps: Optional[pulumi.Input[Sequence[pulumi.Input['MigrationDatapumpSettingsMetadataRemapArgs']]]] = None):
1100
- """
1101
- :param pulumi.Input['MigrationDatapumpSettingsDataPumpParametersArgs'] data_pump_parameters: (Updatable) Optional parameters for Data Pump Export and Import. Refer to [Configuring Optional Initial Load Advanced Settings](https://docs.us.oracle.com/en/cloud/paas/database-migration/dmsus/working-migration-resources.html#GUID-24BD3054-FDF8-48FF-8492-636C1D4B71ED)
1102
- :param pulumi.Input['MigrationDatapumpSettingsExportDirectoryObjectArgs'] export_directory_object: (Updatable) Directory object details, used to define either import or export directory objects in Data Pump Settings. Import directory is required for Non-Autonomous target connections. If specified for an autonomous target, it will show an error. Export directory will error if there are database link details specified.
1103
- :param pulumi.Input['MigrationDatapumpSettingsImportDirectoryObjectArgs'] import_directory_object: (Updatable) Directory object details, used to define either import or export directory objects in Data Pump Settings. Import directory is required for Non-Autonomous target connections. If specified for an autonomous target, it will show an error. Export directory will error if there are database link details specified.
1104
- :param pulumi.Input[str] job_mode: (Updatable) Data Pump job mode. Refer to [link text](https://docs.oracle.com/en/database/oracle/oracle-database/19/sutil/oracle-data-pump-export-utility.html#GUID-8E497131-6B9B-4CC8-AA50-35F480CAC2C4)
1105
- :param pulumi.Input[Sequence[pulumi.Input['MigrationDatapumpSettingsMetadataRemapArgs']]] metadata_remaps: (Updatable) Defines remapping to be applied to objects as they are processed. Refer to [DATA_REMAP](https://docs.oracle.com/en/database/oracle/oracle-database/19/arpls/DBMS_DATAPUMP.html#GUID-E75AAE6F-4EA6-4737-A752-6B62F5E9D460)
1106
- """
1107
- if data_pump_parameters is not None:
1108
- pulumi.set(__self__, "data_pump_parameters", data_pump_parameters)
1109
- if export_directory_object is not None:
1110
- pulumi.set(__self__, "export_directory_object", export_directory_object)
1111
- if import_directory_object is not None:
1112
- pulumi.set(__self__, "import_directory_object", import_directory_object)
1113
- if job_mode is not None:
1114
- pulumi.set(__self__, "job_mode", job_mode)
1115
- if metadata_remaps is not None:
1116
- pulumi.set(__self__, "metadata_remaps", metadata_remaps)
1117
-
1118
- @property
1119
- @pulumi.getter(name="dataPumpParameters")
1120
- def data_pump_parameters(self) -> Optional[pulumi.Input['MigrationDatapumpSettingsDataPumpParametersArgs']]:
1121
- """
1122
- (Updatable) Optional parameters for Data Pump Export and Import. Refer to [Configuring Optional Initial Load Advanced Settings](https://docs.us.oracle.com/en/cloud/paas/database-migration/dmsus/working-migration-resources.html#GUID-24BD3054-FDF8-48FF-8492-636C1D4B71ED)
1123
- """
1124
- return pulumi.get(self, "data_pump_parameters")
1125
-
1126
- @data_pump_parameters.setter
1127
- def data_pump_parameters(self, value: Optional[pulumi.Input['MigrationDatapumpSettingsDataPumpParametersArgs']]):
1128
- pulumi.set(self, "data_pump_parameters", value)
1129
-
1130
- @property
1131
- @pulumi.getter(name="exportDirectoryObject")
1132
- def export_directory_object(self) -> Optional[pulumi.Input['MigrationDatapumpSettingsExportDirectoryObjectArgs']]:
1133
- """
1134
- (Updatable) Directory object details, used to define either import or export directory objects in Data Pump Settings. Import directory is required for Non-Autonomous target connections. If specified for an autonomous target, it will show an error. Export directory will error if there are database link details specified.
1135
- """
1136
- return pulumi.get(self, "export_directory_object")
1137
-
1138
- @export_directory_object.setter
1139
- def export_directory_object(self, value: Optional[pulumi.Input['MigrationDatapumpSettingsExportDirectoryObjectArgs']]):
1140
- pulumi.set(self, "export_directory_object", value)
1141
-
1142
- @property
1143
- @pulumi.getter(name="importDirectoryObject")
1144
- def import_directory_object(self) -> Optional[pulumi.Input['MigrationDatapumpSettingsImportDirectoryObjectArgs']]:
1145
- """
1146
- (Updatable) Directory object details, used to define either import or export directory objects in Data Pump Settings. Import directory is required for Non-Autonomous target connections. If specified for an autonomous target, it will show an error. Export directory will error if there are database link details specified.
1147
- """
1148
- return pulumi.get(self, "import_directory_object")
1149
-
1150
- @import_directory_object.setter
1151
- def import_directory_object(self, value: Optional[pulumi.Input['MigrationDatapumpSettingsImportDirectoryObjectArgs']]):
1152
- pulumi.set(self, "import_directory_object", value)
1153
-
1154
- @property
1155
- @pulumi.getter(name="jobMode")
1156
- def job_mode(self) -> Optional[pulumi.Input[str]]:
1157
- """
1158
- (Updatable) Data Pump job mode. Refer to [link text](https://docs.oracle.com/en/database/oracle/oracle-database/19/sutil/oracle-data-pump-export-utility.html#GUID-8E497131-6B9B-4CC8-AA50-35F480CAC2C4)
1159
- """
1160
- return pulumi.get(self, "job_mode")
1161
-
1162
- @job_mode.setter
1163
- def job_mode(self, value: Optional[pulumi.Input[str]]):
1164
- pulumi.set(self, "job_mode", value)
1165
-
1166
- @property
1167
- @pulumi.getter(name="metadataRemaps")
1168
- def metadata_remaps(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MigrationDatapumpSettingsMetadataRemapArgs']]]]:
1169
- """
1170
- (Updatable) Defines remapping to be applied to objects as they are processed. Refer to [DATA_REMAP](https://docs.oracle.com/en/database/oracle/oracle-database/19/arpls/DBMS_DATAPUMP.html#GUID-E75AAE6F-4EA6-4737-A752-6B62F5E9D460)
1171
- """
1172
- return pulumi.get(self, "metadata_remaps")
1173
-
1174
- @metadata_remaps.setter
1175
- def metadata_remaps(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MigrationDatapumpSettingsMetadataRemapArgs']]]]):
1176
- pulumi.set(self, "metadata_remaps", value)
1177
-
1178
-
1179
- @pulumi.input_type
1180
- class MigrationDatapumpSettingsDataPumpParametersArgs:
1181
- def __init__(__self__, *,
1182
- estimate: Optional[pulumi.Input[str]] = None,
1183
- exclude_parameters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1184
- export_parallelism_degree: Optional[pulumi.Input[int]] = None,
1185
- import_parallelism_degree: Optional[pulumi.Input[int]] = None,
1186
- is_cluster: Optional[pulumi.Input[bool]] = None,
1187
- table_exists_action: Optional[pulumi.Input[str]] = None):
1188
- """
1189
- :param pulumi.Input[str] estimate: (Updatable) Estimate size of dumps that will be generated.
1190
- :param pulumi.Input[Sequence[pulumi.Input[str]]] exclude_parameters: (Updatable) Exclude paratemers for Export and Import.
1191
- :param pulumi.Input[int] export_parallelism_degree: (Updatable) Maximum number of worker processes that can be used for a Data Pump Export job.
1192
- :param pulumi.Input[int] import_parallelism_degree: (Updatable) Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property.
1193
- :param pulumi.Input[bool] is_cluster: (Updatable) Set to false to force Data Pump worker process to run on one instance.
1194
- :param pulumi.Input[str] table_exists_action: (Updatable) IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
1195
- """
1196
- if estimate is not None:
1197
- pulumi.set(__self__, "estimate", estimate)
1198
- if exclude_parameters is not None:
1199
- pulumi.set(__self__, "exclude_parameters", exclude_parameters)
1200
- if export_parallelism_degree is not None:
1201
- pulumi.set(__self__, "export_parallelism_degree", export_parallelism_degree)
1202
- if import_parallelism_degree is not None:
1203
- pulumi.set(__self__, "import_parallelism_degree", import_parallelism_degree)
1204
- if is_cluster is not None:
1205
- pulumi.set(__self__, "is_cluster", is_cluster)
1206
- if table_exists_action is not None:
1207
- pulumi.set(__self__, "table_exists_action", table_exists_action)
1208
-
1209
- @property
1210
- @pulumi.getter
1211
- def estimate(self) -> Optional[pulumi.Input[str]]:
1212
- """
1213
- (Updatable) Estimate size of dumps that will be generated.
1214
- """
1215
- return pulumi.get(self, "estimate")
1216
-
1217
- @estimate.setter
1218
- def estimate(self, value: Optional[pulumi.Input[str]]):
1219
- pulumi.set(self, "estimate", value)
1220
-
1221
- @property
1222
- @pulumi.getter(name="excludeParameters")
1223
- def exclude_parameters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1224
- """
1225
- (Updatable) Exclude paratemers for Export and Import.
1226
- """
1227
- return pulumi.get(self, "exclude_parameters")
1228
-
1229
- @exclude_parameters.setter
1230
- def exclude_parameters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1231
- pulumi.set(self, "exclude_parameters", value)
1232
-
1233
- @property
1234
- @pulumi.getter(name="exportParallelismDegree")
1235
- def export_parallelism_degree(self) -> Optional[pulumi.Input[int]]:
1236
- """
1237
- (Updatable) Maximum number of worker processes that can be used for a Data Pump Export job.
1238
- """
1239
- return pulumi.get(self, "export_parallelism_degree")
1240
-
1241
- @export_parallelism_degree.setter
1242
- def export_parallelism_degree(self, value: Optional[pulumi.Input[int]]):
1243
- pulumi.set(self, "export_parallelism_degree", value)
1244
-
1245
- @property
1246
- @pulumi.getter(name="importParallelismDegree")
1247
- def import_parallelism_degree(self) -> Optional[pulumi.Input[int]]:
1248
- """
1249
- (Updatable) Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property.
1250
- """
1251
- return pulumi.get(self, "import_parallelism_degree")
1252
-
1253
- @import_parallelism_degree.setter
1254
- def import_parallelism_degree(self, value: Optional[pulumi.Input[int]]):
1255
- pulumi.set(self, "import_parallelism_degree", value)
1256
-
1257
- @property
1258
- @pulumi.getter(name="isCluster")
1259
- def is_cluster(self) -> Optional[pulumi.Input[bool]]:
1260
- """
1261
- (Updatable) Set to false to force Data Pump worker process to run on one instance.
1262
- """
1263
- return pulumi.get(self, "is_cluster")
1264
-
1265
- @is_cluster.setter
1266
- def is_cluster(self, value: Optional[pulumi.Input[bool]]):
1267
- pulumi.set(self, "is_cluster", value)
1268
-
1269
- @property
1270
- @pulumi.getter(name="tableExistsAction")
1271
- def table_exists_action(self) -> Optional[pulumi.Input[str]]:
1272
- """
1273
- (Updatable) IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
1274
- """
1275
- return pulumi.get(self, "table_exists_action")
1276
-
1277
- @table_exists_action.setter
1278
- def table_exists_action(self, value: Optional[pulumi.Input[str]]):
1279
- pulumi.set(self, "table_exists_action", value)
1280
-
1281
-
1282
- @pulumi.input_type
1283
- class MigrationDatapumpSettingsExportDirectoryObjectArgs:
1284
- def __init__(__self__, *,
1285
- name: pulumi.Input[str],
1286
- path: Optional[pulumi.Input[str]] = None):
1287
- """
1288
- :param pulumi.Input[str] name: (Updatable) Name of directory object in database
1289
- :param pulumi.Input[str] path: (Updatable) Absolute path of directory on database server
1290
- """
1291
- pulumi.set(__self__, "name", name)
1292
- if path is not None:
1293
- pulumi.set(__self__, "path", path)
1294
-
1295
- @property
1296
- @pulumi.getter
1297
- def name(self) -> pulumi.Input[str]:
1298
- """
1299
- (Updatable) Name of directory object in database
1300
- """
1301
- return pulumi.get(self, "name")
1302
-
1303
- @name.setter
1304
- def name(self, value: pulumi.Input[str]):
1305
- pulumi.set(self, "name", value)
1306
-
1307
- @property
1308
- @pulumi.getter
1309
- def path(self) -> Optional[pulumi.Input[str]]:
1310
- """
1311
- (Updatable) Absolute path of directory on database server
1312
- """
1313
- return pulumi.get(self, "path")
1314
-
1315
- @path.setter
1316
- def path(self, value: Optional[pulumi.Input[str]]):
1317
- pulumi.set(self, "path", value)
1318
-
1319
-
1320
- @pulumi.input_type
1321
- class MigrationDatapumpSettingsImportDirectoryObjectArgs:
1322
- def __init__(__self__, *,
1323
- name: pulumi.Input[str],
1324
- path: Optional[pulumi.Input[str]] = None):
1325
- """
1326
- :param pulumi.Input[str] name: (Updatable) Name of directory object in database
1327
- :param pulumi.Input[str] path: (Updatable) Absolute path of directory on database server
1328
- """
1329
- pulumi.set(__self__, "name", name)
1330
- if path is not None:
1331
- pulumi.set(__self__, "path", path)
1332
-
1333
- @property
1334
- @pulumi.getter
1335
- def name(self) -> pulumi.Input[str]:
1336
- """
1337
- (Updatable) Name of directory object in database
1338
- """
1339
- return pulumi.get(self, "name")
1340
-
1341
- @name.setter
1342
- def name(self, value: pulumi.Input[str]):
1343
- pulumi.set(self, "name", value)
1344
-
1345
- @property
1346
- @pulumi.getter
1347
- def path(self) -> Optional[pulumi.Input[str]]:
1348
- """
1349
- (Updatable) Absolute path of directory on database server
1350
- """
1351
- return pulumi.get(self, "path")
1352
-
1353
- @path.setter
1354
- def path(self, value: Optional[pulumi.Input[str]]):
1355
- pulumi.set(self, "path", value)
1356
-
1357
-
1358
- @pulumi.input_type
1359
- class MigrationDatapumpSettingsMetadataRemapArgs:
1360
- def __init__(__self__, *,
1361
- new_value: pulumi.Input[str],
1362
- old_value: pulumi.Input[str],
1363
- type: pulumi.Input[str]):
1364
- """
1365
- :param pulumi.Input[str] new_value: (Updatable) Specifies the new value that oldValue should be translated into.
1366
- :param pulumi.Input[str] old_value: (Updatable) Specifies the value which needs to be reset.
1367
- :param pulumi.Input[str] type: (Updatable) Type of remap. Refer to [METADATA_REMAP Procedure ](https://docs.oracle.com/en/database/oracle/oracle-database/19/arpls/DBMS_DATAPUMP.html#GUID-0FC32790-91E6-4781-87A3-229DE024CB3D)
1368
- """
1369
- pulumi.set(__self__, "new_value", new_value)
1370
- pulumi.set(__self__, "old_value", old_value)
1371
- pulumi.set(__self__, "type", type)
1372
-
1373
- @property
1374
- @pulumi.getter(name="newValue")
1375
- def new_value(self) -> pulumi.Input[str]:
1376
- """
1377
- (Updatable) Specifies the new value that oldValue should be translated into.
1378
- """
1379
- return pulumi.get(self, "new_value")
1380
-
1381
- @new_value.setter
1382
- def new_value(self, value: pulumi.Input[str]):
1383
- pulumi.set(self, "new_value", value)
1384
-
1385
- @property
1386
- @pulumi.getter(name="oldValue")
1387
- def old_value(self) -> pulumi.Input[str]:
1388
- """
1389
- (Updatable) Specifies the value which needs to be reset.
1390
- """
1391
- return pulumi.get(self, "old_value")
1392
-
1393
- @old_value.setter
1394
- def old_value(self, value: pulumi.Input[str]):
1395
- pulumi.set(self, "old_value", value)
1396
-
1397
- @property
1398
- @pulumi.getter
1399
- def type(self) -> pulumi.Input[str]:
1400
- """
1401
- (Updatable) Type of remap. Refer to [METADATA_REMAP Procedure ](https://docs.oracle.com/en/database/oracle/oracle-database/19/arpls/DBMS_DATAPUMP.html#GUID-0FC32790-91E6-4781-87A3-229DE024CB3D)
1402
- """
1403
- return pulumi.get(self, "type")
1404
-
1405
- @type.setter
1406
- def type(self, value: pulumi.Input[str]):
1407
- pulumi.set(self, "type", value)
1408
-
1409
-
1410
- @pulumi.input_type
1411
- class MigrationDumpTransferDetailsArgs:
1412
- def __init__(__self__, *,
1413
- shared_storage_mount_target_id: Optional[pulumi.Input[str]] = None,
1414
- source: Optional[pulumi.Input['MigrationDumpTransferDetailsSourceArgs']] = None,
1415
- target: Optional[pulumi.Input['MigrationDumpTransferDetailsTargetArgs']] = None):
1416
- """
1417
- :param pulumi.Input[str] shared_storage_mount_target_id: Optional OCID of the shared storage mount target.
1418
- :param pulumi.Input['MigrationDumpTransferDetailsSourceArgs'] source: (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL
1419
- :param pulumi.Input['MigrationDumpTransferDetailsTargetArgs'] target: (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL
1420
- """
1421
- if shared_storage_mount_target_id is not None:
1422
- pulumi.set(__self__, "shared_storage_mount_target_id", shared_storage_mount_target_id)
1423
- if source is not None:
1424
- pulumi.set(__self__, "source", source)
1425
- if target is not None:
1426
- pulumi.set(__self__, "target", target)
1427
-
1428
- @property
1429
- @pulumi.getter(name="sharedStorageMountTargetId")
1430
- def shared_storage_mount_target_id(self) -> Optional[pulumi.Input[str]]:
1431
- """
1432
- Optional OCID of the shared storage mount target.
1433
- """
1434
- return pulumi.get(self, "shared_storage_mount_target_id")
1435
-
1436
- @shared_storage_mount_target_id.setter
1437
- def shared_storage_mount_target_id(self, value: Optional[pulumi.Input[str]]):
1438
- pulumi.set(self, "shared_storage_mount_target_id", value)
1439
-
1440
- @property
1441
- @pulumi.getter
1442
- def source(self) -> Optional[pulumi.Input['MigrationDumpTransferDetailsSourceArgs']]:
1443
- """
1444
- (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL
1445
- """
1446
- return pulumi.get(self, "source")
1447
-
1448
- @source.setter
1449
- def source(self, value: Optional[pulumi.Input['MigrationDumpTransferDetailsSourceArgs']]):
1450
- pulumi.set(self, "source", value)
1451
-
1452
- @property
1453
- @pulumi.getter
1454
- def target(self) -> Optional[pulumi.Input['MigrationDumpTransferDetailsTargetArgs']]:
1455
- """
1456
- (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL
1457
- """
1458
- return pulumi.get(self, "target")
1459
-
1460
- @target.setter
1461
- def target(self, value: Optional[pulumi.Input['MigrationDumpTransferDetailsTargetArgs']]):
1462
- pulumi.set(self, "target", value)
1463
-
1464
-
1465
- @pulumi.input_type
1466
- class MigrationDumpTransferDetailsSourceArgs:
1467
- def __init__(__self__, *,
1468
- kind: pulumi.Input[str],
1469
- oci_home: Optional[pulumi.Input[str]] = None,
1470
- wallet_location: Optional[pulumi.Input[str]] = None):
1471
- """
1472
- :param pulumi.Input[str] kind: (Updatable) Type of dump transfer to use during migration in source or target host. Default kind is CURL
1473
- :param pulumi.Input[str] oci_home: (Updatable) Path to the Oracle Cloud Infrastructure CLI installation in the node.
1474
- :param pulumi.Input[str] wallet_location: (Updatable) Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
1475
- """
1476
- pulumi.set(__self__, "kind", kind)
1477
- if oci_home is not None:
1478
- pulumi.set(__self__, "oci_home", oci_home)
1479
- if wallet_location is not None:
1480
- pulumi.set(__self__, "wallet_location", wallet_location)
1481
-
1482
- @property
1483
- @pulumi.getter
1484
- def kind(self) -> pulumi.Input[str]:
1485
- """
1486
- (Updatable) Type of dump transfer to use during migration in source or target host. Default kind is CURL
1487
- """
1488
- return pulumi.get(self, "kind")
1489
-
1490
- @kind.setter
1491
- def kind(self, value: pulumi.Input[str]):
1492
- pulumi.set(self, "kind", value)
1493
-
1494
- @property
1495
- @pulumi.getter(name="ociHome")
1496
- def oci_home(self) -> Optional[pulumi.Input[str]]:
1497
- """
1498
- (Updatable) Path to the Oracle Cloud Infrastructure CLI installation in the node.
1499
- """
1500
- return pulumi.get(self, "oci_home")
1501
-
1502
- @oci_home.setter
1503
- def oci_home(self, value: Optional[pulumi.Input[str]]):
1504
- pulumi.set(self, "oci_home", value)
1505
-
1506
- @property
1507
- @pulumi.getter(name="walletLocation")
1508
- def wallet_location(self) -> Optional[pulumi.Input[str]]:
1509
- """
1510
- (Updatable) Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
1511
- """
1512
- return pulumi.get(self, "wallet_location")
1513
-
1514
- @wallet_location.setter
1515
- def wallet_location(self, value: Optional[pulumi.Input[str]]):
1516
- pulumi.set(self, "wallet_location", value)
1517
-
1518
-
1519
- @pulumi.input_type
1520
- class MigrationDumpTransferDetailsTargetArgs:
1521
- def __init__(__self__, *,
1522
- kind: pulumi.Input[str],
1523
- oci_home: Optional[pulumi.Input[str]] = None,
1524
- wallet_location: Optional[pulumi.Input[str]] = None):
1525
- """
1526
- :param pulumi.Input[str] kind: (Updatable) Type of dump transfer to use during migration in source or target host. Default kind is CURL
1527
- :param pulumi.Input[str] oci_home: (Updatable) Path to the Oracle Cloud Infrastructure CLI installation in the node.
1528
- :param pulumi.Input[str] wallet_location: (Updatable) Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
1529
- """
1530
- pulumi.set(__self__, "kind", kind)
1531
- if oci_home is not None:
1532
- pulumi.set(__self__, "oci_home", oci_home)
1533
- if wallet_location is not None:
1534
- pulumi.set(__self__, "wallet_location", wallet_location)
1535
-
1536
- @property
1537
- @pulumi.getter
1538
- def kind(self) -> pulumi.Input[str]:
1539
- """
1540
- (Updatable) Type of dump transfer to use during migration in source or target host. Default kind is CURL
1541
- """
1542
- return pulumi.get(self, "kind")
1543
-
1544
- @kind.setter
1545
- def kind(self, value: pulumi.Input[str]):
1546
- pulumi.set(self, "kind", value)
1547
-
1548
- @property
1549
- @pulumi.getter(name="ociHome")
1550
- def oci_home(self) -> Optional[pulumi.Input[str]]:
1551
- """
1552
- (Updatable) Path to the Oracle Cloud Infrastructure CLI installation in the node.
1553
- """
1554
- return pulumi.get(self, "oci_home")
1555
-
1556
- @oci_home.setter
1557
- def oci_home(self, value: Optional[pulumi.Input[str]]):
1558
- pulumi.set(self, "oci_home", value)
1559
-
1560
- @property
1561
- @pulumi.getter(name="walletLocation")
1562
- def wallet_location(self) -> Optional[pulumi.Input[str]]:
1563
- """
1564
- (Updatable) Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
1565
- """
1566
- return pulumi.get(self, "wallet_location")
1567
-
1568
- @wallet_location.setter
1569
- def wallet_location(self, value: Optional[pulumi.Input[str]]):
1570
- pulumi.set(self, "wallet_location", value)
1571
-
1572
-
1573
- @pulumi.input_type
1574
- class MigrationExcludeObjectArgs:
1575
- def __init__(__self__, *,
1576
- object: pulumi.Input[str],
1577
- owner: pulumi.Input[str],
1578
- is_omit_excluded_table_from_replication: Optional[pulumi.Input[bool]] = None,
1579
- type: Optional[pulumi.Input[str]] = None):
1580
- """
1581
- :param pulumi.Input[str] object: (Updatable) Name of the object (regular expression is allowed)
1582
- :param pulumi.Input[str] owner: (Updatable) Owner of the object (regular expression is allowed)
1583
- :param pulumi.Input[bool] is_omit_excluded_table_from_replication: (Updatable) Whether an excluded table should be omitted from replication. Only valid for database objects that have are of type TABLE and that are included in the exludeObjects.
1584
- :param pulumi.Input[str] type: (Updatable) Type of object to exclude. If not specified, matching owners and object names of type TABLE would be excluded.
1585
- """
1586
- pulumi.set(__self__, "object", object)
1587
- pulumi.set(__self__, "owner", owner)
1588
- if is_omit_excluded_table_from_replication is not None:
1589
- pulumi.set(__self__, "is_omit_excluded_table_from_replication", is_omit_excluded_table_from_replication)
1590
- if type is not None:
1591
- pulumi.set(__self__, "type", type)
1592
-
1593
- @property
1594
- @pulumi.getter
1595
- def object(self) -> pulumi.Input[str]:
1596
- """
1597
- (Updatable) Name of the object (regular expression is allowed)
1598
- """
1599
- return pulumi.get(self, "object")
1600
-
1601
- @object.setter
1602
- def object(self, value: pulumi.Input[str]):
1603
- pulumi.set(self, "object", value)
1604
-
1605
- @property
1606
- @pulumi.getter
1607
- def owner(self) -> pulumi.Input[str]:
1608
- """
1609
- (Updatable) Owner of the object (regular expression is allowed)
1610
- """
1611
- return pulumi.get(self, "owner")
1612
-
1613
- @owner.setter
1614
- def owner(self, value: pulumi.Input[str]):
1615
- pulumi.set(self, "owner", value)
1616
-
1617
- @property
1618
- @pulumi.getter(name="isOmitExcludedTableFromReplication")
1619
- def is_omit_excluded_table_from_replication(self) -> Optional[pulumi.Input[bool]]:
1620
- """
1621
- (Updatable) Whether an excluded table should be omitted from replication. Only valid for database objects that have are of type TABLE and that are included in the exludeObjects.
1622
- """
1623
- return pulumi.get(self, "is_omit_excluded_table_from_replication")
1624
-
1625
- @is_omit_excluded_table_from_replication.setter
1626
- def is_omit_excluded_table_from_replication(self, value: Optional[pulumi.Input[bool]]):
1627
- pulumi.set(self, "is_omit_excluded_table_from_replication", value)
1628
-
1629
- @property
1630
- @pulumi.getter
1631
- def type(self) -> Optional[pulumi.Input[str]]:
1632
- """
1633
- (Updatable) Type of object to exclude. If not specified, matching owners and object names of type TABLE would be excluded.
1634
- """
1635
- return pulumi.get(self, "type")
1636
-
1637
- @type.setter
1638
- def type(self, value: Optional[pulumi.Input[str]]):
1639
- pulumi.set(self, "type", value)
1640
-
1641
-
1642
- @pulumi.input_type
1643
- class MigrationGoldenGateDetailsArgs:
1644
- def __init__(__self__, *,
1645
- hub: pulumi.Input['MigrationGoldenGateDetailsHubArgs'],
1646
- settings: Optional[pulumi.Input['MigrationGoldenGateDetailsSettingsArgs']] = None):
1647
- """
1648
- :param pulumi.Input['MigrationGoldenGateDetailsHubArgs'] hub: (Updatable) Details about Oracle GoldenGate Microservices. Required for online logical migration.
1649
- :param pulumi.Input['MigrationGoldenGateDetailsSettingsArgs'] settings: (Updatable) Optional settings for GoldenGate Microservices processes
1650
- """
1651
- pulumi.set(__self__, "hub", hub)
1652
- if settings is not None:
1653
- pulumi.set(__self__, "settings", settings)
1654
-
1655
- @property
1656
- @pulumi.getter
1657
- def hub(self) -> pulumi.Input['MigrationGoldenGateDetailsHubArgs']:
1658
- """
1659
- (Updatable) Details about Oracle GoldenGate Microservices. Required for online logical migration.
1660
- """
1661
- return pulumi.get(self, "hub")
1662
-
1663
- @hub.setter
1664
- def hub(self, value: pulumi.Input['MigrationGoldenGateDetailsHubArgs']):
1665
- pulumi.set(self, "hub", value)
1666
-
1667
- @property
1668
- @pulumi.getter
1669
- def settings(self) -> Optional[pulumi.Input['MigrationGoldenGateDetailsSettingsArgs']]:
1670
- """
1671
- (Updatable) Optional settings for GoldenGate Microservices processes
1672
- """
1673
- return pulumi.get(self, "settings")
1674
-
1675
- @settings.setter
1676
- def settings(self, value: Optional[pulumi.Input['MigrationGoldenGateDetailsSettingsArgs']]):
1677
- pulumi.set(self, "settings", value)
1678
-
1679
-
1680
- @pulumi.input_type
1681
- class MigrationGoldenGateDetailsHubArgs:
1682
- def __init__(__self__, *,
1683
- rest_admin_credentials: pulumi.Input['MigrationGoldenGateDetailsHubRestAdminCredentialsArgs'],
1684
- url: pulumi.Input[str],
1685
- compute_id: Optional[pulumi.Input[str]] = None,
1686
- source_container_db_admin_credentials: Optional[pulumi.Input['MigrationGoldenGateDetailsHubSourceContainerDbAdminCredentialsArgs']] = None,
1687
- source_db_admin_credentials: Optional[pulumi.Input['MigrationGoldenGateDetailsHubSourceDbAdminCredentialsArgs']] = None,
1688
- source_microservices_deployment_name: Optional[pulumi.Input[str]] = None,
1689
- target_db_admin_credentials: Optional[pulumi.Input['MigrationGoldenGateDetailsHubTargetDbAdminCredentialsArgs']] = None,
1690
- target_microservices_deployment_name: Optional[pulumi.Input[str]] = None):
1691
- """
1692
- :param pulumi.Input['MigrationGoldenGateDetailsHubRestAdminCredentialsArgs'] rest_admin_credentials: (Updatable) Database Administrator Credentials details.
1693
- :param pulumi.Input[str] url: (Updatable) Oracle GoldenGate Microservices hub's REST endpoint. Refer to https://docs.oracle.com/en/middleware/goldengate/core/19.1/securing/network.html#GUID-A709DA55-111D-455E-8942-C9BDD1E38CAA
1694
- :param pulumi.Input[str] compute_id: (Updatable) OCID of GoldenGate Microservices compute instance.
1695
- :param pulumi.Input['MigrationGoldenGateDetailsHubSourceContainerDbAdminCredentialsArgs'] source_container_db_admin_credentials: (Updatable) Database Administrator Credentials details.
1696
- :param pulumi.Input['MigrationGoldenGateDetailsHubSourceDbAdminCredentialsArgs'] source_db_admin_credentials: (Updatable) Database Administrator Credentials details.
1697
- :param pulumi.Input[str] source_microservices_deployment_name: (Updatable) Name of GoldenGate Microservices deployment to operate on source database
1698
- :param pulumi.Input['MigrationGoldenGateDetailsHubTargetDbAdminCredentialsArgs'] target_db_admin_credentials: (Updatable) Database Administrator Credentials details.
1699
- :param pulumi.Input[str] target_microservices_deployment_name: (Updatable) Name of GoldenGate Microservices deployment to operate on target database
1700
- """
1701
- pulumi.set(__self__, "rest_admin_credentials", rest_admin_credentials)
1702
- pulumi.set(__self__, "url", url)
1703
- if compute_id is not None:
1704
- pulumi.set(__self__, "compute_id", compute_id)
1705
- if source_container_db_admin_credentials is not None:
1706
- pulumi.set(__self__, "source_container_db_admin_credentials", source_container_db_admin_credentials)
1707
- if source_db_admin_credentials is not None:
1708
- pulumi.set(__self__, "source_db_admin_credentials", source_db_admin_credentials)
1709
- if source_microservices_deployment_name is not None:
1710
- pulumi.set(__self__, "source_microservices_deployment_name", source_microservices_deployment_name)
1711
- if target_db_admin_credentials is not None:
1712
- pulumi.set(__self__, "target_db_admin_credentials", target_db_admin_credentials)
1713
- if target_microservices_deployment_name is not None:
1714
- pulumi.set(__self__, "target_microservices_deployment_name", target_microservices_deployment_name)
1715
-
1716
- @property
1717
- @pulumi.getter(name="restAdminCredentials")
1718
- def rest_admin_credentials(self) -> pulumi.Input['MigrationGoldenGateDetailsHubRestAdminCredentialsArgs']:
1719
- """
1720
- (Updatable) Database Administrator Credentials details.
1721
- """
1722
- return pulumi.get(self, "rest_admin_credentials")
1723
-
1724
- @rest_admin_credentials.setter
1725
- def rest_admin_credentials(self, value: pulumi.Input['MigrationGoldenGateDetailsHubRestAdminCredentialsArgs']):
1726
- pulumi.set(self, "rest_admin_credentials", value)
1727
-
1728
- @property
1729
- @pulumi.getter
1730
- def url(self) -> pulumi.Input[str]:
1731
- """
1732
- (Updatable) Oracle GoldenGate Microservices hub's REST endpoint. Refer to https://docs.oracle.com/en/middleware/goldengate/core/19.1/securing/network.html#GUID-A709DA55-111D-455E-8942-C9BDD1E38CAA
1733
- """
1734
- return pulumi.get(self, "url")
1735
-
1736
- @url.setter
1737
- def url(self, value: pulumi.Input[str]):
1738
- pulumi.set(self, "url", value)
1739
-
1740
- @property
1741
- @pulumi.getter(name="computeId")
1742
- def compute_id(self) -> Optional[pulumi.Input[str]]:
1743
- """
1744
- (Updatable) OCID of GoldenGate Microservices compute instance.
1745
- """
1746
- return pulumi.get(self, "compute_id")
1747
-
1748
- @compute_id.setter
1749
- def compute_id(self, value: Optional[pulumi.Input[str]]):
1750
- pulumi.set(self, "compute_id", value)
1751
-
1752
- @property
1753
- @pulumi.getter(name="sourceContainerDbAdminCredentials")
1754
- def source_container_db_admin_credentials(self) -> Optional[pulumi.Input['MigrationGoldenGateDetailsHubSourceContainerDbAdminCredentialsArgs']]:
1755
- """
1756
- (Updatable) Database Administrator Credentials details.
1757
- """
1758
- return pulumi.get(self, "source_container_db_admin_credentials")
1759
-
1760
- @source_container_db_admin_credentials.setter
1761
- def source_container_db_admin_credentials(self, value: Optional[pulumi.Input['MigrationGoldenGateDetailsHubSourceContainerDbAdminCredentialsArgs']]):
1762
- pulumi.set(self, "source_container_db_admin_credentials", value)
1763
-
1764
- @property
1765
- @pulumi.getter(name="sourceDbAdminCredentials")
1766
- def source_db_admin_credentials(self) -> Optional[pulumi.Input['MigrationGoldenGateDetailsHubSourceDbAdminCredentialsArgs']]:
1767
- """
1768
- (Updatable) Database Administrator Credentials details.
1769
- """
1770
- return pulumi.get(self, "source_db_admin_credentials")
1771
-
1772
- @source_db_admin_credentials.setter
1773
- def source_db_admin_credentials(self, value: Optional[pulumi.Input['MigrationGoldenGateDetailsHubSourceDbAdminCredentialsArgs']]):
1774
- pulumi.set(self, "source_db_admin_credentials", value)
1775
-
1776
- @property
1777
- @pulumi.getter(name="sourceMicroservicesDeploymentName")
1778
- def source_microservices_deployment_name(self) -> Optional[pulumi.Input[str]]:
1779
- """
1780
- (Updatable) Name of GoldenGate Microservices deployment to operate on source database
1781
- """
1782
- return pulumi.get(self, "source_microservices_deployment_name")
1783
-
1784
- @source_microservices_deployment_name.setter
1785
- def source_microservices_deployment_name(self, value: Optional[pulumi.Input[str]]):
1786
- pulumi.set(self, "source_microservices_deployment_name", value)
1787
-
1788
- @property
1789
- @pulumi.getter(name="targetDbAdminCredentials")
1790
- def target_db_admin_credentials(self) -> Optional[pulumi.Input['MigrationGoldenGateDetailsHubTargetDbAdminCredentialsArgs']]:
1791
- """
1792
- (Updatable) Database Administrator Credentials details.
1793
- """
1794
- return pulumi.get(self, "target_db_admin_credentials")
1795
-
1796
- @target_db_admin_credentials.setter
1797
- def target_db_admin_credentials(self, value: Optional[pulumi.Input['MigrationGoldenGateDetailsHubTargetDbAdminCredentialsArgs']]):
1798
- pulumi.set(self, "target_db_admin_credentials", value)
1799
-
1800
- @property
1801
- @pulumi.getter(name="targetMicroservicesDeploymentName")
1802
- def target_microservices_deployment_name(self) -> Optional[pulumi.Input[str]]:
1803
- """
1804
- (Updatable) Name of GoldenGate Microservices deployment to operate on target database
1805
- """
1806
- return pulumi.get(self, "target_microservices_deployment_name")
1807
-
1808
- @target_microservices_deployment_name.setter
1809
- def target_microservices_deployment_name(self, value: Optional[pulumi.Input[str]]):
1810
- pulumi.set(self, "target_microservices_deployment_name", value)
1811
-
1812
-
1813
- @pulumi.input_type
1814
- class MigrationGoldenGateDetailsHubRestAdminCredentialsArgs:
1815
- def __init__(__self__, *,
1816
- password: pulumi.Input[str],
1817
- username: pulumi.Input[str]):
1818
- """
1819
- :param pulumi.Input[str] password: (Updatable) Administrator password
1820
- :param pulumi.Input[str] username: (Updatable) Administrator username
1821
- """
1822
- pulumi.set(__self__, "password", password)
1823
- pulumi.set(__self__, "username", username)
1824
-
1825
- @property
1826
- @pulumi.getter
1827
- def password(self) -> pulumi.Input[str]:
1828
- """
1829
- (Updatable) Administrator password
1830
- """
1831
- return pulumi.get(self, "password")
1832
-
1833
- @password.setter
1834
- def password(self, value: pulumi.Input[str]):
1835
- pulumi.set(self, "password", value)
1836
-
1837
- @property
1838
- @pulumi.getter
1839
- def username(self) -> pulumi.Input[str]:
1840
- """
1841
- (Updatable) Administrator username
1842
- """
1843
- return pulumi.get(self, "username")
1844
-
1845
- @username.setter
1846
- def username(self, value: pulumi.Input[str]):
1847
- pulumi.set(self, "username", value)
1848
-
1849
-
1850
- @pulumi.input_type
1851
- class MigrationGoldenGateDetailsHubSourceContainerDbAdminCredentialsArgs:
1852
- def __init__(__self__, *,
1853
- password: pulumi.Input[str],
1854
- username: pulumi.Input[str]):
1855
- """
1856
- :param pulumi.Input[str] password: (Updatable) Administrator password
1857
- :param pulumi.Input[str] username: (Updatable) Administrator username
1858
- """
1859
- pulumi.set(__self__, "password", password)
1860
- pulumi.set(__self__, "username", username)
1861
-
1862
- @property
1863
- @pulumi.getter
1864
- def password(self) -> pulumi.Input[str]:
1865
- """
1866
- (Updatable) Administrator password
1867
- """
1868
- return pulumi.get(self, "password")
1869
-
1870
- @password.setter
1871
- def password(self, value: pulumi.Input[str]):
1872
- pulumi.set(self, "password", value)
1873
-
1874
- @property
1875
- @pulumi.getter
1876
- def username(self) -> pulumi.Input[str]:
1877
- """
1878
- (Updatable) Administrator username
1879
- """
1880
- return pulumi.get(self, "username")
1881
-
1882
- @username.setter
1883
- def username(self, value: pulumi.Input[str]):
1884
- pulumi.set(self, "username", value)
1885
-
1886
-
1887
- @pulumi.input_type
1888
- class MigrationGoldenGateDetailsHubSourceDbAdminCredentialsArgs:
1889
- def __init__(__self__, *,
1890
- password: pulumi.Input[str],
1891
- username: pulumi.Input[str]):
1892
- """
1893
- :param pulumi.Input[str] password: (Updatable) Administrator password
1894
- :param pulumi.Input[str] username: (Updatable) Administrator username
1895
- """
1896
- pulumi.set(__self__, "password", password)
1897
- pulumi.set(__self__, "username", username)
1898
-
1899
- @property
1900
- @pulumi.getter
1901
- def password(self) -> pulumi.Input[str]:
1902
- """
1903
- (Updatable) Administrator password
1904
- """
1905
- return pulumi.get(self, "password")
1906
-
1907
- @password.setter
1908
- def password(self, value: pulumi.Input[str]):
1909
- pulumi.set(self, "password", value)
1910
-
1911
- @property
1912
- @pulumi.getter
1913
- def username(self) -> pulumi.Input[str]:
1914
- """
1915
- (Updatable) Administrator username
1916
- """
1917
- return pulumi.get(self, "username")
1918
-
1919
- @username.setter
1920
- def username(self, value: pulumi.Input[str]):
1921
- pulumi.set(self, "username", value)
1922
-
1923
-
1924
- @pulumi.input_type
1925
- class MigrationGoldenGateDetailsHubTargetDbAdminCredentialsArgs:
1926
- def __init__(__self__, *,
1927
- password: pulumi.Input[str],
1928
- username: pulumi.Input[str]):
1929
- """
1930
- :param pulumi.Input[str] password: (Updatable) Administrator password
1931
- :param pulumi.Input[str] username: (Updatable) Administrator username
1932
- """
1933
- pulumi.set(__self__, "password", password)
1934
- pulumi.set(__self__, "username", username)
1935
-
1936
- @property
1937
- @pulumi.getter
1938
- def password(self) -> pulumi.Input[str]:
1939
- """
1940
- (Updatable) Administrator password
1941
- """
1942
- return pulumi.get(self, "password")
1943
-
1944
- @password.setter
1945
- def password(self, value: pulumi.Input[str]):
1946
- pulumi.set(self, "password", value)
1947
-
1948
- @property
1949
- @pulumi.getter
1950
- def username(self) -> pulumi.Input[str]:
1951
- """
1952
- (Updatable) Administrator username
1953
- """
1954
- return pulumi.get(self, "username")
1955
-
1956
- @username.setter
1957
- def username(self, value: pulumi.Input[str]):
1958
- pulumi.set(self, "username", value)
1959
-
1960
-
1961
- @pulumi.input_type
1962
- class MigrationGoldenGateDetailsSettingsArgs:
1963
- def __init__(__self__, *,
1964
- acceptable_lag: Optional[pulumi.Input[int]] = None,
1965
- extract: Optional[pulumi.Input['MigrationGoldenGateDetailsSettingsExtractArgs']] = None,
1966
- replicat: Optional[pulumi.Input['MigrationGoldenGateDetailsSettingsReplicatArgs']] = None):
1967
- """
1968
- :param pulumi.Input[int] acceptable_lag: (Updatable) ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
1969
- :param pulumi.Input['MigrationGoldenGateDetailsSettingsExtractArgs'] extract: (Updatable) Parameters for GoldenGate Extract processes.
1970
- :param pulumi.Input['MigrationGoldenGateDetailsSettingsReplicatArgs'] replicat: (Updatable) Parameters for GoldenGate Replicat processes.
1971
- """
1972
- if acceptable_lag is not None:
1973
- pulumi.set(__self__, "acceptable_lag", acceptable_lag)
1974
- if extract is not None:
1975
- pulumi.set(__self__, "extract", extract)
1976
- if replicat is not None:
1977
- pulumi.set(__self__, "replicat", replicat)
1978
-
1979
- @property
1980
- @pulumi.getter(name="acceptableLag")
1981
- def acceptable_lag(self) -> Optional[pulumi.Input[int]]:
1982
- """
1983
- (Updatable) ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
1984
- """
1985
- return pulumi.get(self, "acceptable_lag")
1986
-
1987
- @acceptable_lag.setter
1988
- def acceptable_lag(self, value: Optional[pulumi.Input[int]]):
1989
- pulumi.set(self, "acceptable_lag", value)
1990
-
1991
- @property
1992
- @pulumi.getter
1993
- def extract(self) -> Optional[pulumi.Input['MigrationGoldenGateDetailsSettingsExtractArgs']]:
1994
- """
1995
- (Updatable) Parameters for GoldenGate Extract processes.
1996
- """
1997
- return pulumi.get(self, "extract")
1998
-
1999
- @extract.setter
2000
- def extract(self, value: Optional[pulumi.Input['MigrationGoldenGateDetailsSettingsExtractArgs']]):
2001
- pulumi.set(self, "extract", value)
2002
-
2003
- @property
2004
- @pulumi.getter
2005
- def replicat(self) -> Optional[pulumi.Input['MigrationGoldenGateDetailsSettingsReplicatArgs']]:
2006
- """
2007
- (Updatable) Parameters for GoldenGate Replicat processes.
2008
- """
2009
- return pulumi.get(self, "replicat")
2010
-
2011
- @replicat.setter
2012
- def replicat(self, value: Optional[pulumi.Input['MigrationGoldenGateDetailsSettingsReplicatArgs']]):
2013
- pulumi.set(self, "replicat", value)
2014
-
2015
-
2016
- @pulumi.input_type
2017
- class MigrationGoldenGateDetailsSettingsExtractArgs:
2018
- def __init__(__self__, *,
2019
- long_trans_duration: Optional[pulumi.Input[int]] = None,
2020
- performance_profile: Optional[pulumi.Input[str]] = None):
2021
- """
2022
- :param pulumi.Input[int] long_trans_duration: (Updatable) Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
2023
- :param pulumi.Input[str] performance_profile: (Updatable) Extract performance.
2024
- """
2025
- if long_trans_duration is not None:
2026
- pulumi.set(__self__, "long_trans_duration", long_trans_duration)
2027
- if performance_profile is not None:
2028
- pulumi.set(__self__, "performance_profile", performance_profile)
2029
-
2030
- @property
2031
- @pulumi.getter(name="longTransDuration")
2032
- def long_trans_duration(self) -> Optional[pulumi.Input[int]]:
2033
- """
2034
- (Updatable) Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
2035
- """
2036
- return pulumi.get(self, "long_trans_duration")
2037
-
2038
- @long_trans_duration.setter
2039
- def long_trans_duration(self, value: Optional[pulumi.Input[int]]):
2040
- pulumi.set(self, "long_trans_duration", value)
2041
-
2042
- @property
2043
- @pulumi.getter(name="performanceProfile")
2044
- def performance_profile(self) -> Optional[pulumi.Input[str]]:
2045
- """
2046
- (Updatable) Extract performance.
2047
- """
2048
- return pulumi.get(self, "performance_profile")
2049
-
2050
- @performance_profile.setter
2051
- def performance_profile(self, value: Optional[pulumi.Input[str]]):
2052
- pulumi.set(self, "performance_profile", value)
2053
-
2054
-
2055
- @pulumi.input_type
2056
- class MigrationGoldenGateDetailsSettingsReplicatArgs:
2057
- def __init__(__self__, *,
2058
- map_parallelism: Optional[pulumi.Input[int]] = None,
2059
- max_apply_parallelism: Optional[pulumi.Input[int]] = None,
2060
- min_apply_parallelism: Optional[pulumi.Input[int]] = None,
2061
- performance_profile: Optional[pulumi.Input[str]] = None):
2062
- """
2063
- :param pulumi.Input[int] map_parallelism: (Updatable) Number of threads used to read trail files (valid for Parallel Replicat)
2064
- :param pulumi.Input[int] max_apply_parallelism: (Updatable) Defines the range in which the Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
2065
- :param pulumi.Input[int] min_apply_parallelism: (Updatable) Defines the range in which the Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
2066
- :param pulumi.Input[str] performance_profile: Extract performance.
2067
- """
2068
- if map_parallelism is not None:
2069
- pulumi.set(__self__, "map_parallelism", map_parallelism)
2070
- if max_apply_parallelism is not None:
2071
- pulumi.set(__self__, "max_apply_parallelism", max_apply_parallelism)
2072
- if min_apply_parallelism is not None:
2073
- pulumi.set(__self__, "min_apply_parallelism", min_apply_parallelism)
2074
- if performance_profile is not None:
2075
- pulumi.set(__self__, "performance_profile", performance_profile)
2076
-
2077
- @property
2078
- @pulumi.getter(name="mapParallelism")
2079
- def map_parallelism(self) -> Optional[pulumi.Input[int]]:
2080
- """
2081
- (Updatable) Number of threads used to read trail files (valid for Parallel Replicat)
2082
- """
2083
- return pulumi.get(self, "map_parallelism")
2084
-
2085
- @map_parallelism.setter
2086
- def map_parallelism(self, value: Optional[pulumi.Input[int]]):
2087
- pulumi.set(self, "map_parallelism", value)
2088
-
2089
- @property
2090
- @pulumi.getter(name="maxApplyParallelism")
2091
- def max_apply_parallelism(self) -> Optional[pulumi.Input[int]]:
2092
- """
2093
- (Updatable) Defines the range in which the Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
2094
- """
2095
- return pulumi.get(self, "max_apply_parallelism")
2096
-
2097
- @max_apply_parallelism.setter
2098
- def max_apply_parallelism(self, value: Optional[pulumi.Input[int]]):
2099
- pulumi.set(self, "max_apply_parallelism", value)
2100
-
2101
- @property
2102
- @pulumi.getter(name="minApplyParallelism")
2103
- def min_apply_parallelism(self) -> Optional[pulumi.Input[int]]:
2104
- """
2105
- (Updatable) Defines the range in which the Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
2106
- """
2107
- return pulumi.get(self, "min_apply_parallelism")
2108
-
2109
- @min_apply_parallelism.setter
2110
- def min_apply_parallelism(self, value: Optional[pulumi.Input[int]]):
2111
- pulumi.set(self, "min_apply_parallelism", value)
2112
-
2113
- @property
2114
- @pulumi.getter(name="performanceProfile")
2115
- def performance_profile(self) -> Optional[pulumi.Input[str]]:
2116
- """
2117
- Extract performance.
2118
- """
2119
- return pulumi.get(self, "performance_profile")
2120
-
2121
- @performance_profile.setter
2122
- def performance_profile(self, value: Optional[pulumi.Input[str]]):
2123
- pulumi.set(self, "performance_profile", value)
2124
-
2125
-
2126
- @pulumi.input_type
2127
- class MigrationGoldenGateServiceDetailsArgs:
2128
- def __init__(__self__, *,
2129
- ggs_deployments: Optional[pulumi.Input[Sequence[pulumi.Input['MigrationGoldenGateServiceDetailsGgsDeploymentArgs']]]] = None,
2130
- settings: Optional[pulumi.Input['MigrationGoldenGateServiceDetailsSettingsArgs']] = None,
2131
- source_container_db_credentials: Optional[pulumi.Input['MigrationGoldenGateServiceDetailsSourceContainerDbCredentialsArgs']] = None,
2132
- source_db_credentials: Optional[pulumi.Input['MigrationGoldenGateServiceDetailsSourceDbCredentialsArgs']] = None,
2133
- target_db_credentials: Optional[pulumi.Input['MigrationGoldenGateServiceDetailsTargetDbCredentialsArgs']] = None):
2134
- """
2135
- :param pulumi.Input[Sequence[pulumi.Input['MigrationGoldenGateServiceDetailsGgsDeploymentArgs']]] ggs_deployments: Details about Oracle GoldenGate GGS Deployment.
2136
- :param pulumi.Input['MigrationGoldenGateServiceDetailsSettingsArgs'] settings: (Updatable) Optional settings for GoldenGate Microservices processes
2137
- :param pulumi.Input['MigrationGoldenGateServiceDetailsSourceContainerDbCredentialsArgs'] source_container_db_credentials: (Updatable) Database Credentials details.
2138
- :param pulumi.Input['MigrationGoldenGateServiceDetailsSourceDbCredentialsArgs'] source_db_credentials: (Updatable) Database Credentials details.
2139
- :param pulumi.Input['MigrationGoldenGateServiceDetailsTargetDbCredentialsArgs'] target_db_credentials: (Updatable) Database Credentials details.
2140
- """
2141
- if ggs_deployments is not None:
2142
- pulumi.set(__self__, "ggs_deployments", ggs_deployments)
2143
- if settings is not None:
2144
- pulumi.set(__self__, "settings", settings)
2145
- if source_container_db_credentials is not None:
2146
- pulumi.set(__self__, "source_container_db_credentials", source_container_db_credentials)
2147
- if source_db_credentials is not None:
2148
- pulumi.set(__self__, "source_db_credentials", source_db_credentials)
2149
- if target_db_credentials is not None:
2150
- pulumi.set(__self__, "target_db_credentials", target_db_credentials)
2151
-
2152
- @property
2153
- @pulumi.getter(name="ggsDeployments")
2154
- def ggs_deployments(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MigrationGoldenGateServiceDetailsGgsDeploymentArgs']]]]:
2155
- """
2156
- Details about Oracle GoldenGate GGS Deployment.
2157
- """
2158
- return pulumi.get(self, "ggs_deployments")
2159
-
2160
- @ggs_deployments.setter
2161
- def ggs_deployments(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MigrationGoldenGateServiceDetailsGgsDeploymentArgs']]]]):
2162
- pulumi.set(self, "ggs_deployments", value)
2163
-
2164
- @property
2165
- @pulumi.getter
2166
- def settings(self) -> Optional[pulumi.Input['MigrationGoldenGateServiceDetailsSettingsArgs']]:
2167
- """
2168
- (Updatable) Optional settings for GoldenGate Microservices processes
2169
- """
2170
- return pulumi.get(self, "settings")
2171
-
2172
- @settings.setter
2173
- def settings(self, value: Optional[pulumi.Input['MigrationGoldenGateServiceDetailsSettingsArgs']]):
2174
- pulumi.set(self, "settings", value)
2175
-
2176
- @property
2177
- @pulumi.getter(name="sourceContainerDbCredentials")
2178
- def source_container_db_credentials(self) -> Optional[pulumi.Input['MigrationGoldenGateServiceDetailsSourceContainerDbCredentialsArgs']]:
2179
- """
2180
- (Updatable) Database Credentials details.
2181
- """
2182
- return pulumi.get(self, "source_container_db_credentials")
2183
-
2184
- @source_container_db_credentials.setter
2185
- def source_container_db_credentials(self, value: Optional[pulumi.Input['MigrationGoldenGateServiceDetailsSourceContainerDbCredentialsArgs']]):
2186
- pulumi.set(self, "source_container_db_credentials", value)
2187
-
2188
- @property
2189
- @pulumi.getter(name="sourceDbCredentials")
2190
- def source_db_credentials(self) -> Optional[pulumi.Input['MigrationGoldenGateServiceDetailsSourceDbCredentialsArgs']]:
2191
- """
2192
- (Updatable) Database Credentials details.
2193
- """
2194
- return pulumi.get(self, "source_db_credentials")
2195
-
2196
- @source_db_credentials.setter
2197
- def source_db_credentials(self, value: Optional[pulumi.Input['MigrationGoldenGateServiceDetailsSourceDbCredentialsArgs']]):
2198
- pulumi.set(self, "source_db_credentials", value)
2199
-
2200
- @property
2201
- @pulumi.getter(name="targetDbCredentials")
2202
- def target_db_credentials(self) -> Optional[pulumi.Input['MigrationGoldenGateServiceDetailsTargetDbCredentialsArgs']]:
2203
- """
2204
- (Updatable) Database Credentials details.
2205
- """
2206
- return pulumi.get(self, "target_db_credentials")
2207
-
2208
- @target_db_credentials.setter
2209
- def target_db_credentials(self, value: Optional[pulumi.Input['MigrationGoldenGateServiceDetailsTargetDbCredentialsArgs']]):
2210
- pulumi.set(self, "target_db_credentials", value)
2211
-
2212
-
2213
- @pulumi.input_type
2214
- class MigrationGoldenGateServiceDetailsGgsDeploymentArgs:
2215
- def __init__(__self__, *,
2216
- deployment_id: Optional[pulumi.Input[str]] = None,
2217
- ggs_admin_credentials_secret_id: Optional[pulumi.Input[str]] = None):
2218
- """
2219
- :param pulumi.Input[str] deployment_id: OCID of a GoldenGate Deployment
2220
- :param pulumi.Input[str] ggs_admin_credentials_secret_id: OCID of a VaultSecret containing the Admin Credentials for the GGS Deployment
2221
- """
2222
- if deployment_id is not None:
2223
- pulumi.set(__self__, "deployment_id", deployment_id)
2224
- if ggs_admin_credentials_secret_id is not None:
2225
- pulumi.set(__self__, "ggs_admin_credentials_secret_id", ggs_admin_credentials_secret_id)
2226
-
2227
- @property
2228
- @pulumi.getter(name="deploymentId")
2229
- def deployment_id(self) -> Optional[pulumi.Input[str]]:
2230
- """
2231
- OCID of a GoldenGate Deployment
2232
- """
2233
- return pulumi.get(self, "deployment_id")
2234
-
2235
- @deployment_id.setter
2236
- def deployment_id(self, value: Optional[pulumi.Input[str]]):
2237
- pulumi.set(self, "deployment_id", value)
2238
-
2239
- @property
2240
- @pulumi.getter(name="ggsAdminCredentialsSecretId")
2241
- def ggs_admin_credentials_secret_id(self) -> Optional[pulumi.Input[str]]:
2242
- """
2243
- OCID of a VaultSecret containing the Admin Credentials for the GGS Deployment
2244
- """
2245
- return pulumi.get(self, "ggs_admin_credentials_secret_id")
2246
-
2247
- @ggs_admin_credentials_secret_id.setter
2248
- def ggs_admin_credentials_secret_id(self, value: Optional[pulumi.Input[str]]):
2249
- pulumi.set(self, "ggs_admin_credentials_secret_id", value)
2250
-
2251
-
2252
- @pulumi.input_type
2253
- class MigrationGoldenGateServiceDetailsSettingsArgs:
2254
- def __init__(__self__, *,
2255
- acceptable_lag: Optional[pulumi.Input[int]] = None,
2256
- extract: Optional[pulumi.Input['MigrationGoldenGateServiceDetailsSettingsExtractArgs']] = None,
2257
- replicat: Optional[pulumi.Input['MigrationGoldenGateServiceDetailsSettingsReplicatArgs']] = None):
2258
- """
2259
- :param pulumi.Input[int] acceptable_lag: (Updatable) ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
2260
- :param pulumi.Input['MigrationGoldenGateServiceDetailsSettingsExtractArgs'] extract: (Updatable) Parameters for GoldenGate Extract processes.
2261
- :param pulumi.Input['MigrationGoldenGateServiceDetailsSettingsReplicatArgs'] replicat: (Updatable) Parameters for GoldenGate Replicat processes.
2262
- """
2263
- if acceptable_lag is not None:
2264
- pulumi.set(__self__, "acceptable_lag", acceptable_lag)
2265
- if extract is not None:
2266
- pulumi.set(__self__, "extract", extract)
2267
- if replicat is not None:
2268
- pulumi.set(__self__, "replicat", replicat)
2269
-
2270
- @property
2271
- @pulumi.getter(name="acceptableLag")
2272
- def acceptable_lag(self) -> Optional[pulumi.Input[int]]:
2273
- """
2274
- (Updatable) ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
2275
- """
2276
- return pulumi.get(self, "acceptable_lag")
2277
-
2278
- @acceptable_lag.setter
2279
- def acceptable_lag(self, value: Optional[pulumi.Input[int]]):
2280
- pulumi.set(self, "acceptable_lag", value)
2281
-
2282
- @property
2283
- @pulumi.getter
2284
- def extract(self) -> Optional[pulumi.Input['MigrationGoldenGateServiceDetailsSettingsExtractArgs']]:
2285
- """
2286
- (Updatable) Parameters for GoldenGate Extract processes.
2287
- """
2288
- return pulumi.get(self, "extract")
2289
-
2290
- @extract.setter
2291
- def extract(self, value: Optional[pulumi.Input['MigrationGoldenGateServiceDetailsSettingsExtractArgs']]):
2292
- pulumi.set(self, "extract", value)
2293
-
2294
- @property
2295
- @pulumi.getter
2296
- def replicat(self) -> Optional[pulumi.Input['MigrationGoldenGateServiceDetailsSettingsReplicatArgs']]:
2297
- """
2298
- (Updatable) Parameters for GoldenGate Replicat processes.
2299
- """
2300
- return pulumi.get(self, "replicat")
2301
-
2302
- @replicat.setter
2303
- def replicat(self, value: Optional[pulumi.Input['MigrationGoldenGateServiceDetailsSettingsReplicatArgs']]):
2304
- pulumi.set(self, "replicat", value)
2305
-
2306
-
2307
- @pulumi.input_type
2308
- class MigrationGoldenGateServiceDetailsSettingsExtractArgs:
2309
- def __init__(__self__, *,
2310
- long_trans_duration: Optional[pulumi.Input[int]] = None,
2311
- performance_profile: Optional[pulumi.Input[str]] = None):
2312
- """
2313
- :param pulumi.Input[int] long_trans_duration: (Updatable) Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
2314
- :param pulumi.Input[str] performance_profile: (Updatable) Extract performance.
2315
- """
2316
- if long_trans_duration is not None:
2317
- pulumi.set(__self__, "long_trans_duration", long_trans_duration)
2318
- if performance_profile is not None:
2319
- pulumi.set(__self__, "performance_profile", performance_profile)
2320
-
2321
- @property
2322
- @pulumi.getter(name="longTransDuration")
2323
- def long_trans_duration(self) -> Optional[pulumi.Input[int]]:
2324
- """
2325
- (Updatable) Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
2326
- """
2327
- return pulumi.get(self, "long_trans_duration")
2328
-
2329
- @long_trans_duration.setter
2330
- def long_trans_duration(self, value: Optional[pulumi.Input[int]]):
2331
- pulumi.set(self, "long_trans_duration", value)
2332
-
2333
- @property
2334
- @pulumi.getter(name="performanceProfile")
2335
- def performance_profile(self) -> Optional[pulumi.Input[str]]:
2336
- """
2337
- (Updatable) Extract performance.
2338
- """
2339
- return pulumi.get(self, "performance_profile")
2340
-
2341
- @performance_profile.setter
2342
- def performance_profile(self, value: Optional[pulumi.Input[str]]):
2343
- pulumi.set(self, "performance_profile", value)
2344
-
2345
-
2346
- @pulumi.input_type
2347
- class MigrationGoldenGateServiceDetailsSettingsReplicatArgs:
2348
- def __init__(__self__, *,
2349
- map_parallelism: Optional[pulumi.Input[int]] = None,
2350
- max_apply_parallelism: Optional[pulumi.Input[int]] = None,
2351
- min_apply_parallelism: Optional[pulumi.Input[int]] = None):
2352
- """
2353
- :param pulumi.Input[int] map_parallelism: (Updatable) Number of threads used to read trail files (valid for Parallel Replicat)
2354
- :param pulumi.Input[int] max_apply_parallelism: (Updatable) Defines the range in which the Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
2355
- :param pulumi.Input[int] min_apply_parallelism: (Updatable) Defines the range in which the Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
2356
- """
2357
- if map_parallelism is not None:
2358
- pulumi.set(__self__, "map_parallelism", map_parallelism)
2359
- if max_apply_parallelism is not None:
2360
- pulumi.set(__self__, "max_apply_parallelism", max_apply_parallelism)
2361
- if min_apply_parallelism is not None:
2362
- pulumi.set(__self__, "min_apply_parallelism", min_apply_parallelism)
2363
-
2364
- @property
2365
- @pulumi.getter(name="mapParallelism")
2366
- def map_parallelism(self) -> Optional[pulumi.Input[int]]:
2367
- """
2368
- (Updatable) Number of threads used to read trail files (valid for Parallel Replicat)
2369
- """
2370
- return pulumi.get(self, "map_parallelism")
2371
-
2372
- @map_parallelism.setter
2373
- def map_parallelism(self, value: Optional[pulumi.Input[int]]):
2374
- pulumi.set(self, "map_parallelism", value)
2375
-
2376
- @property
2377
- @pulumi.getter(name="maxApplyParallelism")
2378
- def max_apply_parallelism(self) -> Optional[pulumi.Input[int]]:
2379
- """
2380
- (Updatable) Defines the range in which the Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
2381
- """
2382
- return pulumi.get(self, "max_apply_parallelism")
2383
-
2384
- @max_apply_parallelism.setter
2385
- def max_apply_parallelism(self, value: Optional[pulumi.Input[int]]):
2386
- pulumi.set(self, "max_apply_parallelism", value)
2387
-
2388
- @property
2389
- @pulumi.getter(name="minApplyParallelism")
2390
- def min_apply_parallelism(self) -> Optional[pulumi.Input[int]]:
2391
- """
2392
- (Updatable) Defines the range in which the Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
2393
- """
2394
- return pulumi.get(self, "min_apply_parallelism")
2395
-
2396
- @min_apply_parallelism.setter
2397
- def min_apply_parallelism(self, value: Optional[pulumi.Input[int]]):
2398
- pulumi.set(self, "min_apply_parallelism", value)
2399
-
2400
-
2401
- @pulumi.input_type
2402
- class MigrationGoldenGateServiceDetailsSourceContainerDbCredentialsArgs:
2403
- def __init__(__self__, *,
2404
- password: pulumi.Input[str],
2405
- username: pulumi.Input[str]):
2406
- """
2407
- :param pulumi.Input[str] password: (Updatable) Database password
2408
- :param pulumi.Input[str] username: (Updatable) Database username
2409
- """
2410
- pulumi.set(__self__, "password", password)
2411
- pulumi.set(__self__, "username", username)
2412
-
2413
- @property
2414
- @pulumi.getter
2415
- def password(self) -> pulumi.Input[str]:
2416
- """
2417
- (Updatable) Database password
2418
- """
2419
- return pulumi.get(self, "password")
2420
-
2421
- @password.setter
2422
- def password(self, value: pulumi.Input[str]):
2423
- pulumi.set(self, "password", value)
2424
-
2425
- @property
2426
- @pulumi.getter
2427
- def username(self) -> pulumi.Input[str]:
2428
- """
2429
- (Updatable) Database username
2430
- """
2431
- return pulumi.get(self, "username")
2432
-
2433
- @username.setter
2434
- def username(self, value: pulumi.Input[str]):
2435
- pulumi.set(self, "username", value)
2436
-
2437
-
2438
- @pulumi.input_type
2439
- class MigrationGoldenGateServiceDetailsSourceDbCredentialsArgs:
2440
- def __init__(__self__, *,
2441
- password: pulumi.Input[str],
2442
- username: pulumi.Input[str]):
2443
- """
2444
- :param pulumi.Input[str] password: (Updatable) Database password
2445
- :param pulumi.Input[str] username: (Updatable) Database username
2446
- """
2447
- pulumi.set(__self__, "password", password)
2448
- pulumi.set(__self__, "username", username)
2449
-
2450
- @property
2451
- @pulumi.getter
2452
- def password(self) -> pulumi.Input[str]:
2453
- """
2454
- (Updatable) Database password
2455
- """
2456
- return pulumi.get(self, "password")
2457
-
2458
- @password.setter
2459
- def password(self, value: pulumi.Input[str]):
2460
- pulumi.set(self, "password", value)
2461
-
2462
- @property
2463
- @pulumi.getter
2464
- def username(self) -> pulumi.Input[str]:
2465
- """
2466
- (Updatable) Database username
2467
- """
2468
- return pulumi.get(self, "username")
2469
-
2470
- @username.setter
2471
- def username(self, value: pulumi.Input[str]):
2472
- pulumi.set(self, "username", value)
2473
-
2474
-
2475
- @pulumi.input_type
2476
- class MigrationGoldenGateServiceDetailsTargetDbCredentialsArgs:
2477
- def __init__(__self__, *,
2478
- password: pulumi.Input[str],
2479
- username: pulumi.Input[str]):
2480
- """
2481
- :param pulumi.Input[str] password: (Updatable) Database password
2482
- :param pulumi.Input[str] username: (Updatable) Database username
2483
- """
2484
- pulumi.set(__self__, "password", password)
2485
- pulumi.set(__self__, "username", username)
2486
-
2487
- @property
2488
- @pulumi.getter
2489
- def password(self) -> pulumi.Input[str]:
2490
- """
2491
- (Updatable) Database password
2492
- """
2493
- return pulumi.get(self, "password")
2494
-
2495
- @password.setter
2496
- def password(self, value: pulumi.Input[str]):
2497
- pulumi.set(self, "password", value)
2498
-
2499
- @property
2500
- @pulumi.getter
2501
- def username(self) -> pulumi.Input[str]:
2502
- """
2503
- (Updatable) Database username
2504
- """
2505
- return pulumi.get(self, "username")
2506
-
2507
- @username.setter
2508
- def username(self, value: pulumi.Input[str]):
2509
- pulumi.set(self, "username", value)
2510
-
2511
-
2512
- @pulumi.input_type
2513
- class MigrationIncludeObjectArgs:
2514
- def __init__(__self__, *,
2515
- object: pulumi.Input[str],
2516
- owner: pulumi.Input[str],
2517
- is_omit_excluded_table_from_replication: Optional[pulumi.Input[bool]] = None,
2518
- type: Optional[pulumi.Input[str]] = None):
2519
- """
2520
- :param pulumi.Input[str] object: (Updatable) Name of the object (regular expression is allowed)
2521
- :param pulumi.Input[str] owner: (Updatable) Owner of the object (regular expression is allowed)
2522
- :param pulumi.Input[bool] is_omit_excluded_table_from_replication: (Updatable) Whether an excluded table should be omitted from replication. Only valid for database objects that have are of type TABLE and that are included in the exludeObjects.
2523
- :param pulumi.Input[str] type: (Updatable) Type of object to exclude. If not specified, matching owners and object names of type TABLE would be excluded.
2524
- """
2525
- pulumi.set(__self__, "object", object)
2526
- pulumi.set(__self__, "owner", owner)
2527
- if is_omit_excluded_table_from_replication is not None:
2528
- pulumi.set(__self__, "is_omit_excluded_table_from_replication", is_omit_excluded_table_from_replication)
2529
- if type is not None:
2530
- pulumi.set(__self__, "type", type)
2531
-
2532
- @property
2533
- @pulumi.getter
2534
- def object(self) -> pulumi.Input[str]:
2535
- """
2536
- (Updatable) Name of the object (regular expression is allowed)
2537
- """
2538
- return pulumi.get(self, "object")
2539
-
2540
- @object.setter
2541
- def object(self, value: pulumi.Input[str]):
2542
- pulumi.set(self, "object", value)
2543
-
2544
- @property
2545
- @pulumi.getter
2546
- def owner(self) -> pulumi.Input[str]:
2547
- """
2548
- (Updatable) Owner of the object (regular expression is allowed)
2549
- """
2550
- return pulumi.get(self, "owner")
2551
-
2552
- @owner.setter
2553
- def owner(self, value: pulumi.Input[str]):
2554
- pulumi.set(self, "owner", value)
2555
-
2556
- @property
2557
- @pulumi.getter(name="isOmitExcludedTableFromReplication")
2558
- def is_omit_excluded_table_from_replication(self) -> Optional[pulumi.Input[bool]]:
2559
- """
2560
- (Updatable) Whether an excluded table should be omitted from replication. Only valid for database objects that have are of type TABLE and that are included in the exludeObjects.
2561
- """
2562
- return pulumi.get(self, "is_omit_excluded_table_from_replication")
2563
-
2564
- @is_omit_excluded_table_from_replication.setter
2565
- def is_omit_excluded_table_from_replication(self, value: Optional[pulumi.Input[bool]]):
2566
- pulumi.set(self, "is_omit_excluded_table_from_replication", value)
2567
-
2568
- @property
2569
- @pulumi.getter
2570
- def type(self) -> Optional[pulumi.Input[str]]:
2571
- """
2572
- (Updatable) Type of object to exclude. If not specified, matching owners and object names of type TABLE would be excluded.
2573
- """
2574
- return pulumi.get(self, "type")
2575
-
2576
- @type.setter
2577
- def type(self, value: Optional[pulumi.Input[str]]):
2578
- pulumi.set(self, "type", value)
2579
-
2580
-
2581
- @pulumi.input_type
2582
- class MigrationVaultDetailsArgs:
2583
- def __init__(__self__, *,
2584
- compartment_id: pulumi.Input[str],
2585
- key_id: pulumi.Input[str],
2586
- vault_id: pulumi.Input[str]):
2587
- """
2588
- :param pulumi.Input[str] compartment_id: (Updatable) OCID of the compartment where the secret containing the credentials will be created.
2589
- :param pulumi.Input[str] key_id: (Updatable) OCID of the vault encryption key
2590
- :param pulumi.Input[str] vault_id: (Updatable) OCID of the vault
2591
-
2592
-
2593
- ** IMPORTANT **
2594
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
2595
- """
2596
- pulumi.set(__self__, "compartment_id", compartment_id)
2597
- pulumi.set(__self__, "key_id", key_id)
2598
- pulumi.set(__self__, "vault_id", vault_id)
2599
-
2600
- @property
2601
- @pulumi.getter(name="compartmentId")
2602
- def compartment_id(self) -> pulumi.Input[str]:
2603
- """
2604
- (Updatable) OCID of the compartment where the secret containing the credentials will be created.
2605
- """
2606
- return pulumi.get(self, "compartment_id")
2607
-
2608
- @compartment_id.setter
2609
- def compartment_id(self, value: pulumi.Input[str]):
2610
- pulumi.set(self, "compartment_id", value)
2611
-
2612
- @property
2613
- @pulumi.getter(name="keyId")
2614
- def key_id(self) -> pulumi.Input[str]:
2615
- """
2616
- (Updatable) OCID of the vault encryption key
2617
- """
2618
- return pulumi.get(self, "key_id")
2619
-
2620
- @key_id.setter
2621
- def key_id(self, value: pulumi.Input[str]):
2622
- pulumi.set(self, "key_id", value)
2623
-
2624
- @property
2625
- @pulumi.getter(name="vaultId")
2626
- def vault_id(self) -> pulumi.Input[str]:
2627
- """
2628
- (Updatable) OCID of the vault
2629
-
2630
-
2631
- ** IMPORTANT **
2632
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
2633
- """
2634
- return pulumi.get(self, "vault_id")
2635
-
2636
- @vault_id.setter
2637
- def vault_id(self, value: pulumi.Input[str]):
2638
- pulumi.set(self, "vault_id", value)
2639
-
2640
-
2641
- @pulumi.input_type
2642
- class GetConnectionsFilterArgs:
2643
- def __init__(__self__, *,
2644
- name: str,
2645
- values: Sequence[str],
2646
- regex: Optional[bool] = None):
2647
- pulumi.set(__self__, "name", name)
2648
- pulumi.set(__self__, "values", values)
2649
- if regex is not None:
2650
- pulumi.set(__self__, "regex", regex)
2651
-
2652
- @property
2653
- @pulumi.getter
2654
- def name(self) -> str:
2655
- return pulumi.get(self, "name")
2656
-
2657
- @name.setter
2658
- def name(self, value: str):
2659
- pulumi.set(self, "name", value)
2660
-
2661
- @property
2662
- @pulumi.getter
2663
- def values(self) -> Sequence[str]:
2664
- return pulumi.get(self, "values")
2665
-
2666
- @values.setter
2667
- def values(self, value: Sequence[str]):
2668
- pulumi.set(self, "values", value)
2669
-
2670
- @property
2671
- @pulumi.getter
2672
- def regex(self) -> Optional[bool]:
2673
- return pulumi.get(self, "regex")
2674
-
2675
- @regex.setter
2676
- def regex(self, value: Optional[bool]):
2677
- pulumi.set(self, "regex", value)
2678
-
2679
-
2680
- @pulumi.input_type
2681
- class GetMigrationObjectTypesFilterArgs:
2682
- def __init__(__self__, *,
2683
- name: str,
2684
- values: Sequence[str],
2685
- regex: Optional[bool] = None):
2686
- """
2687
- :param str name: Object type name
2688
- """
2689
- pulumi.set(__self__, "name", name)
2690
- pulumi.set(__self__, "values", values)
2691
- if regex is not None:
2692
- pulumi.set(__self__, "regex", regex)
2693
-
2694
- @property
2695
- @pulumi.getter
2696
- def name(self) -> str:
392
+ def name(self) -> str:
2697
393
  """
2698
394
  Object type name
2699
395
  """
@@ -2722,48 +418,3 @@ class GetMigrationObjectTypesFilterArgs:
2722
418
  pulumi.set(self, "regex", value)
2723
419
 
2724
420
 
2725
- @pulumi.input_type
2726
- class GetMigrationsFilterArgs:
2727
- def __init__(__self__, *,
2728
- name: str,
2729
- values: Sequence[str],
2730
- regex: Optional[bool] = None):
2731
- """
2732
- :param str name: Name of directory object in database
2733
- """
2734
- pulumi.set(__self__, "name", name)
2735
- pulumi.set(__self__, "values", values)
2736
- if regex is not None:
2737
- pulumi.set(__self__, "regex", regex)
2738
-
2739
- @property
2740
- @pulumi.getter
2741
- def name(self) -> str:
2742
- """
2743
- Name of directory object in database
2744
- """
2745
- return pulumi.get(self, "name")
2746
-
2747
- @name.setter
2748
- def name(self, value: str):
2749
- pulumi.set(self, "name", value)
2750
-
2751
- @property
2752
- @pulumi.getter
2753
- def values(self) -> Sequence[str]:
2754
- return pulumi.get(self, "values")
2755
-
2756
- @values.setter
2757
- def values(self, value: Sequence[str]):
2758
- pulumi.set(self, "values", value)
2759
-
2760
- @property
2761
- @pulumi.getter
2762
- def regex(self) -> Optional[bool]:
2763
- return pulumi.get(self, "regex")
2764
-
2765
- @regex.setter
2766
- def regex(self, value: Optional[bool]):
2767
- pulumi.set(self, "regex", value)
2768
-
2769
-