@pulumi/oci 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apmsynthetics/config.d.ts +20 -9
- package/apmsynthetics/config.js +11 -0
- package/apmsynthetics/config.js.map +1 -1
- package/apmsynthetics/getMonitor.d.ts +5 -5
- package/apmsynthetics/getMonitors.d.ts +1 -1
- package/containerengine/clusterWorkloadMapping.d.ts +176 -0
- package/containerengine/clusterWorkloadMapping.js +104 -0
- package/containerengine/clusterWorkloadMapping.js.map +1 -0
- package/containerengine/getClusterWorkloadMapping.d.ts +109 -0
- package/containerengine/getClusterWorkloadMapping.js +54 -0
- package/containerengine/getClusterWorkloadMapping.js.map +1 -0
- package/containerengine/getClusterWorkloadMappings.d.ts +75 -0
- package/containerengine/getClusterWorkloadMappings.js +52 -0
- package/containerengine/getClusterWorkloadMappings.js.map +1 -0
- package/containerengine/index.d.ts +9 -0
- package/containerengine/index.js +12 -1
- package/containerengine/index.js.map +1 -1
- package/core/bootVolumeBackup.d.ts +5 -0
- package/core/bootVolumeBackup.js +2 -1
- package/core/bootVolumeBackup.js.map +1 -1
- package/core/volumeBackup.d.ts +5 -0
- package/core/volumeBackup.js +2 -1
- package/core/volumeBackup.js.map +1 -1
- package/database/autonomousDatabase.d.ts +3 -3
- package/database/cloudAutonomousVmCluster.d.ts +1 -1
- package/database/dbHome.d.ts +3 -3
- package/database/exadataInfrastructure.d.ts +12 -3
- package/database/exadataInfrastructure.js +3 -0
- package/database/exadataInfrastructure.js.map +1 -1
- package/database/getExadataInfrastructure.d.ts +5 -1
- package/database/getExadataInfrastructure.js.map +1 -1
- package/database/getOneoffPatch.d.ts +124 -0
- package/database/getOneoffPatch.js +51 -0
- package/database/getOneoffPatch.js.map +1 -0
- package/database/getOneoffPatches.d.ts +103 -0
- package/database/getOneoffPatches.js +58 -0
- package/database/getOneoffPatches.js.map +1 -0
- package/database/getVmClusterNetwork.d.ts +4 -0
- package/database/getVmClusterNetwork.js.map +1 -1
- package/database/getVmClusterRecommendedNetwork.d.ts +13 -0
- package/database/getVmClusterRecommendedNetwork.js +1 -0
- package/database/getVmClusterRecommendedNetwork.js.map +1 -1
- package/database/index.d.ts +9 -0
- package/database/index.js +13 -2
- package/database/index.js.map +1 -1
- package/database/oneoffPatch.d.ts +244 -0
- package/database/oneoffPatch.js +121 -0
- package/database/oneoffPatch.js.map +1 -0
- package/database/vmClusterNetwork.d.ts +17 -0
- package/database/vmClusterNetwork.js +7 -0
- package/database/vmClusterNetwork.js.map +1 -1
- package/databasemigration/migration.d.ts +2 -0
- package/databasemigration/migration.js +2 -0
- package/databasemigration/migration.js.map +1 -1
- package/ospgateway/addressActionVerification.d.ts +461 -0
- package/ospgateway/addressActionVerification.js +166 -0
- package/ospgateway/addressActionVerification.js.map +1 -0
- package/ospgateway/getAddress.d.ts +189 -0
- package/ospgateway/getAddress.js +57 -0
- package/ospgateway/getAddress.js.map +1 -0
- package/ospgateway/getAddressRule.d.ts +101 -0
- package/ospgateway/getAddressRule.js +57 -0
- package/ospgateway/getAddressRule.js.map +1 -0
- package/ospgateway/getSubscription.d.ts +9 -1
- package/ospgateway/getSubscription.js.map +1 -1
- package/ospgateway/index.d.ts +9 -0
- package/ospgateway/index.js +12 -1
- package/ospgateway/index.js.map +1 -1
- package/ospgateway/subscription.d.ts +18 -2
- package/ospgateway/subscription.js +4 -0
- package/ospgateway/subscription.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +337 -15
- package/types/output.d.ts +1126 -119
package/types/output.d.ts
CHANGED
|
@@ -10988,24 +10988,32 @@ export declare namespace ApmSynthetics {
|
|
|
10988
10988
|
minAllowedRunsPerInterval: number;
|
|
10989
10989
|
}
|
|
10990
10990
|
interface ConfigConfiguration {
|
|
10991
|
+
/**
|
|
10992
|
+
* (Updatable) Details for client certificate.
|
|
10993
|
+
*/
|
|
10994
|
+
clientCertificateDetails: outputs.ApmSynthetics.ConfigConfigurationClientCertificateDetails;
|
|
10991
10995
|
/**
|
|
10992
10996
|
* (Updatable) Type of configuration.
|
|
10993
10997
|
*/
|
|
10994
10998
|
configType: string;
|
|
10995
10999
|
/**
|
|
10996
|
-
* (Updatable)
|
|
11000
|
+
* (Updatable) Information about the DNS settings.
|
|
10997
11001
|
*/
|
|
10998
11002
|
dnsConfiguration: outputs.ApmSynthetics.ConfigConfigurationDnsConfiguration;
|
|
10999
11003
|
/**
|
|
11000
11004
|
* (Updatable) If certificate validation is enabled, then the call will fail in case of certification errors.
|
|
11001
11005
|
*/
|
|
11002
11006
|
isCertificateValidationEnabled: boolean;
|
|
11007
|
+
/**
|
|
11008
|
+
* (Updatable) If disabled then auto snapshots are not collected.
|
|
11009
|
+
*/
|
|
11010
|
+
isDefaultSnapshotEnabled: boolean;
|
|
11003
11011
|
/**
|
|
11004
11012
|
* (Updatable) If isFailureRetried is enabled, then a failed call will be retried.
|
|
11005
11013
|
*/
|
|
11006
11014
|
isFailureRetried: boolean;
|
|
11007
11015
|
/**
|
|
11008
|
-
* (Updatable) If redirection enabled, then redirects will be allowed while accessing target URL.
|
|
11016
|
+
* (Updatable) If redirection is enabled, then redirects will be allowed while accessing target URL.
|
|
11009
11017
|
*/
|
|
11010
11018
|
isRedirectionEnabled: boolean;
|
|
11011
11019
|
/**
|
|
@@ -11017,7 +11025,7 @@ export declare namespace ApmSynthetics {
|
|
|
11017
11025
|
*/
|
|
11018
11026
|
reqAuthenticationDetails: outputs.ApmSynthetics.ConfigConfigurationReqAuthenticationDetails;
|
|
11019
11027
|
/**
|
|
11020
|
-
* (Updatable) Request
|
|
11028
|
+
* (Updatable) Request HTTP authentication scheme.
|
|
11021
11029
|
*/
|
|
11022
11030
|
reqAuthenticationScheme: string;
|
|
11023
11031
|
/**
|
|
@@ -11049,13 +11057,43 @@ export declare namespace ApmSynthetics {
|
|
|
11049
11057
|
*/
|
|
11050
11058
|
verifyTexts: outputs.ApmSynthetics.ConfigConfigurationVerifyText[];
|
|
11051
11059
|
}
|
|
11060
|
+
interface ConfigConfigurationClientCertificateDetails {
|
|
11061
|
+
/**
|
|
11062
|
+
* (Updatable) Client certificate in pem format.
|
|
11063
|
+
*/
|
|
11064
|
+
clientCertificate: outputs.ApmSynthetics.ConfigConfigurationClientCertificateDetailsClientCertificate;
|
|
11065
|
+
/**
|
|
11066
|
+
* (Updatable) The private key associated with the client certificate in pem format.
|
|
11067
|
+
*/
|
|
11068
|
+
privateKey: outputs.ApmSynthetics.ConfigConfigurationClientCertificateDetailsPrivateKey;
|
|
11069
|
+
}
|
|
11070
|
+
interface ConfigConfigurationClientCertificateDetailsClientCertificate {
|
|
11071
|
+
/**
|
|
11072
|
+
* (Updatable) Content of the private key file.
|
|
11073
|
+
*/
|
|
11074
|
+
content: string;
|
|
11075
|
+
/**
|
|
11076
|
+
* (Updatable) Name of the private key file.
|
|
11077
|
+
*/
|
|
11078
|
+
fileName: string;
|
|
11079
|
+
}
|
|
11080
|
+
interface ConfigConfigurationClientCertificateDetailsPrivateKey {
|
|
11081
|
+
/**
|
|
11082
|
+
* (Updatable) Content of the private key file.
|
|
11083
|
+
*/
|
|
11084
|
+
content: string;
|
|
11085
|
+
/**
|
|
11086
|
+
* (Updatable) Name of the private key file.
|
|
11087
|
+
*/
|
|
11088
|
+
fileName: string;
|
|
11089
|
+
}
|
|
11052
11090
|
interface ConfigConfigurationDnsConfiguration {
|
|
11053
11091
|
/**
|
|
11054
|
-
* (Updatable) If isOverrideDns is true, then
|
|
11092
|
+
* (Updatable) If isOverrideDns is true, then DNS settings will be overridden.
|
|
11055
11093
|
*/
|
|
11056
11094
|
isOverrideDns: boolean;
|
|
11057
11095
|
/**
|
|
11058
|
-
* (Updatable)
|
|
11096
|
+
* (Updatable) Attribute to override the DNS IP value. This value will be honored only if isOverrideDns is set to true.
|
|
11059
11097
|
*/
|
|
11060
11098
|
overrideDnsIp: string;
|
|
11061
11099
|
}
|
|
@@ -11099,11 +11137,11 @@ export declare namespace ApmSynthetics {
|
|
|
11099
11137
|
*/
|
|
11100
11138
|
authToken: string;
|
|
11101
11139
|
/**
|
|
11102
|
-
* (Updatable) URL to get
|
|
11140
|
+
* (Updatable) URL to get authentication token.
|
|
11103
11141
|
*/
|
|
11104
11142
|
authUrl: string;
|
|
11105
11143
|
/**
|
|
11106
|
-
* (Updatable)
|
|
11144
|
+
* (Updatable) User name for authentication.
|
|
11107
11145
|
*/
|
|
11108
11146
|
authUserName: string;
|
|
11109
11147
|
/**
|
|
@@ -11111,7 +11149,7 @@ export declare namespace ApmSynthetics {
|
|
|
11111
11149
|
*/
|
|
11112
11150
|
authUserPassword: string;
|
|
11113
11151
|
/**
|
|
11114
|
-
* (Updatable) Request
|
|
11152
|
+
* (Updatable) Request HTTP OAuth scheme.
|
|
11115
11153
|
*/
|
|
11116
11154
|
oauthScheme: string;
|
|
11117
11155
|
}
|
|
@@ -11153,11 +11191,11 @@ export declare namespace ApmSynthetics {
|
|
|
11153
11191
|
}
|
|
11154
11192
|
interface ConfigMaintenanceWindowSchedule {
|
|
11155
11193
|
/**
|
|
11156
|
-
* (Updatable) End time
|
|
11194
|
+
* (Updatable) End time of the maintenance window, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-12T22:47:12.613Z`
|
|
11157
11195
|
*/
|
|
11158
11196
|
timeEnded: string;
|
|
11159
11197
|
/**
|
|
11160
|
-
* (Updatable) Start time
|
|
11198
|
+
* (Updatable) Start time of the maintenance window, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-12T22:47:12.613Z`
|
|
11161
11199
|
*/
|
|
11162
11200
|
timeStarted: string;
|
|
11163
11201
|
}
|
|
@@ -11378,33 +11416,41 @@ export declare namespace ApmSynthetics {
|
|
|
11378
11416
|
}
|
|
11379
11417
|
interface GetMonitorAvailabilityConfiguration {
|
|
11380
11418
|
/**
|
|
11381
|
-
*
|
|
11419
|
+
* Maximum number of failed runs allowed in an interval. If an interval has more failed runs than the specified value, then the interval will be classified as UNAVAILABLE.
|
|
11382
11420
|
*/
|
|
11383
11421
|
maxAllowedFailuresPerInterval: number;
|
|
11384
11422
|
/**
|
|
11385
|
-
*
|
|
11423
|
+
* Minimum number of runs allowed in an interval. If an interval has fewer runs than the specified value, then the interval will be classified as UNKNOWN and will be excluded from the availability calculations.
|
|
11386
11424
|
*/
|
|
11387
11425
|
minAllowedRunsPerInterval: number;
|
|
11388
11426
|
}
|
|
11389
11427
|
interface GetMonitorConfiguration {
|
|
11428
|
+
/**
|
|
11429
|
+
* Details for client certificate.
|
|
11430
|
+
*/
|
|
11431
|
+
clientCertificateDetails: outputs.ApmSynthetics.GetMonitorConfigurationClientCertificateDetail[];
|
|
11390
11432
|
/**
|
|
11391
11433
|
* Type of configuration.
|
|
11392
11434
|
*/
|
|
11393
11435
|
configType: string;
|
|
11394
11436
|
/**
|
|
11395
|
-
*
|
|
11437
|
+
* Information about the DNS settings.
|
|
11396
11438
|
*/
|
|
11397
11439
|
dnsConfigurations: outputs.ApmSynthetics.GetMonitorConfigurationDnsConfiguration[];
|
|
11398
11440
|
/**
|
|
11399
11441
|
* If certificate validation is enabled, then the call will fail in case of certification errors.
|
|
11400
11442
|
*/
|
|
11401
11443
|
isCertificateValidationEnabled: boolean;
|
|
11444
|
+
/**
|
|
11445
|
+
* If disabled then auto snapshots are not collected.
|
|
11446
|
+
*/
|
|
11447
|
+
isDefaultSnapshotEnabled: boolean;
|
|
11402
11448
|
/**
|
|
11403
11449
|
* If isFailureRetried is enabled, then a failed call will be retried.
|
|
11404
11450
|
*/
|
|
11405
11451
|
isFailureRetried: boolean;
|
|
11406
11452
|
/**
|
|
11407
|
-
* If redirection enabled, then redirects will be allowed while accessing target URL.
|
|
11453
|
+
* If redirection is enabled, then redirects will be allowed while accessing target URL.
|
|
11408
11454
|
*/
|
|
11409
11455
|
isRedirectionEnabled: boolean;
|
|
11410
11456
|
/**
|
|
@@ -11416,7 +11462,7 @@ export declare namespace ApmSynthetics {
|
|
|
11416
11462
|
*/
|
|
11417
11463
|
reqAuthenticationDetails: outputs.ApmSynthetics.GetMonitorConfigurationReqAuthenticationDetail[];
|
|
11418
11464
|
/**
|
|
11419
|
-
* Request
|
|
11465
|
+
* Request HTTP authentication scheme.
|
|
11420
11466
|
*/
|
|
11421
11467
|
reqAuthenticationScheme: string;
|
|
11422
11468
|
/**
|
|
@@ -11448,13 +11494,43 @@ export declare namespace ApmSynthetics {
|
|
|
11448
11494
|
*/
|
|
11449
11495
|
verifyTexts: outputs.ApmSynthetics.GetMonitorConfigurationVerifyText[];
|
|
11450
11496
|
}
|
|
11497
|
+
interface GetMonitorConfigurationClientCertificateDetail {
|
|
11498
|
+
/**
|
|
11499
|
+
* Client certificate in pem format.
|
|
11500
|
+
*/
|
|
11501
|
+
clientCertificates: outputs.ApmSynthetics.GetMonitorConfigurationClientCertificateDetailClientCertificate[];
|
|
11502
|
+
/**
|
|
11503
|
+
* The private key associated with the client certificate in pem format.
|
|
11504
|
+
*/
|
|
11505
|
+
privateKeys: outputs.ApmSynthetics.GetMonitorConfigurationClientCertificateDetailPrivateKey[];
|
|
11506
|
+
}
|
|
11507
|
+
interface GetMonitorConfigurationClientCertificateDetailClientCertificate {
|
|
11508
|
+
/**
|
|
11509
|
+
* Content of the private key file.
|
|
11510
|
+
*/
|
|
11511
|
+
content: string;
|
|
11512
|
+
/**
|
|
11513
|
+
* Name of the private key file.
|
|
11514
|
+
*/
|
|
11515
|
+
fileName: string;
|
|
11516
|
+
}
|
|
11517
|
+
interface GetMonitorConfigurationClientCertificateDetailPrivateKey {
|
|
11518
|
+
/**
|
|
11519
|
+
* Content of the private key file.
|
|
11520
|
+
*/
|
|
11521
|
+
content: string;
|
|
11522
|
+
/**
|
|
11523
|
+
* Name of the private key file.
|
|
11524
|
+
*/
|
|
11525
|
+
fileName: string;
|
|
11526
|
+
}
|
|
11451
11527
|
interface GetMonitorConfigurationDnsConfiguration {
|
|
11452
11528
|
/**
|
|
11453
|
-
* If isOverrideDns is true, then
|
|
11529
|
+
* If isOverrideDns is true, then DNS settings will be overridden.
|
|
11454
11530
|
*/
|
|
11455
11531
|
isOverrideDns: boolean;
|
|
11456
11532
|
/**
|
|
11457
|
-
*
|
|
11533
|
+
* Attribute to override the DNS IP value. This value will be honored only if isOverrideDns is set to true.
|
|
11458
11534
|
*/
|
|
11459
11535
|
overrideDnsIp: string;
|
|
11460
11536
|
}
|
|
@@ -11498,11 +11574,11 @@ export declare namespace ApmSynthetics {
|
|
|
11498
11574
|
*/
|
|
11499
11575
|
authToken: string;
|
|
11500
11576
|
/**
|
|
11501
|
-
* URL to get
|
|
11577
|
+
* URL to get authentication token.
|
|
11502
11578
|
*/
|
|
11503
11579
|
authUrl: string;
|
|
11504
11580
|
/**
|
|
11505
|
-
*
|
|
11581
|
+
* User name for authentication.
|
|
11506
11582
|
*/
|
|
11507
11583
|
authUserName: string;
|
|
11508
11584
|
/**
|
|
@@ -11510,7 +11586,7 @@ export declare namespace ApmSynthetics {
|
|
|
11510
11586
|
*/
|
|
11511
11587
|
authUserPassword: string;
|
|
11512
11588
|
/**
|
|
11513
|
-
* Request
|
|
11589
|
+
* Request HTTP OAuth scheme.
|
|
11514
11590
|
*/
|
|
11515
11591
|
oauthScheme: string;
|
|
11516
11592
|
}
|
|
@@ -11552,11 +11628,11 @@ export declare namespace ApmSynthetics {
|
|
|
11552
11628
|
}
|
|
11553
11629
|
interface GetMonitorMaintenanceWindowSchedule {
|
|
11554
11630
|
/**
|
|
11555
|
-
* End time
|
|
11631
|
+
* End time of the maintenance window, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-12T22:47:12.613Z`
|
|
11556
11632
|
*/
|
|
11557
11633
|
timeEnded: string;
|
|
11558
11634
|
/**
|
|
11559
|
-
* Start time
|
|
11635
|
+
* Start time of the maintenance window, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-12T22:47:12.613Z`
|
|
11560
11636
|
*/
|
|
11561
11637
|
timeStarted: string;
|
|
11562
11638
|
}
|
|
@@ -11623,7 +11699,7 @@ export declare namespace ApmSynthetics {
|
|
|
11623
11699
|
*/
|
|
11624
11700
|
availabilityConfigurations: outputs.ApmSynthetics.GetMonitorsMonitorCollectionItemAvailabilityConfiguration[];
|
|
11625
11701
|
/**
|
|
11626
|
-
* Time interval between
|
|
11702
|
+
* Time interval between two runs in round robin batch mode (SchedulingPolicy - BATCHED_ROUND_ROBIN).
|
|
11627
11703
|
*/
|
|
11628
11704
|
batchIntervalInSeconds: number;
|
|
11629
11705
|
/**
|
|
@@ -11651,7 +11727,7 @@ export declare namespace ApmSynthetics {
|
|
|
11651
11727
|
*/
|
|
11652
11728
|
id: string;
|
|
11653
11729
|
/**
|
|
11654
|
-
* If isRunNow is enabled, then the monitor will run
|
|
11730
|
+
* If isRunNow is enabled, then the monitor will run immediately.
|
|
11655
11731
|
*/
|
|
11656
11732
|
isRunNow: boolean;
|
|
11657
11733
|
/**
|
|
@@ -11659,7 +11735,7 @@ export declare namespace ApmSynthetics {
|
|
|
11659
11735
|
*/
|
|
11660
11736
|
isRunOnce: boolean;
|
|
11661
11737
|
/**
|
|
11662
|
-
* Details
|
|
11738
|
+
* Details required to schedule maintenance window.
|
|
11663
11739
|
*/
|
|
11664
11740
|
maintenanceWindowSchedules: outputs.ApmSynthetics.GetMonitorsMonitorCollectionItemMaintenanceWindowSchedule[];
|
|
11665
11741
|
/**
|
|
@@ -11671,7 +11747,7 @@ export declare namespace ApmSynthetics {
|
|
|
11671
11747
|
*/
|
|
11672
11748
|
repeatIntervalInSeconds: number;
|
|
11673
11749
|
/**
|
|
11674
|
-
* Scheduling policy on
|
|
11750
|
+
* Scheduling policy to decide the distribution of monitor executions on vantage points.
|
|
11675
11751
|
*/
|
|
11676
11752
|
schedulingPolicy: string;
|
|
11677
11753
|
/**
|
|
@@ -11717,33 +11793,41 @@ export declare namespace ApmSynthetics {
|
|
|
11717
11793
|
}
|
|
11718
11794
|
interface GetMonitorsMonitorCollectionItemAvailabilityConfiguration {
|
|
11719
11795
|
/**
|
|
11720
|
-
*
|
|
11796
|
+
* Maximum number of failed runs allowed in an interval. If an interval has more failed runs than the specified value, then the interval will be classified as UNAVAILABLE.
|
|
11721
11797
|
*/
|
|
11722
11798
|
maxAllowedFailuresPerInterval: number;
|
|
11723
11799
|
/**
|
|
11724
|
-
*
|
|
11800
|
+
* Minimum number of runs allowed in an interval. If an interval has fewer runs than the specified value, then the interval will be classified as UNKNOWN and will be excluded from the availability calculations.
|
|
11725
11801
|
*/
|
|
11726
11802
|
minAllowedRunsPerInterval: number;
|
|
11727
11803
|
}
|
|
11728
11804
|
interface GetMonitorsMonitorCollectionItemConfiguration {
|
|
11805
|
+
/**
|
|
11806
|
+
* Details for client certificate.
|
|
11807
|
+
*/
|
|
11808
|
+
clientCertificateDetails: outputs.ApmSynthetics.GetMonitorsMonitorCollectionItemConfigurationClientCertificateDetail[];
|
|
11729
11809
|
/**
|
|
11730
11810
|
* Type of configuration.
|
|
11731
11811
|
*/
|
|
11732
11812
|
configType: string;
|
|
11733
11813
|
/**
|
|
11734
|
-
*
|
|
11814
|
+
* Information about the DNS settings.
|
|
11735
11815
|
*/
|
|
11736
11816
|
dnsConfigurations: outputs.ApmSynthetics.GetMonitorsMonitorCollectionItemConfigurationDnsConfiguration[];
|
|
11737
11817
|
/**
|
|
11738
11818
|
* If certificate validation is enabled, then the call will fail in case of certification errors.
|
|
11739
11819
|
*/
|
|
11740
11820
|
isCertificateValidationEnabled: boolean;
|
|
11821
|
+
/**
|
|
11822
|
+
* If disabled then auto snapshots are not collected.
|
|
11823
|
+
*/
|
|
11824
|
+
isDefaultSnapshotEnabled: boolean;
|
|
11741
11825
|
/**
|
|
11742
11826
|
* If isFailureRetried is enabled, then a failed call will be retried.
|
|
11743
11827
|
*/
|
|
11744
11828
|
isFailureRetried: boolean;
|
|
11745
11829
|
/**
|
|
11746
|
-
* If redirection enabled, then redirects will be allowed while accessing target URL.
|
|
11830
|
+
* If redirection is enabled, then redirects will be allowed while accessing target URL.
|
|
11747
11831
|
*/
|
|
11748
11832
|
isRedirectionEnabled: boolean;
|
|
11749
11833
|
/**
|
|
@@ -11755,7 +11839,7 @@ export declare namespace ApmSynthetics {
|
|
|
11755
11839
|
*/
|
|
11756
11840
|
reqAuthenticationDetails: outputs.ApmSynthetics.GetMonitorsMonitorCollectionItemConfigurationReqAuthenticationDetail[];
|
|
11757
11841
|
/**
|
|
11758
|
-
* Request
|
|
11842
|
+
* Request HTTP authentication scheme.
|
|
11759
11843
|
*/
|
|
11760
11844
|
reqAuthenticationScheme: string;
|
|
11761
11845
|
/**
|
|
@@ -11787,13 +11871,43 @@ export declare namespace ApmSynthetics {
|
|
|
11787
11871
|
*/
|
|
11788
11872
|
verifyTexts: outputs.ApmSynthetics.GetMonitorsMonitorCollectionItemConfigurationVerifyText[];
|
|
11789
11873
|
}
|
|
11874
|
+
interface GetMonitorsMonitorCollectionItemConfigurationClientCertificateDetail {
|
|
11875
|
+
/**
|
|
11876
|
+
* Client certificate in pem format.
|
|
11877
|
+
*/
|
|
11878
|
+
clientCertificates: outputs.ApmSynthetics.GetMonitorsMonitorCollectionItemConfigurationClientCertificateDetailClientCertificate[];
|
|
11879
|
+
/**
|
|
11880
|
+
* The private key associated with the client certificate in pem format.
|
|
11881
|
+
*/
|
|
11882
|
+
privateKeys: outputs.ApmSynthetics.GetMonitorsMonitorCollectionItemConfigurationClientCertificateDetailPrivateKey[];
|
|
11883
|
+
}
|
|
11884
|
+
interface GetMonitorsMonitorCollectionItemConfigurationClientCertificateDetailClientCertificate {
|
|
11885
|
+
/**
|
|
11886
|
+
* Content of the private key file.
|
|
11887
|
+
*/
|
|
11888
|
+
content: string;
|
|
11889
|
+
/**
|
|
11890
|
+
* Name of the private key file.
|
|
11891
|
+
*/
|
|
11892
|
+
fileName: string;
|
|
11893
|
+
}
|
|
11894
|
+
interface GetMonitorsMonitorCollectionItemConfigurationClientCertificateDetailPrivateKey {
|
|
11895
|
+
/**
|
|
11896
|
+
* Content of the private key file.
|
|
11897
|
+
*/
|
|
11898
|
+
content: string;
|
|
11899
|
+
/**
|
|
11900
|
+
* Name of the private key file.
|
|
11901
|
+
*/
|
|
11902
|
+
fileName: string;
|
|
11903
|
+
}
|
|
11790
11904
|
interface GetMonitorsMonitorCollectionItemConfigurationDnsConfiguration {
|
|
11791
11905
|
/**
|
|
11792
|
-
* If isOverrideDns is true, then
|
|
11906
|
+
* If isOverrideDns is true, then DNS settings will be overridden.
|
|
11793
11907
|
*/
|
|
11794
11908
|
isOverrideDns: boolean;
|
|
11795
11909
|
/**
|
|
11796
|
-
*
|
|
11910
|
+
* Attribute to override the DNS IP value. This value will be honored only if isOverrideDns is set to true.
|
|
11797
11911
|
*/
|
|
11798
11912
|
overrideDnsIp: string;
|
|
11799
11913
|
}
|
|
@@ -11837,11 +11951,11 @@ export declare namespace ApmSynthetics {
|
|
|
11837
11951
|
*/
|
|
11838
11952
|
authToken: string;
|
|
11839
11953
|
/**
|
|
11840
|
-
* URL to get
|
|
11954
|
+
* URL to get authentication token.
|
|
11841
11955
|
*/
|
|
11842
11956
|
authUrl: string;
|
|
11843
11957
|
/**
|
|
11844
|
-
*
|
|
11958
|
+
* User name for authentication.
|
|
11845
11959
|
*/
|
|
11846
11960
|
authUserName: string;
|
|
11847
11961
|
/**
|
|
@@ -11849,7 +11963,7 @@ export declare namespace ApmSynthetics {
|
|
|
11849
11963
|
*/
|
|
11850
11964
|
authUserPassword: string;
|
|
11851
11965
|
/**
|
|
11852
|
-
* Request
|
|
11966
|
+
* Request HTTP OAuth scheme.
|
|
11853
11967
|
*/
|
|
11854
11968
|
oauthScheme: string;
|
|
11855
11969
|
}
|
|
@@ -11891,11 +12005,11 @@ export declare namespace ApmSynthetics {
|
|
|
11891
12005
|
}
|
|
11892
12006
|
interface GetMonitorsMonitorCollectionItemMaintenanceWindowSchedule {
|
|
11893
12007
|
/**
|
|
11894
|
-
* End time
|
|
12008
|
+
* End time of the maintenance window, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-12T22:47:12.613Z`
|
|
11895
12009
|
*/
|
|
11896
12010
|
timeEnded: string;
|
|
11897
12011
|
/**
|
|
11898
|
-
* Start time
|
|
12012
|
+
* Start time of the maintenance window, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-12T22:47:12.613Z`
|
|
11899
12013
|
*/
|
|
11900
12014
|
timeStarted: string;
|
|
11901
12015
|
}
|
|
@@ -12223,7 +12337,7 @@ export declare namespace ApmSynthetics {
|
|
|
12223
12337
|
*/
|
|
12224
12338
|
countryName: string;
|
|
12225
12339
|
/**
|
|
12226
|
-
* Degrees north of the
|
|
12340
|
+
* Degrees north of the equator.
|
|
12227
12341
|
*/
|
|
12228
12342
|
latitude: number;
|
|
12229
12343
|
/**
|
|
@@ -30239,6 +30353,53 @@ export declare namespace ContainerEngine {
|
|
|
30239
30353
|
*/
|
|
30240
30354
|
cniType: string;
|
|
30241
30355
|
}
|
|
30356
|
+
interface GetClusterWorkloadMappingsFilter {
|
|
30357
|
+
name: string;
|
|
30358
|
+
regex?: boolean;
|
|
30359
|
+
values: string[];
|
|
30360
|
+
}
|
|
30361
|
+
interface GetClusterWorkloadMappingsWorkloadMapping {
|
|
30362
|
+
/**
|
|
30363
|
+
* The OCID of the cluster.
|
|
30364
|
+
*/
|
|
30365
|
+
clusterId: string;
|
|
30366
|
+
/**
|
|
30367
|
+
* Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
|
30368
|
+
*/
|
|
30369
|
+
definedTags: {
|
|
30370
|
+
[key: string]: any;
|
|
30371
|
+
};
|
|
30372
|
+
/**
|
|
30373
|
+
* Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
|
30374
|
+
*/
|
|
30375
|
+
freeformTags: {
|
|
30376
|
+
[key: string]: any;
|
|
30377
|
+
};
|
|
30378
|
+
/**
|
|
30379
|
+
* The ocid of the workloadMapping.
|
|
30380
|
+
*/
|
|
30381
|
+
id: string;
|
|
30382
|
+
/**
|
|
30383
|
+
* The OCID of the mapped customer compartment.
|
|
30384
|
+
*/
|
|
30385
|
+
mappedCompartmentId: string;
|
|
30386
|
+
/**
|
|
30387
|
+
* The OCID of the mapped customer tenancy.
|
|
30388
|
+
*/
|
|
30389
|
+
mappedTenancyId: string;
|
|
30390
|
+
/**
|
|
30391
|
+
* The namespace of the workloadMapping.
|
|
30392
|
+
*/
|
|
30393
|
+
namespace: string;
|
|
30394
|
+
/**
|
|
30395
|
+
* The state of the workloadMapping.
|
|
30396
|
+
*/
|
|
30397
|
+
state: string;
|
|
30398
|
+
/**
|
|
30399
|
+
* The time the cluster was created.
|
|
30400
|
+
*/
|
|
30401
|
+
timeCreated: string;
|
|
30402
|
+
}
|
|
30242
30403
|
interface GetClustersCluster {
|
|
30243
30404
|
/**
|
|
30244
30405
|
* Available Kubernetes versions to which the clusters masters may be upgraded.
|
|
@@ -30309,7 +30470,7 @@ export declare namespace ContainerEngine {
|
|
|
30309
30470
|
*/
|
|
30310
30471
|
state: string;
|
|
30311
30472
|
/**
|
|
30312
|
-
* Type of cluster
|
|
30473
|
+
* Type of cluster. Values can be BASIC_CLUSTER or ENHANCED_CLUSTER. For more information, see [Cluster Types](https://docs.cloud.oracle.com/iaas/Content/ContEng/Tasks/contengcomparingenhancedwithbasicclusters_topic.htm)
|
|
30313
30474
|
*/
|
|
30314
30475
|
type: string;
|
|
30315
30476
|
/**
|
|
@@ -56730,7 +56891,7 @@ export declare namespace Database {
|
|
|
56730
56891
|
*/
|
|
56731
56892
|
lifecycleDetails: string;
|
|
56732
56893
|
/**
|
|
56733
|
-
*
|
|
56894
|
+
* The current state of the Autonomous Database.
|
|
56734
56895
|
*/
|
|
56735
56896
|
state: string;
|
|
56736
56897
|
/**
|
|
@@ -56796,7 +56957,7 @@ export declare namespace Database {
|
|
|
56796
56957
|
*/
|
|
56797
56958
|
lifecycleDetails: string;
|
|
56798
56959
|
/**
|
|
56799
|
-
*
|
|
56960
|
+
* The current state of the Autonomous Database.
|
|
56800
56961
|
*/
|
|
56801
56962
|
state: string;
|
|
56802
56963
|
/**
|
|
@@ -58402,6 +58563,10 @@ export declare namespace Database {
|
|
|
58402
58563
|
* (Updatable) The network bonding mode for the Exadata infrastructure.
|
|
58403
58564
|
*/
|
|
58404
58565
|
clientNetworkBondingMode: string;
|
|
58566
|
+
/**
|
|
58567
|
+
* (Updatable) The network bonding mode for the Exadata infrastructure.
|
|
58568
|
+
*/
|
|
58569
|
+
drNetworkBondingMode: string;
|
|
58405
58570
|
}
|
|
58406
58571
|
interface ExadataInfrastructureStorageContact {
|
|
58407
58572
|
email: string;
|
|
@@ -65812,6 +65977,10 @@ export declare namespace Database {
|
|
|
65812
65977
|
* The network bonding mode for the Exadata infrastructure.
|
|
65813
65978
|
*/
|
|
65814
65979
|
clientNetworkBondingMode: string;
|
|
65980
|
+
/**
|
|
65981
|
+
* The network bonding mode for the Exadata infrastructure.
|
|
65982
|
+
*/
|
|
65983
|
+
drNetworkBondingMode: string;
|
|
65815
65984
|
}
|
|
65816
65985
|
interface GetExadataInfrastructureUnAllocatedResourceAutonomousVmCluster {
|
|
65817
65986
|
/**
|
|
@@ -65979,13 +66148,17 @@ export declare namespace Database {
|
|
|
65979
66148
|
*/
|
|
65980
66149
|
netmask: string;
|
|
65981
66150
|
/**
|
|
65982
|
-
* Details of bonding mode for Client and Backup networks of an Exadata infrastructure.
|
|
66151
|
+
* Details of bonding mode for Client and Backup and DR networks of an Exadata infrastructure.
|
|
65983
66152
|
*/
|
|
65984
66153
|
networkBondingModeDetails: outputs.Database.GetExadataInfrastructuresExadataInfrastructureNetworkBondingModeDetail[];
|
|
65985
66154
|
/**
|
|
65986
66155
|
* The list of NTP server IP addresses. Maximum of 3 allowed.
|
|
65987
66156
|
*/
|
|
65988
66157
|
ntpServers: string[];
|
|
66158
|
+
/**
|
|
66159
|
+
* The serial number for the Exadata infrastructure.
|
|
66160
|
+
*/
|
|
66161
|
+
rackSerialNumber: string;
|
|
65989
66162
|
/**
|
|
65990
66163
|
* The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
|
|
65991
66164
|
*/
|
|
@@ -66097,6 +66270,10 @@ export declare namespace Database {
|
|
|
66097
66270
|
* The network bonding mode for the Exadata infrastructure.
|
|
66098
66271
|
*/
|
|
66099
66272
|
clientNetworkBondingMode: string;
|
|
66273
|
+
/**
|
|
66274
|
+
* The network bonding mode for the Exadata infrastructure.
|
|
66275
|
+
*/
|
|
66276
|
+
drNetworkBondingMode: string;
|
|
66100
66277
|
}
|
|
66101
66278
|
interface GetExadataInfrastructuresFilter {
|
|
66102
66279
|
/**
|
|
@@ -67092,6 +67269,78 @@ export declare namespace Database {
|
|
|
67092
67269
|
*/
|
|
67093
67270
|
userName: string;
|
|
67094
67271
|
}
|
|
67272
|
+
interface GetOneoffPatchesFilter {
|
|
67273
|
+
name: string;
|
|
67274
|
+
regex?: boolean;
|
|
67275
|
+
values: string[];
|
|
67276
|
+
}
|
|
67277
|
+
interface GetOneoffPatchesOneoffPatch {
|
|
67278
|
+
/**
|
|
67279
|
+
* (Updatable) The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
67280
|
+
*/
|
|
67281
|
+
compartmentId: string;
|
|
67282
|
+
/**
|
|
67283
|
+
* A valid Oracle Database version. To get a list of supported versions, use the [ListDbVersions](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/DbVersionSummary/ListDbVersions) operation.
|
|
67284
|
+
*/
|
|
67285
|
+
dbVersion: string;
|
|
67286
|
+
/**
|
|
67287
|
+
* Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
|
67288
|
+
*/
|
|
67289
|
+
definedTags: {
|
|
67290
|
+
[key: string]: any;
|
|
67291
|
+
};
|
|
67292
|
+
/**
|
|
67293
|
+
* A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
|
67294
|
+
*/
|
|
67295
|
+
displayName: string;
|
|
67296
|
+
downloadOneoffPatchTrigger: number;
|
|
67297
|
+
/**
|
|
67298
|
+
* Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
|
67299
|
+
*/
|
|
67300
|
+
freeformTags: {
|
|
67301
|
+
[key: string]: any;
|
|
67302
|
+
};
|
|
67303
|
+
/**
|
|
67304
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the one-off patch.
|
|
67305
|
+
*/
|
|
67306
|
+
id: string;
|
|
67307
|
+
/**
|
|
67308
|
+
* Detailed message for the lifecycle state.
|
|
67309
|
+
*/
|
|
67310
|
+
lifecycleDetails: string;
|
|
67311
|
+
/**
|
|
67312
|
+
* List of one-off patches for Database Homes.
|
|
67313
|
+
*/
|
|
67314
|
+
oneOffPatches: string[];
|
|
67315
|
+
/**
|
|
67316
|
+
* The PSU or PBP or Release Updates. To get a list of supported versions, use the [ListDbVersions](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/DbVersionSummary/ListDbVersions) operation.
|
|
67317
|
+
*/
|
|
67318
|
+
releaseUpdate: string;
|
|
67319
|
+
/**
|
|
67320
|
+
* SHA-256 checksum of the one-off patch.
|
|
67321
|
+
*/
|
|
67322
|
+
sha256sum: string;
|
|
67323
|
+
/**
|
|
67324
|
+
* The size of one-off patch in kilobytes.
|
|
67325
|
+
*/
|
|
67326
|
+
sizeInKbs: number;
|
|
67327
|
+
/**
|
|
67328
|
+
* A filter to return only resources that match the given lifecycle state exactly
|
|
67329
|
+
*/
|
|
67330
|
+
state: string;
|
|
67331
|
+
/**
|
|
67332
|
+
* The date and time one-off patch was created.
|
|
67333
|
+
*/
|
|
67334
|
+
timeCreated: string;
|
|
67335
|
+
/**
|
|
67336
|
+
* The date and time until which the one-off patch will be available for download.
|
|
67337
|
+
*/
|
|
67338
|
+
timeOfExpiration: string;
|
|
67339
|
+
/**
|
|
67340
|
+
* The date and time one-off patch was updated.
|
|
67341
|
+
*/
|
|
67342
|
+
timeUpdated: string;
|
|
67343
|
+
}
|
|
67095
67344
|
interface GetPluggableDatabaseConnectionString {
|
|
67096
67345
|
/**
|
|
67097
67346
|
* All connection strings to use to connect to the pluggable database.
|
|
@@ -67217,7 +67466,7 @@ export declare namespace Database {
|
|
|
67217
67466
|
*/
|
|
67218
67467
|
isIncidentLogsEnabled: boolean;
|
|
67219
67468
|
}
|
|
67220
|
-
interface
|
|
67469
|
+
interface GetVmClusterNetworkDrScan {
|
|
67221
67470
|
/**
|
|
67222
67471
|
* The node host name.
|
|
67223
67472
|
*/
|
|
@@ -67229,6 +67478,20 @@ export declare namespace Database {
|
|
|
67229
67478
|
/**
|
|
67230
67479
|
* The SCAN TCPIP port. Default is 1521.
|
|
67231
67480
|
*/
|
|
67481
|
+
scanListenerPortTcp: number;
|
|
67482
|
+
}
|
|
67483
|
+
interface GetVmClusterNetworkScan {
|
|
67484
|
+
/**
|
|
67485
|
+
* The node host name.
|
|
67486
|
+
*/
|
|
67487
|
+
hostname: string;
|
|
67488
|
+
/**
|
|
67489
|
+
* The list of SCAN IP addresses. Three addresses should be provided.
|
|
67490
|
+
*/
|
|
67491
|
+
ips: string[];
|
|
67492
|
+
/**
|
|
67493
|
+
* **Deprecated.** This field is deprecated. You may use 'scanListenerPortTcp' to specify the port. The SCAN TCPIP port. Default is 1521.
|
|
67494
|
+
*/
|
|
67232
67495
|
port: number;
|
|
67233
67496
|
/**
|
|
67234
67497
|
* The SCAN TCPIP port. Default is 1521.
|
|
@@ -67316,6 +67579,10 @@ export declare namespace Database {
|
|
|
67316
67579
|
* The list of DNS server IP addresses. Maximum of 3 allowed.
|
|
67317
67580
|
*/
|
|
67318
67581
|
dns: string[];
|
|
67582
|
+
/**
|
|
67583
|
+
* The SCAN details for DR network
|
|
67584
|
+
*/
|
|
67585
|
+
drScans: outputs.Database.GetVmClusterNetworksVmClusterNetworkDrScan[];
|
|
67319
67586
|
/**
|
|
67320
67587
|
* The Exadata infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
67321
67588
|
*/
|
|
@@ -67360,7 +67627,7 @@ export declare namespace Database {
|
|
|
67360
67627
|
*/
|
|
67361
67628
|
vmNetworks: outputs.Database.GetVmClusterNetworksVmClusterNetworkVmNetwork[];
|
|
67362
67629
|
}
|
|
67363
|
-
interface
|
|
67630
|
+
interface GetVmClusterNetworksVmClusterNetworkDrScan {
|
|
67364
67631
|
/**
|
|
67365
67632
|
* The node host name.
|
|
67366
67633
|
*/
|
|
@@ -67372,6 +67639,20 @@ export declare namespace Database {
|
|
|
67372
67639
|
/**
|
|
67373
67640
|
* The SCAN TCPIP port. Default is 1521.
|
|
67374
67641
|
*/
|
|
67642
|
+
scanListenerPortTcp: number;
|
|
67643
|
+
}
|
|
67644
|
+
interface GetVmClusterNetworksVmClusterNetworkScan {
|
|
67645
|
+
/**
|
|
67646
|
+
* The node host name.
|
|
67647
|
+
*/
|
|
67648
|
+
hostname: string;
|
|
67649
|
+
/**
|
|
67650
|
+
* The list of SCAN IP addresses. Three addresses should be provided.
|
|
67651
|
+
*/
|
|
67652
|
+
ips: string[];
|
|
67653
|
+
/**
|
|
67654
|
+
* **Deprecated.** This field is deprecated. You may use 'scanListenerPortTcp' to specify the port. The SCAN TCPIP port. Default is 1521.
|
|
67655
|
+
*/
|
|
67375
67656
|
port: number;
|
|
67376
67657
|
/**
|
|
67377
67658
|
* The SCAN TCPIP port. Default is 1521.
|
|
@@ -67508,6 +67789,20 @@ export declare namespace Database {
|
|
|
67508
67789
|
*/
|
|
67509
67790
|
version: string;
|
|
67510
67791
|
}
|
|
67792
|
+
interface GetVmClusterRecommendedNetworkDrScan {
|
|
67793
|
+
/**
|
|
67794
|
+
* The node host name.
|
|
67795
|
+
*/
|
|
67796
|
+
hostname: string;
|
|
67797
|
+
/**
|
|
67798
|
+
* The list of SCAN IP addresses. Three addresses should be provided.
|
|
67799
|
+
*/
|
|
67800
|
+
ips: string[];
|
|
67801
|
+
/**
|
|
67802
|
+
* The SCAN TCPIP port. Default is 1521.
|
|
67803
|
+
*/
|
|
67804
|
+
scanListenerPortTcp: number;
|
|
67805
|
+
}
|
|
67511
67806
|
interface GetVmClusterRecommendedNetworkNetwork {
|
|
67512
67807
|
/**
|
|
67513
67808
|
* The cidr for the network.
|
|
@@ -67548,7 +67843,7 @@ export declare namespace Database {
|
|
|
67548
67843
|
*/
|
|
67549
67844
|
ips: string[];
|
|
67550
67845
|
/**
|
|
67551
|
-
* The SCAN TCPIP port. Default is 1521.
|
|
67846
|
+
* **Deprecated.** This field is deprecated. You may use 'scanListenerPortTcp' to specify the port. The SCAN TCPIP port. Default is 1521.
|
|
67552
67847
|
*/
|
|
67553
67848
|
port: number;
|
|
67554
67849
|
/**
|
|
@@ -68032,7 +68327,7 @@ export declare namespace Database {
|
|
|
68032
68327
|
*/
|
|
68033
68328
|
isIncidentLogsEnabled: boolean;
|
|
68034
68329
|
}
|
|
68035
|
-
interface
|
|
68330
|
+
interface VmClusterNetworkDrScan {
|
|
68036
68331
|
/**
|
|
68037
68332
|
* (Updatable) The node host name.
|
|
68038
68333
|
*/
|
|
@@ -68044,6 +68339,20 @@ export declare namespace Database {
|
|
|
68044
68339
|
/**
|
|
68045
68340
|
* (Updatable) The SCAN TCPIP port. Default is 1521.
|
|
68046
68341
|
*/
|
|
68342
|
+
scanListenerPortTcp: number;
|
|
68343
|
+
}
|
|
68344
|
+
interface VmClusterNetworkScan {
|
|
68345
|
+
/**
|
|
68346
|
+
* (Updatable) The node host name.
|
|
68347
|
+
*/
|
|
68348
|
+
hostname: string;
|
|
68349
|
+
/**
|
|
68350
|
+
* (Updatable) The list of SCAN IP addresses. Three addresses should be provided.
|
|
68351
|
+
*/
|
|
68352
|
+
ips: string[];
|
|
68353
|
+
/**
|
|
68354
|
+
* (Updatable) **Deprecated.** This field is deprecated. You may use 'scanListenerPortTcp' to specify the port. The SCAN TCPIP port. Default is 1521.
|
|
68355
|
+
*/
|
|
68047
68356
|
port: number;
|
|
68048
68357
|
/**
|
|
68049
68358
|
* (Updatable) The SCAN TCPIP port. Default is 1521.
|
|
@@ -76176,6 +76485,10 @@ export declare namespace DatabaseMigration {
|
|
|
76176
76485
|
* Path to the Oracle Cloud Infrastructure CLI installation in the node.
|
|
76177
76486
|
*/
|
|
76178
76487
|
ociHome: string;
|
|
76488
|
+
/**
|
|
76489
|
+
* Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
|
|
76490
|
+
*/
|
|
76491
|
+
walletLocation: string;
|
|
76179
76492
|
}
|
|
76180
76493
|
interface GetMigrationDumpTransferDetailTarget {
|
|
76181
76494
|
/**
|
|
@@ -76186,6 +76499,10 @@ export declare namespace DatabaseMigration {
|
|
|
76186
76499
|
* Path to the Oracle Cloud Infrastructure CLI installation in the node.
|
|
76187
76500
|
*/
|
|
76188
76501
|
ociHome: string;
|
|
76502
|
+
/**
|
|
76503
|
+
* Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
|
|
76504
|
+
*/
|
|
76505
|
+
walletLocation: string;
|
|
76189
76506
|
}
|
|
76190
76507
|
interface GetMigrationExcludeObject {
|
|
76191
76508
|
/**
|
|
@@ -76642,6 +76959,10 @@ export declare namespace DatabaseMigration {
|
|
|
76642
76959
|
* Path to the Oracle Cloud Infrastructure CLI installation in the node.
|
|
76643
76960
|
*/
|
|
76644
76961
|
ociHome: string;
|
|
76962
|
+
/**
|
|
76963
|
+
* Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
|
|
76964
|
+
*/
|
|
76965
|
+
walletLocation: string;
|
|
76645
76966
|
}
|
|
76646
76967
|
interface GetMigrationsMigrationCollectionItemDumpTransferDetailTarget {
|
|
76647
76968
|
/**
|
|
@@ -76652,6 +76973,10 @@ export declare namespace DatabaseMigration {
|
|
|
76652
76973
|
* Path to the Oracle Cloud Infrastructure CLI installation in the node.
|
|
76653
76974
|
*/
|
|
76654
76975
|
ociHome: string;
|
|
76976
|
+
/**
|
|
76977
|
+
* Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
|
|
76978
|
+
*/
|
|
76979
|
+
walletLocation: string;
|
|
76655
76980
|
}
|
|
76656
76981
|
interface GetMigrationsMigrationCollectionItemExcludeObject {
|
|
76657
76982
|
/**
|
|
@@ -77050,6 +77375,10 @@ export declare namespace DatabaseMigration {
|
|
|
77050
77375
|
* (Updatable) Path to the Oracle Cloud Infrastructure CLI installation in the node.
|
|
77051
77376
|
*/
|
|
77052
77377
|
ociHome: string;
|
|
77378
|
+
/**
|
|
77379
|
+
* (Updatable) Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
|
|
77380
|
+
*/
|
|
77381
|
+
walletLocation: string;
|
|
77053
77382
|
}
|
|
77054
77383
|
interface MigrationDumpTransferDetailsTarget {
|
|
77055
77384
|
/**
|
|
@@ -77060,6 +77389,10 @@ export declare namespace DatabaseMigration {
|
|
|
77060
77389
|
* (Updatable) Path to the Oracle Cloud Infrastructure CLI installation in the node.
|
|
77061
77390
|
*/
|
|
77062
77391
|
ociHome: string;
|
|
77392
|
+
/**
|
|
77393
|
+
* (Updatable) Directory path to Oracle Cloud Infrastructure SSL wallet location on Db server node.
|
|
77394
|
+
*/
|
|
77395
|
+
walletLocation: string;
|
|
77063
77396
|
}
|
|
77064
77397
|
interface MigrationExcludeObject {
|
|
77065
77398
|
/**
|
|
@@ -140843,6 +141176,264 @@ export declare namespace OsManagement {
|
|
|
140843
141176
|
}
|
|
140844
141177
|
}
|
|
140845
141178
|
export declare namespace OspGateway {
|
|
141179
|
+
interface AddressActionVerificationAddress {
|
|
141180
|
+
/**
|
|
141181
|
+
* Address identifier.
|
|
141182
|
+
*/
|
|
141183
|
+
addressKey: string;
|
|
141184
|
+
/**
|
|
141185
|
+
* Name of the city.
|
|
141186
|
+
*/
|
|
141187
|
+
city: string;
|
|
141188
|
+
/**
|
|
141189
|
+
* Name of the customer company.
|
|
141190
|
+
*/
|
|
141191
|
+
companyName: string;
|
|
141192
|
+
/**
|
|
141193
|
+
* Contributor class of the customer company.
|
|
141194
|
+
*/
|
|
141195
|
+
contributorClass: string;
|
|
141196
|
+
/**
|
|
141197
|
+
* Country of the address.
|
|
141198
|
+
*/
|
|
141199
|
+
country: string;
|
|
141200
|
+
/**
|
|
141201
|
+
* County of the address.
|
|
141202
|
+
*/
|
|
141203
|
+
county: string;
|
|
141204
|
+
/**
|
|
141205
|
+
* Department name of the customer company.
|
|
141206
|
+
*/
|
|
141207
|
+
departmentName: string;
|
|
141208
|
+
/**
|
|
141209
|
+
* Contact person email address.
|
|
141210
|
+
*/
|
|
141211
|
+
emailAddress: string;
|
|
141212
|
+
/**
|
|
141213
|
+
* First name of the contact person.
|
|
141214
|
+
*/
|
|
141215
|
+
firstName: string;
|
|
141216
|
+
/**
|
|
141217
|
+
* Internal number of the customer company.
|
|
141218
|
+
*/
|
|
141219
|
+
internalNumber: string;
|
|
141220
|
+
/**
|
|
141221
|
+
* Job title of the contact person.
|
|
141222
|
+
*/
|
|
141223
|
+
jobTitle: string;
|
|
141224
|
+
/**
|
|
141225
|
+
* Last name of the contact person.
|
|
141226
|
+
*/
|
|
141227
|
+
lastName: string;
|
|
141228
|
+
/**
|
|
141229
|
+
* Address line 1.
|
|
141230
|
+
*/
|
|
141231
|
+
line1: string;
|
|
141232
|
+
/**
|
|
141233
|
+
* Address line 2.
|
|
141234
|
+
*/
|
|
141235
|
+
line2: string;
|
|
141236
|
+
/**
|
|
141237
|
+
* Address line 3.
|
|
141238
|
+
*/
|
|
141239
|
+
line3: string;
|
|
141240
|
+
/**
|
|
141241
|
+
* Address line 4.
|
|
141242
|
+
*/
|
|
141243
|
+
line4: string;
|
|
141244
|
+
/**
|
|
141245
|
+
* Middle name of the contact person.
|
|
141246
|
+
*/
|
|
141247
|
+
middleName: string;
|
|
141248
|
+
/**
|
|
141249
|
+
* Municipal Inscription.
|
|
141250
|
+
*/
|
|
141251
|
+
municipalInscription: string;
|
|
141252
|
+
/**
|
|
141253
|
+
* Phone country code of the contact person.
|
|
141254
|
+
*/
|
|
141255
|
+
phoneCountryCode: string;
|
|
141256
|
+
/**
|
|
141257
|
+
* Phone number of the contact person.
|
|
141258
|
+
*/
|
|
141259
|
+
phoneNumber: string;
|
|
141260
|
+
/**
|
|
141261
|
+
* Post code of the address.
|
|
141262
|
+
*/
|
|
141263
|
+
postalCode: string;
|
|
141264
|
+
/**
|
|
141265
|
+
* Province of the address.
|
|
141266
|
+
*/
|
|
141267
|
+
province: string;
|
|
141268
|
+
/**
|
|
141269
|
+
* State of the address.
|
|
141270
|
+
*/
|
|
141271
|
+
state: string;
|
|
141272
|
+
/**
|
|
141273
|
+
* State Inscription.
|
|
141274
|
+
*/
|
|
141275
|
+
stateInscription: string;
|
|
141276
|
+
/**
|
|
141277
|
+
* Street name of the address.
|
|
141278
|
+
*/
|
|
141279
|
+
streetName: string;
|
|
141280
|
+
/**
|
|
141281
|
+
* Street number of the address.
|
|
141282
|
+
*
|
|
141283
|
+
*
|
|
141284
|
+
* ** IMPORTANT **
|
|
141285
|
+
* Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
|
141286
|
+
*/
|
|
141287
|
+
streetNumber: string;
|
|
141288
|
+
}
|
|
141289
|
+
interface GetAddressRuleAddress {
|
|
141290
|
+
/**
|
|
141291
|
+
* Tax type rule fields
|
|
141292
|
+
*/
|
|
141293
|
+
fields: outputs.OspGateway.GetAddressRuleAddressField[];
|
|
141294
|
+
/**
|
|
141295
|
+
* Third party validation.
|
|
141296
|
+
*/
|
|
141297
|
+
thirdPartyValidation: string;
|
|
141298
|
+
}
|
|
141299
|
+
interface GetAddressRuleAddressField {
|
|
141300
|
+
/**
|
|
141301
|
+
* Format information
|
|
141302
|
+
*/
|
|
141303
|
+
formats: outputs.OspGateway.GetAddressRuleAddressFieldFormat[];
|
|
141304
|
+
/**
|
|
141305
|
+
* The given field is requeired or not
|
|
141306
|
+
*/
|
|
141307
|
+
isRequired: boolean;
|
|
141308
|
+
/**
|
|
141309
|
+
* Label information
|
|
141310
|
+
*/
|
|
141311
|
+
labels: outputs.OspGateway.GetAddressRuleAddressFieldLabel[];
|
|
141312
|
+
/**
|
|
141313
|
+
* Locale code (rfc4646 format) of a forced language (e.g.: jp addresses require jp always)
|
|
141314
|
+
*/
|
|
141315
|
+
language: string;
|
|
141316
|
+
/**
|
|
141317
|
+
* The field name
|
|
141318
|
+
*/
|
|
141319
|
+
name: string;
|
|
141320
|
+
}
|
|
141321
|
+
interface GetAddressRuleAddressFieldFormat {
|
|
141322
|
+
/**
|
|
141323
|
+
* English translation of the label (for reference only - translation is not provided)
|
|
141324
|
+
*/
|
|
141325
|
+
example: string;
|
|
141326
|
+
/**
|
|
141327
|
+
* Language token of the required label
|
|
141328
|
+
*/
|
|
141329
|
+
value: string;
|
|
141330
|
+
}
|
|
141331
|
+
interface GetAddressRuleAddressFieldLabel {
|
|
141332
|
+
/**
|
|
141333
|
+
* English translation of the label (for reference only - translation is not provided)
|
|
141334
|
+
*/
|
|
141335
|
+
example: string;
|
|
141336
|
+
/**
|
|
141337
|
+
* Language token of the required label
|
|
141338
|
+
*/
|
|
141339
|
+
value: string;
|
|
141340
|
+
}
|
|
141341
|
+
interface GetAddressRuleContact {
|
|
141342
|
+
/**
|
|
141343
|
+
* Tax type rule fields
|
|
141344
|
+
*/
|
|
141345
|
+
fields: outputs.OspGateway.GetAddressRuleContactField[];
|
|
141346
|
+
}
|
|
141347
|
+
interface GetAddressRuleContactField {
|
|
141348
|
+
/**
|
|
141349
|
+
* Format information
|
|
141350
|
+
*/
|
|
141351
|
+
formats: outputs.OspGateway.GetAddressRuleContactFieldFormat[];
|
|
141352
|
+
/**
|
|
141353
|
+
* The given field is requeired or not
|
|
141354
|
+
*/
|
|
141355
|
+
isRequired: boolean;
|
|
141356
|
+
/**
|
|
141357
|
+
* Label information
|
|
141358
|
+
*/
|
|
141359
|
+
labels: outputs.OspGateway.GetAddressRuleContactFieldLabel[];
|
|
141360
|
+
/**
|
|
141361
|
+
* Locale code (rfc4646 format) of a forced language (e.g.: jp addresses require jp always)
|
|
141362
|
+
*/
|
|
141363
|
+
language: string;
|
|
141364
|
+
/**
|
|
141365
|
+
* The field name
|
|
141366
|
+
*/
|
|
141367
|
+
name: string;
|
|
141368
|
+
}
|
|
141369
|
+
interface GetAddressRuleContactFieldFormat {
|
|
141370
|
+
/**
|
|
141371
|
+
* English translation of the label (for reference only - translation is not provided)
|
|
141372
|
+
*/
|
|
141373
|
+
example: string;
|
|
141374
|
+
/**
|
|
141375
|
+
* Language token of the required label
|
|
141376
|
+
*/
|
|
141377
|
+
value: string;
|
|
141378
|
+
}
|
|
141379
|
+
interface GetAddressRuleContactFieldLabel {
|
|
141380
|
+
/**
|
|
141381
|
+
* English translation of the label (for reference only - translation is not provided)
|
|
141382
|
+
*/
|
|
141383
|
+
example: string;
|
|
141384
|
+
/**
|
|
141385
|
+
* Language token of the required label
|
|
141386
|
+
*/
|
|
141387
|
+
value: string;
|
|
141388
|
+
}
|
|
141389
|
+
interface GetAddressRuleTax {
|
|
141390
|
+
/**
|
|
141391
|
+
* Tax type rule fields
|
|
141392
|
+
*/
|
|
141393
|
+
fields: outputs.OspGateway.GetAddressRuleTaxField[];
|
|
141394
|
+
}
|
|
141395
|
+
interface GetAddressRuleTaxField {
|
|
141396
|
+
/**
|
|
141397
|
+
* Format information
|
|
141398
|
+
*/
|
|
141399
|
+
formats: outputs.OspGateway.GetAddressRuleTaxFieldFormat[];
|
|
141400
|
+
/**
|
|
141401
|
+
* The given field is requeired or not
|
|
141402
|
+
*/
|
|
141403
|
+
isRequired: boolean;
|
|
141404
|
+
/**
|
|
141405
|
+
* Label information
|
|
141406
|
+
*/
|
|
141407
|
+
labels: outputs.OspGateway.GetAddressRuleTaxFieldLabel[];
|
|
141408
|
+
/**
|
|
141409
|
+
* Locale code (rfc4646 format) of a forced language (e.g.: jp addresses require jp always)
|
|
141410
|
+
*/
|
|
141411
|
+
language: string;
|
|
141412
|
+
/**
|
|
141413
|
+
* The field name
|
|
141414
|
+
*/
|
|
141415
|
+
name: string;
|
|
141416
|
+
}
|
|
141417
|
+
interface GetAddressRuleTaxFieldFormat {
|
|
141418
|
+
/**
|
|
141419
|
+
* English translation of the label (for reference only - translation is not provided)
|
|
141420
|
+
*/
|
|
141421
|
+
example: string;
|
|
141422
|
+
/**
|
|
141423
|
+
* Language token of the required label
|
|
141424
|
+
*/
|
|
141425
|
+
value: string;
|
|
141426
|
+
}
|
|
141427
|
+
interface GetAddressRuleTaxFieldLabel {
|
|
141428
|
+
/**
|
|
141429
|
+
* English translation of the label (for reference only - translation is not provided)
|
|
141430
|
+
*/
|
|
141431
|
+
example: string;
|
|
141432
|
+
/**
|
|
141433
|
+
* Language token of the required label
|
|
141434
|
+
*/
|
|
141435
|
+
value: string;
|
|
141436
|
+
}
|
|
140846
141437
|
interface GetInvoiceBillToAddress {
|
|
140847
141438
|
/**
|
|
140848
141439
|
* Address line 1
|
|
@@ -140946,10 +141537,18 @@ export declare namespace OspGateway {
|
|
|
140946
141537
|
usdConversion: number;
|
|
140947
141538
|
}
|
|
140948
141539
|
interface GetInvoiceLastPaymentDetail {
|
|
141540
|
+
/**
|
|
141541
|
+
* Account number of the card owner
|
|
141542
|
+
*/
|
|
141543
|
+
accountNumber: string;
|
|
140949
141544
|
/**
|
|
140950
141545
|
* Amount that paid
|
|
140951
141546
|
*/
|
|
140952
141547
|
amountPaid: number;
|
|
141548
|
+
/**
|
|
141549
|
+
* Echeck card type
|
|
141550
|
+
*/
|
|
141551
|
+
cardType: string;
|
|
140953
141552
|
/**
|
|
140954
141553
|
* Credit card type
|
|
140955
141554
|
*/
|
|
@@ -140982,6 +141581,10 @@ export declare namespace OspGateway {
|
|
|
140982
141581
|
* paypal payment reference
|
|
140983
141582
|
*/
|
|
140984
141583
|
paypalReference: string;
|
|
141584
|
+
/**
|
|
141585
|
+
* Routing number of the echeck card
|
|
141586
|
+
*/
|
|
141587
|
+
routingNumber: string;
|
|
140985
141588
|
/**
|
|
140986
141589
|
* Expired date of the credit card
|
|
140987
141590
|
*/
|
|
@@ -141212,10 +141815,18 @@ export declare namespace OspGateway {
|
|
|
141212
141815
|
usdConversion: number;
|
|
141213
141816
|
}
|
|
141214
141817
|
interface GetInvoicesInvoiceCollectionItemLastPaymentDetail {
|
|
141818
|
+
/**
|
|
141819
|
+
* Account number of the card owner
|
|
141820
|
+
*/
|
|
141821
|
+
accountNumber: string;
|
|
141215
141822
|
/**
|
|
141216
141823
|
* Amount that paid
|
|
141217
141824
|
*/
|
|
141218
141825
|
amountPaid: number;
|
|
141826
|
+
/**
|
|
141827
|
+
* Echeck card type
|
|
141828
|
+
*/
|
|
141829
|
+
cardType: string;
|
|
141219
141830
|
/**
|
|
141220
141831
|
* Credit card type
|
|
141221
141832
|
*/
|
|
@@ -141248,6 +141859,10 @@ export declare namespace OspGateway {
|
|
|
141248
141859
|
* paypal payment reference
|
|
141249
141860
|
*/
|
|
141250
141861
|
paypalReference: string;
|
|
141862
|
+
/**
|
|
141863
|
+
* Routing number of the echeck card
|
|
141864
|
+
*/
|
|
141865
|
+
routingNumber: string;
|
|
141251
141866
|
/**
|
|
141252
141867
|
* Expired date of the credit card
|
|
141253
141868
|
*/
|
|
@@ -141295,7 +141910,81 @@ export declare namespace OspGateway {
|
|
|
141295
141910
|
*/
|
|
141296
141911
|
totalPrice: number;
|
|
141297
141912
|
}
|
|
141298
|
-
interface GetInvoicesInvoiceLineItemCurrency {
|
|
141913
|
+
interface GetInvoicesInvoiceLineItemCurrency {
|
|
141914
|
+
/**
|
|
141915
|
+
* Currency code
|
|
141916
|
+
*/
|
|
141917
|
+
currencyCode: string;
|
|
141918
|
+
/**
|
|
141919
|
+
* Currency symbol
|
|
141920
|
+
*/
|
|
141921
|
+
currencySymbol: string;
|
|
141922
|
+
/**
|
|
141923
|
+
* Name of the currency
|
|
141924
|
+
*/
|
|
141925
|
+
name: string;
|
|
141926
|
+
/**
|
|
141927
|
+
* Round decimal point
|
|
141928
|
+
*/
|
|
141929
|
+
roundDecimalPoint: number;
|
|
141930
|
+
/**
|
|
141931
|
+
* USD conversion rate of the currency
|
|
141932
|
+
*/
|
|
141933
|
+
usdConversion: number;
|
|
141934
|
+
}
|
|
141935
|
+
interface GetInvoicesInvoiceLinesFilter {
|
|
141936
|
+
/**
|
|
141937
|
+
* Name of the currency
|
|
141938
|
+
*/
|
|
141939
|
+
name: string;
|
|
141940
|
+
regex?: boolean;
|
|
141941
|
+
values: string[];
|
|
141942
|
+
}
|
|
141943
|
+
interface GetInvoicesInvoiceLinesInvoiceLineCollection {
|
|
141944
|
+
/**
|
|
141945
|
+
* Invoice line list elements
|
|
141946
|
+
*/
|
|
141947
|
+
items: outputs.OspGateway.GetInvoicesInvoiceLinesInvoiceLineCollectionItem[];
|
|
141948
|
+
}
|
|
141949
|
+
interface GetInvoicesInvoiceLinesInvoiceLineCollectionItem {
|
|
141950
|
+
/**
|
|
141951
|
+
* Currency details model
|
|
141952
|
+
*/
|
|
141953
|
+
currencies: outputs.OspGateway.GetInvoicesInvoiceLinesInvoiceLineCollectionItemCurrency[];
|
|
141954
|
+
/**
|
|
141955
|
+
* Unit price of the ordered product
|
|
141956
|
+
*/
|
|
141957
|
+
netUnitPrice: number;
|
|
141958
|
+
/**
|
|
141959
|
+
* Product of the item
|
|
141960
|
+
*/
|
|
141961
|
+
orderNo: string;
|
|
141962
|
+
/**
|
|
141963
|
+
* Part number
|
|
141964
|
+
*/
|
|
141965
|
+
partNumber: string;
|
|
141966
|
+
/**
|
|
141967
|
+
* Product of the item
|
|
141968
|
+
*/
|
|
141969
|
+
product: string;
|
|
141970
|
+
/**
|
|
141971
|
+
* Quantity of the ordered product
|
|
141972
|
+
*/
|
|
141973
|
+
quantity: number;
|
|
141974
|
+
/**
|
|
141975
|
+
* End date
|
|
141976
|
+
*/
|
|
141977
|
+
timeEnd: string;
|
|
141978
|
+
/**
|
|
141979
|
+
* Start date
|
|
141980
|
+
*/
|
|
141981
|
+
timeStart: string;
|
|
141982
|
+
/**
|
|
141983
|
+
* Total price of the ordered product (Net unit price x quantity)
|
|
141984
|
+
*/
|
|
141985
|
+
totalPrice: number;
|
|
141986
|
+
}
|
|
141987
|
+
interface GetInvoicesInvoiceLinesInvoiceLineCollectionItemCurrency {
|
|
141299
141988
|
/**
|
|
141300
141989
|
* Currency code
|
|
141301
141990
|
*/
|
|
@@ -141317,125 +142006,111 @@ export declare namespace OspGateway {
|
|
|
141317
142006
|
*/
|
|
141318
142007
|
usdConversion: number;
|
|
141319
142008
|
}
|
|
141320
|
-
interface
|
|
142009
|
+
interface GetSubscriptionBillingAddress {
|
|
141321
142010
|
/**
|
|
141322
|
-
*
|
|
142011
|
+
* Address identifier.
|
|
141323
142012
|
*/
|
|
141324
|
-
|
|
141325
|
-
regex?: boolean;
|
|
141326
|
-
values: string[];
|
|
141327
|
-
}
|
|
141328
|
-
interface GetInvoicesInvoiceLinesInvoiceLineCollection {
|
|
142013
|
+
addressKey: string;
|
|
141329
142014
|
/**
|
|
141330
|
-
*
|
|
142015
|
+
* Name of the city.
|
|
141331
142016
|
*/
|
|
141332
|
-
|
|
141333
|
-
}
|
|
141334
|
-
interface GetInvoicesInvoiceLinesInvoiceLineCollectionItem {
|
|
142017
|
+
city: string;
|
|
141335
142018
|
/**
|
|
141336
|
-
*
|
|
142019
|
+
* Name of the customer company.
|
|
141337
142020
|
*/
|
|
141338
|
-
|
|
142021
|
+
companyName: string;
|
|
141339
142022
|
/**
|
|
141340
|
-
*
|
|
142023
|
+
* Contributor class of the customer company.
|
|
141341
142024
|
*/
|
|
141342
|
-
|
|
142025
|
+
contributorClass: string;
|
|
141343
142026
|
/**
|
|
141344
|
-
*
|
|
142027
|
+
* Country of the address.
|
|
141345
142028
|
*/
|
|
141346
|
-
|
|
142029
|
+
country: string;
|
|
141347
142030
|
/**
|
|
141348
|
-
*
|
|
142031
|
+
* County of the address.
|
|
141349
142032
|
*/
|
|
141350
|
-
|
|
142033
|
+
county: string;
|
|
141351
142034
|
/**
|
|
141352
|
-
*
|
|
142035
|
+
* Department name of the customer company.
|
|
141353
142036
|
*/
|
|
141354
|
-
|
|
142037
|
+
departmentName: string;
|
|
141355
142038
|
/**
|
|
141356
|
-
*
|
|
142039
|
+
* The email address of the paypal user.
|
|
141357
142040
|
*/
|
|
141358
|
-
|
|
142041
|
+
emailAddress: string;
|
|
141359
142042
|
/**
|
|
141360
|
-
*
|
|
142043
|
+
* First name of the paypal user.
|
|
141361
142044
|
*/
|
|
141362
|
-
|
|
142045
|
+
firstName: string;
|
|
141363
142046
|
/**
|
|
141364
|
-
*
|
|
142047
|
+
* Internal number of the customer company.
|
|
141365
142048
|
*/
|
|
141366
|
-
|
|
142049
|
+
internalNumber: string;
|
|
141367
142050
|
/**
|
|
141368
|
-
*
|
|
142051
|
+
* Job title of the contact person.
|
|
141369
142052
|
*/
|
|
141370
|
-
|
|
141371
|
-
}
|
|
141372
|
-
interface GetInvoicesInvoiceLinesInvoiceLineCollectionItemCurrency {
|
|
142053
|
+
jobTitle: string;
|
|
141373
142054
|
/**
|
|
141374
|
-
*
|
|
142055
|
+
* Last name of the paypal user.
|
|
141375
142056
|
*/
|
|
141376
|
-
|
|
142057
|
+
lastName: string;
|
|
141377
142058
|
/**
|
|
141378
|
-
*
|
|
142059
|
+
* Address line 1.
|
|
141379
142060
|
*/
|
|
141380
|
-
|
|
142061
|
+
line1: string;
|
|
141381
142062
|
/**
|
|
141382
|
-
*
|
|
142063
|
+
* Address line 2.
|
|
141383
142064
|
*/
|
|
141384
|
-
|
|
142065
|
+
line2: string;
|
|
141385
142066
|
/**
|
|
141386
|
-
*
|
|
142067
|
+
* Address line 3.
|
|
141387
142068
|
*/
|
|
141388
|
-
|
|
142069
|
+
line3: string;
|
|
141389
142070
|
/**
|
|
141390
|
-
*
|
|
142071
|
+
* Address line 4.
|
|
141391
142072
|
*/
|
|
141392
|
-
|
|
141393
|
-
}
|
|
141394
|
-
interface GetSubscriptionBillingAddress {
|
|
142073
|
+
line4: string;
|
|
141395
142074
|
/**
|
|
141396
|
-
*
|
|
142075
|
+
* Middle name of the contact person.
|
|
141397
142076
|
*/
|
|
141398
|
-
|
|
142077
|
+
middleName: string;
|
|
141399
142078
|
/**
|
|
141400
|
-
*
|
|
142079
|
+
* Municipal Inscription.
|
|
141401
142080
|
*/
|
|
141402
|
-
|
|
142081
|
+
municipalInscription: string;
|
|
141403
142082
|
/**
|
|
141404
|
-
*
|
|
142083
|
+
* Phone country code of the contact person.
|
|
141405
142084
|
*/
|
|
141406
|
-
|
|
142085
|
+
phoneCountryCode: string;
|
|
141407
142086
|
/**
|
|
141408
|
-
*
|
|
142087
|
+
* Phone number of the contact person.
|
|
141409
142088
|
*/
|
|
141410
|
-
|
|
141411
|
-
/**
|
|
141412
|
-
* The email address of the paypal user.
|
|
141413
|
-
*/
|
|
141414
|
-
emailAddress: string;
|
|
142089
|
+
phoneNumber: string;
|
|
141415
142090
|
/**
|
|
141416
|
-
*
|
|
142091
|
+
* Post code of the address.
|
|
141417
142092
|
*/
|
|
141418
|
-
|
|
142093
|
+
postalCode: string;
|
|
141419
142094
|
/**
|
|
141420
|
-
*
|
|
142095
|
+
* Province of the address.
|
|
141421
142096
|
*/
|
|
141422
|
-
|
|
142097
|
+
province: string;
|
|
141423
142098
|
/**
|
|
141424
|
-
*
|
|
142099
|
+
* State of the address.
|
|
141425
142100
|
*/
|
|
141426
|
-
|
|
142101
|
+
state: string;
|
|
141427
142102
|
/**
|
|
141428
|
-
*
|
|
142103
|
+
* State Inscription.
|
|
141429
142104
|
*/
|
|
141430
|
-
|
|
142105
|
+
stateInscription: string;
|
|
141431
142106
|
/**
|
|
141432
|
-
*
|
|
142107
|
+
* Street name of the address.
|
|
141433
142108
|
*/
|
|
141434
|
-
|
|
142109
|
+
streetName: string;
|
|
141435
142110
|
/**
|
|
141436
|
-
*
|
|
142111
|
+
* Street number of the address.
|
|
141437
142112
|
*/
|
|
141438
|
-
|
|
142113
|
+
streetNumber: string;
|
|
141439
142114
|
}
|
|
141440
142115
|
interface GetSubscriptionPaymentGateway {
|
|
141441
142116
|
/**
|
|
@@ -141500,12 +142175,16 @@ export declare namespace OspGateway {
|
|
|
141500
142175
|
walletTransactionId: string;
|
|
141501
142176
|
}
|
|
141502
142177
|
interface GetSubscriptionSubscription {
|
|
142178
|
+
/**
|
|
142179
|
+
* Account type.
|
|
142180
|
+
*/
|
|
142181
|
+
accountType: string;
|
|
141503
142182
|
/**
|
|
141504
142183
|
* Bill to customer Account id.
|
|
141505
142184
|
*/
|
|
141506
142185
|
billToCustAccountId: string;
|
|
141507
142186
|
/**
|
|
141508
|
-
*
|
|
142187
|
+
* Address details model.
|
|
141509
142188
|
*/
|
|
141510
142189
|
billingAddresses: outputs.OspGateway.GetSubscriptionSubscriptionBillingAddress[];
|
|
141511
142190
|
/**
|
|
@@ -141560,6 +142239,10 @@ export declare namespace OspGateway {
|
|
|
141560
142239
|
* Tax details.
|
|
141561
142240
|
*/
|
|
141562
142241
|
taxInfos: outputs.OspGateway.GetSubscriptionSubscriptionTaxInfo[];
|
|
142242
|
+
/**
|
|
142243
|
+
* Date of upgrade/conversion when account type changed from PERSONAL to CORPORATE
|
|
142244
|
+
*/
|
|
142245
|
+
timePersonalToCorporateConv: string;
|
|
141563
142246
|
/**
|
|
141564
142247
|
* Date of upgrade/conversion when planType changed from FREE_TIER to PAYG
|
|
141565
142248
|
*/
|
|
@@ -141590,10 +142273,22 @@ export declare namespace OspGateway {
|
|
|
141590
142273
|
* Name of the customer company.
|
|
141591
142274
|
*/
|
|
141592
142275
|
companyName: string;
|
|
142276
|
+
/**
|
|
142277
|
+
* Contributor class of the customer company.
|
|
142278
|
+
*/
|
|
142279
|
+
contributorClass: string;
|
|
141593
142280
|
/**
|
|
141594
142281
|
* Country of the address.
|
|
141595
142282
|
*/
|
|
141596
142283
|
country: string;
|
|
142284
|
+
/**
|
|
142285
|
+
* County of the address.
|
|
142286
|
+
*/
|
|
142287
|
+
county: string;
|
|
142288
|
+
/**
|
|
142289
|
+
* Department name of the customer company.
|
|
142290
|
+
*/
|
|
142291
|
+
departmentName: string;
|
|
141597
142292
|
/**
|
|
141598
142293
|
* The email address of the paypal user.
|
|
141599
142294
|
*/
|
|
@@ -141602,6 +142297,14 @@ export declare namespace OspGateway {
|
|
|
141602
142297
|
* First name of the paypal user.
|
|
141603
142298
|
*/
|
|
141604
142299
|
firstName: string;
|
|
142300
|
+
/**
|
|
142301
|
+
* Internal number of the customer company.
|
|
142302
|
+
*/
|
|
142303
|
+
internalNumber: string;
|
|
142304
|
+
/**
|
|
142305
|
+
* Job title of the contact person.
|
|
142306
|
+
*/
|
|
142307
|
+
jobTitle: string;
|
|
141605
142308
|
/**
|
|
141606
142309
|
* Last name of the paypal user.
|
|
141607
142310
|
*/
|
|
@@ -141614,14 +142317,54 @@ export declare namespace OspGateway {
|
|
|
141614
142317
|
* Address line 2.
|
|
141615
142318
|
*/
|
|
141616
142319
|
line2: string;
|
|
142320
|
+
/**
|
|
142321
|
+
* Address line 3.
|
|
142322
|
+
*/
|
|
142323
|
+
line3: string;
|
|
142324
|
+
/**
|
|
142325
|
+
* Address line 4.
|
|
142326
|
+
*/
|
|
142327
|
+
line4: string;
|
|
142328
|
+
/**
|
|
142329
|
+
* Middle name of the contact person.
|
|
142330
|
+
*/
|
|
142331
|
+
middleName: string;
|
|
142332
|
+
/**
|
|
142333
|
+
* Municipal Inscription.
|
|
142334
|
+
*/
|
|
142335
|
+
municipalInscription: string;
|
|
142336
|
+
/**
|
|
142337
|
+
* Phone country code of the contact person.
|
|
142338
|
+
*/
|
|
142339
|
+
phoneCountryCode: string;
|
|
142340
|
+
/**
|
|
142341
|
+
* Phone number of the contact person.
|
|
142342
|
+
*/
|
|
142343
|
+
phoneNumber: string;
|
|
141617
142344
|
/**
|
|
141618
142345
|
* Post code of the address.
|
|
141619
142346
|
*/
|
|
141620
142347
|
postalCode: string;
|
|
142348
|
+
/**
|
|
142349
|
+
* Province of the address.
|
|
142350
|
+
*/
|
|
142351
|
+
province: string;
|
|
141621
142352
|
/**
|
|
141622
142353
|
* State of the address.
|
|
141623
142354
|
*/
|
|
141624
142355
|
state: string;
|
|
142356
|
+
/**
|
|
142357
|
+
* State Inscription.
|
|
142358
|
+
*/
|
|
142359
|
+
stateInscription: string;
|
|
142360
|
+
/**
|
|
142361
|
+
* Street name of the address.
|
|
142362
|
+
*/
|
|
142363
|
+
streetName: string;
|
|
142364
|
+
/**
|
|
142365
|
+
* Street number of the address.
|
|
142366
|
+
*/
|
|
142367
|
+
streetNumber: string;
|
|
141625
142368
|
}
|
|
141626
142369
|
interface GetSubscriptionSubscriptionPaymentGateway {
|
|
141627
142370
|
/**
|
|
@@ -141738,12 +142481,16 @@ export declare namespace OspGateway {
|
|
|
141738
142481
|
items: outputs.OspGateway.GetSubscriptionsSubscriptionCollectionItem[];
|
|
141739
142482
|
}
|
|
141740
142483
|
interface GetSubscriptionsSubscriptionCollectionItem {
|
|
142484
|
+
/**
|
|
142485
|
+
* Account type.
|
|
142486
|
+
*/
|
|
142487
|
+
accountType: string;
|
|
141741
142488
|
/**
|
|
141742
142489
|
* Bill to customer Account id.
|
|
141743
142490
|
*/
|
|
141744
142491
|
billToCustAccountId: string;
|
|
141745
142492
|
/**
|
|
141746
|
-
*
|
|
142493
|
+
* Address details model.
|
|
141747
142494
|
*/
|
|
141748
142495
|
billingAddresses: outputs.OspGateway.GetSubscriptionsSubscriptionCollectionItemBillingAddress[];
|
|
141749
142496
|
/**
|
|
@@ -141809,6 +142556,10 @@ export declare namespace OspGateway {
|
|
|
141809
142556
|
* Tax details.
|
|
141810
142557
|
*/
|
|
141811
142558
|
taxInfos: outputs.OspGateway.GetSubscriptionsSubscriptionCollectionItemTaxInfo[];
|
|
142559
|
+
/**
|
|
142560
|
+
* Date of upgrade/conversion when account type changed from PERSONAL to CORPORATE
|
|
142561
|
+
*/
|
|
142562
|
+
timePersonalToCorporateConv: string;
|
|
141812
142563
|
/**
|
|
141813
142564
|
* Date of upgrade/conversion when planType changed from FREE_TIER to PAYG
|
|
141814
142565
|
*/
|
|
@@ -141839,10 +142590,22 @@ export declare namespace OspGateway {
|
|
|
141839
142590
|
* Name of the customer company.
|
|
141840
142591
|
*/
|
|
141841
142592
|
companyName: string;
|
|
142593
|
+
/**
|
|
142594
|
+
* Contributor class of the customer company.
|
|
142595
|
+
*/
|
|
142596
|
+
contributorClass: string;
|
|
141842
142597
|
/**
|
|
141843
142598
|
* Country of the address.
|
|
141844
142599
|
*/
|
|
141845
142600
|
country: string;
|
|
142601
|
+
/**
|
|
142602
|
+
* County of the address.
|
|
142603
|
+
*/
|
|
142604
|
+
county: string;
|
|
142605
|
+
/**
|
|
142606
|
+
* Department name of the customer company.
|
|
142607
|
+
*/
|
|
142608
|
+
departmentName: string;
|
|
141846
142609
|
/**
|
|
141847
142610
|
* The email address of the paypal user.
|
|
141848
142611
|
*/
|
|
@@ -141851,6 +142614,14 @@ export declare namespace OspGateway {
|
|
|
141851
142614
|
* First name of the paypal user.
|
|
141852
142615
|
*/
|
|
141853
142616
|
firstName: string;
|
|
142617
|
+
/**
|
|
142618
|
+
* Internal number of the customer company.
|
|
142619
|
+
*/
|
|
142620
|
+
internalNumber: string;
|
|
142621
|
+
/**
|
|
142622
|
+
* Job title of the contact person.
|
|
142623
|
+
*/
|
|
142624
|
+
jobTitle: string;
|
|
141854
142625
|
/**
|
|
141855
142626
|
* Last name of the paypal user.
|
|
141856
142627
|
*/
|
|
@@ -141863,14 +142634,54 @@ export declare namespace OspGateway {
|
|
|
141863
142634
|
* Address line 2.
|
|
141864
142635
|
*/
|
|
141865
142636
|
line2: string;
|
|
142637
|
+
/**
|
|
142638
|
+
* Address line 3.
|
|
142639
|
+
*/
|
|
142640
|
+
line3: string;
|
|
142641
|
+
/**
|
|
142642
|
+
* Address line 4.
|
|
142643
|
+
*/
|
|
142644
|
+
line4: string;
|
|
142645
|
+
/**
|
|
142646
|
+
* Middle name of the contact person.
|
|
142647
|
+
*/
|
|
142648
|
+
middleName: string;
|
|
142649
|
+
/**
|
|
142650
|
+
* Municipal Inscription.
|
|
142651
|
+
*/
|
|
142652
|
+
municipalInscription: string;
|
|
142653
|
+
/**
|
|
142654
|
+
* Phone country code of the contact person.
|
|
142655
|
+
*/
|
|
142656
|
+
phoneCountryCode: string;
|
|
142657
|
+
/**
|
|
142658
|
+
* Phone number of the contact person.
|
|
142659
|
+
*/
|
|
142660
|
+
phoneNumber: string;
|
|
141866
142661
|
/**
|
|
141867
142662
|
* Post code of the address.
|
|
141868
142663
|
*/
|
|
141869
142664
|
postalCode: string;
|
|
142665
|
+
/**
|
|
142666
|
+
* Province of the address.
|
|
142667
|
+
*/
|
|
142668
|
+
province: string;
|
|
141870
142669
|
/**
|
|
141871
142670
|
* State of the address.
|
|
141872
142671
|
*/
|
|
141873
142672
|
state: string;
|
|
142673
|
+
/**
|
|
142674
|
+
* State Inscription.
|
|
142675
|
+
*/
|
|
142676
|
+
stateInscription: string;
|
|
142677
|
+
/**
|
|
142678
|
+
* Street name of the address.
|
|
142679
|
+
*/
|
|
142680
|
+
streetName: string;
|
|
142681
|
+
/**
|
|
142682
|
+
* Street number of the address.
|
|
142683
|
+
*/
|
|
142684
|
+
streetNumber: string;
|
|
141874
142685
|
}
|
|
141875
142686
|
interface GetSubscriptionsSubscriptionCollectionItemPaymentGateway {
|
|
141876
142687
|
/**
|
|
@@ -141935,12 +142746,16 @@ export declare namespace OspGateway {
|
|
|
141935
142746
|
walletTransactionId: string;
|
|
141936
142747
|
}
|
|
141937
142748
|
interface GetSubscriptionsSubscriptionCollectionItemSubscription {
|
|
142749
|
+
/**
|
|
142750
|
+
* Account type.
|
|
142751
|
+
*/
|
|
142752
|
+
accountType: string;
|
|
141938
142753
|
/**
|
|
141939
142754
|
* Bill to customer Account id.
|
|
141940
142755
|
*/
|
|
141941
142756
|
billToCustAccountId: string;
|
|
141942
142757
|
/**
|
|
141943
|
-
*
|
|
142758
|
+
* Address details model.
|
|
141944
142759
|
*/
|
|
141945
142760
|
billingAddresses: outputs.OspGateway.GetSubscriptionsSubscriptionCollectionItemSubscriptionBillingAddress[];
|
|
141946
142761
|
/**
|
|
@@ -141995,6 +142810,10 @@ export declare namespace OspGateway {
|
|
|
141995
142810
|
* Tax details.
|
|
141996
142811
|
*/
|
|
141997
142812
|
taxInfos: outputs.OspGateway.GetSubscriptionsSubscriptionCollectionItemSubscriptionTaxInfo[];
|
|
142813
|
+
/**
|
|
142814
|
+
* Date of upgrade/conversion when account type changed from PERSONAL to CORPORATE
|
|
142815
|
+
*/
|
|
142816
|
+
timePersonalToCorporateConv: string;
|
|
141998
142817
|
/**
|
|
141999
142818
|
* Date of upgrade/conversion when planType changed from FREE_TIER to PAYG
|
|
142000
142819
|
*/
|
|
@@ -142025,10 +142844,22 @@ export declare namespace OspGateway {
|
|
|
142025
142844
|
* Name of the customer company.
|
|
142026
142845
|
*/
|
|
142027
142846
|
companyName: string;
|
|
142847
|
+
/**
|
|
142848
|
+
* Contributor class of the customer company.
|
|
142849
|
+
*/
|
|
142850
|
+
contributorClass: string;
|
|
142028
142851
|
/**
|
|
142029
142852
|
* Country of the address.
|
|
142030
142853
|
*/
|
|
142031
142854
|
country: string;
|
|
142855
|
+
/**
|
|
142856
|
+
* County of the address.
|
|
142857
|
+
*/
|
|
142858
|
+
county: string;
|
|
142859
|
+
/**
|
|
142860
|
+
* Department name of the customer company.
|
|
142861
|
+
*/
|
|
142862
|
+
departmentName: string;
|
|
142032
142863
|
/**
|
|
142033
142864
|
* The email address of the paypal user.
|
|
142034
142865
|
*/
|
|
@@ -142037,6 +142868,14 @@ export declare namespace OspGateway {
|
|
|
142037
142868
|
* First name of the paypal user.
|
|
142038
142869
|
*/
|
|
142039
142870
|
firstName: string;
|
|
142871
|
+
/**
|
|
142872
|
+
* Internal number of the customer company.
|
|
142873
|
+
*/
|
|
142874
|
+
internalNumber: string;
|
|
142875
|
+
/**
|
|
142876
|
+
* Job title of the contact person.
|
|
142877
|
+
*/
|
|
142878
|
+
jobTitle: string;
|
|
142040
142879
|
/**
|
|
142041
142880
|
* Last name of the paypal user.
|
|
142042
142881
|
*/
|
|
@@ -142049,14 +142888,54 @@ export declare namespace OspGateway {
|
|
|
142049
142888
|
* Address line 2.
|
|
142050
142889
|
*/
|
|
142051
142890
|
line2: string;
|
|
142891
|
+
/**
|
|
142892
|
+
* Address line 3.
|
|
142893
|
+
*/
|
|
142894
|
+
line3: string;
|
|
142895
|
+
/**
|
|
142896
|
+
* Address line 4.
|
|
142897
|
+
*/
|
|
142898
|
+
line4: string;
|
|
142899
|
+
/**
|
|
142900
|
+
* Middle name of the contact person.
|
|
142901
|
+
*/
|
|
142902
|
+
middleName: string;
|
|
142903
|
+
/**
|
|
142904
|
+
* Municipal Inscription.
|
|
142905
|
+
*/
|
|
142906
|
+
municipalInscription: string;
|
|
142907
|
+
/**
|
|
142908
|
+
* Phone country code of the contact person.
|
|
142909
|
+
*/
|
|
142910
|
+
phoneCountryCode: string;
|
|
142911
|
+
/**
|
|
142912
|
+
* Phone number of the contact person.
|
|
142913
|
+
*/
|
|
142914
|
+
phoneNumber: string;
|
|
142052
142915
|
/**
|
|
142053
142916
|
* Post code of the address.
|
|
142054
142917
|
*/
|
|
142055
142918
|
postalCode: string;
|
|
142919
|
+
/**
|
|
142920
|
+
* Province of the address.
|
|
142921
|
+
*/
|
|
142922
|
+
province: string;
|
|
142056
142923
|
/**
|
|
142057
142924
|
* State of the address.
|
|
142058
142925
|
*/
|
|
142059
142926
|
state: string;
|
|
142927
|
+
/**
|
|
142928
|
+
* State Inscription.
|
|
142929
|
+
*/
|
|
142930
|
+
stateInscription: string;
|
|
142931
|
+
/**
|
|
142932
|
+
* Street name of the address.
|
|
142933
|
+
*/
|
|
142934
|
+
streetName: string;
|
|
142935
|
+
/**
|
|
142936
|
+
* Street number of the address.
|
|
142937
|
+
*/
|
|
142938
|
+
streetNumber: string;
|
|
142060
142939
|
}
|
|
142061
142940
|
interface GetSubscriptionsSubscriptionCollectionItemSubscriptionPaymentGateway {
|
|
142062
142941
|
/**
|
|
@@ -142177,10 +143056,22 @@ export declare namespace OspGateway {
|
|
|
142177
143056
|
* (Updatable) Name of the customer company.
|
|
142178
143057
|
*/
|
|
142179
143058
|
companyName: string;
|
|
143059
|
+
/**
|
|
143060
|
+
* (Updatable) Contributor class of the customer company.
|
|
143061
|
+
*/
|
|
143062
|
+
contributorClass: string;
|
|
142180
143063
|
/**
|
|
142181
143064
|
* (Updatable) Country of the address.
|
|
142182
143065
|
*/
|
|
142183
143066
|
country: string;
|
|
143067
|
+
/**
|
|
143068
|
+
* (Updatable) County of the address.
|
|
143069
|
+
*/
|
|
143070
|
+
county: string;
|
|
143071
|
+
/**
|
|
143072
|
+
* (Updatable) Department name of the customer company.
|
|
143073
|
+
*/
|
|
143074
|
+
departmentName: string;
|
|
142184
143075
|
/**
|
|
142185
143076
|
* (Updatable) The email address of the paypal user.
|
|
142186
143077
|
*/
|
|
@@ -142189,6 +143080,14 @@ export declare namespace OspGateway {
|
|
|
142189
143080
|
* (Updatable) First name of the paypal user.
|
|
142190
143081
|
*/
|
|
142191
143082
|
firstName: string;
|
|
143083
|
+
/**
|
|
143084
|
+
* (Updatable) Internal number of the customer company.
|
|
143085
|
+
*/
|
|
143086
|
+
internalNumber: string;
|
|
143087
|
+
/**
|
|
143088
|
+
* (Updatable) Job title of the contact person.
|
|
143089
|
+
*/
|
|
143090
|
+
jobTitle: string;
|
|
142192
143091
|
/**
|
|
142193
143092
|
* (Updatable) Last name of the paypal user.
|
|
142194
143093
|
*/
|
|
@@ -142201,14 +143100,54 @@ export declare namespace OspGateway {
|
|
|
142201
143100
|
* (Updatable) Address line 2.
|
|
142202
143101
|
*/
|
|
142203
143102
|
line2: string;
|
|
143103
|
+
/**
|
|
143104
|
+
* (Updatable) Address line 3.
|
|
143105
|
+
*/
|
|
143106
|
+
line3: string;
|
|
143107
|
+
/**
|
|
143108
|
+
* (Updatable) Address line 4.
|
|
143109
|
+
*/
|
|
143110
|
+
line4: string;
|
|
143111
|
+
/**
|
|
143112
|
+
* (Updatable) Middle name of the contact person.
|
|
143113
|
+
*/
|
|
143114
|
+
middleName: string;
|
|
143115
|
+
/**
|
|
143116
|
+
* (Updatable) Municipal Inscription.
|
|
143117
|
+
*/
|
|
143118
|
+
municipalInscription: string;
|
|
143119
|
+
/**
|
|
143120
|
+
* (Updatable) Phone country code of the contact person.
|
|
143121
|
+
*/
|
|
143122
|
+
phoneCountryCode: string;
|
|
143123
|
+
/**
|
|
143124
|
+
* (Updatable) Phone number of the contact person.
|
|
143125
|
+
*/
|
|
143126
|
+
phoneNumber: string;
|
|
142204
143127
|
/**
|
|
142205
143128
|
* (Updatable) Post code of the address.
|
|
142206
143129
|
*/
|
|
142207
143130
|
postalCode: string;
|
|
143131
|
+
/**
|
|
143132
|
+
* (Updatable) Province of the address.
|
|
143133
|
+
*/
|
|
143134
|
+
province: string;
|
|
142208
143135
|
/**
|
|
142209
143136
|
* (Updatable) State of the address.
|
|
142210
143137
|
*/
|
|
142211
143138
|
state: string;
|
|
143139
|
+
/**
|
|
143140
|
+
* (Updatable) State Inscription.
|
|
143141
|
+
*/
|
|
143142
|
+
stateInscription: string;
|
|
143143
|
+
/**
|
|
143144
|
+
* (Updatable) Street name of the address.
|
|
143145
|
+
*/
|
|
143146
|
+
streetName: string;
|
|
143147
|
+
/**
|
|
143148
|
+
* (Updatable) Street number of the address.
|
|
143149
|
+
*/
|
|
143150
|
+
streetNumber: string;
|
|
142212
143151
|
}
|
|
142213
143152
|
interface SubscriptionPaymentGateway {
|
|
142214
143153
|
/**
|
|
@@ -142273,12 +143212,16 @@ export declare namespace OspGateway {
|
|
|
142273
143212
|
walletTransactionId: string;
|
|
142274
143213
|
}
|
|
142275
143214
|
interface SubscriptionSubscription {
|
|
143215
|
+
/**
|
|
143216
|
+
* (Updatable) Account type.
|
|
143217
|
+
*/
|
|
143218
|
+
accountType: string;
|
|
142276
143219
|
/**
|
|
142277
143220
|
* (Updatable) Bill to customer Account id.
|
|
142278
143221
|
*/
|
|
142279
143222
|
billToCustAccountId: string;
|
|
142280
143223
|
/**
|
|
142281
|
-
* (Updatable)
|
|
143224
|
+
* (Updatable) Address details model.
|
|
142282
143225
|
*/
|
|
142283
143226
|
billingAddresses?: outputs.OspGateway.SubscriptionSubscriptionBillingAddress[];
|
|
142284
143227
|
/**
|
|
@@ -142333,6 +143276,10 @@ export declare namespace OspGateway {
|
|
|
142333
143276
|
* (Updatable) Tax details.
|
|
142334
143277
|
*/
|
|
142335
143278
|
taxInfo: outputs.OspGateway.SubscriptionSubscriptionTaxInfo;
|
|
143279
|
+
/**
|
|
143280
|
+
* (Updatable) Date of upgrade/conversion when account type changed from PERSONAL to CORPORATE
|
|
143281
|
+
*/
|
|
143282
|
+
timePersonalToCorporateConv: string;
|
|
142336
143283
|
/**
|
|
142337
143284
|
* (Updatable) Date of upgrade/conversion when planType changed from FREE_TIER to PAYG
|
|
142338
143285
|
*/
|
|
@@ -142363,10 +143310,22 @@ export declare namespace OspGateway {
|
|
|
142363
143310
|
* (Updatable) Name of the customer company.
|
|
142364
143311
|
*/
|
|
142365
143312
|
companyName: string;
|
|
143313
|
+
/**
|
|
143314
|
+
* (Updatable) Contributor class of the customer company.
|
|
143315
|
+
*/
|
|
143316
|
+
contributorClass: string;
|
|
142366
143317
|
/**
|
|
142367
143318
|
* (Updatable) Country of the address.
|
|
142368
143319
|
*/
|
|
142369
143320
|
country: string;
|
|
143321
|
+
/**
|
|
143322
|
+
* (Updatable) County of the address.
|
|
143323
|
+
*/
|
|
143324
|
+
county: string;
|
|
143325
|
+
/**
|
|
143326
|
+
* (Updatable) Department name of the customer company.
|
|
143327
|
+
*/
|
|
143328
|
+
departmentName: string;
|
|
142370
143329
|
/**
|
|
142371
143330
|
* (Updatable) The email address of the paypal user.
|
|
142372
143331
|
*/
|
|
@@ -142375,6 +143334,14 @@ export declare namespace OspGateway {
|
|
|
142375
143334
|
* (Updatable) First name of the paypal user.
|
|
142376
143335
|
*/
|
|
142377
143336
|
firstName: string;
|
|
143337
|
+
/**
|
|
143338
|
+
* (Updatable) Internal number of the customer company.
|
|
143339
|
+
*/
|
|
143340
|
+
internalNumber: string;
|
|
143341
|
+
/**
|
|
143342
|
+
* (Updatable) Job title of the contact person.
|
|
143343
|
+
*/
|
|
143344
|
+
jobTitle: string;
|
|
142378
143345
|
/**
|
|
142379
143346
|
* (Updatable) Last name of the paypal user.
|
|
142380
143347
|
*/
|
|
@@ -142387,14 +143354,54 @@ export declare namespace OspGateway {
|
|
|
142387
143354
|
* (Updatable) Address line 2.
|
|
142388
143355
|
*/
|
|
142389
143356
|
line2: string;
|
|
143357
|
+
/**
|
|
143358
|
+
* (Updatable) Address line 3.
|
|
143359
|
+
*/
|
|
143360
|
+
line3: string;
|
|
143361
|
+
/**
|
|
143362
|
+
* (Updatable) Address line 4.
|
|
143363
|
+
*/
|
|
143364
|
+
line4: string;
|
|
143365
|
+
/**
|
|
143366
|
+
* (Updatable) Middle name of the contact person.
|
|
143367
|
+
*/
|
|
143368
|
+
middleName: string;
|
|
143369
|
+
/**
|
|
143370
|
+
* (Updatable) Municipal Inscription.
|
|
143371
|
+
*/
|
|
143372
|
+
municipalInscription: string;
|
|
143373
|
+
/**
|
|
143374
|
+
* (Updatable) Phone country code of the contact person.
|
|
143375
|
+
*/
|
|
143376
|
+
phoneCountryCode: string;
|
|
143377
|
+
/**
|
|
143378
|
+
* (Updatable) Phone number of the contact person.
|
|
143379
|
+
*/
|
|
143380
|
+
phoneNumber: string;
|
|
142390
143381
|
/**
|
|
142391
143382
|
* (Updatable) Post code of the address.
|
|
142392
143383
|
*/
|
|
142393
143384
|
postalCode: string;
|
|
143385
|
+
/**
|
|
143386
|
+
* (Updatable) Province of the address.
|
|
143387
|
+
*/
|
|
143388
|
+
province: string;
|
|
142394
143389
|
/**
|
|
142395
143390
|
* (Updatable) State of the address.
|
|
142396
143391
|
*/
|
|
142397
143392
|
state: string;
|
|
143393
|
+
/**
|
|
143394
|
+
* (Updatable) State Inscription.
|
|
143395
|
+
*/
|
|
143396
|
+
stateInscription: string;
|
|
143397
|
+
/**
|
|
143398
|
+
* (Updatable) Street name of the address.
|
|
143399
|
+
*/
|
|
143400
|
+
streetName: string;
|
|
143401
|
+
/**
|
|
143402
|
+
* (Updatable) Street number of the address.
|
|
143403
|
+
*/
|
|
143404
|
+
streetNumber: string;
|
|
142398
143405
|
}
|
|
142399
143406
|
interface SubscriptionSubscriptionPaymentGateway {
|
|
142400
143407
|
/**
|