Skip to content

Commit 1836f5b

Browse files
Merge pull request #45 from Ditectrev/feature/add-azure-data-courses
Feature/add azure data courses
2 parents 39f2808 + 72db471 commit 1836f5b

File tree

2 files changed

+32
-4
lines changed

2 files changed

+32
-4
lines changed

CloudMaster.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@
775775
CLANG_ENABLE_MODULES = YES;
776776
CODE_SIGN_IDENTITY = "Apple Development";
777777
CODE_SIGN_STYLE = Automatic;
778-
CURRENT_PROJECT_VERSION = 4;
778+
CURRENT_PROJECT_VERSION = 5;
779779
DEVELOPMENT_ASSET_PATHS = "\"CloudMaster/Preview Content\"";
780780
DEVELOPMENT_TEAM = 9D3QHQ7CMS;
781781
ENABLE_PREVIEWS = YES;
@@ -791,7 +791,7 @@
791791
"$(inherited)",
792792
"@executable_path/Frameworks",
793793
);
794-
MARKETING_VERSION = 1.0.5;
794+
MARKETING_VERSION = 1.0.6;
795795
PRODUCT_BUNDLE_IDENTIFIER = com.ditectrev.cloudmasterswift;
796796
PRODUCT_NAME = "CloudMaster Swift";
797797
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -811,7 +811,7 @@
811811
CLANG_ENABLE_MODULES = YES;
812812
CODE_SIGN_IDENTITY = "Apple Development";
813813
CODE_SIGN_STYLE = Automatic;
814-
CURRENT_PROJECT_VERSION = 4;
814+
CURRENT_PROJECT_VERSION = 5;
815815
DEVELOPMENT_ASSET_PATHS = "\"CloudMaster/Preview Content\"";
816816
DEVELOPMENT_TEAM = 9D3QHQ7CMS;
817817
ENABLE_PREVIEWS = YES;
@@ -827,7 +827,7 @@
827827
"$(inherited)",
828828
"@executable_path/Frameworks",
829829
);
830-
MARKETING_VERSION = 1.0.5;
830+
MARKETING_VERSION = 1.0.6;
831831
PRODUCT_BUNDLE_IDENTIFIER = com.ditectrev.cloudmasterswift;
832832
PRODUCT_NAME = "CloudMaster Swift";
833833
PROVISIONING_PROFILE_SPECIFIER = "";

CloudMaster/Constants/Courses.swift

+28
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,34 @@ extension Course {
346346
real: ExamDetail(time: 150, questionCount: 60)
347347
)
348348
),
349+
Course(
350+
fullName: "Azure Data Engineer",
351+
shortName: "DP-203",
352+
description: "Validates expertise in data processing, integration, storage, security, and analytics using Azure data services.",
353+
company: .azure,
354+
repositoryURL: "https://github.com/Ditectrev/DP-203",
355+
questionURL: "https://raw.githubusercontent.com/Ditectrev/DP-203/refs/heads/main/README.md",
356+
url: "https://learn.microsoft.com/en-us/certifications/azure-data-engineer/",
357+
exam: Exam(
358+
quick: ExamDetail(time: 60, questionCount: 20),
359+
intermediate: ExamDetail(time: 105, questionCount: 42),
360+
real: ExamDetail(time: 150, questionCount: 60)
361+
)
362+
),
363+
Course(
364+
fullName: "Azure Data Fundamentals",
365+
shortName: "DP-900",
366+
description: "Validates foundational knowledge of core data concepts and Microsoft Azure data services.",
367+
company: .azure,
368+
repositoryURL: "https://github.com/Ditectrev/DP-900",
369+
questionURL: "https://raw.githubusercontent.com/Ditectrev/DP-900/main/README.md",
370+
url: "https://learn.microsoft.com/en-us/certifications/azure-data-fundamentals/",
371+
exam: Exam(
372+
quick: ExamDetail(time: 60, questionCount: 20),
373+
intermediate: ExamDetail(time: 105, questionCount: 42),
374+
real: ExamDetail(time: 150, questionCount: 60)
375+
)
376+
),
349377
Course(
350378
fullName: "Associate Cloud Engineer",
351379
shortName: "ACE",

0 commit comments

Comments
 (0)