Create Profile

post

http://{host}:{port}/veridata/v1/services/configuration/profiles

Required Role: Administrator, SuperUser, CommandLineOperator

Creates Profile.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Example:
{
    "name":"profile",
    "description":"profile",
    "copyFromName":"$default"
}
Back to Top

Response

Supported Media Types

201 Response

Profiles created successfully.
Body ()
Root Schema : DetailedProfile
Type: object
Match All
Show Source
Example:
{
    "id":0,
    "name":"profile1",
    "description":"profile",
    "createdOn":"2024-02-03T10:15:30Z",
    "updatedOn":"2024-02-03T10:15:30Z",
    "attributesList":[
        {
            "name":"ProfileGeneralOOSFormat",
            "default":true,
            "value":"binary",
            "defaultValue":"xml",
            "type":"ENUM",
            "options":"string",
            "min":0,
            "max":0
        }
    ]
}
Nested Schema : BaseObject
Type: object
Show Source
Nested Schema : ProfileObject2
Type: object
Show Source
Nested Schema : attributesList
Type: array
Show Source
Nested Schema : Attribute
Type: object
Show Source
  • It is displayed when type is INTEGER.
  • It is displayed when type is INTEGER.
  • Allowed Values: [ "ProfileGeneralOOSFormat", "ProfileGeneralOOSXMLChunkSize", "ReportInSyncRows", "ReportInFlightRows", "SortUsing", "SourceTempDirectory", "TargetTempDirectory", "ProfileGeneralMaxParallelCompares", "InitCompRptMaxRecsOOS", "InitCompRptDtlsOutRecordDtls", "InitCompRptRptIntervalSecs", "InitCompRptRptIntervalRecs", "InitCompRptLimitInputRows", "InitCompHintSrc", "InitCompHintTarg", "InitCompRptDtls", "InitCompRptDtlsErrAlarmThreshold", "VeriAgtInitialCompareSrcAgentPort", "VeriAgtInitialCompareTargAgentPort", "VeriAgtCOOSSrcAgentPort", "VeriAgtCOOSTargAgentPort", "NSKInitialCompareSrcCPU", "NSKInitialCompareSrcPriority", "NSKInitialCompareSrcProcessName", "NSKInitialCompareTargCPU", "NSKInitialCompareTargPriority", "NSKInitialCompareTargProcessName", "NSKCOOSSrcProcessName", "NSKCOOSSrcCPU", "NSKCOOSSrcPriority", "NSKCOOSTargProcessName", "NSKCOOSTargCPU", "NSKCOOSTargPriority", "DoCOOSStep", "COOSConcurrent", "COOSConfirmDelaySecs", "COOSBatchSize", "COOSRptMaxRecsOOS", "COOSRptDtlsOutRecordDtls", "COOSRptRptIntervalSecs", "COOSRptRptIntervalRecs", "COOSHintSrc", "COOSHintTarg", "COOSRptDtls", "COOSRptDtlsErrAlarmThreshold", "RepairAfterCompare", "RepairBatchSize", "RepairTransactionSize", "ConcurrRepairOperations", "ChkChangedValues", "TermWhenMaxRepairWarnings", "RepairSQLPath", "WriteRepairSuccessMsgs", "ProfileDisableDbTriggers" ]
  • It is displayed when type is ENUM.
  • Allowed Values: [ "BOOLEAN", "ENUM", "INTEGER", "STRING" ]

400 Response

Bad Request.
Body ()
Root Schema : Error
Type: object
Show Source
Example:
{
    "errCode":"OGGV-00001",
    "errMsg":"Error message"
}

401 Response

Unauthorized.
Body ()
Root Schema : Error
Type: object
Show Source
Example:
{
    "errCode":"OGGV-00001",
    "errMsg":"Error message"
}

404 Response

Not Found.
Body ()
Root Schema : Error
Type: object
Show Source
Example:
{
    "errCode":"OGGV-00001",
    "errMsg":"Error message"
}

500 Response

Server Error.
Body ()
Root Schema : Error
Type: object
Show Source
Example:
{
    "errCode":"OGGV-00001",
    "errMsg":"Error message"
}
Back to Top