Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export interface O365CreateJobRequestJson {
name: string;
description?: string;
backup_type: O365JobBackupType;
repository_id: string;
run_now: boolean;
job_schedule_policy_request: O365JobSchedulePolicyRequestJson;
o365_job_selected_item_requests?: Array<PartialOrganizationSelectedItem |
Expand Down
8 changes: 0 additions & 8 deletions src/sdk/model/o365/o365-create-job-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,6 @@ export class O365CreateJobRequest {
return this._json.description;
}

/**
* Get the O365 Job creation request repo id
* @returns {string}
*/
get repositoryId(): string {
return this._json.repository_id;
}

/**
* Get O365 Job creation request backup type
* @returns {O365JobBackupType}
Expand Down