GET /vCloud/orgConfigs/{ID}/backupJobSettings
Returns job settings applied to backup jobs for the VMware Cloud Director organization that has individual configuration with the specified ID.
Request
To get backup job settings used in the VMware Cloud Director organization configuration, send the GET HTTP request to the URL of the /vCloud/orgConfigs/{ID}/backupJobSettings resource.
HTTP Request
GET https://<Enterprise-Manager>:9398/api/vCloud/orgConfigs/{ID}/backupJobSettings |
Request Header
The request contains the following headers:
Header | Required | Description |
---|
X-RestSvcSessionId | True | The request requires authorization. In the header, the client must send a session ID copied from the server reply to the request creating a new logon session. For details, see Authentication and Security. |
Accept | False | Identifies the format of the response. Possible values: - application/xml — the client can send this value in the header to accept response in the XML format.
- application/json — the client must send this value in the header to accept the request in the JSON format.
If the request does not contain the header, the server will return the response in the XML format. |
Request Body
None.
Response
The server returns the following response to the client.
Response Codes
A successfully completed operation returns response code 200 OK.
Response Headers
The response to this request contains the following headers. The response may also include additional standard HTTP headers.
Header | Description |
---|
Content-length | The length of the response body. |
Content-type | The media type and syntax of the request body message. Possible values: - application/xml
- application/json
|
Response Body
In the response body, the REST API returns a representation of the /vCloud/orgConfigs/{ID}/backupJobSettings resource.
Example
The example below returns a resource representation of the /vCloud/orgConfigs/{ID}/backupJobSettings resource.
Request: GET https://localhost:9398/api/vCloud/orgConfigs/228fef7b-6e5e-4107-886e-40c8f482b5c7/backupJobSettings Request Header: X-RestSvcSessionId NDRjZmJkYmUtNWE5NS00MTU2LTg4NjctOTFmMDY5YjdjMmNj Response: 200 OK Response Body: <VCloudOrganizationConfigBackupJobSettings xmlns="http://www.veeam.com/ent/v1.0" Type="VCloudOrganizationConfigBackupJobSettings" Href="https://localhost:9398/api/vCloud/orgConfigs/228fef7b-6e5e-4107-886e-40c8f482b5c7/backupJobSettings"> <Links> <Link Rel="Up" Type="BackupServerReference" Href="https://localhost:9398/api/backupServers/1cf4ea89-89d9-4b4e-a285-71bd8c705222" Name="172.17.53.2" /> <Link Rel="Up" Type="VCloudOrganizationConfig" Href="https://localhost:9398/api/vCloud/orgConfigs/228fef7b-6e5e-4107-886e-40c8f482b5c7?format=Entity" Name="org1" /> </Links> <UseDefaultJobSettings>false</UseDefaultJobSettings> <AdvancedSettings> <BackupSettings> <BackupMode> <Incremental> <SyntheticFull Enabled="true"> <OptionsDaily Enabled="true"> <Days>Saturday</Days> </OptionsDaily> <TransformPreviousBackupChains>false</TransformPreviousBackupChains> </SyntheticFull> </Incremental> </BackupMode> <ActiveFullBackup Enabled="false"> <OptionsWeekly Enabled="true"> <Days>Saturday</Days> </OptionsWeekly> </ActiveFullBackup> </BackupSettings> <MaintenanceSettings> <BackupFilesHealthCheck Enabled="false"> <OptionsMonthly Enabled="true"> <DayNumberInMonth>Last</DayNumberInMonth> <DayOfWeek>Friday</DayOfWeek> <Months>January</Months> <Months>February</Months> <Months>March</Months> <Months>April</Months> <Months>May</Months> <Months>June</Months> <Months>July</Months> <Months>August</Months> <Months>September</Months> <Months>October</Months> <Months>November</Months> <Months>December</Months> </OptionsMonthly> </BackupFilesHealthCheck> <FullBackupFileMaintenance> <RemoveDeletedVms Enabled="false"> <RemoveAfter>14</RemoveAfter> </RemoveDeletedVms> <DefragmentFullBackupFile Enabled="false"> <OptionsMonthly Enabled="true"> <DayNumberInMonth>Last</DayNumberInMonth> <DayOfWeek>Saturday</DayOfWeek> <Months>January</Months> <Months>February</Months> <Months>March</Months> <Months>April</Months> <Months>May</Months> <Months>June</Months> <Months>July</Months> <Months>August</Months> <Months>September</Months> <Months>October</Months> <Months>November</Months> <Months>December</Months> </OptionsMonthly> </DefragmentFullBackupFile> </FullBackupFileMaintenance> </MaintenanceSettings> <StorageSettings> <DataReduction> <EnableInlineDataDeduplication>true</EnableInlineDataDeduplication> <EnableSwapFileBlocks>true</EnableSwapFileBlocks> <EnableDeletedFileBlocks>true</EnableDeletedFileBlocks> <CompressionLevel>Optimal</CompressionLevel> <StorageOptimization>LocalTarget</StorageOptimization> </DataReduction> <Encryption Enabled="false" /> </StorageSettings> <NotificationsSettings> <SendSnmpNotifications>false</SendSnmpNotifications> <VmAttributeNotifications Enabled="false"> <SetSuccessfulBackupDetailsToVmAttr>Notes</SetSuccessfulBackupDetailsToVmAttr> <AppendToExistingAttrValue>true</AppendToExistingAttrValue> </VmAttributeNotifications> </NotificationsSettings> <vSphereSettings> <GuestQuiescence Enabled="false" /> <ChangedBlockTracking Enabled="true"> <EnableForAllProtectedVms>true</EnableForAllProtectedVms> </ChangedBlockTracking> </vSphereSettings> <IntegrationSettings> <BackupFromStorageSnapshots Enabled="true"> <LimitProcessedVmCountPerStorageSnapshot>10</LimitProcessedVmCountPerStorageSnapshot> <FailoverToStandartBackup>false</FailoverToStandartBackup> </BackupFromStorageSnapshots> </IntegrationSettings> <ScriptsSettings> <PostJobScript Enabled="false"> <ScriptPath /> </PostJobScript> <PreJobScript Enabled="false"> <ScriptPath /> </PreJobScript> <RunScriptsEveryBackupSession> <RunEveryBackupSession>1</RunEveryBackupSession> </RunScriptsEveryBackupSession> </ScriptsSettings> </AdvancedSettings> <SourceProxyAutoDetect>true</SourceProxyAutoDetect> </VCloudOrganizationConfigBackupJobSettings> |