From 8faa636afc777b0d855f014a5515558636c10452 Mon Sep 17 00:00:00 2001 From: SDKAuto Date: Fri, 10 May 2024 08:33:42 +0000 Subject: [PATCH] CodeGen from PR 29066 in Azure/azure-rest-api-specs Merge e1f7dc7612d976c073ca44b3a907aedcfb72c5b3 into 5485fc4eb11debd9cc8d92ec156b573998aae977 --- common/config/rush/pnpm-lock.yaml | 864 +-- rush.json | 9 +- .../arm-Oracle.Database/CHANGELOG.md | 5 + .../arm-Oracle.Database/LICENSE | 21 + .../arm-Oracle.Database/README.md | 109 + .../arm-Oracle.Database/_meta.json | 8 + .../arm-Oracle.Database/api-extractor.json | 31 + .../arm-Oracle.Database/package.json | 110 + .../review/arm-Oracle.Database.api.md | 2511 +++++++ .../arm-Oracle.Database/sample.env | 4 + .../arm-Oracle.Database/src/index.ts | 13 + .../arm-Oracle.Database/src/lroImpl.ts | 42 + .../arm-Oracle.Database/src/models/index.ts | 4674 +++++++++++++ .../arm-Oracle.Database/src/models/mappers.ts | 5992 +++++++++++++++++ .../src/models/parameters.ts | 385 ++ .../operations/autonomousDatabaseBackups.ts | 664 ++ .../autonomousDatabaseCharacterSets.ts | 215 + ...autonomousDatabaseNationalCharacterSets.ts | 215 + .../operations/autonomousDatabaseVersions.ts | 215 + .../src/operations/autonomousDatabases.ts | 1032 +++ .../operations/cloudExadataInfrastructures.ts | 862 +++ .../src/operations/cloudVmClusters.ts | 1042 +++ .../src/operations/dbNodes.ts | 392 ++ .../src/operations/dbServers.ts | 252 + .../src/operations/dbSystemShapes.ts | 213 + .../src/operations/dnsPrivateViews.ts | 213 + .../src/operations/dnsPrivateZones.ts | 213 + .../src/operations/giVersions.ts | 213 + .../src/operations/index.ts | 24 + .../src/operations/operations.ts | 149 + .../src/operations/oracleSubscriptions.ts | 833 +++ .../src/operations/virtualNetworkAddresses.ts | 529 ++ .../autonomousDatabaseBackups.ts | 153 + .../autonomousDatabaseCharacterSets.ts | 40 + ...autonomousDatabaseNationalCharacterSets.ts | 40 + .../autonomousDatabaseVersions.ts | 40 + .../autonomousDatabases.ts | 228 + .../cloudExadataInfrastructures.ts | 174 + .../operationsInterfaces/cloudVmClusters.ts | 228 + .../src/operationsInterfaces/dbNodes.ts | 83 + .../src/operationsInterfaces/dbServers.ts | 44 + .../operationsInterfaces/dbSystemShapes.ts | 40 + .../operationsInterfaces/dnsPrivateViews.ts | 40 + .../operationsInterfaces/dnsPrivateZones.ts | 40 + .../src/operationsInterfaces/giVersions.ts | 40 + .../src/operationsInterfaces/index.ts | 24 + .../src/operationsInterfaces/operations.ts | 22 + .../oracleSubscriptions.ts | 170 + .../virtualNetworkAddresses.ts | 115 + .../src/oracleDatabaseResourceManager.ts | 209 + .../arm-Oracle.Database/src/pagingHelper.ts | 39 + .../arm-Oracle.Database/test/sampleTest.ts | 43 + .../arm-Oracle.Database/tsconfig.json | 27 + sdk/Oracle.Database/ci.mgmt.yml | 38 + 54 files changed, 23514 insertions(+), 417 deletions(-) create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/CHANGELOG.md create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/LICENSE create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/README.md create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/_meta.json create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/api-extractor.json create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/package.json create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/review/arm-Oracle.Database.api.md create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/sample.env create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/index.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/lroImpl.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/models/index.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/models/mappers.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/models/parameters.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabaseBackups.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabaseCharacterSets.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabaseNationalCharacterSets.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabaseVersions.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabases.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operations/cloudExadataInfrastructures.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operations/cloudVmClusters.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operations/dbNodes.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operations/dbServers.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operations/dbSystemShapes.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operations/dnsPrivateViews.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operations/dnsPrivateZones.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operations/giVersions.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operations/index.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operations/operations.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operations/oracleSubscriptions.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operations/virtualNetworkAddresses.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabaseBackups.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabaseCharacterSets.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabaseNationalCharacterSets.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabaseVersions.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabases.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/cloudExadataInfrastructures.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/cloudVmClusters.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dbNodes.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dbServers.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dbSystemShapes.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dnsPrivateViews.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dnsPrivateZones.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/giVersions.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/index.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/operations.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/oracleSubscriptions.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/virtualNetworkAddresses.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/oracleDatabaseResourceManager.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/src/pagingHelper.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/test/sampleTest.ts create mode 100644 sdk/Oracle.Database/arm-Oracle.Database/tsconfig.json create mode 100644 sdk/Oracle.Database/ci.mgmt.yml diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index b10db31cb5e4..eebea877c369 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -56,6 +56,9 @@ dependencies: '@rush-temp/app-configuration': specifier: file:./projects/app-configuration.tgz version: file:projects/app-configuration.tgz + '@rush-temp/arm-Oracle.Database': + specifier: file:./projects/arm-Oracle.Database.tgz + version: file:projects/arm-Oracle.Database.tgz '@rush-temp/arm-advisor': specifier: file:./projects/arm-advisor.tgz version: file:projects/arm-advisor.tgz @@ -1375,7 +1378,7 @@ packages: '@azure/core-auth': 1.7.2 '@azure/core-tracing': 1.0.0-preview.13 '@azure/core-util': 1.9.0 - '@azure/logger': 1.0.4 + '@azure/logger': 1.1.2 '@types/node-fetch': 2.6.11 '@types/tunnel': 0.0.3 form-data: 4.0.0 @@ -3307,13 +3310,13 @@ packages: resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} dependencies: '@types/connect': 3.4.38 - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/bunyan@1.8.9: resolution: {integrity: sha512-ZqS9JGpBxVOvsawzmVt30sP++gSQMTejCkIAQ3VdadOcRE8izTyW66hufvwLeH+YEGP6Js2AW7Gz+RMyvrEbmw==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/chai-as-promised@7.1.8: @@ -3335,7 +3338,7 @@ packages: /@types/connect@3.4.38: resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/cookie@0.4.1: @@ -3345,7 +3348,7 @@ packages: /@types/cors@2.8.17: resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/debug@4.1.12: @@ -3357,7 +3360,7 @@ packages: /@types/decompress@4.2.7: resolution: {integrity: sha512-9z+8yjKr5Wn73Pt17/ldnmQToaFHZxK0N1GHysuk/JIPT8RIdQeoInM01wWPgypRcvb6VH1drjuFpQ4zmY437g==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/eslint@8.44.9: @@ -3374,7 +3377,7 @@ packages: /@types/express-serve-static-core@4.19.0: resolution: {integrity: sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 '@types/qs': 6.9.15 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -3393,19 +3396,19 @@ packages: resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==} dependencies: '@types/jsonfile': 6.1.4 - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/fs-extra@8.1.5: resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/fs-extra@9.0.13: resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/http-errors@2.0.4: @@ -3422,7 +3425,7 @@ packages: /@types/is-buffer@2.0.2: resolution: {integrity: sha512-G6OXy83Va+xEo8XgqAJYOuvOMxeey9xM5XKkvwJNmN8rVdcB+r15HvHsG86hl86JvU0y1aa7Z2ERkNFYWw9ySg==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/json-schema@7.0.15: @@ -3436,19 +3439,19 @@ packages: /@types/jsonfile@6.1.4: resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/jsonwebtoken@9.0.6: resolution: {integrity: sha512-/5hndP5dCjloafCXns6SZyESp3Ldq7YjH3zwzwczYnjxIT0Fqzk5ROSYVGfFyczIue7IUEj8hkvLbPoLQ18vQw==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/jws@3.2.10: resolution: {integrity: sha512-cOevhttJmssERB88/+XvZXvsq5m9JLKZNUiGfgjUb5lcPRdV2ZQciU6dU76D/qXXFYpSqkP3PrSg4hMTiafTZw==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/linkify-it@5.0.0: @@ -3495,13 +3498,13 @@ packages: /@types/mysql@2.15.22: resolution: {integrity: sha512-wK1pzsJVVAjYCSZWQoWHziQZbNggXFDUEIGf54g4ZM/ERuP86uGdWeKZWMYlqTPMZfHJJvLPyogXGvCOg87yLQ==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/node-fetch@2.6.11: resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 form-data: 4.0.0 dev: false @@ -3530,7 +3533,7 @@ packages: /@types/pg@8.6.1: resolution: {integrity: sha512-1Kc4oAGzAl7uqUStZCDvaLFqZrW9qWSjXOmBfdgyBP5La7Us6Mg4GBvRlSoaZMhQF/zSj1C8CtKMBkoiT8eL8w==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 pg-protocol: 1.6.1 pg-types: 2.2.0 dev: false @@ -3550,7 +3553,7 @@ packages: /@types/readdir-glob@1.1.5: resolution: {integrity: sha512-raiuEPUYqXu+nvtY2Pe8s8FEmZ3x5yAH4VkLdihcPdalvsHltomrRC9BzuStrJ9yk06470hS0Crw0f1pXqD+Hg==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/resolve@1.20.2: @@ -3569,14 +3572,14 @@ packages: resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} dependencies: '@types/mime': 1.3.5 - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/serve-static@1.15.7: resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} dependencies: '@types/http-errors': 2.0.4 - '@types/node': 18.19.32 + '@types/node': 20.10.8 '@types/send': 0.17.4 dev: false @@ -3597,13 +3600,13 @@ packages: /@types/stoppable@1.1.3: resolution: {integrity: sha512-7wGKIBJGE4ZxFjk9NkjAxZMLlIXroETqP1FJCdoSvKmEznwmBxQFmTB1dsCkAvVcNemuSZM5qkkd9HE/NL2JTw==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/through@0.0.33: resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/triple-beam@1.3.5: @@ -3617,7 +3620,7 @@ packages: /@types/tunnel@0.0.3: resolution: {integrity: sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/underscore@1.11.15: @@ -3635,13 +3638,13 @@ packages: /@types/ws@7.4.7: resolution: {integrity: sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/ws@8.5.10: resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false /@types/yargs-parser@21.0.3: @@ -3658,7 +3661,7 @@ packages: resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} requiresBuild: true dependencies: - '@types/node': 18.19.32 + '@types/node': 20.10.8 dev: false optional: true @@ -5193,7 +5196,7 @@ packages: dependencies: '@types/cookie': 0.4.1 '@types/cors': 2.8.17 - '@types/node': 18.19.32 + '@types/node': 20.10.8 accepts: 1.3.8 base64id: 2.0.0 cookie: 0.4.2 @@ -6224,7 +6227,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 5.0.1 + minimatch: 5.1.6 once: 1.4.0 dev: false @@ -8499,7 +8502,7 @@ packages: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 18.19.32 + '@types/node': 20.10.8 long: 5.2.3 dev: false @@ -10542,7 +10545,7 @@ packages: dev: false file:projects/abort-controller.tgz: - resolution: {integrity: sha512-QZ0E3RZB7pUg1bZN5ItGSjX9TUZc+boHlKqirCXSsH8IzCA8TBWImWCYFzXDIMhnk5DZQZUd7+S5MoTWtNqANA==, tarball: file:projects/abort-controller.tgz} + resolution: {integrity: sha512-QyNMkQBrSPMQA1WJFyuFJMd14vykwwDw7955MmKvLopfcjj+sewnzO4+bIaNC9DwROFRiY8oHGD1HZc7fABncg==, tarball: file:projects/abort-controller.tgz} name: '@rush-temp/abort-controller' version: 0.0.0 dependencies: @@ -10574,7 +10577,7 @@ packages: dev: false file:projects/agrifood-farming.tgz: - resolution: {integrity: sha512-HZSx6lhjPi5qHvHdGJccgLOkO81zZ1uPpbrb/XHkIDJYEgZKztojGreO4E/YfNCWywHBz9HcH2VwcnXG5Dd3kw==, tarball: file:projects/agrifood-farming.tgz} + resolution: {integrity: sha512-YIKoS//F+JC5Z5U03+oik6ddqcAUnyYDkanBpy0t6pKx/mrIkSpw+lVv575Mt911JnxS4GzjMskGBwtoelNVSw==, tarball: file:projects/agrifood-farming.tgz} name: '@rush-temp/agrifood-farming' version: 0.0.0 dependencies: @@ -10621,7 +10624,7 @@ packages: dev: false file:projects/ai-anomaly-detector.tgz: - resolution: {integrity: sha512-iCAJGraXxuPI6HnvhvqvAEsc6J/bDEv5oJf79EEH+aEgVxoX7j8l2utPd3HZUQcS0fy6PvZS0SoKxaV8o6kleQ==, tarball: file:projects/ai-anomaly-detector.tgz} + resolution: {integrity: sha512-NIN7uMdpYqfkcL6RqgMwImlrU/cYjQaUThas3kTdOiyYJVB1+i88KSNP0vkn5yhiHuA9Tg/PagvkiBisV+NEtg==, tarball: file:projects/ai-anomaly-detector.tgz} name: '@rush-temp/ai-anomaly-detector' version: 0.0.0 dependencies: @@ -10668,7 +10671,7 @@ packages: dev: false file:projects/ai-content-safety.tgz: - resolution: {integrity: sha512-TMcjYfnMtjYkygH9JvMeRQ6/0tushS9oAbPiK8HQXvgfqAdEHfIX14eABYavFiBPOUiuodNriCrXF3OsnHroaQ==, tarball: file:projects/ai-content-safety.tgz} + resolution: {integrity: sha512-e3gc7GLlQFLoH5AOBQKbXBDg0CiRDL+HTvlQgKgoMuays937daJUZ0bPNahhGiUVmD39PmmcPRSKWNJaFSE9LQ==, tarball: file:projects/ai-content-safety.tgz} name: '@rush-temp/ai-content-safety' version: 0.0.0 dependencies: @@ -10713,7 +10716,7 @@ packages: dev: false file:projects/ai-document-intelligence.tgz: - resolution: {integrity: sha512-F0qhC9gs36W1qaV+CqxLt36IB8nHJlEzUNxix/VzmLKtD8V3mniIkpshChzYiebnJNjbxpwGTq+xt/bouutU6Q==, tarball: file:projects/ai-document-intelligence.tgz} + resolution: {integrity: sha512-O9KnUHux32czxiSlcW374f0zP9DdGzzXaabJZuYiomrLGUU8201g6s26DKRzcgsNL/JG8eq4M67mikOYiSnkkg==, tarball: file:projects/ai-document-intelligence.tgz} name: '@rush-temp/ai-document-intelligence' version: 0.0.0 dependencies: @@ -10760,7 +10763,7 @@ packages: dev: false file:projects/ai-document-translator.tgz: - resolution: {integrity: sha512-Vf7Fo170U5+VKVsZlQB7o8PSsjaoROE5O1knRdMAx6HvIvBT8J8DLMk2MLcxLbLn/u4SNu6DdB21AwyIVf6Nog==, tarball: file:projects/ai-document-translator.tgz} + resolution: {integrity: sha512-bFjyePKkhsvdY3PQfILXwbzQ3dSKvIvWNz7di+J9n2dunU3VEE35QNWt92V8rBFVsTyjblGqdbEFRPVg+U9wtA==, tarball: file:projects/ai-document-translator.tgz} name: '@rush-temp/ai-document-translator' version: 0.0.0 dependencies: @@ -10805,7 +10808,7 @@ packages: dev: false file:projects/ai-form-recognizer.tgz: - resolution: {integrity: sha512-8YLmzSpFghgvblc3nHGSAkb1t99w6YFPK5LwycwDzoXSbm8v34TaMe//RC/A73OjaLJt6peCDSsXkVU/KcJddA==, tarball: file:projects/ai-form-recognizer.tgz} + resolution: {integrity: sha512-K9BlR/HQSbQPbwEAgCqPPDIKEZ30WKLt+Xteh9jEsA7pImFX1nYLBqJIhG+jw/JVMhRkOmtaDsl+RN0FOJmKCw==, tarball: file:projects/ai-form-recognizer.tgz} name: '@rush-temp/ai-form-recognizer' version: 0.0.0 dependencies: @@ -10854,7 +10857,7 @@ packages: dev: false file:projects/ai-language-conversations.tgz: - resolution: {integrity: sha512-y38041Ljdkb8VoAZ0hkf5qCrl6nTVeoQogPMipCxamrWXrj1aYBGgyVmuefZvI/P17kXE9I81zqrrrawYnGm4Q==, tarball: file:projects/ai-language-conversations.tgz} + resolution: {integrity: sha512-brgEmjbbi4zBMY2W4ori3NJoiMNFUXTlPqW9v90z6vD+nai+GQzAzYO6IzMl1WC8A4kSdImKXePvK8BWRXY2Zg==, tarball: file:projects/ai-language-conversations.tgz} name: '@rush-temp/ai-language-conversations' version: 0.0.0 dependencies: @@ -10904,7 +10907,7 @@ packages: dev: false file:projects/ai-language-text.tgz: - resolution: {integrity: sha512-4Mp2wIsSdCqKIdF6x5Muz0VeTwNMNJuLAyYFP0u6MMi54YjG6YN7AO0/Ojy8irIhKHYjMtYgyzcjVBQKUsmY9A==, tarball: file:projects/ai-language-text.tgz} + resolution: {integrity: sha512-y6j25M99pYlSstK3r+7DsGkfbXzx7DlAcWfiy9EWcHzp7/BRZ/Dg177z5S4lohg+Jd/9JGGFaxpNIcECH1HTNA==, tarball: file:projects/ai-language-text.tgz} name: '@rush-temp/ai-language-text' version: 0.0.0 dependencies: @@ -10953,7 +10956,7 @@ packages: dev: false file:projects/ai-language-textauthoring.tgz: - resolution: {integrity: sha512-6nr5OO05e+OLV++CpNwQeJiDe117qAcNaLsW6+TUEB5JlgfPV7GQjflepC9nW0UP7bM/Usjxe/1D5/uqJQA9Vg==, tarball: file:projects/ai-language-textauthoring.tgz} + resolution: {integrity: sha512-4SPopXyXGIBZl/+zClplXf5AcN8/WSICaaI+51NQ56xccla9T+K+UtJJPjfq763q1BAiAPGLOYyJRW0UDmh1aQ==, tarball: file:projects/ai-language-textauthoring.tgz} name: '@rush-temp/ai-language-textauthoring' version: 0.0.0 dependencies: @@ -10980,7 +10983,7 @@ packages: dev: false file:projects/ai-metrics-advisor.tgz: - resolution: {integrity: sha512-eGjg+bP9U9y4AsSuJTTQJXr1k2csDmjD/6ZZnySt0KkrjJheCO4xh22geeSvkuEJBHyodoDy8YDN+LhOuggx7w==, tarball: file:projects/ai-metrics-advisor.tgz} + resolution: {integrity: sha512-XIzn2uwGPF4f/p7zQ16REsiz9ONPfc2nt0aL/G1p+7kavtRwesAc6zjNxx5kmQu07IuN1GOaW75za3EsfiGcoQ==, tarball: file:projects/ai-metrics-advisor.tgz} name: '@rush-temp/ai-metrics-advisor' version: 0.0.0 dependencies: @@ -11025,7 +11028,7 @@ packages: dev: false file:projects/ai-text-analytics.tgz: - resolution: {integrity: sha512-aisDCcckty5/Qw10RuHTrbDf8kf0WgTR1WcAgQ9REcu9h8Gmm3YHaom0CYHiFmIz1zk4RTII4RUQcthYbFM5pg==, tarball: file:projects/ai-text-analytics.tgz} + resolution: {integrity: sha512-ihwgmnQpcNkQOaZssCcb7vo90Q9NGp8yw3GIFrbsaq7jeOzo51oplw/C7+gWVMc97eRI2ohE7uVygaIfOiwAug==, tarball: file:projects/ai-text-analytics.tgz} name: '@rush-temp/ai-text-analytics' version: 0.0.0 dependencies: @@ -11073,7 +11076,7 @@ packages: dev: false file:projects/ai-translation-text.tgz: - resolution: {integrity: sha512-TwO9ZrOIhwXstbhTsU9mTvzm6Cr7Gaa+HDt/4CkUsyRXyltW97WSQ0czdMoZS3+icSErRJYRprBS2IyO04KoZA==, tarball: file:projects/ai-translation-text.tgz} + resolution: {integrity: sha512-nGLU9Cy/C48q4NQH/g2PCch0u+lw/vQjTssiVpNKc+NOFKQliTF/TFkkXevsAcanh8elPXKT1gp560CEBD44rw==, tarball: file:projects/ai-translation-text.tgz} name: '@rush-temp/ai-translation-text' version: 0.0.0 dependencies: @@ -11118,7 +11121,7 @@ packages: dev: false file:projects/ai-vision-image-analysis.tgz: - resolution: {integrity: sha512-XoJviqs0EVB+5vHHC8cukN0rC+ze+fdGdhtyfyR949LXDZa/9npCnpu1cuZFaPoSK0eu+vYxOJi/kZA3Ar6Tag==, tarball: file:projects/ai-vision-image-analysis.tgz} + resolution: {integrity: sha512-iTZJIfDxQPc54T9fL9/8QK4wb+1w/2+K7eh2MZn903yAG08gnhXzLXk6rC+VlqEaiItmLZr7RLBHWmKGaYsGYQ==, tarball: file:projects/ai-vision-image-analysis.tgz} name: '@rush-temp/ai-vision-image-analysis' version: 0.0.0 dependencies: @@ -11163,7 +11166,7 @@ packages: dev: false file:projects/api-management-custom-widgets-scaffolder.tgz: - resolution: {integrity: sha512-JbBeeqxT29/SMna+CRVXEaTh6A23O9GMDd8djYxz5bdFEhWxGwqvYVos0V/6pp82Ohmp57shkbg0t9y5urOubA==, tarball: file:projects/api-management-custom-widgets-scaffolder.tgz} + resolution: {integrity: sha512-lMLjThvDdunhTGs97/cZydb8QqJM9THIOU83yszP/TU5pRgQgJ1hbTSkENYZevGdnRvo2KF8u4tkRepwT+GBzg==, tarball: file:projects/api-management-custom-widgets-scaffolder.tgz} name: '@rush-temp/api-management-custom-widgets-scaffolder' version: 0.0.0 dependencies: @@ -11205,7 +11208,7 @@ packages: dev: false file:projects/api-management-custom-widgets-tools.tgz: - resolution: {integrity: sha512-fRrbQBQLd8yZNoZLM2bVchzax18ri041vIt9m42eFaLioP1KZesMVobBkEqf6qVhFOn47TMju9SFMfSMmQ3Idw==, tarball: file:projects/api-management-custom-widgets-tools.tgz} + resolution: {integrity: sha512-pjIub72PGhWxnGf2w/fDNSFgqU/Kx6xZrbxUAYMRypxSCuPhERVPDT6tu2bakNa6o31u5NPuEm2lg5VtIfS7eA==, tarball: file:projects/api-management-custom-widgets-tools.tgz} name: '@rush-temp/api-management-custom-widgets-tools' version: 0.0.0 dependencies: @@ -11242,7 +11245,7 @@ packages: dev: false file:projects/app-configuration.tgz: - resolution: {integrity: sha512-xS3GFMp6rhn0j3PLEFnWq5O0vL8ANSw5a3DM5JT3jdITPTBd2iJC/9Ntyh9aj74yMz13rGal+w17Px+qOKhaxA==, tarball: file:projects/app-configuration.tgz} + resolution: {integrity: sha512-VNYxYcU7mbxAE0503atyo5jvkr/g0b8GVZBcE2JTFh6VMWXHZRtaUmwTPYmHFwwJ7Lr5mubT1GKvpTvfUJCq6w==, tarball: file:projects/app-configuration.tgz} name: '@rush-temp/app-configuration' version: 0.0.0 dependencies: @@ -11283,8 +11286,39 @@ packages: - utf-8-validate dev: false + file:projects/arm-Oracle.Database.tgz: + resolution: {integrity: sha512-OVO9Yvn2BWRxz3xVH9Rnv9Oz0r8YGELAkkhbgvKWOFa0QnO2zupI8+u9CVyCe8PajNHyxRv1w42ZvxPHtOFnAA==, tarball: file:projects/arm-Oracle.Database.tgz} + name: '@rush-temp/arm-Oracle.Database' + version: 0.0.0 + dependencies: + '@azure-tools/test-credential': 1.0.4 + '@azure-tools/test-recorder': 3.2.0 + '@azure/abort-controller': 1.1.0 + '@azure/core-lro': 2.7.2 + '@azure/identity': 4.2.0 + '@microsoft/api-extractor': 7.43.2(@types/node@18.19.32) + '@types/chai': 4.3.16 + '@types/mocha': 10.0.6 + '@types/node': 18.19.32 + chai: 4.3.10 + cross-env: 7.0.3 + dotenv: 16.4.5 + mkdirp: 3.0.1 + mocha: 10.4.0 + rimraf: 5.0.5 + ts-node: 10.9.2(@types/node@18.19.32)(typescript@5.4.5) + tslib: 2.6.2 + tsx: 4.9.3 + typescript: 5.4.5 + uglify-js: 3.17.4 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + - supports-color + dev: false + file:projects/arm-advisor.tgz: - resolution: {integrity: sha512-4n/AKXjIFLfkmxdcXVmi6ZsOeyVJe7MhJVu9hmVAPf1C5fTOZDqCjKDiZ6UoySFVQwA5J9SeSvrt4DEaNrK5xw==, tarball: file:projects/arm-advisor.tgz} + resolution: {integrity: sha512-0hN4zHzXqSx4Sv/N3QEL7ahjbTXvrmO05r3y6GPMNq+6AlLl7uHTAD6DfCHpSYlaV+lLQq+ODveQKUSYx3Ya4w==, tarball: file:projects/arm-advisor.tgz} name: '@rush-temp/arm-advisor' version: 0.0.0 dependencies: @@ -11312,7 +11346,7 @@ packages: dev: false file:projects/arm-agrifood.tgz: - resolution: {integrity: sha512-46uFsEF53m7H7vEkK9M5QgqcBxKNw0odYTixjlf6I7kkjGFgQX0388Yjd8eTdsBbAI6HY59uaJPHWEzAVkatwQ==, tarball: file:projects/arm-agrifood.tgz} + resolution: {integrity: sha512-DtgnjSI/ClXFSU+VynFUq66VKFdk9zXSpKyCZ9zCoo97F7+ZTQY7p1idG+HPAMiluIyUugPBfDW2IQN/hFFVrg==, tarball: file:projects/arm-agrifood.tgz} name: '@rush-temp/arm-agrifood' version: 0.0.0 dependencies: @@ -11341,7 +11375,7 @@ packages: dev: false file:projects/arm-analysisservices.tgz: - resolution: {integrity: sha512-hpMtD6tCsrz/UQkre+nKHCWWEiOkl287AIdOzU3FRO+frq8fvZ2dJ4ROs9XAPmvv7V3YittnVVxyWUhGILmhjw==, tarball: file:projects/arm-analysisservices.tgz} + resolution: {integrity: sha512-5BpkKa44miE0VH587+jqxINWYLsMGmM3Bkg6QBfGdVwqFgrq4sZKSPpquoPLt4K/nQnHUBTs3RNpMZuP+UQYWA==, tarball: file:projects/arm-analysisservices.tgz} name: '@rush-temp/arm-analysisservices' version: 0.0.0 dependencies: @@ -11370,7 +11404,7 @@ packages: dev: false file:projects/arm-apicenter.tgz: - resolution: {integrity: sha512-/PQPMfrsBKFGoVPRTpVmlLoV9j5cYZjNYxLUj9B9+VL7CljtvIKIQvNW1frmOA9UBD/tMpU1hO54Skv0zof/9Q==, tarball: file:projects/arm-apicenter.tgz} + resolution: {integrity: sha512-03HM2Bx6+knOBc8hvWGtEOupSEUOWeNfVxcu5OcyKKQc96xXOtLbIFXkUQM8QImTyT90ryRzaeyB9pRrK0ssIw==, tarball: file:projects/arm-apicenter.tgz} name: '@rush-temp/arm-apicenter' version: 0.0.0 dependencies: @@ -11400,7 +11434,7 @@ packages: dev: false file:projects/arm-apimanagement.tgz: - resolution: {integrity: sha512-qw5NGvTpjnkp19UXOPslhDhzsuhT/c8l0XerShkRA4hUdQnVRbVjiUSvAIa6j29dhykPU5Gd2T0RNz8VIFPHbg==, tarball: file:projects/arm-apimanagement.tgz} + resolution: {integrity: sha512-VcsQqKmS1ZQKutAnylSiR0i6H+AvZAiVdbhJC89+73jAN10m424/aT5LlI+vikD3yyfSiRxKfD60qauCRzKFog==, tarball: file:projects/arm-apimanagement.tgz} name: '@rush-temp/arm-apimanagement' version: 0.0.0 dependencies: @@ -11430,7 +11464,7 @@ packages: dev: false file:projects/arm-appcomplianceautomation.tgz: - resolution: {integrity: sha512-kAYEheOc/6MjuSrvSaoxOGHfmMj8PuZDQfyjnzLdHloUtPaczM7hixmZtqAcUJcPvq42U7Rycq3QtgWf34yA5g==, tarball: file:projects/arm-appcomplianceautomation.tgz} + resolution: {integrity: sha512-9sn969aZYnAGicmEOTkxX3+sAgDLqVugjhsuu9OEzop8QVFY3xk+YjH1Tg8DoAcDQ9NRg106o/8cMhJSFyrsFg==, tarball: file:projects/arm-appcomplianceautomation.tgz} name: '@rush-temp/arm-appcomplianceautomation' version: 0.0.0 dependencies: @@ -11459,7 +11493,7 @@ packages: dev: false file:projects/arm-appconfiguration.tgz: - resolution: {integrity: sha512-iapgi1DwZGcDL6Oy1VNg80Nl4xWiQ1LiTinbcnY53ACteC3jP5QxMWa7R6GJtU9xOgTtPWHTXX9Zutw1tc2dvg==, tarball: file:projects/arm-appconfiguration.tgz} + resolution: {integrity: sha512-vhMz0aVWBB5i61Y4ed6CiBDJkOBrIr+qoDLxUXas47SkbyrA03rEQ0TbNkQAP22ragEVSAD+XK400hLSOjsL2Q==, tarball: file:projects/arm-appconfiguration.tgz} name: '@rush-temp/arm-appconfiguration' version: 0.0.0 dependencies: @@ -11489,7 +11523,7 @@ packages: dev: false file:projects/arm-appcontainers.tgz: - resolution: {integrity: sha512-aO1U72geingTSGhKO7bj/QxqeyF1suw86Rc/hnIGj5a91e+41mwTX0p0JW/d0MNelVfXwWfNJIgbRvVibllqhA==, tarball: file:projects/arm-appcontainers.tgz} + resolution: {integrity: sha512-5CdbeO1IFlnvg6IK3AmC4+lAcpYv1ETJE91Yfpk33AzVi90PPVlmnZ8i0pMBkUdYWl9rqxeZHwEZf7YK/vULcQ==, tarball: file:projects/arm-appcontainers.tgz} name: '@rush-temp/arm-appcontainers' version: 0.0.0 dependencies: @@ -11519,7 +11553,7 @@ packages: dev: false file:projects/arm-appinsights.tgz: - resolution: {integrity: sha512-0vRtSGFW0eqMFp4ErlCMkiCGYqeCsmfegVz3R2EjMyqS+vydUI5OKtQWRgG3c8kacxbeC3lh7pDz87w2v3f9bQ==, tarball: file:projects/arm-appinsights.tgz} + resolution: {integrity: sha512-0pblb4YxNqqK85WDJh+AURSCDOFrMozw6E7NM0pw4eB4AQ3iRz2UlTgyx+Z/Sb56uZVM7gTUxFtj3AiSWUZoVA==, tarball: file:projects/arm-appinsights.tgz} name: '@rush-temp/arm-appinsights' version: 0.0.0 dependencies: @@ -11546,7 +11580,7 @@ packages: dev: false file:projects/arm-appplatform.tgz: - resolution: {integrity: sha512-a2FqK4wHZahTc6S8Mdj9sMUw+Hp9dscWJhJQBGCnxGlTkl7Z5yMgGT8oR1TJR8AfvrWlRCeqNeu8KAioPcS0wQ==, tarball: file:projects/arm-appplatform.tgz} + resolution: {integrity: sha512-tR5b5dY+3RToVwVjqVz9TjAeeusanyWLdjba0PKXInK5vfFDtlq3MmQsdk0uRcGleUw4wQgwY/zWHYfz5x7jOA==, tarball: file:projects/arm-appplatform.tgz} name: '@rush-temp/arm-appplatform' version: 0.0.0 dependencies: @@ -11576,7 +11610,7 @@ packages: dev: false file:projects/arm-appservice-1.tgz: - resolution: {integrity: sha512-6tSKM0h7zjubB649Rf1vVd4OruJ4ogoqN60KPnqFZ7+31XWb3uFTlw51mdUSYv1oEPs/sEDTi2b/opNsJ7VMeA==, tarball: file:projects/arm-appservice-1.tgz} + resolution: {integrity: sha512-ty0dMNeEV6BYj7X9wqgW86iHPuaXcM0lAES4/XffcGi7IzZVfuzg0li8Vena/FOmW2SlqDDmxT0/RJNMNnLKaQ==, tarball: file:projects/arm-appservice-1.tgz} name: '@rush-temp/arm-appservice-1' version: 0.0.0 dependencies: @@ -11606,7 +11640,7 @@ packages: dev: false file:projects/arm-appservice-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-whUX2YPHhh1/1B8yijOZ+MVaMny4mzXsvIeYbeTimDlH5dH4rZyo5NCfoNa2tP7cPqKMYuMmS7TR+CZH+JhH6g==, tarball: file:projects/arm-appservice-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-Apz1K4e7aesryi0AOP34AxNltFvAPsP45TV+2XenHAxNl5ygfZT+CFnFOFZfJCNgk/Ewh/QqL6vQIRvzr4MDwQ==, tarball: file:projects/arm-appservice-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-appservice-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -11636,7 +11670,7 @@ packages: dev: false file:projects/arm-appservice.tgz: - resolution: {integrity: sha512-TZ+pwPsX4jXB9tKeA/BvuZ5VLmc9U5zyHyMwzJKzvqkwfOX9hRW3UvW4k3kVftlX2Rqrn4fFQwVZiZjfXMOfIg==, tarball: file:projects/arm-appservice.tgz} + resolution: {integrity: sha512-tlVIi+9KEEe1c396LdNzAp1KE387pmk8aLu1cjg2G3KjYdp5f2WVI7L9H8RNGCtTrwPv2Hg97Z8txnwe5E9YjQ==, tarball: file:projects/arm-appservice.tgz} name: '@rush-temp/arm-appservice' version: 0.0.0 dependencies: @@ -11682,7 +11716,7 @@ packages: dev: false file:projects/arm-astro.tgz: - resolution: {integrity: sha512-PKjfzziOiYxgAA0a4ZIpFY1qlLuIzQ3CzkIZNyk6vQuPRRVq61xoNhM3FyQvtXJkitiCb8Loh/30YyL/QiPHgA==, tarball: file:projects/arm-astro.tgz} + resolution: {integrity: sha512-ma2TgG60LV1yItrVF4C7B087d+k0tSs/jjPfArugBJUka1AKfJddjKblL+1nWra/V3GjdtON7mif9wzTcfcV9Q==, tarball: file:projects/arm-astro.tgz} name: '@rush-temp/arm-astro' version: 0.0.0 dependencies: @@ -11712,7 +11746,7 @@ packages: dev: false file:projects/arm-attestation.tgz: - resolution: {integrity: sha512-4F9tLM3y4f0vvq49n1pSLDJaEUcKZ9QIvKMrtH5egIdNeYgh7vLYM9rfpMHJTA2CiowYWyg7sgPXa5JDmkEvlg==, tarball: file:projects/arm-attestation.tgz} + resolution: {integrity: sha512-ZpKkQ7nL15UcYHsPuO94vmMWx5YvBUls1OY/j9MFmof1LP8FgPACfD9TIScidhM7ZAkN5l+zMlwRTB6mWIIE1g==, tarball: file:projects/arm-attestation.tgz} name: '@rush-temp/arm-attestation' version: 0.0.0 dependencies: @@ -11739,7 +11773,7 @@ packages: dev: false file:projects/arm-authorization-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-DqP28/Rs+gO7bSS66OpdWldz09504z1uzoDKQM9PZqR7pcaMxNObnRPjM2vlfGRsPBLvWjKBlunHBG9fXYbesg==, tarball: file:projects/arm-authorization-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-M1upRU0MOdHmzaU4l4K2SxdJ0CJOAyPbSMEEh7yZqAoC/I7IkfB+JA0x4uwqUMJq9ivHLpZQG8VLrpfRMhaUQA==, tarball: file:projects/arm-authorization-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-authorization-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -11767,7 +11801,7 @@ packages: dev: false file:projects/arm-authorization.tgz: - resolution: {integrity: sha512-qSxeQYBN1XKMBYY+cVj3+biEV06litUjNR+KOol+ZtCSj241Y0oP13JrlE0SrxPXYYaOj+U4GKcDqbBhwF/RKA==, tarball: file:projects/arm-authorization.tgz} + resolution: {integrity: sha512-nfy8arolZejYYp2RM3UjjrMiHyykaAPVfBXzGEF+xf+vOPVvf8kWakESduqWY8HghbMnGE/Nf5q5ge8GDm97Wg==, tarball: file:projects/arm-authorization.tgz} name: '@rush-temp/arm-authorization' version: 0.0.0 dependencies: @@ -11797,7 +11831,7 @@ packages: dev: false file:projects/arm-automanage.tgz: - resolution: {integrity: sha512-lq87gvc5pAYa1/MAeQLaviX9fc33iq/2D/pi4gteOf+bbx6NZJOWKSAiWthJGosZutv3ds3nBQ91GwiWdQMWRg==, tarball: file:projects/arm-automanage.tgz} + resolution: {integrity: sha512-ds3ivqdQDfHHDy09XwQWiCSKLtbh2eLK02WzJHAwLe/AUYSsmrrAKwbxWchjWmJKsBGLOxPelHDUBhseIBZBRg==, tarball: file:projects/arm-automanage.tgz} name: '@rush-temp/arm-automanage' version: 0.0.0 dependencies: @@ -11825,7 +11859,7 @@ packages: dev: false file:projects/arm-automation.tgz: - resolution: {integrity: sha512-Hop/T9O6fMv+7I96zSAL5BNao3YeUE19LGUDuBJZZR+tPbL6meodzAaEoZhSrFgepY1RmPxonuMN3X0UGtYniw==, tarball: file:projects/arm-automation.tgz} + resolution: {integrity: sha512-SJQRTguNauleDan4YtWkjJC3DD+VtCOUnljoO8htFtIith3PluNsMFT9oOxiHrqsv8+wJ20KDZ17mjwYyNq95g==, tarball: file:projects/arm-automation.tgz} name: '@rush-temp/arm-automation' version: 0.0.0 dependencies: @@ -11855,7 +11889,7 @@ packages: dev: false file:projects/arm-avs.tgz: - resolution: {integrity: sha512-mTOS9gnSgQeVjaXOODq73/MxYLvfL+gotRZ8G7yixnLelChfDK96qyaYnIBluZLAKQJ+UNyYjpNla4YhheFrQg==, tarball: file:projects/arm-avs.tgz} + resolution: {integrity: sha512-a18JtfHB9CiIXMyh+bqd1UHcjJqfomgibayRWgUemCeH6t9W7PWHYlIq5+0V/8MtjuJa2Mjrc0v8npl2t50qTA==, tarball: file:projects/arm-avs.tgz} name: '@rush-temp/arm-avs' version: 0.0.0 dependencies: @@ -11885,7 +11919,7 @@ packages: dev: false file:projects/arm-azureadexternalidentities.tgz: - resolution: {integrity: sha512-nmhJXSdVKJJdhkfFDcGdVj770fTQDy/Sl6ShPydOJzvpHG4+pudqysik4HW/ftlEVmlAm+KcRKTviSsxIpWy9A==, tarball: file:projects/arm-azureadexternalidentities.tgz} + resolution: {integrity: sha512-TU9BGdnHF5ib87zgQHQyDr+ftp0o3af8SaTG9v55+D7Wz4NKEME5j2DqK1i1jnUUBobtlCj8DidS/8Mm/8ElRw==, tarball: file:projects/arm-azureadexternalidentities.tgz} name: '@rush-temp/arm-azureadexternalidentities' version: 0.0.0 dependencies: @@ -11914,7 +11948,7 @@ packages: dev: false file:projects/arm-azurestack.tgz: - resolution: {integrity: sha512-hu9x6gVISMUJx6VDeZAQbWxQEvdOVB+DmzRVkhgYVIZr+BzbWtaj1IHuLZM6h+3PPYhfGyls303vnPb32TKehw==, tarball: file:projects/arm-azurestack.tgz} + resolution: {integrity: sha512-+XjcjuES/pBub1qxpRJVJc/rh5MDzvt7x2lL/+1HqhN0TUgzoUq/vYv+hgRtvFQTLJGOHULccTBvQGJAqsZFCA==, tarball: file:projects/arm-azurestack.tgz} name: '@rush-temp/arm-azurestack' version: 0.0.0 dependencies: @@ -11941,7 +11975,7 @@ packages: dev: false file:projects/arm-azurestackhci.tgz: - resolution: {integrity: sha512-nLRq05d5Sl0851EDg18dmJ13RSjc6ieZKCcIdB8ilS8v8SuHFZxFKh/5gZvgVGFBFgOZNwVPUKZ3tezWk/JVPA==, tarball: file:projects/arm-azurestackhci.tgz} + resolution: {integrity: sha512-YKx28o5Lmc3QIWJT1D6EJ+xHmCIa88iiRl0fkmzS6ri1ZpaD1jbt5YBmT9H/F18wPQ/D2dR9bhtiaq9ht6mWdw==, tarball: file:projects/arm-azurestackhci.tgz} name: '@rush-temp/arm-azurestackhci' version: 0.0.0 dependencies: @@ -11971,7 +12005,7 @@ packages: dev: false file:projects/arm-baremetalinfrastructure.tgz: - resolution: {integrity: sha512-guuc6MMlWahsA5b57gRskL4v1prXdCAmWiFo4Rv0ANpF22qAxrMRV/5i8O3oCZSv8ExdgSVBj+BmLVBR+BWsQQ==, tarball: file:projects/arm-baremetalinfrastructure.tgz} + resolution: {integrity: sha512-MHM8KKCWsz6p5pWBa+ni+wEtDRS87r3T1RalaYNjWicFwj4PNIA4bps3AgXnrMMgJqZlVO0JNgp1EKbSfeX48g==, tarball: file:projects/arm-baremetalinfrastructure.tgz} name: '@rush-temp/arm-baremetalinfrastructure' version: 0.0.0 dependencies: @@ -12001,7 +12035,7 @@ packages: dev: false file:projects/arm-batch.tgz: - resolution: {integrity: sha512-EHowwGdBPNvp4oIMAOQXNPSFr3mMko7qfWr43Q4eH+sNBj6YPft0k+USkWyOQ2lcKOTBF0SddisrOUd/7jn0bw==, tarball: file:projects/arm-batch.tgz} + resolution: {integrity: sha512-sJ7cHVAQxUZ+/gkh1e4dSMSXKQmT0whaTnswSrfXCr0MYW6LbfDKwEyRIkW6Yet6hzIIdAB9erddf8zdxjbNfg==, tarball: file:projects/arm-batch.tgz} name: '@rush-temp/arm-batch' version: 0.0.0 dependencies: @@ -12031,7 +12065,7 @@ packages: dev: false file:projects/arm-billing.tgz: - resolution: {integrity: sha512-uY/GXYonZIqqgk7DLTkc9ejZQ4MMaKn6T1hH2/WAKbblDvxubI/oWYWEPrUxveAObAZEaDOI8cBctfrzLeeeeA==, tarball: file:projects/arm-billing.tgz} + resolution: {integrity: sha512-GUc3kXnlOoK2tGKsyEPEy4M39kkRrFUB0a4Ja+LlRsX5ia1/b6RuIjliBf+ArgsGtN4mQtgbNQRSrAkfp9f4vw==, tarball: file:projects/arm-billing.tgz} name: '@rush-temp/arm-billing' version: 0.0.0 dependencies: @@ -12060,7 +12094,7 @@ packages: dev: false file:projects/arm-billingbenefits.tgz: - resolution: {integrity: sha512-3ZtaCA+1LSMf5cMqtZLXjir3NvjaE1Zz0JRdo1SeGdG2net0Wl8OXL/LgHqme/M+vNVfet7uv2yw8pB2u5Gixw==, tarball: file:projects/arm-billingbenefits.tgz} + resolution: {integrity: sha512-Eq6rb2WZ6pvbw8caLmTH6C6HiU/Ku9XkC0181tbgMf+MASmsIj3sM3FvE2l0Hmlc546wRkX2w3YBBfJcGw/ZVA==, tarball: file:projects/arm-billingbenefits.tgz} name: '@rush-temp/arm-billingbenefits' version: 0.0.0 dependencies: @@ -12089,7 +12123,7 @@ packages: dev: false file:projects/arm-botservice.tgz: - resolution: {integrity: sha512-G2MhZd6mXFj8U2E72/U9LSL1iqHv1nqlgcL5otZR8wq4KBhpVSaRRDHx5LpW9TOlQ+OzP1Ydnko/Mu0oKWvYHg==, tarball: file:projects/arm-botservice.tgz} + resolution: {integrity: sha512-6lrDqa5ijtWtJ3ROUk0vnTfTQ3Iiu1M4JM0Ar7xYAbXd1nv1i1Ggb8mJuJhQ+iCVMHNs5eXMFVEZgiMNJ4TsaA==, tarball: file:projects/arm-botservice.tgz} name: '@rush-temp/arm-botservice' version: 0.0.0 dependencies: @@ -12119,7 +12153,7 @@ packages: dev: false file:projects/arm-cdn.tgz: - resolution: {integrity: sha512-bwve/TRV3QK91p0HCg5fYZ6H5mIFIChusBt+s2G8r5WTs2xGhvcxANsFimxkUTSK0I21bmqNvJO5pxx94YH3IQ==, tarball: file:projects/arm-cdn.tgz} + resolution: {integrity: sha512-cQZtpoog9FVwc/Tf9gqbv3f4tdMFO2hdnY24eGUAGqnJP7G8THm88e3NAA0WBfphlR/nC1HbfbBgFfM8GnsazQ==, tarball: file:projects/arm-cdn.tgz} name: '@rush-temp/arm-cdn' version: 0.0.0 dependencies: @@ -12149,7 +12183,7 @@ packages: dev: false file:projects/arm-changeanalysis.tgz: - resolution: {integrity: sha512-RopFbyzc+xCSkChS/TRZS2/Jc2gz20n+Ci7IEF5yf/HVOW1hk2o2zbI97LUh3R0E7Vah4VRdmJcC10/PiND7YA==, tarball: file:projects/arm-changeanalysis.tgz} + resolution: {integrity: sha512-ZDolxwkx6zE6VYo6pBRoC0hMViB4ZTb+vwtK2IU0mw2/Wbi95um2IyzP90c/QBSvLam/DC8xRVdVWNgUhkOVmw==, tarball: file:projects/arm-changeanalysis.tgz} name: '@rush-temp/arm-changeanalysis' version: 0.0.0 dependencies: @@ -12176,7 +12210,7 @@ packages: dev: false file:projects/arm-changes.tgz: - resolution: {integrity: sha512-lCTdOatplptheBSSJBDGoqHZ07REfY+HjVeUJFqyZq7O5tBs7T3C4B647gztgwRGwCdpZuLhbzoOUnAVuLmjhg==, tarball: file:projects/arm-changes.tgz} + resolution: {integrity: sha512-pZhlztz/mqUH7gyprhhAUI4W6Qig9MZJSok5A0LRH4Fxcnzx2uUlVUn7u2Xf/VLcHcpHfaJLFLGURQHeO3HnHg==, tarball: file:projects/arm-changes.tgz} name: '@rush-temp/arm-changes' version: 0.0.0 dependencies: @@ -12203,7 +12237,7 @@ packages: dev: false file:projects/arm-chaos.tgz: - resolution: {integrity: sha512-sU++TWVH6yYx7AlGU2P9vb3zgV7ZHXauGcyqEXDafNPavJvz0Efq82cqOxNDVKcgEPJ3LAQGvhA6uf+mXQ9xcw==, tarball: file:projects/arm-chaos.tgz} + resolution: {integrity: sha512-Tvz4NRZorCynnGHunqsg1GsvC+JKyZcFABURmpXYX+YTYUzW/0u7zIU/qC07St3KZLKxsmHl0J2GHQe9vOtj3g==, tarball: file:projects/arm-chaos.tgz} name: '@rush-temp/arm-chaos' version: 0.0.0 dependencies: @@ -12234,7 +12268,7 @@ packages: dev: false file:projects/arm-cognitiveservices.tgz: - resolution: {integrity: sha512-eVHMyz50I9iAgHKmvGnFcHSKt+Ue/BO14h5QVcn4hWRJj8MMS+AiGKdcmy5xAGW4/l7AZrY/MJPaLQUB05CgYQ==, tarball: file:projects/arm-cognitiveservices.tgz} + resolution: {integrity: sha512-d4L6DkRzWiD0z713gSD3attJGYO5hJ5ym37WbWbf4vjAeN/xQo5V54cvj+LwNb2448qVaHgnzNFDklpZMRSvCQ==, tarball: file:projects/arm-cognitiveservices.tgz} name: '@rush-temp/arm-cognitiveservices' version: 0.0.0 dependencies: @@ -12264,7 +12298,7 @@ packages: dev: false file:projects/arm-commerce-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-sYqIy6shQSmpsDwAucMGZHPyztLjnpwGjHI9CC3iUQwgc58EbwAqe/Cv1SkfJLYRlVSVcvmpRVB650I8StaXIQ==, tarball: file:projects/arm-commerce-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-eimMoCEXqNCN/uBQ2qYqOdVWXXytkbDm8lijw+G5qw6Zj4g80mVWTHebNU/mzfqM/LdlBIjgKQTlgY0tC1l44A==, tarball: file:projects/arm-commerce-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-commerce-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -12292,7 +12326,7 @@ packages: dev: false file:projects/arm-commerce.tgz: - resolution: {integrity: sha512-5iiFDyT1o4aX4V2+FSHDPgjUYJWw1laPRpXWUlj7i+aWysMwqTsgvNdcip0Ov2sYb4nTxE6xET58qGwVaXobwg==, tarball: file:projects/arm-commerce.tgz} + resolution: {integrity: sha512-UkGfaswQUf4IrCsIafxZm1pZdm6ARzhwuWY7wdHS9UNPKBOUN/s33ajLHYgswGxeCWMF9yM0bpKtB2CdwcRoSg==, tarball: file:projects/arm-commerce.tgz} name: '@rush-temp/arm-commerce' version: 0.0.0 dependencies: @@ -12319,7 +12353,7 @@ packages: dev: false file:projects/arm-commitmentplans.tgz: - resolution: {integrity: sha512-vCIt4Y3MOl70j9eEj/Aa7Xvigmyqzh4/l8fMJznWdTQWoieCbu3IYhF9gqkBdMPitdiBbIZTBngAbxpCSYNFoA==, tarball: file:projects/arm-commitmentplans.tgz} + resolution: {integrity: sha512-HcWHFGs3LkI2cObWbHBgyLbtkUANRx/CcpQB94Ij1bRecNnKlECSYUWO/Sbaa/KuM0gRC4Qe5qMhF8hJZx6TCw==, tarball: file:projects/arm-commitmentplans.tgz} name: '@rush-temp/arm-commitmentplans' version: 0.0.0 dependencies: @@ -12346,7 +12380,7 @@ packages: dev: false file:projects/arm-communication.tgz: - resolution: {integrity: sha512-SZl0h9qRxxIedVdvEXUmJ6SzYggsek9T0HjDpWWQH8/WaU4kPP7tOUDOvVwGmu4Y1HfZ+J8TMfxCxEz2a7hJPA==, tarball: file:projects/arm-communication.tgz} + resolution: {integrity: sha512-ZHGKr0y2aKvxmZ/n9R1GveuVTXpxuuGCxF72dfIDbWY2f057+xVojBh5RUi0a6DvQwA3qxwrztZ8DSNRxsKDVQ==, tarball: file:projects/arm-communication.tgz} name: '@rush-temp/arm-communication' version: 0.0.0 dependencies: @@ -12376,7 +12410,7 @@ packages: dev: false file:projects/arm-compute-1.tgz: - resolution: {integrity: sha512-Nn/kOyVC0eXuzUaWD8RBfQc4AhoMhISBWsOp0zBylsW+/394F4R5EMZ6sLYSPedqK8323hZYJM0E2Q0oTK4Aqw==, tarball: file:projects/arm-compute-1.tgz} + resolution: {integrity: sha512-D5urrfqEdVKKBCW/Z9tNK8m9M56W0IjKOhRWCutVSUoAziqB/JuRP0KCKgaqomEeDX4j0xQwXSmWo7SueqNpkw==, tarball: file:projects/arm-compute-1.tgz} name: '@rush-temp/arm-compute-1' version: 0.0.0 dependencies: @@ -12407,7 +12441,7 @@ packages: dev: false file:projects/arm-compute-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-QgesjisprNmFJvRUxfjNj3jmTMGggBQkSzFAlxOBrddPmmrxgOpiR77b8MBLg1bxtP5C4IfNYS3CqIOYVwNIag==, tarball: file:projects/arm-compute-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-WXIdu4X6gR2UKY3M1JON39/Zpau9HOvduoeYJCTD08tUa3j0UgOhQRm5Vup1M8rGfVVvmBTHXiP5MIyEIhUr8A==, tarball: file:projects/arm-compute-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-compute-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -12437,7 +12471,7 @@ packages: dev: false file:projects/arm-compute.tgz: - resolution: {integrity: sha512-ayS77Ztox2i7yCBld3HpfQ/618UH6P2ImLR3rDlI3t5O0hxfxTWMhXl3CnJ33znD7o2aiFof/z5kc30RCkGTpw==, tarball: file:projects/arm-compute.tgz} + resolution: {integrity: sha512-C6YIc6rBW1tCZ2KOCe58SuxgPbwwX76X1koD4na8WgV4/LvapBROHlZ/ZiWziK+7wCMn7msg2yIvisJf17Fsxw==, tarball: file:projects/arm-compute.tgz} name: '@rush-temp/arm-compute' version: 0.0.0 dependencies: @@ -12484,7 +12518,7 @@ packages: dev: false file:projects/arm-confidentialledger.tgz: - resolution: {integrity: sha512-PxPlIFyWJfww6m8WDQSiJb1g8FQrGOqqFgj06zGEKXlXJPpOxY9x0kvfFk0ZLV4t2XKf2VTdjhZTZjfjx9xSwg==, tarball: file:projects/arm-confidentialledger.tgz} + resolution: {integrity: sha512-vw9tyQrxgn/u61pr4GtAF1R4zmQ/UP0ORXJHKQ5rc757o8tOo76WWTZCJHT9FUYA8ciTSoTNShTHeRxb1YRfaQ==, tarball: file:projects/arm-confidentialledger.tgz} name: '@rush-temp/arm-confidentialledger' version: 0.0.0 dependencies: @@ -12515,7 +12549,7 @@ packages: dev: false file:projects/arm-confluent.tgz: - resolution: {integrity: sha512-+zshbbjMcl87yuPPlnT6evvsRpYvqbYCilnNxKhbyDwcXqi6EBlFn+1kQWot9jo2qCd5QaIMk9+QbC9HUWqzZw==, tarball: file:projects/arm-confluent.tgz} + resolution: {integrity: sha512-+x51mU5Nar6WM4zihTTvonFGKpdVivQ+zw3fJsagt4qxTyrE9DUeGONQPC5H02e5+eQIJ2COHosU/ke7E6Ij+g==, tarball: file:projects/arm-confluent.tgz} name: '@rush-temp/arm-confluent' version: 0.0.0 dependencies: @@ -12545,7 +12579,7 @@ packages: dev: false file:projects/arm-connectedvmware.tgz: - resolution: {integrity: sha512-+UeqKircD5Uz4XV7Na6l7fr7zkqsT2eB/Ky+0iqK3aN3xcwIu08empCUBbUarkR8tviLZy95Tq6gro+KJgBabA==, tarball: file:projects/arm-connectedvmware.tgz} + resolution: {integrity: sha512-Apk/DxbCgdHvRMIYCXkTFXP6JWehXKX1OmAHOad/B9d5GcVp3/5tbWCKG1BBj7pOyQrsZgfhpo7imy1pY9/yoQ==, tarball: file:projects/arm-connectedvmware.tgz} name: '@rush-temp/arm-connectedvmware' version: 0.0.0 dependencies: @@ -12575,7 +12609,7 @@ packages: dev: false file:projects/arm-consumption.tgz: - resolution: {integrity: sha512-7z4Dk0TnOxXF7frKJzg5I8P/nZWmexC9OjcIghnHSwT6CLgXr9GHC8okGAnFeOocRjp24jQMjsdwVV+wD+IDZw==, tarball: file:projects/arm-consumption.tgz} + resolution: {integrity: sha512-v6xA9WG28R+kxnnTRE3IG7q11bNX9BKXbyDUw4DNejhOUqUc3UjUh43v+QGbxR92ExYVQ0EReN7q7j/kqDNjVg==, tarball: file:projects/arm-consumption.tgz} name: '@rush-temp/arm-consumption' version: 0.0.0 dependencies: @@ -12603,7 +12637,7 @@ packages: dev: false file:projects/arm-containerinstance.tgz: - resolution: {integrity: sha512-WCTpwaTBk262FJ78fGedaNxIDTi+FQuiTh7iHD0h+ghDy24TdE9srZsqyzjcg+NserV5qLL/eFfvzCRHT4Ntuw==, tarball: file:projects/arm-containerinstance.tgz} + resolution: {integrity: sha512-3mMkcPusCa6a8iJROcHsObRjtQcIKv4XuP6KasQgRi19s9En+rJNzuodSfsiQj+dwVghRtzyUj+ofZL8lIVkXg==, tarball: file:projects/arm-containerinstance.tgz} name: '@rush-temp/arm-containerinstance' version: 0.0.0 dependencies: @@ -12633,7 +12667,7 @@ packages: dev: false file:projects/arm-containerregistry.tgz: - resolution: {integrity: sha512-MolrfLN9TrbxtKNL6RN5yNImxfPjPZe+1iBqcqJt2e0m8xZTIPKK+wy3ZyedtadqLWggDAwZmV1uOLcJfHBSxA==, tarball: file:projects/arm-containerregistry.tgz} + resolution: {integrity: sha512-7CgRwvWspXFXdo0FJswk4HgHC939oqEKHFY8r2b8Xo6lNNEHl51XtafQ69Kf27z/skI9S0R1OXzC0Wfmt8ynqQ==, tarball: file:projects/arm-containerregistry.tgz} name: '@rush-temp/arm-containerregistry' version: 0.0.0 dependencies: @@ -12663,7 +12697,7 @@ packages: dev: false file:projects/arm-containerservice-1.tgz: - resolution: {integrity: sha512-lcy1x8kEIaWqqfZ0ujELtUSa5U9RRUE5n7yWw/6eMTrdLZbjSVuzz8qn9YaVf3Ml7qmzu4wCWLSzBd9apa9ucw==, tarball: file:projects/arm-containerservice-1.tgz} + resolution: {integrity: sha512-bVKsJu2e9fy1EjBEN/vO7eFlpm02g8DwmZ/rKGqmwz/LOtUJtSMCSLhmlhl95Y17ywnvCwm/fi0nLhsH1kVHEw==, tarball: file:projects/arm-containerservice-1.tgz} name: '@rush-temp/arm-containerservice-1' version: 0.0.0 dependencies: @@ -12694,7 +12728,7 @@ packages: dev: false file:projects/arm-containerservice.tgz: - resolution: {integrity: sha512-CugJuth+DWxuFenbrg5aYFGuYp6oWV6OTjXdGeoj1lPTCMJUO5iXcrzxG6gLeYDiPNC2YGMaLICTMmjcQH0v7w==, tarball: file:projects/arm-containerservice.tgz} + resolution: {integrity: sha512-PCEUlYKqJyQwq4Hj7lXk67hx3+fLgVmfCqGDgCANbT/FK+P+xhIj1TYfJYctwB7YmfMR6BYBWHZHzG5EKJnhKQ==, tarball: file:projects/arm-containerservice.tgz} name: '@rush-temp/arm-containerservice' version: 0.0.0 dependencies: @@ -12740,7 +12774,7 @@ packages: dev: false file:projects/arm-containerservicefleet.tgz: - resolution: {integrity: sha512-eZDi4o28ImZGOR+0BYb6YSxyKcd0DNRbEAIMSPxuA0meW1NZE6ldd4QAkJBjSEsJSw4qyRJeMFvhJ17oXke0Fg==, tarball: file:projects/arm-containerservicefleet.tgz} + resolution: {integrity: sha512-Cnu4qtNd8Ac7bC0Hz6iYfW4kbaMOSUdykobQER2UKfJEbxWbBCt39xujI0DUCl6xRldNkq4Vr2xOK8vwf6tprw==, tarball: file:projects/arm-containerservicefleet.tgz} name: '@rush-temp/arm-containerservicefleet' version: 0.0.0 dependencies: @@ -12770,7 +12804,7 @@ packages: dev: false file:projects/arm-cosmosdb.tgz: - resolution: {integrity: sha512-MBnV/yL0ri+7ZnXoqtKJQficryQtw0NgOh3d5zdiW7/HYYpSnF65IohykUO2vOzwjEmce25okqBqoNGpjXel3A==, tarball: file:projects/arm-cosmosdb.tgz} + resolution: {integrity: sha512-0GmexNX2WYEF5vM92xms5x6JnwsC9yCxEitcsOehf2mgK1deh+VhSyRevXLfsZNoPFp78GRmlmDazc0xsRjLqA==, tarball: file:projects/arm-cosmosdb.tgz} name: '@rush-temp/arm-cosmosdb' version: 0.0.0 dependencies: @@ -12800,7 +12834,7 @@ packages: dev: false file:projects/arm-cosmosdbforpostgresql.tgz: - resolution: {integrity: sha512-VHujh2x7NL1et6EcueAdTBTV84QviU89M+wexmWGaC4ZVEMIFMKpOESnhnAIKM4Y1FCxGFj30Sad0UshUOTaDQ==, tarball: file:projects/arm-cosmosdbforpostgresql.tgz} + resolution: {integrity: sha512-wd2KsqFf8doHQnsNxYh160NFeM9Dn5W9io2YVkFFU5xniloidALVDFJc07JXOQkI2mEEk1Q09sxGg8K/cU0VPQ==, tarball: file:projects/arm-cosmosdbforpostgresql.tgz} name: '@rush-temp/arm-cosmosdbforpostgresql' version: 0.0.0 dependencies: @@ -12830,7 +12864,7 @@ packages: dev: false file:projects/arm-costmanagement.tgz: - resolution: {integrity: sha512-6V1wMP6Y4nBoEEffsFzr7kWK7qphUzQlk4EnFwUGafn02wFFxyDgx9wcdwQlP7rrjIx8QPLN2oEzt8bWgU9ILQ==, tarball: file:projects/arm-costmanagement.tgz} + resolution: {integrity: sha512-KcErI+4j55rRFTkKW6MANtjeMaQtxQHtWlbqwOPw46wTS6HKqy9YqtyKRe4MTmZ6XkcCCpVaJc/CiE1pHk3OhA==, tarball: file:projects/arm-costmanagement.tgz} name: '@rush-temp/arm-costmanagement' version: 0.0.0 dependencies: @@ -12860,7 +12894,7 @@ packages: dev: false file:projects/arm-customerinsights.tgz: - resolution: {integrity: sha512-YmwjtMTKmzpTQkqVmb+ZTQ8Kvf06d2EaxqmPUyNPpKU9ds8txurhoDOgPghrj+lZuvYkm57aq3avJUfVaKL9Jw==, tarball: file:projects/arm-customerinsights.tgz} + resolution: {integrity: sha512-sDKJ0LkulPFnlZ/GEut59G5P/jp3dhD8GRZx2KakC9dppmxyRUIkz0Opa9ksbFUSPwT1+ttaXwQ7i5L6wOA/Cw==, tarball: file:projects/arm-customerinsights.tgz} name: '@rush-temp/arm-customerinsights' version: 0.0.0 dependencies: @@ -12889,7 +12923,7 @@ packages: dev: false file:projects/arm-dashboard.tgz: - resolution: {integrity: sha512-tKQ0zRFpV3V/0bf6QpyeBONJSH0W9SAbmKgD4uE8H0HU7zv9310fH84kPTWq+spin4d2NjUd8YnCdUbMIh98HA==, tarball: file:projects/arm-dashboard.tgz} + resolution: {integrity: sha512-ltP+T71iJ+sPFehN6Cj6Fq01oLvbjQHOMNEcDlGCI6aBHlWnpJ6tTnkoUhIJb25z39+FNI4B8R1IsyeuTkTRFA==, tarball: file:projects/arm-dashboard.tgz} name: '@rush-temp/arm-dashboard' version: 0.0.0 dependencies: @@ -12919,7 +12953,7 @@ packages: dev: false file:projects/arm-databox.tgz: - resolution: {integrity: sha512-snUXe8dRruI803cP/dmoxiTZekgs9AtM3KxKbukIe1jXZl+WZP1/dwlwuWV6b0ZUdM0dF5NhPQc/ZHAK4NQ32A==, tarball: file:projects/arm-databox.tgz} + resolution: {integrity: sha512-8QeMKJtTyDYFHj3wEdpFpEeoGH06JGhgyWXQHeLrK0lDXYF7dmYBy7lh5cT9E5tOUSElD7CMoR4pFvHr+qAo2A==, tarball: file:projects/arm-databox.tgz} name: '@rush-temp/arm-databox' version: 0.0.0 dependencies: @@ -12949,7 +12983,7 @@ packages: dev: false file:projects/arm-databoxedge-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-lEscrgwUaJMfxAqMj2F1udK2fx1SZ8aUxg5yii1Li60IEwQBtp0LxIeoo9FaaV4I5GCRs9RlFm6RHiB7lpUWyA==, tarball: file:projects/arm-databoxedge-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-zMSXvOkHZPQkNJmAL/7KaWDcs0dz743OmclpuMZCKp67rN3Mob4saRJreWV7voQO6XWLs0Jq2jOb8gVDsN1/fQ==, tarball: file:projects/arm-databoxedge-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-databoxedge-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -12979,7 +13013,7 @@ packages: dev: false file:projects/arm-databoxedge.tgz: - resolution: {integrity: sha512-u659UHJSXGrhBl0omxiJbpFtpkPndFD7J+nXByTfOSa4j5o38O8WA18Ba/8xI4iWvrw+0Ox+yZxgfuQazGEsPg==, tarball: file:projects/arm-databoxedge.tgz} + resolution: {integrity: sha512-nyhPt4fzPfbcf+HnUWwMupeK8xB4Ut1A3fHELerAn3i8iKINx6Hg89Zz09noCvhiL+02R/mmlsQFN/M4YTXAyg==, tarball: file:projects/arm-databoxedge.tgz} name: '@rush-temp/arm-databoxedge' version: 0.0.0 dependencies: @@ -13008,7 +13042,7 @@ packages: dev: false file:projects/arm-databricks.tgz: - resolution: {integrity: sha512-a/puaALij3Tah7sNgeeYJ6aRnJ734NzRGq7A/zbbNXCxIHDy/QrPBNbB1IeYQlANv1KD7ycAH20lW7Y8NvQQYQ==, tarball: file:projects/arm-databricks.tgz} + resolution: {integrity: sha512-lMdYf/Z7WhXhcAsNzhapfOG3nhgXiu6YUtvIADLHoER4qfaBkDpQ55MOc9YFiEW4nX6E+9/LVohiCkjrc3Eibg==, tarball: file:projects/arm-databricks.tgz} name: '@rush-temp/arm-databricks' version: 0.0.0 dependencies: @@ -13038,7 +13072,7 @@ packages: dev: false file:projects/arm-datacatalog.tgz: - resolution: {integrity: sha512-Ra3wEWxRKYAtX8ykcEp915iHKHRRZS04euo0VwENXd5aXjhuUJbqm0mj9kD4YGxVKoE0osbzw44G9/5NyidB6Q==, tarball: file:projects/arm-datacatalog.tgz} + resolution: {integrity: sha512-eJSf81DsGvWlXj1NSij3KPFlguH/eMZSIUFtz+3cSsYxiedE4DBn453fgeHVJFxgfWoYsAkCLALvAnDTwscw1g==, tarball: file:projects/arm-datacatalog.tgz} name: '@rush-temp/arm-datacatalog' version: 0.0.0 dependencies: @@ -13067,7 +13101,7 @@ packages: dev: false file:projects/arm-datadog.tgz: - resolution: {integrity: sha512-nOd/hVOhSZAZsLEAxd+UjcP4KvvTurGl6eqqVWY0OjiRd/PyFkMbtaITibwS2HPW22m9HmlKfNNyekI5qt7bOA==, tarball: file:projects/arm-datadog.tgz} + resolution: {integrity: sha512-iQ8KtMGT45+VQFGh3ulDeiE+uJhkSBl6HmfrhTr76FCscJhvSMktI1QmgEfZoFRink5Xmm3o5yklk7QlV8hkmQ==, tarball: file:projects/arm-datadog.tgz} name: '@rush-temp/arm-datadog' version: 0.0.0 dependencies: @@ -13097,7 +13131,7 @@ packages: dev: false file:projects/arm-datafactory.tgz: - resolution: {integrity: sha512-VDuETRwbnM4xjDPT4pjRJkjAMZBoWUIOx1VX4OSZ2AIMvKsr+TUDFyzzPAOixloCEMIFIDjyRaG9DCCDvgPsGQ==, tarball: file:projects/arm-datafactory.tgz} + resolution: {integrity: sha512-FjLDdtqvucdf/sqBmRdcmjjBylhFV45VRdzHbMBlSWE75MMDyUOPINbmv0X0FYEZo0RhqcUQwqfSpVQA1AAM4g==, tarball: file:projects/arm-datafactory.tgz} name: '@rush-temp/arm-datafactory' version: 0.0.0 dependencies: @@ -13127,7 +13161,7 @@ packages: dev: false file:projects/arm-datalake-analytics.tgz: - resolution: {integrity: sha512-AMSYDgYccWyW/UIAynADo5Ewt6K5RQMFjv2MEA9xgOBXq+g469U+Hir7r5a5gvaVcPyQCJfHCNxVjjTv/+rHiQ==, tarball: file:projects/arm-datalake-analytics.tgz} + resolution: {integrity: sha512-vKXRT+CQplO68riVniiSLXMDDoVYfwcfR+fcg3NHiAimADXhQe2V2Dih1MN031mkJjZErxzi4xD01BqG8C1Kew==, tarball: file:projects/arm-datalake-analytics.tgz} name: '@rush-temp/arm-datalake-analytics' version: 0.0.0 dependencies: @@ -13156,7 +13190,7 @@ packages: dev: false file:projects/arm-datamigration.tgz: - resolution: {integrity: sha512-VLjPktB+2zBqGv48KYV8FpZnsNys1jPA7cHSZU83dbjPv63CJTvKCX1AUB03rv/P25tJiJF6qvb4DJAsxBemLQ==, tarball: file:projects/arm-datamigration.tgz} + resolution: {integrity: sha512-+VMNTU22qzKTLQ94Kau820B3Y5TvMfa1rWbuH2s4G/1nLJYoHaAzV+ajv+UYrkPYyKdtA+1+Y8UtMp0FF5//CQ==, tarball: file:projects/arm-datamigration.tgz} name: '@rush-temp/arm-datamigration' version: 0.0.0 dependencies: @@ -13185,7 +13219,7 @@ packages: dev: false file:projects/arm-dataprotection.tgz: - resolution: {integrity: sha512-F7qlpUrI5wiqm2I1jBVsA42a1mW2k3PvbwFO37g4db40TQhXVVdnTDtDtFKzVpXtSbtH0z6YgTKXJiPv9y0mpQ==, tarball: file:projects/arm-dataprotection.tgz} + resolution: {integrity: sha512-+nt63ddgjPdgZJBqZMuMSxon5cePtnG3tCDhPH10ByO/IhZCJK7CrboEjIIJ5/fIO0juwI3j4B3pMFSTnglNUg==, tarball: file:projects/arm-dataprotection.tgz} name: '@rush-temp/arm-dataprotection' version: 0.0.0 dependencies: @@ -13215,7 +13249,7 @@ packages: dev: false file:projects/arm-defendereasm.tgz: - resolution: {integrity: sha512-HcgsirIIZynG70wdTGMbmYOYdS63gpbnZcWg4Y80k88ELhOC9NRvkGjWPJeMrhzoMX8Jh0CmIFzTwSL5wVDtjg==, tarball: file:projects/arm-defendereasm.tgz} + resolution: {integrity: sha512-IbBJX+hNSDUJgF1WKrOP4URCzZ9khaY6oss4/QDv90TPxd4LleJYLGIkkQtpRvVaUR4S8HaQPFx0O+nrCz2DYw==, tarball: file:projects/arm-defendereasm.tgz} name: '@rush-temp/arm-defendereasm' version: 0.0.0 dependencies: @@ -13245,7 +13279,7 @@ packages: dev: false file:projects/arm-deploymentmanager.tgz: - resolution: {integrity: sha512-Bm46oafgnuo6Ebu8/Jpn90Fv5cXrfv3suZW+Na57iup6cvWjqcV0h1B435KVJvQHspV77UBfMRX2lRYGM9d1iw==, tarball: file:projects/arm-deploymentmanager.tgz} + resolution: {integrity: sha512-QOXOZmT9PsI11iE7MIupB4GLj1EQ+3x5WwyeqNKnLex7nxsOJ9xXbqQL3MtlT+asX6Z4ds4BnxXIfHB7XHWaMQ==, tarball: file:projects/arm-deploymentmanager.tgz} name: '@rush-temp/arm-deploymentmanager' version: 0.0.0 dependencies: @@ -13274,7 +13308,7 @@ packages: dev: false file:projects/arm-desktopvirtualization.tgz: - resolution: {integrity: sha512-/YWvP5NfU3QE2dkMZKrs5x6DcKR1paPJ6ISX9XDtNUaiD4O+cpPPkDOM/YdknHiSPq6/v/kdPDMaIAl/POev5g==, tarball: file:projects/arm-desktopvirtualization.tgz} + resolution: {integrity: sha512-g1LYZ8+LQpok5ISdWIEG3l400smC8D1TPrcFULQ02XAiNtIMvpFW/IYvhDmsksC4tHRITRYXc7KgDioJOFIluA==, tarball: file:projects/arm-desktopvirtualization.tgz} name: '@rush-temp/arm-desktopvirtualization' version: 0.0.0 dependencies: @@ -13302,7 +13336,7 @@ packages: dev: false file:projects/arm-devcenter.tgz: - resolution: {integrity: sha512-J97BX6K+lMu4HJhmixnsP7RDmH+WceVUEVVVNmnD1AL7NsSQNffeB08FTlOY9gp+lC6OH7BOjg9eAvTFouzFrQ==, tarball: file:projects/arm-devcenter.tgz} + resolution: {integrity: sha512-RfoFaKu+F1HRy0q1C7nnZe8xxIAuhLCYcu3m/KXmP1D3WhCBPfoIN1hWWTgZdOq28A8V9zHr3o3SbxgltsJMUA==, tarball: file:projects/arm-devcenter.tgz} name: '@rush-temp/arm-devcenter' version: 0.0.0 dependencies: @@ -13333,7 +13367,7 @@ packages: dev: false file:projects/arm-devhub.tgz: - resolution: {integrity: sha512-B9u6Zgdya9u5MxIOugcDp27+KM2Nq7vrXeLfBMGgE8N51mc3VfCeOjRt1evb+iUV8Px2V+3sQaJoSWTx//l4nA==, tarball: file:projects/arm-devhub.tgz} + resolution: {integrity: sha512-ihxaGfsco83NJ/QMJXTAMXdAh0VDeFACvo3+2bu+HNAK8u1DZ5nGOwcrQ4dw/vebel8muS3NX1LmsrkGHMvayQ==, tarball: file:projects/arm-devhub.tgz} name: '@rush-temp/arm-devhub' version: 0.0.0 dependencies: @@ -13361,7 +13395,7 @@ packages: dev: false file:projects/arm-deviceprovisioningservices.tgz: - resolution: {integrity: sha512-fPXigdpTLteooNYED9V1N2UlxNAXrmfBomjjXZ2q2JcyF3EoUYxDoTKHWeS0yO4QZpnbwzOWe+eZozqkzTzpgQ==, tarball: file:projects/arm-deviceprovisioningservices.tgz} + resolution: {integrity: sha512-q3tf5V9yIuxRvQ1sohYMHue4Qwik4tEIU3ayIWRoKk2CreKt5erqtdNV3xw/JYBh7T5uNxtMJ0MqZy57efFmQw==, tarball: file:projects/arm-deviceprovisioningservices.tgz} name: '@rush-temp/arm-deviceprovisioningservices' version: 0.0.0 dependencies: @@ -13391,7 +13425,7 @@ packages: dev: false file:projects/arm-deviceregistry.tgz: - resolution: {integrity: sha512-toHqmdPrJICQwcFEKLymTrqxLBiROPBFSa6j0i/JVmlHkInLdy2GlSWkF6CZ7E38vA1XOEE3jhWGQBprSFqUPA==, tarball: file:projects/arm-deviceregistry.tgz} + resolution: {integrity: sha512-GMatDE35xznBxFn9laqbhVBpsD9fWlvPw44+kLqxvtOAH3cJRWVPTOwT4NjQ3aUJ0rMmVbwoEE0CqEzNpmy+SA==, tarball: file:projects/arm-deviceregistry.tgz} name: '@rush-temp/arm-deviceregistry' version: 0.0.0 dependencies: @@ -13422,7 +13456,7 @@ packages: dev: false file:projects/arm-deviceupdate.tgz: - resolution: {integrity: sha512-2JWF01Gx7PkrE6+TuHEfLEifSrFT70mZhKvNsumHbhfjVnqxdr1Ez8iKwufg612TsOs625BbhqSmKeXjnvhKkg==, tarball: file:projects/arm-deviceupdate.tgz} + resolution: {integrity: sha512-nGATzy00/K1b/tEtCbAXAu63eUHBWS91PfiuLRFq7BhRDoqQGs7HWfQpbyZH8bP4VrMNUBuBxvMyMVLIi4dDaw==, tarball: file:projects/arm-deviceupdate.tgz} name: '@rush-temp/arm-deviceupdate' version: 0.0.0 dependencies: @@ -13452,7 +13486,7 @@ packages: dev: false file:projects/arm-devspaces.tgz: - resolution: {integrity: sha512-4S6jJOao/eo9J1EnWIE/vkYtlYLRsTdMWryGe6ILyq3JGfQj7LIvuB9gT6r3yVI4oDhzo25/u7lVUTMSLhJ/wQ==, tarball: file:projects/arm-devspaces.tgz} + resolution: {integrity: sha512-9iDDxpR5zqvJlS3n6zW+onhkxIJk+YmFsUWyBecH12XIrj0gMN+f5E/NqCiXkAD4TH5Y12bZlkouAhOFsOMlag==, tarball: file:projects/arm-devspaces.tgz} name: '@rush-temp/arm-devspaces' version: 0.0.0 dependencies: @@ -13481,7 +13515,7 @@ packages: dev: false file:projects/arm-devtestlabs.tgz: - resolution: {integrity: sha512-2M5eXFlLwhRRPBoIg+5NeZQJbn+PehVoMHr3Yj8AJxZRq8eV5ph/KDAZGgQu7+5wXOvkJlYqFu0H1FOYux7utw==, tarball: file:projects/arm-devtestlabs.tgz} + resolution: {integrity: sha512-t1o0kYdnLvFZzDXA0IsUxO46u8AT0BphgYNJ8tzHlO9fCjB044Sqb6M+UVTQdfrOT7WBwsrnr8WrcEHWp1UGPQ==, tarball: file:projects/arm-devtestlabs.tgz} name: '@rush-temp/arm-devtestlabs' version: 0.0.0 dependencies: @@ -13510,7 +13544,7 @@ packages: dev: false file:projects/arm-digitaltwins.tgz: - resolution: {integrity: sha512-YplI71s7/1v8NZTIpVuqS/JrwfFBbDS+FyMUA9cyJpJwFXrjxlIUa2N96dg114SXVU+ayOBFn/Zwa/TbrKEE3Q==, tarball: file:projects/arm-digitaltwins.tgz} + resolution: {integrity: sha512-EranoD4p+qG/E2PzoeFNBhJSbzWwTFEd1AlLI6ryAQAZVBVyx5Z+AlLuube9/XqdHSD06c1zF8Hsfqx3ZBnjmg==, tarball: file:projects/arm-digitaltwins.tgz} name: '@rush-temp/arm-digitaltwins' version: 0.0.0 dependencies: @@ -13540,7 +13574,7 @@ packages: dev: false file:projects/arm-dns-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-puTccKzXOg2TcqUeWjD1P433WWa9p2JLLU5gTxNbf2NK11GHXbOQMtHBeaYLJCH0eggjJ+j0ZTEtulMwzALvFA==, tarball: file:projects/arm-dns-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-7D54OU32Z0KkJgHsAxsuznXvlUxm1xwPMywRnqpFHcguO/Jhfs5UHuPquo/SotN/Z9mzy/n/dratn9chbrZksg==, tarball: file:projects/arm-dns-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-dns-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -13570,7 +13604,7 @@ packages: dev: false file:projects/arm-dns.tgz: - resolution: {integrity: sha512-2TpCBBHq/YII1z/4AI02OfdYVvsfR3fnThp0yrz2pa+YZDFlVnF9iSaQjY9y0nf+GrNxS4+LQfuhmGKnQ8GASQ==, tarball: file:projects/arm-dns.tgz} + resolution: {integrity: sha512-YO3sDFIvn4Bpgl5ZpOPrq1Ek8f+5I4UqyWmTHZL1SF+Mi5a5IsVVmsXxsG0kXxnMHTnYVUDzyld/LRdbHPxOVQ==, tarball: file:projects/arm-dns.tgz} name: '@rush-temp/arm-dns' version: 0.0.0 dependencies: @@ -13599,7 +13633,7 @@ packages: dev: false file:projects/arm-dnsresolver.tgz: - resolution: {integrity: sha512-WPnP45iTq+XsrYZEkIwvKNwFk8nb6av2qRb2TK8gXul69suB1JGPAypeGRp+fzCAPPTxSS5ZpnGupey77mof9A==, tarball: file:projects/arm-dnsresolver.tgz} + resolution: {integrity: sha512-QLLTYoBkr1z0LoEvmgvOwY3Q3fIKhcVbDbzxy9kA3Vs9RuTrppPTIO+tqaWyhJnYI45L+hIh4htum1trJgWW9Q==, tarball: file:projects/arm-dnsresolver.tgz} name: '@rush-temp/arm-dnsresolver' version: 0.0.0 dependencies: @@ -13629,7 +13663,7 @@ packages: dev: false file:projects/arm-domainservices.tgz: - resolution: {integrity: sha512-y2TwdjdgZtrSqxhNdXa1fh+adR4GN7sM9381MIVTTTnfq7VteJdjHiyI2zP+28+yd/OBs3Pn/HquQ56JnD5MOw==, tarball: file:projects/arm-domainservices.tgz} + resolution: {integrity: sha512-UNquG1uLduui/bsLZFDb21AWnzrgWBaXJ5hdsXRF/VyZITYcOUFyPauGAFPGPI2p2BHVSil2+/v09cf+czteqA==, tarball: file:projects/arm-domainservices.tgz} name: '@rush-temp/arm-domainservices' version: 0.0.0 dependencies: @@ -13658,7 +13692,7 @@ packages: dev: false file:projects/arm-dynatrace.tgz: - resolution: {integrity: sha512-+hGk+JXugRBu9sBFrGl0JfIT+PrySTodjHD9fr2ArwL2bqFL8UFwlH3n9MtH0+LOG7U2CN5yW4/OgFVALiSwng==, tarball: file:projects/arm-dynatrace.tgz} + resolution: {integrity: sha512-R9SJXYpYB2Ua8EAwEwWv6QTjiwwFS8i5QsjF0D/8HJtZNlqOZaLX4vx6x7tQYw41vl+469wJSbncWe4C+6ZqnQ==, tarball: file:projects/arm-dynatrace.tgz} name: '@rush-temp/arm-dynatrace' version: 0.0.0 dependencies: @@ -13688,7 +13722,7 @@ packages: dev: false file:projects/arm-education.tgz: - resolution: {integrity: sha512-Qqlz8rELb2bWq/KLoxlwYoiWaQ8Ehd1+NdINgMK+nYfp3D7xHm0ozOdE1xf0Wxz/YZYOZqjaLk+HNt9dbm9WpQ==, tarball: file:projects/arm-education.tgz} + resolution: {integrity: sha512-C0LxLuYw4xahWek1OKlHKI718dMNZPLNGL3/PyLtoucSmLXjn/yhgUxE04bh5mdE+A9odMHRjJ78bEm40qhdtQ==, tarball: file:projects/arm-education.tgz} name: '@rush-temp/arm-education' version: 0.0.0 dependencies: @@ -13716,7 +13750,7 @@ packages: dev: false file:projects/arm-elastic.tgz: - resolution: {integrity: sha512-iLn+bFeBy1IO4fdGJcsg49SIxyRpijW4N+dlh+Fvy0ShqpRbpWFqjQ4EWgWMTd98uVfUqEZpYFk1z2ZSCoZjDg==, tarball: file:projects/arm-elastic.tgz} + resolution: {integrity: sha512-2B0zGaJ5R4SA8txjmWWLOg5phXICznoiWTjz+RuM8G5P/x9KTmTTP9T3UizRBhwyC3LbIF16PNQKkWWnHWxqrg==, tarball: file:projects/arm-elastic.tgz} name: '@rush-temp/arm-elastic' version: 0.0.0 dependencies: @@ -13746,7 +13780,7 @@ packages: dev: false file:projects/arm-elasticsan.tgz: - resolution: {integrity: sha512-ljH3lrw4sb4HnyYgXpTMgKqV8xPeLtvbPiyKElZz5Yhcqj5H/dyIK4f/C5lvvb2x1n+mMG3IARBr5N2ivP3xbw==, tarball: file:projects/arm-elasticsan.tgz} + resolution: {integrity: sha512-zvCkdQoyVuG4Zx5O9Y7AiTArUfOedmG5bzM8AzpDQafNtr+vlV1/ZPOLjYBI8kslwSwnPLC3KQRrAL5NcqKeMg==, tarball: file:projects/arm-elasticsan.tgz} name: '@rush-temp/arm-elasticsan' version: 0.0.0 dependencies: @@ -13776,7 +13810,7 @@ packages: dev: false file:projects/arm-eventgrid.tgz: - resolution: {integrity: sha512-SBg+EdbHb3brYOJEg7K3FncdcRqpw3Kjok97H7YEp1+LLiR1Kkr8IpM/N/VM1O3SL1OESMaruN9Z3l76jtSghg==, tarball: file:projects/arm-eventgrid.tgz} + resolution: {integrity: sha512-VAKwwYr2niyvPwPy+YZcblxWLPOtNBAm+ew5isJGF+VslMXttOcPrpxO2HLfloWhyNVE+lnDYRY/eI3MpwJ7cw==, tarball: file:projects/arm-eventgrid.tgz} name: '@rush-temp/arm-eventgrid' version: 0.0.0 dependencies: @@ -13806,7 +13840,7 @@ packages: dev: false file:projects/arm-eventhub-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-qzVdVaTfgLtst7T/pk5XOxLdepfarqRUjlrmWO2iQtOm+Arww0HRSsKWMnuQ5WhzT4+BoZ09Ksawo5Zs1tUT4w==, tarball: file:projects/arm-eventhub-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-E3MXCJtV2hnEmKIaglR6PDVVMTxuJzWvN02riT70/oSCJZf3+Bn/8/mYhlpcNa9bWpCvyhbVSM6Akh+pALArkQ==, tarball: file:projects/arm-eventhub-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-eventhub-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -13836,7 +13870,7 @@ packages: dev: false file:projects/arm-eventhub.tgz: - resolution: {integrity: sha512-PCnuzFGByYDof8EOomRy2CjenUACmyHYNCmeGoZ1z/k59Lc5LwbiFtT0CIkYYEPepoDjsoOgExOj9n1qmpmoTA==, tarball: file:projects/arm-eventhub.tgz} + resolution: {integrity: sha512-eFi8c4l061RY7uVhCUlUqLaQLpc+7+pTotzkTuTsJTZMCuDJ1H7eKE3UVAx7vz0eifrk8kTIBs7akMD9VQulmA==, tarball: file:projects/arm-eventhub.tgz} name: '@rush-temp/arm-eventhub' version: 0.0.0 dependencies: @@ -13867,7 +13901,7 @@ packages: dev: false file:projects/arm-extendedlocation.tgz: - resolution: {integrity: sha512-1ZMyToYOdRG+YJmL8+gLt49n8RlSMT9b+mXkKI5u4HK4sWWK8cWYstGJkMJN1MPsBFtBUbbrtAMZLd28LJUNTQ==, tarball: file:projects/arm-extendedlocation.tgz} + resolution: {integrity: sha512-LceP/1USDcz1tf2RhWdc2I3t/uPElqMNAfyaaHRexOheV8vNKpJn7ObPzzGS8goLShsHkI9n9u0joVIjimA/6w==, tarball: file:projects/arm-extendedlocation.tgz} name: '@rush-temp/arm-extendedlocation' version: 0.0.0 dependencies: @@ -13897,7 +13931,7 @@ packages: dev: false file:projects/arm-features.tgz: - resolution: {integrity: sha512-PDygRDKd4PLZjk48aP0A+r6ubtXejTobxaGdKjPTsbIrkggyNV8xE4vY3WYGG7AnD1e8iHlqBZrFqgp7az8MHw==, tarball: file:projects/arm-features.tgz} + resolution: {integrity: sha512-3ycCgl4d3XZbt4m3r7tquXPQfx2pPAuqvLEMiw85HjJsIb54H2ORoAE3m2wJY/hmG7FHhkPqR8muLzSMvcZCqQ==, tarball: file:projects/arm-features.tgz} name: '@rush-temp/arm-features' version: 0.0.0 dependencies: @@ -13924,7 +13958,7 @@ packages: dev: false file:projects/arm-fluidrelay.tgz: - resolution: {integrity: sha512-u5WlYU1+A90w9J/pf2ga5HqM5hYMlWcGdhi3EtS/m9L2r7hExnEQuqtDLHW8QJfvpWllmpQFYMymM6rrYEWJzQ==, tarball: file:projects/arm-fluidrelay.tgz} + resolution: {integrity: sha512-vCmPCN35aDh3Wnd3ssJsZsU2ir1ZM1rB7ksraiQlJn/E5LngbWoLpiE3dftRPl93v9Ly6i1AOTti8M6z9KgHiQ==, tarball: file:projects/arm-fluidrelay.tgz} name: '@rush-temp/arm-fluidrelay' version: 0.0.0 dependencies: @@ -13952,7 +13986,7 @@ packages: dev: false file:projects/arm-frontdoor.tgz: - resolution: {integrity: sha512-oW3bKOjWUopBurqelzxq8dDR1lpyOZvdAVzw2gHfUQmN0WPQoY5iTk2qrlRvhmyNyls4hcICNBGqy8JhC8z5jg==, tarball: file:projects/arm-frontdoor.tgz} + resolution: {integrity: sha512-ILJlWJMp6OJ4jHz5v1pI665HzCytXl0zdwlmWlNGcJIQxvP5+3sU4p40TyNLTpM/5pTCvi6inoZi+UqVFtEf/Q==, tarball: file:projects/arm-frontdoor.tgz} name: '@rush-temp/arm-frontdoor' version: 0.0.0 dependencies: @@ -13982,7 +14016,7 @@ packages: dev: false file:projects/arm-graphservices.tgz: - resolution: {integrity: sha512-IJ1lDOuVu6aQCmCOlIIKeHoRrz8b+4BM5PU7Jz6fkcHHhdzQA9ScDO/k4pGTT9wjLSebJ50JZfDJIgMU/D/Aig==, tarball: file:projects/arm-graphservices.tgz} + resolution: {integrity: sha512-5pY0z+IzynK0cSa5D3TclvPDBZ4nVcLMowdHbefQHH358A004ir9oy3FwmB+9QuYtI+E2wbQwA11eEoj6cGNWQ==, tarball: file:projects/arm-graphservices.tgz} name: '@rush-temp/arm-graphservices' version: 0.0.0 dependencies: @@ -14012,7 +14046,7 @@ packages: dev: false file:projects/arm-guestconfiguration.tgz: - resolution: {integrity: sha512-GTpbrpDPK7vVJRuni6sEBAm2ItIPX9M3wLAJZV76z6gHvXrIEO7iGXbSzsO2tT5RCGWLb40nEKZWSNS81UktxQ==, tarball: file:projects/arm-guestconfiguration.tgz} + resolution: {integrity: sha512-82nPs+USq76GjO07wOI/87RpOCdSVmx2EfMsqOzzOAGmG/cufZ667cRljuP6aAaFBoDmMHeC0axAZRKscjpNMA==, tarball: file:projects/arm-guestconfiguration.tgz} name: '@rush-temp/arm-guestconfiguration' version: 0.0.0 dependencies: @@ -14041,7 +14075,7 @@ packages: dev: false file:projects/arm-hanaonazure.tgz: - resolution: {integrity: sha512-9zK9QdmF4kyJn7ieuLlX6vDE4ZjALN9+djnWyxZeh1P9aCFCvvbTOMb+vLJ7qCKXmEeND8EESAAN8g7X8IYCLQ==, tarball: file:projects/arm-hanaonazure.tgz} + resolution: {integrity: sha512-Vu0e+PrWLwtu3aDDUWnhM/KSQDz6jFG+HH/4xyFtWPhSLaUJvXyLZQoqwFRBBAfBaeRpgMuMBy2gXS6hKgQkQA==, tarball: file:projects/arm-hanaonazure.tgz} name: '@rush-temp/arm-hanaonazure' version: 0.0.0 dependencies: @@ -14070,7 +14104,7 @@ packages: dev: false file:projects/arm-hardwaresecuritymodules.tgz: - resolution: {integrity: sha512-7uHWsKMvJispT4rmr8FPAkUCyH/GP1xkpgi7TCvtxf8lwb+LMETPMUlKhnxhNVEE5OnX0KNdBPayVGMHJABxhA==, tarball: file:projects/arm-hardwaresecuritymodules.tgz} + resolution: {integrity: sha512-B8yOjFh0QlXIjSTnH/1jdyEKOAwvXVhUF9ktcvkwVyGVII3fokmCkPBvSj7ZZEuic6prMpEcRho4f3BwisqZcA==, tarball: file:projects/arm-hardwaresecuritymodules.tgz} name: '@rush-temp/arm-hardwaresecuritymodules' version: 0.0.0 dependencies: @@ -14100,7 +14134,7 @@ packages: dev: false file:projects/arm-hdinsight.tgz: - resolution: {integrity: sha512-ZyIP4xbAU03gBLfnQevPPpfyXy4FrAax8p2tlebKdCttEN88Td3mgAdrssoyrh9FxcpLzJZitPEG/MUhT38eVQ==, tarball: file:projects/arm-hdinsight.tgz} + resolution: {integrity: sha512-l8bZjUD9fo4yL/LwVsR76ewzZqT+UnVCZYfMAEa826YgHu8hyA6FCe2P32f1YudoheCK/jiEi+q+j/UGw9r6dQ==, tarball: file:projects/arm-hdinsight.tgz} name: '@rush-temp/arm-hdinsight' version: 0.0.0 dependencies: @@ -14130,7 +14164,7 @@ packages: dev: false file:projects/arm-hdinsightcontainers.tgz: - resolution: {integrity: sha512-ciQ1bxN92AunEanZh6Mp95nC8De2mkQogcJn8J1W0oGu+IiGWDdRuxHVFrPBzX1SGm45QGvchG1mUwFG08YwdA==, tarball: file:projects/arm-hdinsightcontainers.tgz} + resolution: {integrity: sha512-ebovHn3mwM2YvBI2084wConhknoAW/+i9YmbLYcDXvgxJbEERTm6n3i3WyMl715K5s3LZ/CS3tkGcNeWTTWwOQ==, tarball: file:projects/arm-hdinsightcontainers.tgz} name: '@rush-temp/arm-hdinsightcontainers' version: 0.0.0 dependencies: @@ -14160,7 +14194,7 @@ packages: dev: false file:projects/arm-healthbot.tgz: - resolution: {integrity: sha512-7qYfHt322X4WPNtZ973Rxtv/YvX1ChYD99FMgiBnYjH7RrRGsSKf/tYy6NFcYdGS/PpPIUAbfLYebtT809WVfQ==, tarball: file:projects/arm-healthbot.tgz} + resolution: {integrity: sha512-bwEzqpTT6a0mEF9+qnv+oj1rPlRxMYA+YuorhxZ3HJ7U5THINWkGgcnpFzN+F6lXz86Hc/lLGhxTo5rejO88Mg==, tarball: file:projects/arm-healthbot.tgz} name: '@rush-temp/arm-healthbot' version: 0.0.0 dependencies: @@ -14189,7 +14223,7 @@ packages: dev: false file:projects/arm-healthcareapis.tgz: - resolution: {integrity: sha512-TiuR4qgo+USsnf2DH/GdkvI3G5t1q0gFodLt0bpkBxT5SC9HtoLHv7GAf0GCIUKEvC9xaLcy+b2rEVFyKejNgA==, tarball: file:projects/arm-healthcareapis.tgz} + resolution: {integrity: sha512-ZZG6IphyTnxwUp1EumB2DcHPIJnwPAh0wyAJwcS7FXQkkQ+6DQetAl4EZKsNZn97J4mFDxYTPVj87I0/aHsb4Q==, tarball: file:projects/arm-healthcareapis.tgz} name: '@rush-temp/arm-healthcareapis' version: 0.0.0 dependencies: @@ -14219,7 +14253,7 @@ packages: dev: false file:projects/arm-hybridcompute.tgz: - resolution: {integrity: sha512-ZfqlB0Yw4fWwm9BUOA5rrdHuumwmYzx4yROMTBAizwlUJFsVVLr4p6S6A4f4GIiFxbSRmo4IsWSdRvkJxv2jsQ==, tarball: file:projects/arm-hybridcompute.tgz} + resolution: {integrity: sha512-mmfeBdLwjyRq/b9FslE4Z4COEJz+m7G9c5PA0FrzsIikkh26uF7TBU4T33R1uEABDbL65NH7nCWOncCgaJcN1g==, tarball: file:projects/arm-hybridcompute.tgz} name: '@rush-temp/arm-hybridcompute' version: 0.0.0 dependencies: @@ -14249,7 +14283,7 @@ packages: dev: false file:projects/arm-hybridconnectivity.tgz: - resolution: {integrity: sha512-33NtGiydGaoaJo0Ppz2V3/zs7O2iSdb6OWSigm/qdeGJd8EAD139QdFANdPmuwZI0kqlAtjcXm1LebDkXZyV7w==, tarball: file:projects/arm-hybridconnectivity.tgz} + resolution: {integrity: sha512-7+68Vak09tR2Jtm/9GDiYXZrLDrhpIgT/vs9fglyzLCfLWtfbQBB/fDLXEDfuo2SBzakHrvqHG5tY2fjKDJ9Qw==, tarball: file:projects/arm-hybridconnectivity.tgz} name: '@rush-temp/arm-hybridconnectivity' version: 0.0.0 dependencies: @@ -14277,7 +14311,7 @@ packages: dev: false file:projects/arm-hybridcontainerservice.tgz: - resolution: {integrity: sha512-RyxNvLyR1d24qi3s8hhdx8guBAkNL+jjxjnO5OQziuU45RbDqHvZVKnfDtGuUPbT75AKOAQz4BrfO7R5Dk91UA==, tarball: file:projects/arm-hybridcontainerservice.tgz} + resolution: {integrity: sha512-x+Di4bCuVNPVdcT5b+RKelPq8gjUXFmRKiNxfAe6gbFgfT4xnHmiibrn4QTWa7MoqNZ09w0oT7umF+XA8peSSw==, tarball: file:projects/arm-hybridcontainerservice.tgz} name: '@rush-temp/arm-hybridcontainerservice' version: 0.0.0 dependencies: @@ -14307,7 +14341,7 @@ packages: dev: false file:projects/arm-hybridkubernetes.tgz: - resolution: {integrity: sha512-0KsVUz3FuHC1bP+QAHA+5VlJ5ZYrM4SfUe5+fdlZlQ21XEbO+Abu+IsbAdNVKpkhGVISyZHavRrmwvlXYLQdmg==, tarball: file:projects/arm-hybridkubernetes.tgz} + resolution: {integrity: sha512-4H0CBCABnvQSHE1Kb0R26LOvSdYspBxb45tkmRYbtfH3X2FSUHR+a3wW409c2kAUXqy2U1uHyrMPUH5RV4cXxg==, tarball: file:projects/arm-hybridkubernetes.tgz} name: '@rush-temp/arm-hybridkubernetes' version: 0.0.0 dependencies: @@ -14336,7 +14370,7 @@ packages: dev: false file:projects/arm-hybridnetwork.tgz: - resolution: {integrity: sha512-kXX+OtHL1SedKE6yxLGJE9ILA8dxw45WIn0Q245tG4OFdH5RH0J+/sqNSxncwFvcfOwcG1f+CRORrdtE8xHrjA==, tarball: file:projects/arm-hybridnetwork.tgz} + resolution: {integrity: sha512-lQGRhFmb4TRdfzg5Y7/2MW2RdLlLiIAGPX9kIRPHS+ylHcnXhua3KhEZx5blp5gDWNm1KszQy5vCjib7Z+nrKQ==, tarball: file:projects/arm-hybridnetwork.tgz} name: '@rush-temp/arm-hybridnetwork' version: 0.0.0 dependencies: @@ -14366,7 +14400,7 @@ packages: dev: false file:projects/arm-imagebuilder.tgz: - resolution: {integrity: sha512-WIFbfyzDSlkPsWCn5rHregkO4lhLVIdvNMuT8xKIoxK+gNNLM7dBfzlGLz0kZ+vYoaNTCCc8lClaiEqAF4PTOw==, tarball: file:projects/arm-imagebuilder.tgz} + resolution: {integrity: sha512-ZhLDWmh649eA5wl/RujEO16BLPS7sqyEVck9r08TJVhbmn1Ocq4qAYzGqTuEtxJ1i519baUaVhEHyRb+nkik1w==, tarball: file:projects/arm-imagebuilder.tgz} name: '@rush-temp/arm-imagebuilder' version: 0.0.0 dependencies: @@ -14396,7 +14430,7 @@ packages: dev: false file:projects/arm-iotcentral.tgz: - resolution: {integrity: sha512-liQqudKElxS9BDABTXg+hbiIBssUx0hntlGZ2dXBaBT3gfaT1NMcKWyobXA3n4ASvEuRK1N+SfWmgMLYPFeYiA==, tarball: file:projects/arm-iotcentral.tgz} + resolution: {integrity: sha512-v/ogpxgSA5N8SXbn0xiJ9oqH5jKi7NPJ9+/3GQq/Ty+SaJzeqM9zw7jO7rlDG8uNYGXku7oAvOSgJKSk/v3rzQ==, tarball: file:projects/arm-iotcentral.tgz} name: '@rush-temp/arm-iotcentral' version: 0.0.0 dependencies: @@ -14425,7 +14459,7 @@ packages: dev: false file:projects/arm-iotfirmwaredefense.tgz: - resolution: {integrity: sha512-jopwhyZ+7uOVInGm3CsJUVgAX1BVoP3wIf1ZS6zb0pN+92JaMQer/xstHaqVSKTXRrYs7yhCj8Tz6HTDxjf6KA==, tarball: file:projects/arm-iotfirmwaredefense.tgz} + resolution: {integrity: sha512-Zk2iSKiwE7QCDIfugks3ynB3bqbGoVqIvWEIL8pUYGFXXyy0tKvzHWP21TsgXrA1Q4GH1H4To4Gkw2JOzqZkjw==, tarball: file:projects/arm-iotfirmwaredefense.tgz} name: '@rush-temp/arm-iotfirmwaredefense' version: 0.0.0 dependencies: @@ -14453,7 +14487,7 @@ packages: dev: false file:projects/arm-iothub-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-COAYXppMt5dZocsPTzpegFcmKcqWKujoIbOL13V3xaRiyDIpDRaQ1K/oaX54H/qX1iR6cSL6JYdECg36FC1a6g==, tarball: file:projects/arm-iothub-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-jyUCOh0VdDHdgl63j93JutWuEgTI+QS0ZXUJV0z/iPqzbwtNukpM2Z6n41i4f0KLRHiMNcTOA7AozQVnd+2bGg==, tarball: file:projects/arm-iothub-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-iothub-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -14483,7 +14517,7 @@ packages: dev: false file:projects/arm-iothub.tgz: - resolution: {integrity: sha512-F43wiZ9thTfu7Ct7O3BSuPksSdqerD1hZvGsZAseZo56cgOE93PGkFFswJDhtiaIcPIdJn13iUDb9tFlVRcDmQ==, tarball: file:projects/arm-iothub.tgz} + resolution: {integrity: sha512-qzrpMniqY5UOLJu6Qul+qsNs/YxhAwFbhzbmFWa6Wk0KGTv2rlUTBeECRFo8jXvMjqegIvLWZfF9adcjv9rzng==, tarball: file:projects/arm-iothub.tgz} name: '@rush-temp/arm-iothub' version: 0.0.0 dependencies: @@ -14513,7 +14547,7 @@ packages: dev: false file:projects/arm-keyvault-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-eew0BowbeQlzkMjBteWwwGVPigBcMq78xpSZvEYZTi7WQtr4HOTa3KGZ/wftY9zZAiBdrltGEc8RRfR81WsXXA==, tarball: file:projects/arm-keyvault-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-6v73zZsCGr5vuPFshEDnnnLHYFqMlaiL401X7aAOaUukcct1rCx9u2pd74oEXK6UrTWSsLvww9e3Qfq+TTRLyQ==, tarball: file:projects/arm-keyvault-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-keyvault-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -14543,7 +14577,7 @@ packages: dev: false file:projects/arm-keyvault.tgz: - resolution: {integrity: sha512-FOZUSIU9l2ZnzhLqgVfLIYa1ImGzLa5vSKWMUa78miYmL58AeH0Lcd7BdCI88wkxHx/91yoWf5I9mDdXgsjSyw==, tarball: file:projects/arm-keyvault.tgz} + resolution: {integrity: sha512-JxoREum8qt0mgqccEQyh+jwm2JS0YW3y+B2wJTZYGfI6sWuLSWoqclrsduHpypukNim9zBamgeJp+yWCJl2hMw==, tarball: file:projects/arm-keyvault.tgz} name: '@rush-temp/arm-keyvault' version: 0.0.0 dependencies: @@ -14573,7 +14607,7 @@ packages: dev: false file:projects/arm-kubernetesconfiguration.tgz: - resolution: {integrity: sha512-sNMfT8bUuIFOOjivbf8DVXD8im2EnrMCpJOYGlqFdq0WVXtvuqSL+RvRYwga22RKOrMqx0CxhOXjARl23IknUg==, tarball: file:projects/arm-kubernetesconfiguration.tgz} + resolution: {integrity: sha512-4CVrbqbP0K039Jg6tzMgLFKZVHBKIPyzYAtU6DCyRYhfRr3vo6b1fM5OkdPJkzRoB2GvM2o/EtTAecCja0PvVw==, tarball: file:projects/arm-kubernetesconfiguration.tgz} name: '@rush-temp/arm-kubernetesconfiguration' version: 0.0.0 dependencies: @@ -14603,7 +14637,7 @@ packages: dev: false file:projects/arm-kusto.tgz: - resolution: {integrity: sha512-bpn7fTzekBnNCG92rgD67AvEAeo/w1jsN9tngbXe5blnSSf2ACGfVyTqRhIZYMOv9qIzD7Y4RS5IWDAMPHiiyA==, tarball: file:projects/arm-kusto.tgz} + resolution: {integrity: sha512-wgEkqVFCMyY1fnNp6LAfjVTbMgv/GzFNJSOyGbxR+8GHLibUywm+/v+DYjLLM4C1x/ABYyQRLXaBN4Pme9+U4w==, tarball: file:projects/arm-kusto.tgz} name: '@rush-temp/arm-kusto' version: 0.0.0 dependencies: @@ -14633,7 +14667,7 @@ packages: dev: false file:projects/arm-labservices.tgz: - resolution: {integrity: sha512-mZ2e61/KOfqChADFU5tuI3at+jyuVA1LMNhqo7SFFqGbjXsyVG2TQ5Uu1Bm85ef6EFhXniPdek6RN3evJQU7ag==, tarball: file:projects/arm-labservices.tgz} + resolution: {integrity: sha512-2zW93uneDWOYO8ashXN/HjDQXW20jM042fJfbELQSXyT4Z5YW4EX+7EgWl6om+ow2T0CIHCP/3IwwVQZo6e1FA==, tarball: file:projects/arm-labservices.tgz} name: '@rush-temp/arm-labservices' version: 0.0.0 dependencies: @@ -14663,7 +14697,7 @@ packages: dev: false file:projects/arm-largeinstance.tgz: - resolution: {integrity: sha512-SRGvwa08A10+l5p39hAoYSPy53bSQTN1tt6UQbxtONAgF41Owohqovxo1ZL7eIOGvneurzT7Ca6hnWvhO8ft5w==, tarball: file:projects/arm-largeinstance.tgz} + resolution: {integrity: sha512-1abtiKgkUMW2qO1wjuIr8t5p1ez5b5LxFjh7EIvLjgCjMtVWjAMsELkRKArhenZxc/T+RO3rb7vN6V6YOpn95A==, tarball: file:projects/arm-largeinstance.tgz} name: '@rush-temp/arm-largeinstance' version: 0.0.0 dependencies: @@ -14693,7 +14727,7 @@ packages: dev: false file:projects/arm-links.tgz: - resolution: {integrity: sha512-5NNtprQi+wxcF1uWx1lX6vzHVH6XnTUSDPZfJjmZzNPEqbFqq3RUyx9zspsA3u8O5xlOLF6sFqchtrIPuw5NNg==, tarball: file:projects/arm-links.tgz} + resolution: {integrity: sha512-vy8pF5ciXYajsyasaTGaLi1/cPomCD7jWJ7CveZ24AZeogydkFcK2WzYqtdB8Pb97XpD2mDraUoj5xx1TpwpFA==, tarball: file:projects/arm-links.tgz} name: '@rush-temp/arm-links' version: 0.0.0 dependencies: @@ -14720,7 +14754,7 @@ packages: dev: false file:projects/arm-loadtesting.tgz: - resolution: {integrity: sha512-5EwqshTURIlvMXdl5du4+0EynIMBGTz4vkldCVr8QiA7QNkRYuBiYJz2TOl8Q76e+JxHF7pzApuCu4uOFh1UCw==, tarball: file:projects/arm-loadtesting.tgz} + resolution: {integrity: sha512-R9wxgbMIt+wUjNBh7MmEgPv7KSok8rVVxay2iskhcb2XJXq/0WqgyGmgj4KRHBpGQI07X2n1vUCyb/dcfD2UIg==, tarball: file:projects/arm-loadtesting.tgz} name: '@rush-temp/arm-loadtesting' version: 0.0.0 dependencies: @@ -14750,7 +14784,7 @@ packages: dev: false file:projects/arm-locks-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-kZM2uKjbiUzaGc7qL5ugE4qWtZCcPEFUPAXiQlHvxu6lmxZGTgbkOlsF/T1FSIHIDbX8IqMYQ43SADVgMlnyiw==, tarball: file:projects/arm-locks-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-npkoRV8xErVzd0ryHMqN6upbZIkqVEvv8XB7BXYvuDUI3ETV3/M6zJoQSzH6B/LrUDjSf00zD0EYNVFrCqmLfQ==, tarball: file:projects/arm-locks-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-locks-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -14778,7 +14812,7 @@ packages: dev: false file:projects/arm-locks.tgz: - resolution: {integrity: sha512-mjbmRTflf6ZXnghr4Wu9n5VP6ZUJmkWYb5dw5abniZggG64eSwVFqs3QaiF2WCtQASWpXZHQba6B1R2JKecECw==, tarball: file:projects/arm-locks.tgz} + resolution: {integrity: sha512-Av96zFmv3nR8JzAtN4EGKH/A1Pe24/h45CERMLau5wt8SpfY15k8dxE1s5LQXZlsx35voHpKhYX9C6ae2FSIUw==, tarball: file:projects/arm-locks.tgz} name: '@rush-temp/arm-locks' version: 0.0.0 dependencies: @@ -14805,7 +14839,7 @@ packages: dev: false file:projects/arm-logic.tgz: - resolution: {integrity: sha512-EhSy+1o6u8q6V71ortV0/hu4s+D10gJTfc500gC4pDb3oRfSFfnNf+axzX33J5/5cpkTu2bPGP0ecUMaMRZTYA==, tarball: file:projects/arm-logic.tgz} + resolution: {integrity: sha512-uQzWPw1Yv8eLy1hERsrva/xoO5iSp5MkmIpBjdITtc8mLuil1hS4zCl8xB/OYslqWykgfH5P8f1p+Gm2zdoOKA==, tarball: file:projects/arm-logic.tgz} name: '@rush-temp/arm-logic' version: 0.0.0 dependencies: @@ -14835,7 +14869,7 @@ packages: dev: false file:projects/arm-machinelearning.tgz: - resolution: {integrity: sha512-txwLl13jHtCTfSr4lFDnmQ6G5cYPfSZDXJ0c5DEiMdyYCljCrPSG963wECi5gKEBMUSKr6US3QgZciniHDXK+Q==, tarball: file:projects/arm-machinelearning.tgz} + resolution: {integrity: sha512-uCPIp7AMhEqGPHPznv1ukvdQzyf0SBdrfxHLdR1vv2+1F5CBmbo6zxe8XgNn5iEStn0W3KDOYMrdXHvqev575g==, tarball: file:projects/arm-machinelearning.tgz} name: '@rush-temp/arm-machinelearning' version: 0.0.0 dependencies: @@ -14864,7 +14898,7 @@ packages: dev: false file:projects/arm-machinelearningcompute.tgz: - resolution: {integrity: sha512-4fKtWqRorfXaqD06yzs3BPvUEK33lccaefiyoCi/31xwvbxv0Xm3WOHKGq4SmGlJnnZRLY7VeiVHQGSB95l3Yw==, tarball: file:projects/arm-machinelearningcompute.tgz} + resolution: {integrity: sha512-Pr2MlPj6JIdCJCtEBmXcOE7w90MHcYpc0frSs7BZDHZVlr8Mb4oAs7uee88YMC780SAflGanUuy2s1pDg0NJHg==, tarball: file:projects/arm-machinelearningcompute.tgz} name: '@rush-temp/arm-machinelearningcompute' version: 0.0.0 dependencies: @@ -14893,7 +14927,7 @@ packages: dev: false file:projects/arm-machinelearningexperimentation.tgz: - resolution: {integrity: sha512-JiD2oPcqdrXXjttSp0SyeVr6C4dKjcJkZNEN4PbG/zt4MGo3yjtZBHVJosg4o9tHeCL90auikg8PNbDiGRs22Q==, tarball: file:projects/arm-machinelearningexperimentation.tgz} + resolution: {integrity: sha512-2cVUdFg+jhB+MLfcDzRrV9urgLPTB4FSC9Ej7F8p6ltMc6VsuNacg1zhq5WcdfDxRotwJCsze1muba7lJPddPA==, tarball: file:projects/arm-machinelearningexperimentation.tgz} name: '@rush-temp/arm-machinelearningexperimentation' version: 0.0.0 dependencies: @@ -14921,7 +14955,7 @@ packages: dev: false file:projects/arm-maintenance.tgz: - resolution: {integrity: sha512-c22MZSqTTJTXzBDL/ecsmAZ7W/r3i1tlDE0NuXS3ye2IiUIXVbFy0v7tB3ouR/M7so9m2N8UGdpn5HJXCs0c2g==, tarball: file:projects/arm-maintenance.tgz} + resolution: {integrity: sha512-hbHRUZj5M0xrJTPhD0alFfmvcCylwflT+/kvdK3PEKcc8RgzdquUJTL7xVzIuZfENPcW+22w7tYb8sHtJYR/Ag==, tarball: file:projects/arm-maintenance.tgz} name: '@rush-temp/arm-maintenance' version: 0.0.0 dependencies: @@ -14946,7 +14980,7 @@ packages: dev: false file:projects/arm-managedapplications.tgz: - resolution: {integrity: sha512-2VyqpG1GcMKjP19wqZ78KLOFoZWjBGksMoE28rh5ZgmPRfz2uziHxCGVd8uIxn4hlKC5UdGQ9/pm8DX9i7CsyQ==, tarball: file:projects/arm-managedapplications.tgz} + resolution: {integrity: sha512-+50LikptoY340NILV2lHa4P+JZyoVlce1/DBiL+Yn7r26F3PhE85cma2F1xqhIYZijjfjr+8zB42oWzkiUOq2A==, tarball: file:projects/arm-managedapplications.tgz} name: '@rush-temp/arm-managedapplications' version: 0.0.0 dependencies: @@ -14976,7 +15010,7 @@ packages: dev: false file:projects/arm-managednetworkfabric.tgz: - resolution: {integrity: sha512-oTJQi0UNrEyd/N3Vf1l9Oz9TJuKrnzk8a+iBQIHDwce1xNxOtCxJ7IIVu5KJlyzkEoxINB1dxJGdDqqrzlr5vw==, tarball: file:projects/arm-managednetworkfabric.tgz} + resolution: {integrity: sha512-Yshd5V1ylytidTS9UQrr2IST7D37NN4f3XKkedKFkGwNKGPipF3VGOEuIdPiE22eJV6Esx/ZGJG2DGPj6vkHXQ==, tarball: file:projects/arm-managednetworkfabric.tgz} name: '@rush-temp/arm-managednetworkfabric' version: 0.0.0 dependencies: @@ -15006,7 +15040,7 @@ packages: dev: false file:projects/arm-managementgroups.tgz: - resolution: {integrity: sha512-vcRQc8Tj3wCWpRklJPUlA1K2+HXtRdUcsXa/gIYZA6G1Pm76A40545YsZiUriek9AxHvya6fUkED6HelVu7xNQ==, tarball: file:projects/arm-managementgroups.tgz} + resolution: {integrity: sha512-dTs5ht7anpkuJOI1Ll/tzI0YvT2luw5dqBTpM/9CSWZ7EO2J9sOn1Bn9mMXIml9w05wHVOUcxN5uMGqJq3kvaQ==, tarball: file:projects/arm-managementgroups.tgz} name: '@rush-temp/arm-managementgroups' version: 0.0.0 dependencies: @@ -15035,7 +15069,7 @@ packages: dev: false file:projects/arm-managementpartner.tgz: - resolution: {integrity: sha512-ZSHTa4THLaLN32eabB1MO3Ip5BR/eOdCeYLgDSQDItOXUZqAKlXb89YYUKdYBA2MWkif7c1vCi4UOAanf2H6+w==, tarball: file:projects/arm-managementpartner.tgz} + resolution: {integrity: sha512-ehiCqR0dzIEKHO3mi6tpKhDKovxqneE+buzfk8avTkteCqiUv8dBkAA1hCZxbMCm1MIiLelExELttwx1ST+cww==, tarball: file:projects/arm-managementpartner.tgz} name: '@rush-temp/arm-managementpartner' version: 0.0.0 dependencies: @@ -15063,7 +15097,7 @@ packages: dev: false file:projects/arm-maps.tgz: - resolution: {integrity: sha512-GCifC9yLva4dqyty06RQptzYuCev47p7e0WZNf88fJ3Qbb56laXOvM0MpLi0Tpv1GtgaYEOpAoM5o17u2JiiaQ==, tarball: file:projects/arm-maps.tgz} + resolution: {integrity: sha512-GY27bMXxjvyniMf3y7xwPQ73iZWeujAXu1oTAbBRL79cZrzFHeMpaqS2GUiof7JLu6pXg2XcW8vVqla1cEol5w==, tarball: file:projects/arm-maps.tgz} name: '@rush-temp/arm-maps' version: 0.0.0 dependencies: @@ -15091,7 +15125,7 @@ packages: dev: false file:projects/arm-mariadb.tgz: - resolution: {integrity: sha512-+pyF4nM7UOWcOP1ZissFsybkkLM/r2v1G+fPvWV4f7pBGDqhRHgH8qJ3JivqSpI8hsBHNX8DEcdGBPT8vEIrbA==, tarball: file:projects/arm-mariadb.tgz} + resolution: {integrity: sha512-N/HNyrlOZ5MvLUn/uII4OJiI+Z8csgFyaeXkqzjG4Lpnirao6wpwzuBQM33jwnPiT44ksG3YeNSxVvdDrgcEZA==, tarball: file:projects/arm-mariadb.tgz} name: '@rush-temp/arm-mariadb' version: 0.0.0 dependencies: @@ -15120,7 +15154,7 @@ packages: dev: false file:projects/arm-marketplaceordering.tgz: - resolution: {integrity: sha512-ANQmyDAjShNelT5M7ND1QZYpTo0+uFd/SP6kysNTNOyyX5ScNiYq8sItTsKe9V67rpFr69L+wYqmog5xUilgvg==, tarball: file:projects/arm-marketplaceordering.tgz} + resolution: {integrity: sha512-P+PmKuYxobQrMGJWkZwWuIq+3XmbBSX2i1Lap1fhT+RJ/MLAObDsKHpHH8iEyG4m/x66Fn7ccLE3+wKVqNtjnw==, tarball: file:projects/arm-marketplaceordering.tgz} name: '@rush-temp/arm-marketplaceordering' version: 0.0.0 dependencies: @@ -15148,7 +15182,7 @@ packages: dev: false file:projects/arm-mediaservices.tgz: - resolution: {integrity: sha512-4AWyKpM/JF27N34ss52OIrPSjaCLo1Q/MGg/kXSznZpvxy4eU1h3h2t72hDZKnEeS0NySMlk+16GYC7bmNbT9g==, tarball: file:projects/arm-mediaservices.tgz} + resolution: {integrity: sha512-m3mR/zUPGsuzSluz3JEG3S7SFx0N5l8S1f9LYtzEuGsy9lwA9Xg/STm2foIiNLyDc+eqv2nE3wsjt+CYrA4dJA==, tarball: file:projects/arm-mediaservices.tgz} name: '@rush-temp/arm-mediaservices' version: 0.0.0 dependencies: @@ -15178,7 +15212,7 @@ packages: dev: false file:projects/arm-migrate.tgz: - resolution: {integrity: sha512-Z9cyXCZTEXu2g+HJ2aVB8Nntq6X1owFcShWFeRwwAcahEmXXeAlUGIR9NOSXfOMSrUZXxQ+93zEmHml7voiQWg==, tarball: file:projects/arm-migrate.tgz} + resolution: {integrity: sha512-EsS1GvkgztGc6dhKLiNiKoE69zFVj5y18zLsh+Q8Yp1Fb2zUlcGPPRrHB00iLP4nQMQ6CnWMu9jCSUDDQL7Yyw==, tarball: file:projects/arm-migrate.tgz} name: '@rush-temp/arm-migrate' version: 0.0.0 dependencies: @@ -15206,7 +15240,7 @@ packages: dev: false file:projects/arm-migrationdiscoverysap.tgz: - resolution: {integrity: sha512-v0zAOwEAE/W61uyVkwoB7MgdW8XzfYmIIA8Oz6u9DoFzAaDf5XGtIgk50bnj93K6tBXRSCJ4zf4k3VLQL9CjTw==, tarball: file:projects/arm-migrationdiscoverysap.tgz} + resolution: {integrity: sha512-SaMywy514OIbO8uglvFt4/RpHEbC8lrLiHSPzFib/BtepfyCiy8PM1hTM3ZWM02LZ5ACmmwLe7OoHjb1pHvcXA==, tarball: file:projects/arm-migrationdiscoverysap.tgz} name: '@rush-temp/arm-migrationdiscoverysap' version: 0.0.0 dependencies: @@ -15236,7 +15270,7 @@ packages: dev: false file:projects/arm-mixedreality.tgz: - resolution: {integrity: sha512-VJUXWpYpcKBTTw+1liV8Jk0xgCvLt/MgKzzPTAMM+o/bJX3E1b/smDFnh5w6JWDCrbzu0+nRSNX84d6+U19lJQ==, tarball: file:projects/arm-mixedreality.tgz} + resolution: {integrity: sha512-5Vn/EXr5XUov9XuD2UYqduyPHiJ7Tko9dKKma4RRCQ1Uta6+127kscIJwzIR/Bk9ONR9OaDyE4cYLg6uMxy5ow==, tarball: file:projects/arm-mixedreality.tgz} name: '@rush-temp/arm-mixedreality' version: 0.0.0 dependencies: @@ -15263,7 +15297,7 @@ packages: dev: false file:projects/arm-mobilenetwork.tgz: - resolution: {integrity: sha512-oLlUZgJdQh72aFW6iJiCNSDNh5gx8080a1Di/9p94hjPuEnmEpM4irUJn+MoMq6MCzC1Ooadcyf1JZcw3sDlFw==, tarball: file:projects/arm-mobilenetwork.tgz} + resolution: {integrity: sha512-slUAJZvSsk1+EpqJ8YugCfBk8uqFbtwiB8oiq1+AZujWJgV6fjRqSVQFsF8NRrpMO+kqsGDWE87UM6RyJKvHbg==, tarball: file:projects/arm-mobilenetwork.tgz} name: '@rush-temp/arm-mobilenetwork' version: 0.0.0 dependencies: @@ -15293,7 +15327,7 @@ packages: dev: false file:projects/arm-monitor-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-gYGqHxDXms9/ZY+T2PYwVCru7G3Cnqsx8Eo/GBLYU+LGJog0rDGzxap1krGfbahuVYASdQUSkRXHb2iqAfOBsA==, tarball: file:projects/arm-monitor-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-mUeMDbFigcOs/MlAq31TLxGxgvVcgqFXbk+fbbX5qxZXUueq5UQvzXqMWWXM8RIMOZ/71xSpxFM9hAyX57vX4A==, tarball: file:projects/arm-monitor-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-monitor-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -15321,7 +15355,7 @@ packages: dev: false file:projects/arm-monitor.tgz: - resolution: {integrity: sha512-09UUVoE80LzWIO+TnphdzZEp1ZdIy204GLs7DYKaLeSsj/GNrH11nrodNKsEPVGeCnG3AhlEWQdXqm8GDERgpA==, tarball: file:projects/arm-monitor.tgz} + resolution: {integrity: sha512-GxMkxv0+YNW6zXgoQP9xcN/gYWEWfPa6iWz6L0OkBDt8kyxprgmpsK3Dns5w5DssBUP8cwZ3l/RjRbfuhbdTiw==, tarball: file:projects/arm-monitor.tgz} name: '@rush-temp/arm-monitor' version: 0.0.0 dependencies: @@ -15351,7 +15385,7 @@ packages: dev: false file:projects/arm-msi.tgz: - resolution: {integrity: sha512-Y7Yc2DWhVYcE4zITuEA9QQ0KRQqNINQK5jfmTUvnJKkQ7i7Vz9UNFsuybhc7pMCY8fGyxY7WF+N3eV4qbMUl4A==, tarball: file:projects/arm-msi.tgz} + resolution: {integrity: sha512-juxLKgAMkdEBvXGWk86rXFrvuN3Czp+aAQ2uKjYMLkUG08vFvIYhgjcrPkiJU4BmTwLmr7Q9kiT0y+wpy4681A==, tarball: file:projects/arm-msi.tgz} name: '@rush-temp/arm-msi' version: 0.0.0 dependencies: @@ -15379,7 +15413,7 @@ packages: dev: false file:projects/arm-mysql-flexible.tgz: - resolution: {integrity: sha512-49rhWGCbko/ckP4uMwImY+XtPqAEuQxtSjaLK/cvWW/3n1VKS48T3gbNASQZgf6VnXlzfZwrLfc7gXZL+rMDpg==, tarball: file:projects/arm-mysql-flexible.tgz} + resolution: {integrity: sha512-yS3m42609T+EiBycy+D7W/xkeQp1SrtQTGTbP1AScRgiuvdu66KhXSD9DzOz5eXQsfJVtOeQ13ts+igbdrkMKQ==, tarball: file:projects/arm-mysql-flexible.tgz} name: '@rush-temp/arm-mysql-flexible' version: 0.0.0 dependencies: @@ -15409,7 +15443,7 @@ packages: dev: false file:projects/arm-mysql.tgz: - resolution: {integrity: sha512-3TJM5a2Qd8EeSIlKeKS39TyHde6bOLNK6gKmjFq7SkQSdEcqBX5vCfcG4p0WDw/+gKaA/MUzn8qF3m2CBgzf3Q==, tarball: file:projects/arm-mysql.tgz} + resolution: {integrity: sha512-nAVcgMcvjQSDpa+465azHocSkEPlaxd6GtkJZscPa7tTpkAz7oT5I9CjnenYDp9lXvok0u6TnOPxfmZ7tQG2lA==, tarball: file:projects/arm-mysql.tgz} name: '@rush-temp/arm-mysql' version: 0.0.0 dependencies: @@ -15438,7 +15472,7 @@ packages: dev: false file:projects/arm-netapp.tgz: - resolution: {integrity: sha512-da8kMQISQml4NC4xJk261SDxaiIvPqfjuYYNlaldDY/DFy5glQxCZtgXBQMUJq4ug0iO2BlxBUVxvpvtR7mpyg==, tarball: file:projects/arm-netapp.tgz} + resolution: {integrity: sha512-nTeu4weXUJ9ehkBOHDtMY/cjBLt15EGYqMxpWSplA/9psrd/24Q/aTzvG6VgXHe1rzWfTe15bWwoRz/0xKXydA==, tarball: file:projects/arm-netapp.tgz} name: '@rush-temp/arm-netapp' version: 0.0.0 dependencies: @@ -15468,7 +15502,7 @@ packages: dev: false file:projects/arm-network-1.tgz: - resolution: {integrity: sha512-P0n6tUfbodiXYxvWI+EnYalaMc9HHM9JAlsiVO7atPdEyIDsA8I688l3nIfVAEEjpXpMaRvTXj7K1Z7TYrT+3A==, tarball: file:projects/arm-network-1.tgz} + resolution: {integrity: sha512-wEi3DraOYti+jaS9TaMu2Q7c+lVH+QZvohyYfbMto/rTNUTpg0evOwuRIhQcH2wDaGsiMMqA2nGegsQCn0yv0g==, tarball: file:projects/arm-network-1.tgz} name: '@rush-temp/arm-network-1' version: 0.0.0 dependencies: @@ -15498,7 +15532,7 @@ packages: dev: false file:projects/arm-network-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-SvG/3Ds71axm6f+QfuqRKl/+rHADZn54u3X73unhO0QWWbI2TuE/nxV/4fMvaLdJGyGzB35BunOHPfNmJJDmbg==, tarball: file:projects/arm-network-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-6UCazr/RscZFdpZZ1C4gh883WtXZJENsdhuVjeqOClo1Xh8++bPhs+iIPpZquRnzqiBLfnVY+0YEZMfp4DX8tw==, tarball: file:projects/arm-network-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-network-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -15528,7 +15562,7 @@ packages: dev: false file:projects/arm-network.tgz: - resolution: {integrity: sha512-X0RkQ24Ptrta1BE/uUqf3sEwwzvi4tU4VZjhaDbQ1lXo3btD3QIFZ74D/yYGLoThzYqfVoMHJ0UFalKK9O+6dg==, tarball: file:projects/arm-network.tgz} + resolution: {integrity: sha512-s8TB5L7quHqZ+9d4ii7AdWrFxH8muUUzJq5WOEE6oIL40AIJoxlY/ZYN+BsA3oxOz5zoK3fvH+uG2T1y+GjqJQ==, tarball: file:projects/arm-network.tgz} name: '@rush-temp/arm-network' version: 0.0.0 dependencies: @@ -15574,7 +15608,7 @@ packages: dev: false file:projects/arm-networkanalytics.tgz: - resolution: {integrity: sha512-slnWBVpxw1dS7QIII5hBWkK2GoqDVy2BvohOuTSHDmJntEUvZvE4bcSR3ZiCOI1oIIA7PBWh4KVrSVQTHzgdAg==, tarball: file:projects/arm-networkanalytics.tgz} + resolution: {integrity: sha512-lLJd4/hABEwTZVahFDVcatGi4B1yO+cC41BEAE0Tk6tAIjNf0xbpfq5fjil0R6pCjTKm9aCJcpwSXmD74aeuhg==, tarball: file:projects/arm-networkanalytics.tgz} name: '@rush-temp/arm-networkanalytics' version: 0.0.0 dependencies: @@ -15604,7 +15638,7 @@ packages: dev: false file:projects/arm-networkcloud.tgz: - resolution: {integrity: sha512-lvZgPX3RMUmBKSRf7eXN+LirlVRXw0eQShBgZSYPHO0/r4LG2MLeHtyB0/rovC3oysUJw1Iq1Y01RDwyXdo3dg==, tarball: file:projects/arm-networkcloud.tgz} + resolution: {integrity: sha512-ijlDSaGTr47IHpVWSVwuy6goTfAb/Uxfyvtvp58nkmitytKt5t84WxbitlUUW4pPnv/3V6jyqSkPF7U88tZnrA==, tarball: file:projects/arm-networkcloud.tgz} name: '@rush-temp/arm-networkcloud' version: 0.0.0 dependencies: @@ -15634,7 +15668,7 @@ packages: dev: false file:projects/arm-networkfunction.tgz: - resolution: {integrity: sha512-s0Ey4RRYVM6wfkTmEwRtyH9B17rGFbvtqxL+QO1PUX13WcXI1K4F7Zs/3sIIj+BOSphlJHze4I6Q3GTG7sueNw==, tarball: file:projects/arm-networkfunction.tgz} + resolution: {integrity: sha512-hr888GcOBygLMmYWjrVS5gebE0w21XSQjFaLx7yQSx0J/yBBozBSZ7WA/X7Nsz6rG2qB8gE/nXw8gg4B6DA4Pg==, tarball: file:projects/arm-networkfunction.tgz} name: '@rush-temp/arm-networkfunction' version: 0.0.0 dependencies: @@ -15663,7 +15697,7 @@ packages: dev: false file:projects/arm-newrelicobservability.tgz: - resolution: {integrity: sha512-vx8WGfZY511F9Mf8zhCTL5hZgHcIV3wJ69R774P18DCwLoQRUtsW3QOpRFjxgq89lcY58BkpTqD/ltL7hnvneQ==, tarball: file:projects/arm-newrelicobservability.tgz} + resolution: {integrity: sha512-kdXO5tExkLuPBqPDGFLvlj6Ero/A+CAuYt+u8Neq4Wndd8D7N/a58AOo9laS4WxUSCi8+57pBKkiSFGehnLj2w==, tarball: file:projects/arm-newrelicobservability.tgz} name: '@rush-temp/arm-newrelicobservability' version: 0.0.0 dependencies: @@ -15693,7 +15727,7 @@ packages: dev: false file:projects/arm-nginx.tgz: - resolution: {integrity: sha512-jIddhfa43k50YepVWCQNLukwTW4oi+mIrDL67U226byMSFBh04XWh6/W27F78eaZw41FAjEVMggJQJbd0JGcLw==, tarball: file:projects/arm-nginx.tgz} + resolution: {integrity: sha512-VEsa80q55QvX2RToaUVNJEpGInjRPJE7SEOF4fT7f+HIQHDmiv0vnIF3G1uhpREAV6T7Mq5kHab1G8osdTPQAQ==, tarball: file:projects/arm-nginx.tgz} name: '@rush-temp/arm-nginx' version: 0.0.0 dependencies: @@ -15723,7 +15757,7 @@ packages: dev: false file:projects/arm-notificationhubs.tgz: - resolution: {integrity: sha512-ukqG0qcYHOoGLFAXiqaKM/aItkfCfrcMtOE84iUsdXvc6aHJTHXsrLO9gCF+PiR8SDpFF0NFCwfzvP0J2N+5qw==, tarball: file:projects/arm-notificationhubs.tgz} + resolution: {integrity: sha512-CFLzBmNzOHZhslniL/TUm5noJ4nPZ2oj80l6zVPkrD77JGbtczUaOzxPSXdQexa2XPa6hSmFUfUHvkUPhvKGtw==, tarball: file:projects/arm-notificationhubs.tgz} name: '@rush-temp/arm-notificationhubs' version: 0.0.0 dependencies: @@ -15753,7 +15787,7 @@ packages: dev: false file:projects/arm-oep.tgz: - resolution: {integrity: sha512-67fB7oz9f6H+BraPeYUSRiOVDR1F5xrh+JbINcxa7ptYz/4zJshguElxXcEBg7ZyHVzeE4+krS+15xo6FzpV5g==, tarball: file:projects/arm-oep.tgz} + resolution: {integrity: sha512-/R0GQoY1UNBAXEanM41umlrAcdkljv9hgryNj0c4Q1ozvP4udM0yCnn9IcfdUGZuKTSvqUYBwLuDZ1pLY6f4TA==, tarball: file:projects/arm-oep.tgz} name: '@rush-temp/arm-oep' version: 0.0.0 dependencies: @@ -15782,7 +15816,7 @@ packages: dev: false file:projects/arm-operationalinsights.tgz: - resolution: {integrity: sha512-sgljeojIGarB8Bd2zP7xCGOZOvz7qcjlyWjFI9Evtj+VsrBHGX1WFIl6AbGgZR9ERUoXj2Y3GYzvlLpcKCRgEQ==, tarball: file:projects/arm-operationalinsights.tgz} + resolution: {integrity: sha512-hXB82IJPZ+ol9Zfr5PgG7rh+Nutmk2lSEqMZW95NQMI3xPThYsH13g+tgaI7K2KitTD2VBeiFgh/DntuCf3Qqw==, tarball: file:projects/arm-operationalinsights.tgz} name: '@rush-temp/arm-operationalinsights' version: 0.0.0 dependencies: @@ -15812,7 +15846,7 @@ packages: dev: false file:projects/arm-operations.tgz: - resolution: {integrity: sha512-q2x6ndLC6coy0aHTEYL2ZMSywpcpVNbs0MqL/O+JGbeyamF1YMJHykbMjyg83PM56uSPxzNMLFI3pYqdbsp3gA==, tarball: file:projects/arm-operations.tgz} + resolution: {integrity: sha512-pIQra1/tX8tLRgyljVLKBUHzSshvtEu6f9j0X0uJhgLwXCUcOyAZSJGkQtCYXRfqR5AOUJYeewFJ+G97DN02oA==, tarball: file:projects/arm-operations.tgz} name: '@rush-temp/arm-operations' version: 0.0.0 dependencies: @@ -15841,7 +15875,7 @@ packages: dev: false file:projects/arm-orbital.tgz: - resolution: {integrity: sha512-XgaPFuu44TTP53vd6A8PBGRiID2WzXSAx3OYuo15MX2d3Ci02bMHSjsdJ9v1EIp7yFOjJLkJYYYa+C6arUr2AQ==, tarball: file:projects/arm-orbital.tgz} + resolution: {integrity: sha512-5R/ooM56PlrM6tZHDCd2Gbhj/dk54CFoNDfYyMdRdGEh1BXAhFNlNMhbfHqwTx7prY/uub1sywZAF9G4NEf9Sw==, tarball: file:projects/arm-orbital.tgz} name: '@rush-temp/arm-orbital' version: 0.0.0 dependencies: @@ -15871,7 +15905,7 @@ packages: dev: false file:projects/arm-paloaltonetworksngfw.tgz: - resolution: {integrity: sha512-W+/nuc9O6U93wD/Y5UzpCDzXwkMxJMLP9snCkv75J2XVqv4Y3A5J0X5GkfJ/X2RieM/rrfT/093peNxThVbGzQ==, tarball: file:projects/arm-paloaltonetworksngfw.tgz} + resolution: {integrity: sha512-kPZCjzy2lilHbWR9WTvT9vHrtyhlVo74kW7GVaC4KmuClG/7NLv6htQjWyOwmN619nV1e5Tt+LabezzrJj+ZoQ==, tarball: file:projects/arm-paloaltonetworksngfw.tgz} name: '@rush-temp/arm-paloaltonetworksngfw' version: 0.0.0 dependencies: @@ -15901,7 +15935,7 @@ packages: dev: false file:projects/arm-peering.tgz: - resolution: {integrity: sha512-KMl1ab84VdTYxE4wTctZDZ8Mljz3x0f+ITYS30M4J8IC6T0T1fN2HseENk9Aohmw6C2RpKgZhbpaw+SSwj4gDQ==, tarball: file:projects/arm-peering.tgz} + resolution: {integrity: sha512-4+FHl0yd8RfK63E1b6qXc6GVKDpKSdhkrWNyrjVW+UGbUxd89oobEz3uVocN2PLbFKk1XykX5M8P5tfXW0KMWw==, tarball: file:projects/arm-peering.tgz} name: '@rush-temp/arm-peering' version: 0.0.0 dependencies: @@ -15928,7 +15962,7 @@ packages: dev: false file:projects/arm-playwrighttesting.tgz: - resolution: {integrity: sha512-jvsyV0w0TVK3lV3+q7Jur8p5KsZBKJfMtkgQJ9NQeR2J2hfEWVB2xBZMlgEDOLw/xKRmt1DQzbGOXSwnVufpQA==, tarball: file:projects/arm-playwrighttesting.tgz} + resolution: {integrity: sha512-VCtjyZAd6HF4LRNwGZIb2aza8lYAhuYg0ZGzO79w6EWNSuab6US/ufZ7SHnM1IRL8ABUeFZH5yfQZ0qsPe0YcA==, tarball: file:projects/arm-playwrighttesting.tgz} name: '@rush-temp/arm-playwrighttesting' version: 0.0.0 dependencies: @@ -15958,7 +15992,7 @@ packages: dev: false file:projects/arm-policy-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-+CVJ6VZJ+3b7sfDoEtVhLyiUe+W6zdpj/cdc4inXZA8mRW+3xqU3qr4/UsyzyqErpdhx8Z8fWihuGuvsc9TM2A==, tarball: file:projects/arm-policy-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-wt2ZQ89QtMfiHgeEObNs3aTO9qSL3baSvG+qKcZHtrJSZeuL5g+LIPRfki1BEL/V1BiU5IamxaGoScqTmHhu1g==, tarball: file:projects/arm-policy-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-policy-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -15986,7 +16020,7 @@ packages: dev: false file:projects/arm-policy.tgz: - resolution: {integrity: sha512-tevn+llcVa+h7PB9fDDZeQosXFFlgPvGVWeWtbAGzre7W5trMTmr0c96H5B5p1F8NZ+u1+bwE7zzhwhcOHFzKw==, tarball: file:projects/arm-policy.tgz} + resolution: {integrity: sha512-Ahle0wNx/lnFSlEh9rh9p3M60DsiVz1W9WcPpKBcgDkOVXo4Hn9Jz/VnEv211kiXn4En2Kqzoz/Skxzkv86AyA==, tarball: file:projects/arm-policy.tgz} name: '@rush-temp/arm-policy' version: 0.0.0 dependencies: @@ -16014,7 +16048,7 @@ packages: dev: false file:projects/arm-policyinsights.tgz: - resolution: {integrity: sha512-UfKMLXF/ipnrDcq4TwynZLFVaK9tfMdV9nxH8f3Jo0ke2G3XWh2d+kqhcEtdXv0EBpn9e0WB+Q4fJtROaCsbDg==, tarball: file:projects/arm-policyinsights.tgz} + resolution: {integrity: sha512-4Zoh6fnNuCkMt9E0p4s49SoSQp7Pm3/1UrEx9USsYoUJ9/ZOQsMnlRGsaqZMRBM7sLOBXlWM+etCOsP5xWoOxQ==, tarball: file:projects/arm-policyinsights.tgz} name: '@rush-temp/arm-policyinsights' version: 0.0.0 dependencies: @@ -16044,7 +16078,7 @@ packages: dev: false file:projects/arm-portal.tgz: - resolution: {integrity: sha512-FkDJkBIZ36EUmTExOygYZudg05zjFQOgjO10/t20fNADvVZwk8SnTwd8KEuvIIbTuFRj+5a117RerkrhGY2rzw==, tarball: file:projects/arm-portal.tgz} + resolution: {integrity: sha512-Uz0e9q4InfMO7xMab/rY9Ye+5gZr+WrkduLIllWqF8sIgbTEh9w1FyCvC5tUIAwA0/KZ2tOYANCzrxrYWsmgBg==, tarball: file:projects/arm-portal.tgz} name: '@rush-temp/arm-portal' version: 0.0.0 dependencies: @@ -16072,7 +16106,7 @@ packages: dev: false file:projects/arm-postgresql-flexible.tgz: - resolution: {integrity: sha512-CUbFXmQh6DciSrRNZEySqrGydRhdx6rCg519n8ZPUac3bje2HWwY9jXhENoI4JLuWRwB05caWt3w7gWQcj4QRg==, tarball: file:projects/arm-postgresql-flexible.tgz} + resolution: {integrity: sha512-zzcgPa1Hunj4Hu66k4NolAVYpvhcCVwPxQHpC1FtodosBgybNuf6t+U4t4Igz+2PO6gpo3HIGWaxSYcCrZnAJg==, tarball: file:projects/arm-postgresql-flexible.tgz} name: '@rush-temp/arm-postgresql-flexible' version: 0.0.0 dependencies: @@ -16102,7 +16136,7 @@ packages: dev: false file:projects/arm-postgresql.tgz: - resolution: {integrity: sha512-Y0k25n8HXyb/lOTZX1QAFrPlmEhqKkO+tr64olny8PPa6TLkMZivxJC8GZwku3MsaXmzBrvxZxLpmZF8Wn4xzQ==, tarball: file:projects/arm-postgresql.tgz} + resolution: {integrity: sha512-26Q3dnPk7WKt27UIfDwnSCmOfPaCSNwtRXgPiTuZdpeqTxeaTEuwYikJzIKzMKfuJg9UuH9dlwC9Xjo++X79bw==, tarball: file:projects/arm-postgresql.tgz} name: '@rush-temp/arm-postgresql' version: 0.0.0 dependencies: @@ -16131,7 +16165,7 @@ packages: dev: false file:projects/arm-powerbidedicated.tgz: - resolution: {integrity: sha512-dvSLDxvt5SFXvhcxVBWVIrYYRhX35n2MbI8fqsQVAXuRaGgdu28+UwTUrvG6T4lu4zxoPNJRnDbxDk3e2JOvFQ==, tarball: file:projects/arm-powerbidedicated.tgz} + resolution: {integrity: sha512-XmQAvxgm9s4UrXiZVVHsglTveeYkwaP0BsYNy633+s5Yyc3EnDm+legEkO6SetZs52OqHhiy5g9sY0bEf8UIqw==, tarball: file:projects/arm-powerbidedicated.tgz} name: '@rush-temp/arm-powerbidedicated' version: 0.0.0 dependencies: @@ -16161,7 +16195,7 @@ packages: dev: false file:projects/arm-powerbiembedded.tgz: - resolution: {integrity: sha512-ToKMpx4Np2fNZoeFArh2mDZo+KE1qSxNBJ4WhFgX4Gb5MxbHb374FKUd1twmkZfAIJSO5Kg/yhZrmgYHtKDFeg==, tarball: file:projects/arm-powerbiembedded.tgz} + resolution: {integrity: sha512-7p1NrmiRHonkjA1lzskPsp4gMevsRxbLRQ1y/d/eEWMJJw+WWaIlfNfzIPEFDOp0is7zUMRAGo+pqyHTDF6HIQ==, tarball: file:projects/arm-powerbiembedded.tgz} name: '@rush-temp/arm-powerbiembedded' version: 0.0.0 dependencies: @@ -16190,7 +16224,7 @@ packages: dev: false file:projects/arm-privatedns.tgz: - resolution: {integrity: sha512-OTeg4MOD1EfhZAgVLhDEFhA9j2tvnLIDI/CpUo7jRMTH/DKKXYC5y+EptiFKlh2gnp84AlxXhIc8P1NtoNVJiQ==, tarball: file:projects/arm-privatedns.tgz} + resolution: {integrity: sha512-XX/upsyOeVe+pwutokrJAbjS6FBKzy0vSINMXF357bORirkkD5zjMfQhjk5DrRmG9BlRSsaK88Q6+gF9EE5RWg==, tarball: file:projects/arm-privatedns.tgz} name: '@rush-temp/arm-privatedns' version: 0.0.0 dependencies: @@ -16220,7 +16254,7 @@ packages: dev: false file:projects/arm-purview.tgz: - resolution: {integrity: sha512-naRyqnZKSU320k5OZMtT53OB/O8WCb59y4lZKVh6rh6VIPJYh0zQGT52wCYLjVV3eSx7EWXeuJ8GiNKulH0b3g==, tarball: file:projects/arm-purview.tgz} + resolution: {integrity: sha512-uN1aSqCT6zuBzyEFvmC6lMPajX6WYjyR8tMgQ94xzA1+YBAoxJP6DFZqOtm/PLnWzGieYVi/FlBMH613jHdKmQ==, tarball: file:projects/arm-purview.tgz} name: '@rush-temp/arm-purview' version: 0.0.0 dependencies: @@ -16249,7 +16283,7 @@ packages: dev: false file:projects/arm-quantum.tgz: - resolution: {integrity: sha512-LG3bCRqDyrdDXRfaQWNoBK7iFdQ4QqN0+0bPoPfbxMOlas8xIBND+kmwPoq8PE1/aMs8+8U4UCH/6s7mGkMHbA==, tarball: file:projects/arm-quantum.tgz} + resolution: {integrity: sha512-JWcZ1aq6r6VOz8ER8AkRgtDgEi+yKvsqzG64iPIAumIg31xh5iPJB4QDrbUqc1C9vrHD8jyEI+9YiYmN8+t2Aw==, tarball: file:projects/arm-quantum.tgz} name: '@rush-temp/arm-quantum' version: 0.0.0 dependencies: @@ -16279,7 +16313,7 @@ packages: dev: false file:projects/arm-qumulo.tgz: - resolution: {integrity: sha512-J+JK5MpeGtm3Tp3zA0iEJj/++NMgjFNsI6x1wgsXzHm8wUYIVrrtZKsC5Z2XaTByQNZ3EcJLzjUxNTg+dCGTkA==, tarball: file:projects/arm-qumulo.tgz} + resolution: {integrity: sha512-en5X7IAftfR7D/KpQ/1gf/cPSJ2JF1kVTop/j6GgbynaJvYKyl49O67SGPTJYjUsNG9gRo+0CefGLGBtRSANzw==, tarball: file:projects/arm-qumulo.tgz} name: '@rush-temp/arm-qumulo' version: 0.0.0 dependencies: @@ -16309,7 +16343,7 @@ packages: dev: false file:projects/arm-quota.tgz: - resolution: {integrity: sha512-wEskdTED2UuHru5Ay5lYes6eC56jT+jR9uNLQfsOe/dFrDeRxw5rODFkvdVBz2Kv1COY4JmylFYJBRK0rpi0mg==, tarball: file:projects/arm-quota.tgz} + resolution: {integrity: sha512-kH13ggpSvR9YikQW8EwnlPf8qO+oRN8tZDiZDJwQRm1niSemDe1i2ZZ4dA8FXM9gfgu3MserjVWd51DIfMZyWg==, tarball: file:projects/arm-quota.tgz} name: '@rush-temp/arm-quota' version: 0.0.0 dependencies: @@ -16339,7 +16373,7 @@ packages: dev: false file:projects/arm-recoveryservices-siterecovery.tgz: - resolution: {integrity: sha512-NDknLKWM+Hy/DrMmHnNU59EbZ+2K7Abmdt2u5vMxc5HMf5vG+0r2y7JBr0UyUHek3UWEFrjohLCoaLrilZI08Q==, tarball: file:projects/arm-recoveryservices-siterecovery.tgz} + resolution: {integrity: sha512-VjGcZSfgYfFhRJvoLwGRmL5VFlWDLJZStlBWDpfZkS3S32TkBi/lcg0hldpA8JdxQFus9Q25fTZR98e0JMI/Ww==, tarball: file:projects/arm-recoveryservices-siterecovery.tgz} name: '@rush-temp/arm-recoveryservices-siterecovery' version: 0.0.0 dependencies: @@ -16369,7 +16403,7 @@ packages: dev: false file:projects/arm-recoveryservices.tgz: - resolution: {integrity: sha512-fWGyLHkNatNcZBXwueNZT1XGUbckK/OA86nfpNbnesEdnmvm+PRwscEiv0aCPc1dllKoWvf4ZsMi4/Pxf1nnKg==, tarball: file:projects/arm-recoveryservices.tgz} + resolution: {integrity: sha512-AQUuw6VmRac8IIQpWQWy20N7BUnU7OqYjRpHiaSgfdeuHgCzH6ZbRXzwfvG/gp8Ogl6qJMOXc+f2c6gCLDZ7Fw==, tarball: file:projects/arm-recoveryservices.tgz} name: '@rush-temp/arm-recoveryservices' version: 0.0.0 dependencies: @@ -16399,7 +16433,7 @@ packages: dev: false file:projects/arm-recoveryservicesbackup.tgz: - resolution: {integrity: sha512-u7THzIRGc205OMAdFyDdNxoKn5LJ4vUXCIZtHLftcbc/av+HWb6RFgobtQ2fq42KBAA5PN83FK7GHcQ3fFQP1w==, tarball: file:projects/arm-recoveryservicesbackup.tgz} + resolution: {integrity: sha512-7ehXELHOhtceRHxy6SUx5v+zkCIapTygDVAlkIcHPl7bBT7Trcj17AqD+zQaL5C8Bg8d5PgNbPBHdhiNxhyOdQ==, tarball: file:projects/arm-recoveryservicesbackup.tgz} name: '@rush-temp/arm-recoveryservicesbackup' version: 0.0.0 dependencies: @@ -16429,7 +16463,7 @@ packages: dev: false file:projects/arm-recoveryservicesdatareplication.tgz: - resolution: {integrity: sha512-oG7WIQK9XQUwjxRsZTcpJ8PwMBvwG5ta6WaBtFgYtLpXq1C3mIZ9Ss9SMKYxPuWLhVLHUrX6LVygge8zb1xHsQ==, tarball: file:projects/arm-recoveryservicesdatareplication.tgz} + resolution: {integrity: sha512-cmFZ4npjn0zuzYThNnmXR0yBs5v8VHaJe9uvKO9qyP4d0rSjeB33EnjQWor8RfX42bDiZg8PMXdrxI/KMhDKfg==, tarball: file:projects/arm-recoveryservicesdatareplication.tgz} name: '@rush-temp/arm-recoveryservicesdatareplication' version: 0.0.0 dependencies: @@ -16459,7 +16493,7 @@ packages: dev: false file:projects/arm-rediscache.tgz: - resolution: {integrity: sha512-VEnR353jUSEns94E5E/1hHPAUbET+R78dbG26RA9bhLaoxy9cTru0FFb94YcOXWQXQD2YsdEl2dOK2gfoOQ6QQ==, tarball: file:projects/arm-rediscache.tgz} + resolution: {integrity: sha512-bsUUIGGbARpHKxWQORBuhokwDbDv7u45R77/q8+eVMytO7ByoYIzBNKkuBcK7aRazp2alODk26+ywl8DVppV/g==, tarball: file:projects/arm-rediscache.tgz} name: '@rush-temp/arm-rediscache' version: 0.0.0 dependencies: @@ -16490,7 +16524,7 @@ packages: dev: false file:projects/arm-redisenterprisecache.tgz: - resolution: {integrity: sha512-u6sO2BtK95EdzTlC7nWVrKD2UpnbFpx5Qr/QjiQvYR9smWqJYAOwYMEKY32QTcOK4ssUhT+6okiS97wmohxsYQ==, tarball: file:projects/arm-redisenterprisecache.tgz} + resolution: {integrity: sha512-9TTyQ69S5/l1ylqkUhQ6CkByPdmUktNR3sjX/8F6LA+MvdY2fbHaVUq1zKiKiCJ35Z5tjF+w+WmKPqJo96FmeQ==, tarball: file:projects/arm-redisenterprisecache.tgz} name: '@rush-temp/arm-redisenterprisecache' version: 0.0.0 dependencies: @@ -16520,7 +16554,7 @@ packages: dev: false file:projects/arm-relay.tgz: - resolution: {integrity: sha512-Vi4vA4PXI4rTCSRxr2C7T/rJrI0GHL+MaPYpePOQHGahAtWb07ZLJDh2/r7BBNaYNdwajabwDPgjvuDU6Q/P7A==, tarball: file:projects/arm-relay.tgz} + resolution: {integrity: sha512-Zqgzz40DFauREo1j7XqX+R74RWPZA3p3FiMDpv570MLowSi5Mhs8QnRsPL54YigJC3NxEsmPdBUvAdq7OHX8Qg==, tarball: file:projects/arm-relay.tgz} name: '@rush-temp/arm-relay' version: 0.0.0 dependencies: @@ -16550,7 +16584,7 @@ packages: dev: false file:projects/arm-reservations.tgz: - resolution: {integrity: sha512-nhfEt9S8ABacYJOvv/83nx0GYKidVSAMtIxj9bk34JkvV4w5VxdXaW/FESO5AY10Gc+ifckAz0INVOgBBwEnqg==, tarball: file:projects/arm-reservations.tgz} + resolution: {integrity: sha512-OzQsNQDm/6PWpjCyGNeJ35E74VUS3i2ei5DiVfLcLFWQHMEf0C5rvbeLzvQC8mAQsumGrtz6zIHLhVxqtmvKCg==, tarball: file:projects/arm-reservations.tgz} name: '@rush-temp/arm-reservations' version: 0.0.0 dependencies: @@ -16580,7 +16614,7 @@ packages: dev: false file:projects/arm-resourceconnector.tgz: - resolution: {integrity: sha512-gubo3fpTtg1NlFiW032jiO9ioQSQjaMQu3j2rcmNuzJA6JiwikrES6MFzPZiZEwNrT8PZGUgfkcwHVer7u5dCg==, tarball: file:projects/arm-resourceconnector.tgz} + resolution: {integrity: sha512-E0kaGMCX7XZQ6uS7t7U0tBbJEDsctlXQbDn2ARVFO6Y+5/MJXF9Uh9S9EjrWv4bIdq+fS7T0/jDbceP6OMgz7Q==, tarball: file:projects/arm-resourceconnector.tgz} name: '@rush-temp/arm-resourceconnector' version: 0.0.0 dependencies: @@ -16610,7 +16644,7 @@ packages: dev: false file:projects/arm-resourcegraph.tgz: - resolution: {integrity: sha512-xHFRPk2FvCS6P3W55nwmqtCPtlIUAecrTemUK5CbCjL1HhDv8QLSIcBwvdhEJkPVY1ASUTAazpK0hgqpZed99A==, tarball: file:projects/arm-resourcegraph.tgz} + resolution: {integrity: sha512-Awh1eMRlSVtj+O95hp8UmrWIhX2B6lPIAj+qIhrIMZY5NZF5oNj1OJ4q8q7HLWvyEkWYY/NM3C4cHX5Gg4/UXA==, tarball: file:projects/arm-resourcegraph.tgz} name: '@rush-temp/arm-resourcegraph' version: 0.0.0 dependencies: @@ -16637,7 +16671,7 @@ packages: dev: false file:projects/arm-resourcehealth.tgz: - resolution: {integrity: sha512-hqLRvdXWAWDyn9MCjNPw2Mw4BNccxVwvrn9/s4KaCsH1UA80GnRMY1QpXFn5JW8gtzqLGwZaUZeP3W2N0U8ZQQ==, tarball: file:projects/arm-resourcehealth.tgz} + resolution: {integrity: sha512-wDVa/5RrLM4j+1dg2+JdFV2OS2m52vPfZU2bsJeNYuOPcRKb7PUMBw30TutKCtNoqn2/7WAT2KDsaL/rcl0Qww==, tarball: file:projects/arm-resourcehealth.tgz} name: '@rush-temp/arm-resourcehealth' version: 0.0.0 dependencies: @@ -16665,7 +16699,7 @@ packages: dev: false file:projects/arm-resourcemover.tgz: - resolution: {integrity: sha512-9wCHZxITBFlPcaq2It0gqtb4CgBxTGrSnpbhjD2YPIdVS2WUrFua35Twlg/hO01xEdeFUNmDkxqi6zSdKBC4sA==, tarball: file:projects/arm-resourcemover.tgz} + resolution: {integrity: sha512-MeIINjpmNDkst/xMp0da1fZYT8HUmm+31L1oeaOPNkyOrMaRYdPkrRhoMtGvVJbHxCaeVZW5wAMVyyY/qdO+5Q==, tarball: file:projects/arm-resourcemover.tgz} name: '@rush-temp/arm-resourcemover' version: 0.0.0 dependencies: @@ -16695,7 +16729,7 @@ packages: dev: false file:projects/arm-resources-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-okC68UG2pfrVFsrNtwki3oozWSMdIo9vbceEYxWDTwW85Os3YrfTZI+DaZsVuz/r/0aHgSw+BHaqzr2reeArkw==, tarball: file:projects/arm-resources-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-s/KxziXhUXvIPHRol4WFO98+YmQcu1+12hzqOQmL8Mm1lJ21+OawKt35e9c6IJn7otVfYAzdJmBXKMYvdty6mg==, tarball: file:projects/arm-resources-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-resources-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -16725,7 +16759,7 @@ packages: dev: false file:projects/arm-resources-subscriptions.tgz: - resolution: {integrity: sha512-KAz1rCuiZoyikMdjlm82HBCEYtI+Qj5M023TW5gaALHdqObN4mSTPioBCHCNPlsSHs05zOgn7J3c2mjdMzzU1w==, tarball: file:projects/arm-resources-subscriptions.tgz} + resolution: {integrity: sha512-bqxEx6rifKwElNxpMiFH1llEbqBKow8C/N8Ln77Fml8bPvqm2RYAwu6iDjfPqPu0hieGPHBhDIH5jDsRusuhNQ==, tarball: file:projects/arm-resources-subscriptions.tgz} name: '@rush-temp/arm-resources-subscriptions' version: 0.0.0 dependencies: @@ -16753,7 +16787,7 @@ packages: dev: false file:projects/arm-resources.tgz: - resolution: {integrity: sha512-DK5fZoVVp/hHE7Wlc8eOgTLrwCxWtv8uIRraux9kliFGkcv4G6JMVy6276kHOd0Pw5mF4dDOMYoF1fnRzLerrA==, tarball: file:projects/arm-resources.tgz} + resolution: {integrity: sha512-lk91CjLfdXcgHQT96k5N1GI3ESMuBEMJWD4MFTWDe+kRVZNGoYNaxkPY4IJ+jTr+P4F/BTDfbjJh3+WVDufQVw==, tarball: file:projects/arm-resources.tgz} name: '@rush-temp/arm-resources' version: 0.0.0 dependencies: @@ -16783,7 +16817,7 @@ packages: dev: false file:projects/arm-resourcesdeploymentstacks.tgz: - resolution: {integrity: sha512-vaLeR82fwmtOx04RBS0pepHbJXVE+qk6SeOg24ZMVUtcRRRzNrSoVtZHoMlAStoyimTEEDL4fTeRpxxmW0FqaQ==, tarball: file:projects/arm-resourcesdeploymentstacks.tgz} + resolution: {integrity: sha512-JCK5nD6vWwcsIyOUN6UzkiU184G8wxUzn3M477++LjChLjZqQ5tMvCbnnMVqN+nLB14eLpqQ6e9QIrY84yZ9gw==, tarball: file:projects/arm-resourcesdeploymentstacks.tgz} name: '@rush-temp/arm-resourcesdeploymentstacks' version: 0.0.0 dependencies: @@ -16813,7 +16847,7 @@ packages: dev: false file:projects/arm-scvmm.tgz: - resolution: {integrity: sha512-wk1V8WEl1GhY4hvEhwiCTqSiN0Z9K0OjhDAM/T2TZklV2D/IBtLj80mSWD7vbfs2lA02gSGRaDfFEmDgFc4m6A==, tarball: file:projects/arm-scvmm.tgz} + resolution: {integrity: sha512-jeTWgpZeOaIkRq5tq7NaoT7aB80ygcHEtnU/H5cInqrN+vu1hga8duRaPyAPwonvvY33fz4S3Kiqqw3Tbd1IBg==, tarball: file:projects/arm-scvmm.tgz} name: '@rush-temp/arm-scvmm' version: 0.0.0 dependencies: @@ -16843,7 +16877,7 @@ packages: dev: false file:projects/arm-search.tgz: - resolution: {integrity: sha512-12cvCaslqBWdhOR+DPkVEsTM8iICi1eVltFeHp6W8ny4tBnBXEJ6AV8Ie9W5DNhBiq5fTX11hGsNU5dDpGgeEQ==, tarball: file:projects/arm-search.tgz} + resolution: {integrity: sha512-czQLEQQt8qZE/xx3DTrWf1w8e8QnKHKa6Xl3K32EO5oq3OwbAdY1EBtU1lmm7ooy/i+ZWJOOJItVxGABJzbrZw==, tarball: file:projects/arm-search.tgz} name: '@rush-temp/arm-search' version: 0.0.0 dependencies: @@ -16873,7 +16907,7 @@ packages: dev: false file:projects/arm-security.tgz: - resolution: {integrity: sha512-0/aUmpvksKiDdjbVQKQKqtkz98ZUDMMf4YxRzXkrnHlRsrgwGMCU/KYgHyB/orng6FbTAGU0CuYqvHETQ+vhwg==, tarball: file:projects/arm-security.tgz} + resolution: {integrity: sha512-7RWm3vqiPIarnvjqOeZGXvKDZOavqlE1byWbLCvrQVYhJiqtUX7TzEexE32zExe3eg+rNOjy99pTji4tPfkU/A==, tarball: file:projects/arm-security.tgz} name: '@rush-temp/arm-security' version: 0.0.0 dependencies: @@ -16903,7 +16937,7 @@ packages: dev: false file:projects/arm-securitydevops.tgz: - resolution: {integrity: sha512-7VP+xjC7SfISIr4TiLwoC9Ga3MGM/3eiT9IZKl7eH04aWPy7Skf2n5dWo9CZUAfdHXFiH2lUm+bAwu/Mk8fzLg==, tarball: file:projects/arm-securitydevops.tgz} + resolution: {integrity: sha512-YsLr0X/Qb4cxt70xx6MQnlrT4vasnZJxZ+7Dqh75sC623epcSnRO6+R2DeXVbcbSWLSMbpojRd+HpjaGDL8JBg==, tarball: file:projects/arm-securitydevops.tgz} name: '@rush-temp/arm-securitydevops' version: 0.0.0 dependencies: @@ -16933,7 +16967,7 @@ packages: dev: false file:projects/arm-securityinsight.tgz: - resolution: {integrity: sha512-XoDjznfDCpbW/oDhFqnOHgYDqGRiP1pzY9qRGOLa/Gv51OAOi35cQs6toeTZA2whfgWNsKVp8wxtdvuKr2ObMg==, tarball: file:projects/arm-securityinsight.tgz} + resolution: {integrity: sha512-7jlXfgEkaHLsFWl+AcYWzIW3z13MIdKV4PF+wjYAlmJ6OmnvQNpexslkGvkguWpxKXQJwChU7pWa+3tRMo6bzQ==, tarball: file:projects/arm-securityinsight.tgz} name: '@rush-temp/arm-securityinsight' version: 0.0.0 dependencies: @@ -16963,7 +16997,7 @@ packages: dev: false file:projects/arm-selfhelp.tgz: - resolution: {integrity: sha512-AV9E4kptyBbma5l1sQ/Dm8IfaZrP9hQCZ66bU6RgOhGnF82HlylansZ1Im/Lo72udfTnRVT9NrUZSba9afXzXQ==, tarball: file:projects/arm-selfhelp.tgz} + resolution: {integrity: sha512-hM45/ZgPc1eNuyYttBGawKFbCJYQ58ILyzluuI+I3mYZFW0pN60g75eFb0eKW15BB3GO+7uuPRK1XKzI7bkJ0w==, tarball: file:projects/arm-selfhelp.tgz} name: '@rush-temp/arm-selfhelp' version: 0.0.0 dependencies: @@ -16993,7 +17027,7 @@ packages: dev: false file:projects/arm-serialconsole.tgz: - resolution: {integrity: sha512-sewK0qoL//JqCcQuZKjWSnZ5hhK4VqIvHsPmkPs10mnxjaiXlJvXerUkzlHlDrS95HXMoHZcuwb//a1L8zswrg==, tarball: file:projects/arm-serialconsole.tgz} + resolution: {integrity: sha512-WeILsyd45/ywzHxyYqmXtflAR79LoIt5ncL5vgNENe1htk5YP4Zg2Ac3gP000L2pTx+d9ODAjVTkpMl0xqhWAQ==, tarball: file:projects/arm-serialconsole.tgz} name: '@rush-temp/arm-serialconsole' version: 0.0.0 dependencies: @@ -17020,7 +17054,7 @@ packages: dev: false file:projects/arm-servicebus.tgz: - resolution: {integrity: sha512-YRvmbxtMT5gUtrPLztYF4joVIKy1qnvpL2YzKMk641pUJ5Olok7AFpVyOyolA29CVOejYGxnmaqOu0x3ATf1+A==, tarball: file:projects/arm-servicebus.tgz} + resolution: {integrity: sha512-axh4NECqyvQewLwr5RlYMoJ4apoAM7Gg95CiRUSyuidG/1Uft7bttFKYWELS9YS2fcYgjqU4MHn/riVGRrv3fg==, tarball: file:projects/arm-servicebus.tgz} name: '@rush-temp/arm-servicebus' version: 0.0.0 dependencies: @@ -17050,7 +17084,7 @@ packages: dev: false file:projects/arm-servicefabric-1.tgz: - resolution: {integrity: sha512-omMAIhHV6H+a+9WkEocV2VTtMOLvKoPHTE6JtX6IBI4lQTYGWi/Idxehda+36tQzOPFy2fxbvAX0foLDVq7O5A==, tarball: file:projects/arm-servicefabric-1.tgz} + resolution: {integrity: sha512-BiZ6L6Benu3gc4nh+MZEQWNzKmGTBZ6KQkW/t0dsAbuYJjwo3yg+ZKv9gX5mzHdy+njyW9TBLfzrFOcbVfPxow==, tarball: file:projects/arm-servicefabric-1.tgz} name: '@rush-temp/arm-servicefabric-1' version: 0.0.0 dependencies: @@ -17080,7 +17114,7 @@ packages: dev: false file:projects/arm-servicefabric.tgz: - resolution: {integrity: sha512-lA0pdrClcfkUG2PO0mTlNzs7nK/5hoIldDE4iV9eIQoBa93vKvEXYJ0JhNjQ2xHAA/KGkE6qvgDuxjWPSKrF5Q==, tarball: file:projects/arm-servicefabric.tgz} + resolution: {integrity: sha512-JYWIjT+TstRhrbmqMWXqO4XUIBHafUsT1JqcrMywG9UN+LLybUZyUqW0IufPXMFa8r6r5+g++SCnFCl0gM8xzg==, tarball: file:projects/arm-servicefabric.tgz} name: '@rush-temp/arm-servicefabric' version: 0.0.0 dependencies: @@ -17126,7 +17160,7 @@ packages: dev: false file:projects/arm-servicefabricmesh.tgz: - resolution: {integrity: sha512-eqIDVkYoLNPtNhN8ad0PzzmZG3qLr7KJ47ddm3cKxMgWgfUhhArzKOy9gABscSaviRNZ1uBDhSVfGPylGSCDsg==, tarball: file:projects/arm-servicefabricmesh.tgz} + resolution: {integrity: sha512-T6sEWzGIyKSJMuUjXz08MCIrsv2YgbAL18thKKVkl6dLll/2ZsHqkw6ZyFT+OziMARhBWDqfWonN0aNDuI/UXA==, tarball: file:projects/arm-servicefabricmesh.tgz} name: '@rush-temp/arm-servicefabricmesh' version: 0.0.0 dependencies: @@ -17154,7 +17188,7 @@ packages: dev: false file:projects/arm-servicelinker.tgz: - resolution: {integrity: sha512-wdIGh6BHUsqYhBxuHSdGfzMwQZzSOMBBf0aMxu2ZZBsp0LhGmOQ0iC8ZYTh1irqJv25B41nZhteIHAb3MUsn+Q==, tarball: file:projects/arm-servicelinker.tgz} + resolution: {integrity: sha512-uKmGK/WjJHp5WV8jxU3FOYRYDV9Zg6KA9AvSFZJ+YXrjjVndOA8uNWzXwNOWLbDDWfBIt27JFNlhAE6jzhztTg==, tarball: file:projects/arm-servicelinker.tgz} name: '@rush-temp/arm-servicelinker' version: 0.0.0 dependencies: @@ -17184,7 +17218,7 @@ packages: dev: false file:projects/arm-servicemap.tgz: - resolution: {integrity: sha512-38POqclFYBeiOFevCdzDT6orHIbqstQiVBF/lINISJahsf5sniINdePeKQDgmBkeNnQe+Ha3rIFHrnLY+6sR/w==, tarball: file:projects/arm-servicemap.tgz} + resolution: {integrity: sha512-6RUYpKocHi9UaIzjrPU4I/60lvBlitc414KZu+YU4tUZoBDAPXQZXO9LuGyTyuheh6pHtsbZkFrYlacF5qYtGg==, tarball: file:projects/arm-servicemap.tgz} name: '@rush-temp/arm-servicemap' version: 0.0.0 dependencies: @@ -17212,7 +17246,7 @@ packages: dev: false file:projects/arm-servicenetworking.tgz: - resolution: {integrity: sha512-eCuZxtt5PU36HugZOkw1qOqD/FZABQhUr3dzgwkqaSnBpr4kklb+4jDh2oqfUw9qVGZMPuBRcJVCiHoOy6QKGw==, tarball: file:projects/arm-servicenetworking.tgz} + resolution: {integrity: sha512-rYEBxbAe2PP3o2BojmxRBIbP3FSsiTHUpbmUR2heoggfyGbnVPX6iS3nY+Hz7PrpSARDTY70JzLvoUT3XTTNWg==, tarball: file:projects/arm-servicenetworking.tgz} name: '@rush-temp/arm-servicenetworking' version: 0.0.0 dependencies: @@ -17242,7 +17276,7 @@ packages: dev: false file:projects/arm-signalr.tgz: - resolution: {integrity: sha512-8oM82J705NBisX9XMSfRclq1RzICRu+E7I5E/enG9YsPY5g5X1TEKAqMSJ1MtXZwwlgAx0fMzQTPQ01nPMw7bQ==, tarball: file:projects/arm-signalr.tgz} + resolution: {integrity: sha512-bVJcJyxkCshoHgttHBqYmpw45DtmUvuXULRyFY9/xg+K68+F8J2XPwiJtU5b12Z9iGLFrNbckjol72o1+LdOhw==, tarball: file:projects/arm-signalr.tgz} name: '@rush-temp/arm-signalr' version: 0.0.0 dependencies: @@ -17272,7 +17306,7 @@ packages: dev: false file:projects/arm-sphere.tgz: - resolution: {integrity: sha512-t7QrUdy9H9zZy1043PQ9RnGrSbFiW3Q6Vanw/3jfgaEYsh4A/RT+2HdmsqovWPh/VCV3wTiWTdrHaiuBG7zmdg==, tarball: file:projects/arm-sphere.tgz} + resolution: {integrity: sha512-a8XZBza5Lmh7gD6GF9YpRmjXEyBoRAgY7Cpq0tF0OpzOLlniApCqnJ4fPt02v2miueIo250nhy3QYmYxIViCAg==, tarball: file:projects/arm-sphere.tgz} name: '@rush-temp/arm-sphere' version: 0.0.0 dependencies: @@ -17302,7 +17336,7 @@ packages: dev: false file:projects/arm-springappdiscovery.tgz: - resolution: {integrity: sha512-IzofRQtHrYM2FSJvhvGMBEKFe/08jMG+DnRc246U8V7pAsCsXnsBP2++LcaLg2neFbe+UoScqJpS56QB+GdawQ==, tarball: file:projects/arm-springappdiscovery.tgz} + resolution: {integrity: sha512-bAB+/XUaz9E02/f93yfpFETKUiMHCxhGUwy6UhG/R5f63b7evQSQTEyb1r5gzrRgWOQBorbErJAsl2LNLM/Smg==, tarball: file:projects/arm-springappdiscovery.tgz} name: '@rush-temp/arm-springappdiscovery' version: 0.0.0 dependencies: @@ -17332,7 +17366,7 @@ packages: dev: false file:projects/arm-sql.tgz: - resolution: {integrity: sha512-tADKVKr2KgUjhWg4HMLiBvRzoqT735FYYoL+gSOswmL7NRQYhb6197fPlvKM32AmofYNb+f48hKb7j0WXOTBwg==, tarball: file:projects/arm-sql.tgz} + resolution: {integrity: sha512-yTN3DWeyyBKuf5JfYrs7+KYrw6CvCe5vEFpl19YUC17ZEsNDtlYKNlznthgur3E0O8Zbi8bXcZc94Ni4NeSOkQ==, tarball: file:projects/arm-sql.tgz} name: '@rush-temp/arm-sql' version: 0.0.0 dependencies: @@ -17362,7 +17396,7 @@ packages: dev: false file:projects/arm-sqlvirtualmachine.tgz: - resolution: {integrity: sha512-RnCeKRX2OFpjqRqjH80ijad+e0CeLl6xeGgoReu/FKEeiLslXMBTIh2hYNmBERCkY2mh/NR3sARta512kfOfqA==, tarball: file:projects/arm-sqlvirtualmachine.tgz} + resolution: {integrity: sha512-2xkxpXSZIkYM7g7C6s5+iKNBb5hmg2wS4HrNhD+eBwn3ed2ErvK+NbAQKRn8oa5m6UyL15IJuHXQnNyrpsd2OA==, tarball: file:projects/arm-sqlvirtualmachine.tgz} name: '@rush-temp/arm-sqlvirtualmachine' version: 0.0.0 dependencies: @@ -17392,7 +17426,7 @@ packages: dev: false file:projects/arm-standbypool.tgz: - resolution: {integrity: sha512-+o0rO2dCCLbj+2NRrFmfXwzFBZOy98O/4MxKPnTHTek0EPwR0LKZpAZ/V2NJQA/9VUB7nFUuLhFdoNj+746WUQ==, tarball: file:projects/arm-standbypool.tgz} + resolution: {integrity: sha512-BQaldyjX+Eyxs1JBGfqNVYEoGmUsqOitOnr1g8EWzzYTNNlpbp6nZJqXOEDhCKWP7uFZbz4xhId3W5bMpYMpww==, tarball: file:projects/arm-standbypool.tgz} name: '@rush-temp/arm-standbypool' version: 0.0.0 dependencies: @@ -17423,7 +17457,7 @@ packages: dev: false file:projects/arm-storage-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-0CPFYsogaHFn8uJH7NjnOewYFJSv0MbzNKVh9c5nCQLsyleiio/OJUxsaZfs/tF4iLPV+PbPQxigalljfhp1WA==, tarball: file:projects/arm-storage-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-H+eQpB0n0StajpR9RQJBqJA/8XhAbiOi8jVq438ccdC/VowrXs24LUSaDHbns8e/wXgSgOdkkSClcMi5vCOoLw==, tarball: file:projects/arm-storage-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-storage-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -17453,7 +17487,7 @@ packages: dev: false file:projects/arm-storage.tgz: - resolution: {integrity: sha512-x6hu/nkzC4XCtAPRQz3c2uFh+SuqGmdlFjPGvmYtNbbkSFLt2X01dxNm+i+fhdteF5nrboraQymHWSSVEul1og==, tarball: file:projects/arm-storage.tgz} + resolution: {integrity: sha512-Dbww+oJFHkDel+MjnGLKiWG/X1XsUQrdPzGwdZiVb40EIIs+5dI2Ge/uuiNW7Wm5B1btiOUhG8bbJ3vlTX/xMA==, tarball: file:projects/arm-storage.tgz} name: '@rush-temp/arm-storage' version: 0.0.0 dependencies: @@ -17483,7 +17517,7 @@ packages: dev: false file:projects/arm-storageactions.tgz: - resolution: {integrity: sha512-Yjk94fKFktDMt2xiB8UovYuiJQnRN8EKX2mNh/SP0zgynxOR6ByxUT5IgQWchNaDdr/E0Rzg2Y6boJRf1N+lmw==, tarball: file:projects/arm-storageactions.tgz} + resolution: {integrity: sha512-52BOt5r0mcgSvrSHGx5/vqQJniOui9kc05Ys/RHLxWgMiiMOUxDR898doXz45EgURSHfuG+/Vyr9moTebro1IQ==, tarball: file:projects/arm-storageactions.tgz} name: '@rush-temp/arm-storageactions' version: 0.0.0 dependencies: @@ -17513,7 +17547,7 @@ packages: dev: false file:projects/arm-storagecache.tgz: - resolution: {integrity: sha512-UbC2fW2yNlSq5C56fbpimT3gOret2gaoPhAzPUXlcvKKXH/5OQ1LvoYcRXc3C7Kty+zOmUgtaG9Mxu3/QngX8A==, tarball: file:projects/arm-storagecache.tgz} + resolution: {integrity: sha512-u/gKYCn1AYdxTBipacMf2mCowKKEXLs+h8ndDNfbqold8YTOSstGUdfqB6uqMTSx8XovVeKFUJqmOOy55ufEWw==, tarball: file:projects/arm-storagecache.tgz} name: '@rush-temp/arm-storagecache' version: 0.0.0 dependencies: @@ -17543,7 +17577,7 @@ packages: dev: false file:projects/arm-storageimportexport.tgz: - resolution: {integrity: sha512-5535CDDeSUHJkLK+9PUsgfKd02OKMr8tBI3374GB73QNmKekn91vl5fTvlpA1MkqI97YGmjy/PEJHteF7Uo5Zw==, tarball: file:projects/arm-storageimportexport.tgz} + resolution: {integrity: sha512-fSXFx6l9FC2QNNVUSg7ltlpK0BWiuX/3aKjMsOh7w2ouDlHbg/mp21bUb/XTrSOZSRnd42utDhC/wfRd/qs2vg==, tarball: file:projects/arm-storageimportexport.tgz} name: '@rush-temp/arm-storageimportexport' version: 0.0.0 dependencies: @@ -17571,7 +17605,7 @@ packages: dev: false file:projects/arm-storagemover.tgz: - resolution: {integrity: sha512-/wGv4mhzV8Bb0dAJFWZUUJZ7jfmSQUXo5C9okmbFwj5CuZKY+bVKThVS9zulAWMmxL80Ci6iFBktADJuOB8RJg==, tarball: file:projects/arm-storagemover.tgz} + resolution: {integrity: sha512-rdanPDfg1WUJnqw6NTXyJGqTS47URKy+Xb4zFldadGPqcXCvH5Bv+jsdH/lWl8N8X+NaF9EhLQpMKWERkMsZdw==, tarball: file:projects/arm-storagemover.tgz} name: '@rush-temp/arm-storagemover' version: 0.0.0 dependencies: @@ -17601,7 +17635,7 @@ packages: dev: false file:projects/arm-storagesync.tgz: - resolution: {integrity: sha512-mG3t8ObtCotR0yNn9w7VQ1iieg/jmNWFeNDIGxE+KJ/LFFU9hU2AiClXohhXsN/yNqQn9oqUSq0uAktMtQAxMA==, tarball: file:projects/arm-storagesync.tgz} + resolution: {integrity: sha512-rUKAq62G/GxJvsqTOSQRzx+QP9SzeFRXWWS0f8nH5ISXThQqLh6WONBpMIioBUs8yUc6XrtUajAM9nALuN9hdg==, tarball: file:projects/arm-storagesync.tgz} name: '@rush-temp/arm-storagesync' version: 0.0.0 dependencies: @@ -17630,7 +17664,7 @@ packages: dev: false file:projects/arm-storsimple1200series.tgz: - resolution: {integrity: sha512-gGuAca1T3DQgHTxR9Z0uotNFcWRnZi3+A7/SpXeXuA5Jq+9A2An3sn3VPUEH1a+lMK3lJ2g5fbcnCDqQ6tmQSw==, tarball: file:projects/arm-storsimple1200series.tgz} + resolution: {integrity: sha512-Cm/AruveyxQ/4wyBLwAyg2Z7cHqprIEur2aLoWmd+GlBN2w1M+nFIc5B8JpAOSYBEByBVT8K0Tby157epvVn9A==, tarball: file:projects/arm-storsimple1200series.tgz} name: '@rush-temp/arm-storsimple1200series' version: 0.0.0 dependencies: @@ -17659,7 +17693,7 @@ packages: dev: false file:projects/arm-storsimple8000series.tgz: - resolution: {integrity: sha512-Yqa/VPTg+RoktUpZuciBvS4V5fgpD9kImwxdoCGnK2cmwiCRIinJMH12OYh/RfVyJxDZdy46PiFEkGzZokDTpA==, tarball: file:projects/arm-storsimple8000series.tgz} + resolution: {integrity: sha512-nIyKADpAwewZwspfwiort9CmqG5ghTHmGuv0USkllSxuyBMjOKX9VRUqoqGiuvRLQV85P0YqwoLF65l1MRlsvA==, tarball: file:projects/arm-storsimple8000series.tgz} name: '@rush-temp/arm-storsimple8000series' version: 0.0.0 dependencies: @@ -17688,7 +17722,7 @@ packages: dev: false file:projects/arm-streamanalytics.tgz: - resolution: {integrity: sha512-YGfULehNVf8yQ9gxMrHJqpr0zs9C+RiPtZUC/+kJ+xGEFSvaYVrfyW9klHwXyZYuqMNOWlJSlXnzu3GFyEqbaQ==, tarball: file:projects/arm-streamanalytics.tgz} + resolution: {integrity: sha512-jnr0X00qm8PV19g8piPM6nnsdpONkFVJ3QeMFx0FcVETMreGRmr2k1MBdDvCYwy9LgjPGihHwtdug1C8K1+XcA==, tarball: file:projects/arm-streamanalytics.tgz} name: '@rush-temp/arm-streamanalytics' version: 0.0.0 dependencies: @@ -17718,7 +17752,7 @@ packages: dev: false file:projects/arm-subscriptions-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-6z8KqEUvJzd5HqNfwvED8v4DnxN4evWBbibcyjbPTiIAYG9S3eFf2LfbbOcZWUw9ur62nmeHB3HAEvlJeDpfDw==, tarball: file:projects/arm-subscriptions-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-K95ot/NVMi+aytzoX/GtflqiEf/jnYXPim1XDB1PzReVPm0eyNANwYEtb/VNUxRwpmKxGKSflctRydWwKv5M4Q==, tarball: file:projects/arm-subscriptions-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-subscriptions-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -17746,7 +17780,7 @@ packages: dev: false file:projects/arm-subscriptions.tgz: - resolution: {integrity: sha512-Zhtswu6Azp+klzAOV7wLEPZXYmsldK+/WAfAH4qPetVgXzT8zLOLpM9Ie4sYTnj075pNrxNVzvLb3YciMiA1NA==, tarball: file:projects/arm-subscriptions.tgz} + resolution: {integrity: sha512-5d5gQ2CnowRVJE4+e6mG3EpJI9MirPlYpRx+aab9vzOlk6wUdAkf7CveYC1DYdePtWkjOD2O+maLd2n4j6aT2Q==, tarball: file:projects/arm-subscriptions.tgz} name: '@rush-temp/arm-subscriptions' version: 0.0.0 dependencies: @@ -17775,7 +17809,7 @@ packages: dev: false file:projects/arm-support.tgz: - resolution: {integrity: sha512-j3zImbzUXJ8ODRB6twJZSZglUAKUIdpYIPmxeHOR+1U/YaKuE1ad4UnMNaxNt31aqFjsoHnZKvvfqk7+b7BG0Q==, tarball: file:projects/arm-support.tgz} + resolution: {integrity: sha512-EZx9LOr4FvnzC3bqcuWjHo1Opm4bDSGesycx1/D38K98O4Fq/vGs6M0pILw0rp6lhYHh5mNo9jtZw3Ssjm2NAg==, tarball: file:projects/arm-support.tgz} name: '@rush-temp/arm-support' version: 0.0.0 dependencies: @@ -17805,7 +17839,7 @@ packages: dev: false file:projects/arm-synapse.tgz: - resolution: {integrity: sha512-vV3WDA5trPdYZ4KnOppgnZP8EB1maUYEkVn4z/rERC5cjF7I80riha3OKJ8GKO6ULfcapiIK7X46DFCi8KCQCg==, tarball: file:projects/arm-synapse.tgz} + resolution: {integrity: sha512-8I4iVKSvQZmOWSSFWsqaBgvpDN2rw3Vjfb+I3x7q1e1R5jMdrHOrQez5dwrDgtI1UKCGDpi6AqI9tTC+Ro8gGA==, tarball: file:projects/arm-synapse.tgz} name: '@rush-temp/arm-synapse' version: 0.0.0 dependencies: @@ -17835,7 +17869,7 @@ packages: dev: false file:projects/arm-templatespecs.tgz: - resolution: {integrity: sha512-89LoIr/8OqGj9fB4IXEFBTgyxz5KzuYSoNXrxPHhl5aTdiI4KtMSsYclNE67Klw8Gc2CiTtcqoM4lm3Mzj1gGQ==, tarball: file:projects/arm-templatespecs.tgz} + resolution: {integrity: sha512-/4f1WCCm69AA+DSzChKVuxHT24dpHwqujEE1sJXUa3LPcXwCu55AFmNrTPj3aTYW8ca/oiYq+NnrwUv1+/6DHQ==, tarball: file:projects/arm-templatespecs.tgz} name: '@rush-temp/arm-templatespecs' version: 0.0.0 dependencies: @@ -17862,7 +17896,7 @@ packages: dev: false file:projects/arm-timeseriesinsights.tgz: - resolution: {integrity: sha512-qnkkvmYPLux8evbgqjy8E48yAzW6uo335EKGeWaEZkZFWttz+NDrXx1AxDS1G64LuOb88M9i1b4e2g21mw6fXA==, tarball: file:projects/arm-timeseriesinsights.tgz} + resolution: {integrity: sha512-TePtcNhUU/by9QGgfBE7gV/HZnoOfB8zz9FqRE4k9jBw1dGOB1ZA7wpvWAKfSlMScs4SXDkxzIkuCmS4YP02RQ==, tarball: file:projects/arm-timeseriesinsights.tgz} name: '@rush-temp/arm-timeseriesinsights' version: 0.0.0 dependencies: @@ -17892,7 +17926,7 @@ packages: dev: false file:projects/arm-trafficmanager.tgz: - resolution: {integrity: sha512-pkmH7BWa5ICZaXmvUpsrnnLA3cWxXfTi+v0LcQLvj+FDAgLA1DMLy7eKEsofUPzgK3V7m/Bhqa97GH0CRswDRw==, tarball: file:projects/arm-trafficmanager.tgz} + resolution: {integrity: sha512-f6J0LlmjkuJqcI8gOx3XE7gYdUIonXGsd6AyBIEQOybJwRwiKy9JivZqIGdddQT2d/ztoQJSm9iosmgsYIRqag==, tarball: file:projects/arm-trafficmanager.tgz} name: '@rush-temp/arm-trafficmanager' version: 0.0.0 dependencies: @@ -17920,7 +17954,7 @@ packages: dev: false file:projects/arm-visualstudio.tgz: - resolution: {integrity: sha512-TDlAYlbpZa56iSFTG6JHAB81hQN3woPURzZKAX04qecRLYtG7+dDc43gpOGXr9scxYZyh/DgjUKxTbFlbMxZ1Q==, tarball: file:projects/arm-visualstudio.tgz} + resolution: {integrity: sha512-mRbTbNgi2nXKcvTqwmZzGUFZRhdZO/wvEWitn+qNa5AKo004pW4lFcStP/0wNAWbU9FxOz2/19HJcJAU7JN73g==, tarball: file:projects/arm-visualstudio.tgz} name: '@rush-temp/arm-visualstudio' version: 0.0.0 dependencies: @@ -17949,7 +17983,7 @@ packages: dev: false file:projects/arm-vmwarecloudsimple.tgz: - resolution: {integrity: sha512-q0gKszre4tmW2WC8ICjZv1GfnaQYuWovhpOGynCpTfvthbCNlAvyZy/uD4v7qFZ/DNjvfyIRDwL08FIJSP438A==, tarball: file:projects/arm-vmwarecloudsimple.tgz} + resolution: {integrity: sha512-mLljWv06iYqz0igUp3jqjyVPR7BiCcJxzvy29ImESgckI5/B43LAeOElM4Mcqm2MUL7iJzqtvVxdJOM6hRz9cQ==, tarball: file:projects/arm-vmwarecloudsimple.tgz} name: '@rush-temp/arm-vmwarecloudsimple' version: 0.0.0 dependencies: @@ -17979,7 +18013,7 @@ packages: dev: false file:projects/arm-voiceservices.tgz: - resolution: {integrity: sha512-NEqCLnoH034PyRhZoRcOaK7hYhbDaJLI/pYPHnut6fKIX156C4xZSv0SxZEsnngCsB6QwrtYoZVpxG9y0qIpEA==, tarball: file:projects/arm-voiceservices.tgz} + resolution: {integrity: sha512-9QZ6Qdx8TcgynoOzSFCOJK5X/67bv7XwBlJK3MjfUFIHlb3siF3NUrpw2x6Rk54wS5J029nKFbk0NWHehDQvrw==, tarball: file:projects/arm-voiceservices.tgz} name: '@rush-temp/arm-voiceservices' version: 0.0.0 dependencies: @@ -18009,7 +18043,7 @@ packages: dev: false file:projects/arm-webpubsub.tgz: - resolution: {integrity: sha512-3ggrHyfxhwhbBH8YNlHt7Bc/lvpZWqB1wLAMHrZbn/fUYwDEETwDTeA/x7842cnFzPp1DmbgSQBrznw6boSs0A==, tarball: file:projects/arm-webpubsub.tgz} + resolution: {integrity: sha512-Royoi1sbidwFMB2pWwZ0FSWrn+64GU/OluE27Bnu4KRHL/px7AGUynDMJxVC6JXyAy3jBlFEf2FP9+z4xYw2Sw==, tarball: file:projects/arm-webpubsub.tgz} name: '@rush-temp/arm-webpubsub' version: 0.0.0 dependencies: @@ -18039,7 +18073,7 @@ packages: dev: false file:projects/arm-webservices.tgz: - resolution: {integrity: sha512-fMfdnEnNJAk/ks1WuOF9xRwj65EyDuuJAV8tt0l/ouMmZGTOh9D1oT8kf7VOfE2S+j7EmaAtmS4CAbvHGuKE/Q==, tarball: file:projects/arm-webservices.tgz} + resolution: {integrity: sha512-C2/6j40wC05SRexUHBhbHkp5nzcdXHxVKs+40TH5jkfIe3UEd+hdBwUrXYD15elyhdWnCSBvwTmqo9/5e0XQ4Q==, tarball: file:projects/arm-webservices.tgz} name: '@rush-temp/arm-webservices' version: 0.0.0 dependencies: @@ -18068,7 +18102,7 @@ packages: dev: false file:projects/arm-workloads.tgz: - resolution: {integrity: sha512-4yjeKRL4+UqsnT1uCyP/mtMCE0a3tK/VU6ajQ9/MJl1LQ0ZEVgkB/Ik1qse1g80flhynf76DleZTVnpLnfrEEA==, tarball: file:projects/arm-workloads.tgz} + resolution: {integrity: sha512-aztLYedZiCg3pSlXx+CcWr5Y/qRy2Ht9siOHF7K/ij1WTqIuKMtz++On9A4rwiHxM/wJHeFUZvoLrMu/69HvVQ==, tarball: file:projects/arm-workloads.tgz} name: '@rush-temp/arm-workloads' version: 0.0.0 dependencies: @@ -18098,7 +18132,7 @@ packages: dev: false file:projects/arm-workloadssapvirtualinstance.tgz: - resolution: {integrity: sha512-6rX1UaHWQKXyOjzxwo/N2Sws14UfuU6MLdT18jTonfjVmFajTcpwVSz0xUOpCuf7hxUxGWxWuPRs7Y5vpXAFhg==, tarball: file:projects/arm-workloadssapvirtualinstance.tgz} + resolution: {integrity: sha512-tls24fzfDvRQiFskdWtT1/pGZyjlKXz3hfSCS4UMwCtlOy53jlhxyu1hXdUFDND0j9G2BKZCCJv3PmH7yBjT9w==, tarball: file:projects/arm-workloadssapvirtualinstance.tgz} name: '@rush-temp/arm-workloadssapvirtualinstance' version: 0.0.0 dependencies: @@ -18128,7 +18162,7 @@ packages: dev: false file:projects/arm-workspaces.tgz: - resolution: {integrity: sha512-g/ofzNN/gEh2H4nL3PZ77hHaARGgzCKbitvJ3VGp3r+JA9/e1dXq49CHWEjxaE3f6kmiR5Vuqmo9HqRn/3O3ng==, tarball: file:projects/arm-workspaces.tgz} + resolution: {integrity: sha512-epOWyxlK63o6PEll1bioPaLRwC+JMhCiaqb2KhQszufgP/NR65DiuUvJzscmP34asd7jJFTrP3WDLLSNMtIbjQ==, tarball: file:projects/arm-workspaces.tgz} name: '@rush-temp/arm-workspaces' version: 0.0.0 dependencies: @@ -18155,7 +18189,7 @@ packages: dev: false file:projects/attestation.tgz: - resolution: {integrity: sha512-Rhw6hDb4VTtUNH6gZ8DtOzx5h0Xc6GP8GHU6/Gn5uEqfZhO1gYO9oET6HblY+38a8xiinKx3jJrV9HFfj67kOw==, tarball: file:projects/attestation.tgz} + resolution: {integrity: sha512-BdzWdiyPO0s1506Cho1/SbZne6RqZHWcwKoNDpGmLIj0v+b92KWfBGGiVBH22qhk14yrs2uEPVkx83eNMZhrWg==, tarball: file:projects/attestation.tgz} name: '@rush-temp/attestation' version: 0.0.0 dependencies: @@ -18206,7 +18240,7 @@ packages: dev: false file:projects/communication-alpha-ids.tgz: - resolution: {integrity: sha512-ZnA1LD8oAtWgDUs3UwmgGfhJUulvZgVq9PtuO4oZc6qp+uW3dMqruFXTyfjcoXTJzcC3gM+yjHW5phc98jqBdg==, tarball: file:projects/communication-alpha-ids.tgz} + resolution: {integrity: sha512-GF2Y6y1LoPqC+KnWroIE8asHHFig/mWM+DqVNGBwDnU8ynjelMfr1L3YlD6lFqYfX1Qt82zi1QNwOTYBXFtj+g==, tarball: file:projects/communication-alpha-ids.tgz} name: '@rush-temp/communication-alpha-ids' version: 0.0.0 dependencies: @@ -18250,7 +18284,7 @@ packages: dev: false file:projects/communication-call-automation.tgz: - resolution: {integrity: sha512-N1TW9xs7zjhhmXOxnBlFrFJJCwm6Ee64UfhhZBhODbuH3hv/4uc+yb5t8QnaQZ0TJKsR2ai7D3rDOGvCVaQapw==, tarball: file:projects/communication-call-automation.tgz} + resolution: {integrity: sha512-zbGPNdUKPA/qhxd9WpepAa04xDLeLo0BDjFwJeLHbujy4YtI0rYNw/Q5yVKVCPvfEYTzrC4K1THhbq4fdXi0wA==, tarball: file:projects/communication-call-automation.tgz} name: '@rush-temp/communication-call-automation' version: 0.0.0 dependencies: @@ -18297,7 +18331,7 @@ packages: dev: false file:projects/communication-chat.tgz: - resolution: {integrity: sha512-LsbGjr9EW8VTWF/5INwJsD2jzswejO0PtWkeP9T3VW/gU7HjW6IrwSw0pvEeJJqgSAES/He5SJVkvmUrZRCpww==, tarball: file:projects/communication-chat.tgz} + resolution: {integrity: sha512-h6dvMTxQFeEy8XBMaCkCh6Gxx0qLmbaiijdxSHEYHP7M0e7X7v4ElVQ2ly+JgcGV/dNGYNCy6HW/37dMZvgl3g==, tarball: file:projects/communication-chat.tgz} name: '@rush-temp/communication-chat' version: 0.0.0 dependencies: @@ -18348,7 +18382,7 @@ packages: dev: false file:projects/communication-common.tgz: - resolution: {integrity: sha512-Y8j8dX2CZGGFAcNCg+HrM+n+lU4nRM/1ZeBiZgv1fOrCiVWgzjkOoZwe1CmSq/N7tyWxdayM77hvsG3Zr4bgsQ==, tarball: file:projects/communication-common.tgz} + resolution: {integrity: sha512-sc5Yo633aPaKeB93osm1BvDxZT1OyiLJZuN1ItnFgtAdXvT+zWegqoMhHhxM/1GoLnB6534XcdLFdJxmmJgf6A==, tarball: file:projects/communication-common.tgz} name: '@rush-temp/communication-common' version: 0.0.0 dependencies: @@ -18394,7 +18428,7 @@ packages: dev: false file:projects/communication-email.tgz: - resolution: {integrity: sha512-xRXEkhvXJ87SIsPLCjUr6ud+ZM5mcngwOy4k1vYemoPXeNeGrtT8xa4Xjfj+AcTZqGcSu0KnT7WN0ADTOOWUuA==, tarball: file:projects/communication-email.tgz} + resolution: {integrity: sha512-D13CUlblsMJD8aC/cT3mTzdScvSfvWy25TB2x1QaEryto9C2z7dljtTiDjoz1Ealg0KYWSiOp4Mo3qrVOuIOQw==, tarball: file:projects/communication-email.tgz} name: '@rush-temp/communication-email' version: 0.0.0 dependencies: @@ -18435,7 +18469,7 @@ packages: dev: false file:projects/communication-identity.tgz: - resolution: {integrity: sha512-4uqritVAYrFiioxH1rcq++mNWQawH3Ya+tY9B2qnrQutVUoXDZbOraOzGFb2sLlGhnzMrbtbShIrT28f4urQ2w==, tarball: file:projects/communication-identity.tgz} + resolution: {integrity: sha512-z+MBBl+IbW9YEWr0VGAdLEOaNssDhbjCnMi0F21Y/gaNpT9F3+BUDqmrQWeEZKcKCqDuJ+yHAKJM2uVDA0jh5w==, tarball: file:projects/communication-identity.tgz} name: '@rush-temp/communication-identity' version: 0.0.0 dependencies: @@ -18483,7 +18517,7 @@ packages: dev: false file:projects/communication-job-router-1.tgz: - resolution: {integrity: sha512-Q7ue32A+VikgZLbtUgyCWy6tj5LXwZDPJObBTmqCoWjgZvR7VoPeQsq+v/gmRpfgDEMhi8HQgHhuwDSacc7scw==, tarball: file:projects/communication-job-router-1.tgz} + resolution: {integrity: sha512-4Zrxzq4OXaj8cyD4+81bBTbEkzz3GZ/5Z7z9gCmt+pfqg3Srhp8K2DW3q5dRBA+qVp+41BHgemcYbgd6i3pSdA==, tarball: file:projects/communication-job-router-1.tgz} name: '@rush-temp/communication-job-router-1' version: 0.0.0 dependencies: @@ -18531,7 +18565,7 @@ packages: dev: false file:projects/communication-job-router.tgz: - resolution: {integrity: sha512-klta9bUdKjEnFpgRl+pyiBywhL61h9GHA7JltubD+8jeYvHJGdh8tR7nP8ctKTnHOSlEExiXOiWeBS63ASDuSQ==, tarball: file:projects/communication-job-router.tgz} + resolution: {integrity: sha512-sokqMYxVny5WF+K0xQNX2QXfXpm/HIAYnJhCJvGRg7Dtmw188Opz5FaEbNQJqTE9QR63BLvwPxwl2QhcdjXxhQ==, tarball: file:projects/communication-job-router.tgz} name: '@rush-temp/communication-job-router' version: 0.0.0 dependencies: @@ -18576,7 +18610,7 @@ packages: dev: false file:projects/communication-messages.tgz: - resolution: {integrity: sha512-bkn+U65q9nFSnYE8eLlstXs2qP2MaBaj4gWnQugCP3v+yqFgruH49Qn11wSQbXp4wPQfHZQK27w72xsYimr+ig==, tarball: file:projects/communication-messages.tgz} + resolution: {integrity: sha512-5FcJe41Mudz8/IS2m7PJybNtgtQSs8o3s+MxwqZcqJFtzBgNVSOgf+jHz+sD4x2hmoFoRrwmpBB3+wXqTEjaQw==, tarball: file:projects/communication-messages.tgz} name: '@rush-temp/communication-messages' version: 0.0.0 dependencies: @@ -18621,7 +18655,7 @@ packages: dev: false file:projects/communication-phone-numbers.tgz: - resolution: {integrity: sha512-JyBIVbh2ijFasLIuIo0IMPLyNd+Dr2v4Bl5+9rbh0Ky03HSzpmaU+l6DrYLNxMQe6Q/tE5ulOqy5kLgkITdpVw==, tarball: file:projects/communication-phone-numbers.tgz} + resolution: {integrity: sha512-Blk4AkEcr08EuTm/70Q9gHSSIaUP2USjZ67OseUtfWbCLPl+Nv/lQt8Nx8ko2FLzvLy/Ac7ZhljIasYQWyEEgA==, tarball: file:projects/communication-phone-numbers.tgz} name: '@rush-temp/communication-phone-numbers' version: 0.0.0 dependencies: @@ -18667,7 +18701,7 @@ packages: dev: false file:projects/communication-recipient-verification.tgz: - resolution: {integrity: sha512-iyzED4F1Ik+GblZhhrQVVCwrH8YuQPZ0p9CPZ/CSZHhhLoBeFxb8uvrKzFTTJTBhTIZZW6WynbllbsGU7WmaEQ==, tarball: file:projects/communication-recipient-verification.tgz} + resolution: {integrity: sha512-8mpiZ0/bBqFOYDyyCeAYWtIAIxxfvO8PMTKWGp1UxaN4Uug6d7S5UkemGEgHPXN4vsqe0T6u0Mt/MCUZFCO54A==, tarball: file:projects/communication-recipient-verification.tgz} name: '@rush-temp/communication-recipient-verification' version: 0.0.0 dependencies: @@ -18714,7 +18748,7 @@ packages: dev: false file:projects/communication-rooms.tgz: - resolution: {integrity: sha512-Hnl1LryTZTWTMT/hIKgFiJWa0vEym8WxNWMAr/DyMfUyjv2aEXT/LyqXQRsk7vuoAlfIE4cTvw4/EPbW/kM+uQ==, tarball: file:projects/communication-rooms.tgz} + resolution: {integrity: sha512-Hu1/wYt6JgeyEXDmykDMHA56FQxQcru2ehmExw596bBCb/erO6/C2SB4kCeDQ35aqt6cLcYBk8546gV8AF8KYQ==, tarball: file:projects/communication-rooms.tgz} name: '@rush-temp/communication-rooms' version: 0.0.0 dependencies: @@ -18749,7 +18783,7 @@ packages: dev: false file:projects/communication-short-codes.tgz: - resolution: {integrity: sha512-nn0V5SjYh82u7vuTx2WnEM069Hj+/v2i3njb8HWq/FQqEf7p+fSYttd2KzZ0QrsSrd76Z97zVhS/B8kRC9K/eA==, tarball: file:projects/communication-short-codes.tgz} + resolution: {integrity: sha512-N7gyHOC9iCgWZU6oVmTWqZ/8Rutgi6PBaAC3LK1PTBuTzxOhf/JzbrDQIzjPz30HiUE8UcxuwTvrQsPo0njPnw==, tarball: file:projects/communication-short-codes.tgz} name: '@rush-temp/communication-short-codes' version: 0.0.0 dependencies: @@ -18796,7 +18830,7 @@ packages: dev: false file:projects/communication-sms.tgz: - resolution: {integrity: sha512-hZyEGlHw4xSJazQOWmInKIfJ8fI5o0pPbZoVELotvsLviaAAmlMOleqL9QcSv1FgJyQGiWzuO6kNSHkoLCaJEA==, tarball: file:projects/communication-sms.tgz} + resolution: {integrity: sha512-MSRrfLDHFBDg93Suonv+kjnRRgTckoqXbSt+BjvxbiVYrobfgZeSbdVC7NYgNUhgYUx21AIc3xtTAg1HPgPGaw==, tarball: file:projects/communication-sms.tgz} name: '@rush-temp/communication-sms' version: 0.0.0 dependencies: @@ -18842,7 +18876,7 @@ packages: dev: false file:projects/communication-tiering.tgz: - resolution: {integrity: sha512-2AL9IUANZ+489U+yQsSmb29MF3KABWOmCyic5fpxbceYT69214dg05xnN1MIJ7zeu6HJEHgKLJf0CIIcRPv99w==, tarball: file:projects/communication-tiering.tgz} + resolution: {integrity: sha512-dU2612VMzblJyslu5Dv9cyeulP0W81HJXM1H2Nmo6lQYlbIxajCQnFUBX9BiW/f0WGtRR+R1vODJrgLoIbdXsw==, tarball: file:projects/communication-tiering.tgz} name: '@rush-temp/communication-tiering' version: 0.0.0 dependencies: @@ -18889,7 +18923,7 @@ packages: dev: false file:projects/communication-toll-free-verification.tgz: - resolution: {integrity: sha512-UhvIgPBuDKu+1RxioiHSLtyUQ7c7p+NixOJKPrnynlEm018oPZWrCnOWtXGoTVGvL1Kw+fRldF6OLAYHaeQSJg==, tarball: file:projects/communication-toll-free-verification.tgz} + resolution: {integrity: sha512-Ambimp5suKuebfSdRyVJjisXoHr58EL2Kl3oZjb+YbnoK4G3tt6QRk0FHyFC3/43l09R2Lo8Q840s2KwL6CWWA==, tarball: file:projects/communication-toll-free-verification.tgz} name: '@rush-temp/communication-toll-free-verification' version: 0.0.0 dependencies: @@ -18933,7 +18967,7 @@ packages: dev: false file:projects/confidential-ledger.tgz: - resolution: {integrity: sha512-M0m48BzBGnd0MOmj43UP91bmuHVxg0hPJAwQtFKiR/KWl2gwi1iznqCgqawWwarlRjcYhc9oILcnMEm6/3RWng==, tarball: file:projects/confidential-ledger.tgz} + resolution: {integrity: sha512-Ut50MU+bo4Sg9A2zSxUweR+O54hwTaZrh6JlkPY9T4+A+gb8lnJV3UKCw6YR4AK0RxeN1tgLPbxJUKiFW4xDkA==, tarball: file:projects/confidential-ledger.tgz} name: '@rush-temp/confidential-ledger' version: 0.0.0 dependencies: @@ -18963,7 +18997,7 @@ packages: dev: false file:projects/container-registry.tgz: - resolution: {integrity: sha512-Qy8TPCg6SNZLFu00dOFCCPe6DrUKM5RSAdNFkkCgdN4M6hzW9+MOVjQLb3KJBF+4uij3KdcxUcS50YQolhWuug==, tarball: file:projects/container-registry.tgz} + resolution: {integrity: sha512-TVzF8wfZ9XkRLVQLfhS4QLnR5qqwhIEUGWyetdwcAOL1Ew/C0QfARPJhtBRdr+8WsgY1gD+Vik5kwrh9WXlbMA==, tarball: file:projects/container-registry.tgz} name: '@rush-temp/container-registry' version: 0.0.0 dependencies: @@ -19008,7 +19042,7 @@ packages: dev: false file:projects/core-amqp.tgz: - resolution: {integrity: sha512-i1LGRyYVHbNoLWAxXnEWE5ot826Ng4ooSHEbvwsmGOVET3FZ7eLFnJsEeeqrg/wY+UaA/0IssusZsvBZs8uHcw==, tarball: file:projects/core-amqp.tgz} + resolution: {integrity: sha512-F4KGJ7VaNRgKfBGo3P89XE5ticIgoji8EpRMGDvxka+5OvNZdZlputSUWrUBp9/BTn0FhJkCRT4GKTnHVGL5IQ==, tarball: file:projects/core-amqp.tgz} name: '@rush-temp/core-amqp' version: 0.0.0 dependencies: @@ -19054,7 +19088,7 @@ packages: dev: false file:projects/core-auth.tgz: - resolution: {integrity: sha512-bCOyafzGH2z9gBKkzcjSR75mz1NHyYMERMSALiTOJDpeC8FuoGsCDrSOmR9/v+m2I55d6rygWYZk9VnB1q7jIw==, tarball: file:projects/core-auth.tgz} + resolution: {integrity: sha512-2jHUts5dcKEnt+X6MBU+aZe9MYqqoL5RM3rthz7wNMaW8caKbsnRJBa6b0ssWBn9GONdpjlc3TW3UevQSO75Fw==, tarball: file:projects/core-auth.tgz} name: '@rush-temp/core-auth' version: 0.0.0 dependencies: @@ -19086,7 +19120,7 @@ packages: dev: false file:projects/core-client-1.tgz: - resolution: {integrity: sha512-vFG3Xm6fMnllPJx8cckEsmZlTfc33U5U44I/EqT762Ueazm/sjd9XkOTNL3pFyz521bkjd195kDerHz6i1caqg==, tarball: file:projects/core-client-1.tgz} + resolution: {integrity: sha512-/RbXu9ILL43rbtkkPxC7xzA/gaoRE2FHHSHf/bwI3VT9zANOZAQsuYl5d0n+lwYW4Vad8fHxP7d1d7xe13a4eQ==, tarball: file:projects/core-client-1.tgz} name: '@rush-temp/core-client-1' version: 0.0.0 dependencies: @@ -19118,7 +19152,7 @@ packages: dev: false file:projects/core-client.tgz: - resolution: {integrity: sha512-9Y4Hv03ZUSxtVhWnB/7WjSi1hkaOM+KrxsR2j5QNYDFQgw+48tdNqEG85DA2le+mGNkLYD2Dm01gCcZ8tqt/dg==, tarball: file:projects/core-client.tgz} + resolution: {integrity: sha512-yHmavRIV6m8bfVDcpSOg7Q4ClPBzVriudR4lWN8C7c49gdQlyAnLNZoVCSdCTIO50ReoXsUPJ30++ktn2QXPew==, tarball: file:projects/core-client.tgz} name: '@rush-temp/core-client' version: 0.0.0 dependencies: @@ -19150,7 +19184,7 @@ packages: dev: false file:projects/core-http-compat.tgz: - resolution: {integrity: sha512-A7+R5Qx1Mq5u/5Ik5NiAthd1iaJRACoMZRQZra3kLXKbNhnuKBiORudmXWacniG8I3R5oBcATYdTrKdBZePOYA==, tarball: file:projects/core-http-compat.tgz} + resolution: {integrity: sha512-+ylx8gtst4Br/PciJYHYedyWYuZipQTeBTQVSKJIlthFF15rvLC+qWb9efu8r8sRK8m8q4VutW0vLkwZsq1QDw==, tarball: file:projects/core-http-compat.tgz} name: '@rush-temp/core-http-compat' version: 0.0.0 dependencies: @@ -19181,7 +19215,7 @@ packages: dev: false file:projects/core-lro.tgz: - resolution: {integrity: sha512-xNfjfxr11dP/YNkxldpQJXR4ULuN4LX2v9Bg/+/Xqd4A0Feh+c4o59Liofcbq8JRKJx9oM8c1OkJh/qbSb0Dcg==, tarball: file:projects/core-lro.tgz} + resolution: {integrity: sha512-y/TVvGrjbUii7Z0EVLiMJgYERMfr1mMl4iKBCps0DuaxsoV22moL12T5ZIsDwqEOAL/kKJDmBY6pqyNgU46Z6A==, tarball: file:projects/core-lro.tgz} name: '@rush-temp/core-lro' version: 0.0.0 dependencies: @@ -19213,7 +19247,7 @@ packages: dev: false file:projects/core-paging.tgz: - resolution: {integrity: sha512-JDsLQhIMx3gZeamuiAl2GQPTST/XnBwbyGK1qssPbnNiHQLpgW9pvdPixPuDp9hbLRROu1/nAPeN3hLyVDJ3SA==, tarball: file:projects/core-paging.tgz} + resolution: {integrity: sha512-olnU6yyiLN4KfwHZo51n60/ofrHacm8SHiwHtzdT8oxmiKT0b65KIAjwDo0R2/bO4yklcljuigppn09fExJRtg==, tarball: file:projects/core-paging.tgz} name: '@rush-temp/core-paging' version: 0.0.0 dependencies: @@ -19245,7 +19279,7 @@ packages: dev: false file:projects/core-rest-pipeline.tgz: - resolution: {integrity: sha512-4Ldthvl/QZZ2NOY3YcN85PYPZzVRUV8KE9rJgtbsUM5Lx3nv+TXJ8ms/r/FdYBxEalqwgfqR9FeMcLrKldfByA==, tarball: file:projects/core-rest-pipeline.tgz} + resolution: {integrity: sha512-JR+kVww42bMncvfSWGE2wAYwPbrYrTDwTN1E8aEGR+tOXPc/cnnlFu4A6muRyEkTW5MSYpMtmEG6No6nMmcJyQ==, tarball: file:projects/core-rest-pipeline.tgz} name: '@rush-temp/core-rest-pipeline' version: 0.0.0 dependencies: @@ -19279,7 +19313,7 @@ packages: dev: false file:projects/core-sse.tgz: - resolution: {integrity: sha512-q/WK/OEeGAqY9Z1InykYCwTDXlvYwMpuXtcaJf3CRFduO5uTNIAzE6Oow/g+MZj4PScJsb8um0OoA6yEbbcZtw==, tarball: file:projects/core-sse.tgz} + resolution: {integrity: sha512-DrUF1P0l7NtmOD7JTTCJDefaJxaaRTVm8uk0tkvrtAlGhq9zt8b4v+N5cGdOczuf/pnIK1hYQFayR5JI45Q4/w==, tarball: file:projects/core-sse.tgz} name: '@rush-temp/core-sse' version: 0.0.0 dependencies: @@ -19312,7 +19346,7 @@ packages: dev: false file:projects/core-tracing.tgz: - resolution: {integrity: sha512-ZnVM5XObxvdJpujx8hFYgwyujkVN4I/lmFEIYHBHPMIqz9op1ExD3fbWZ24UdS0sjwRVbfA2Iw5oCugAe3YG5g==, tarball: file:projects/core-tracing.tgz} + resolution: {integrity: sha512-U6ADeP6ytcDUCRx8HfzEqgNbj5GNKnrFSRUc2T98avvLzp58Li8KwVbeSkmNBQeSx5sp6+CkAkJOAWpG6soivQ==, tarball: file:projects/core-tracing.tgz} name: '@rush-temp/core-tracing' version: 0.0.0 dependencies: @@ -19344,7 +19378,7 @@ packages: dev: false file:projects/core-util.tgz: - resolution: {integrity: sha512-BEIq8Mts7uMOT797uhwA/DTD2NA/nYRMNaBJ8REjpZi0TXSxiXwVc2snguaPiAWAiLZl0RLtlGxtVlnAEGLbEw==, tarball: file:projects/core-util.tgz} + resolution: {integrity: sha512-eFRLe6IZejZwNUDxBC9JbG5JsrROVa8lLQT9wJepgRc/T6VHsigrHvQMmwHYA9ybp9n2r+uourgLjbryEe2qSQ==, tarball: file:projects/core-util.tgz} name: '@rush-temp/core-util' version: 0.0.0 dependencies: @@ -19376,7 +19410,7 @@ packages: dev: false file:projects/core-xml.tgz: - resolution: {integrity: sha512-7S8nEgU5KmSWmitmBY9gh0xLZHoVS/ixSWHNptOvY93kUj4EDoncE7cDQSwvsTZw4W9B1ydQbw6kyThRL97K1w==, tarball: file:projects/core-xml.tgz} + resolution: {integrity: sha512-G55wb8/1rk0vblDuHVaXdJGDka97QRcINhcimpcpB0vEACFY8BA1kipqe6fOzHTI+YPHHyCEz24/0rf650+tdw==, tarball: file:projects/core-xml.tgz} name: '@rush-temp/core-xml' version: 0.0.0 dependencies: @@ -19410,7 +19444,7 @@ packages: dev: false file:projects/cosmos.tgz: - resolution: {integrity: sha512-E6hCQMEd3k/bMSLX4bqUFnLwErLlVNhdap6vnRuOWS30rMbANrRITtVCrkMkgwP2Egi1EZzSpvAAKFZzjrLXdA==, tarball: file:projects/cosmos.tgz} + resolution: {integrity: sha512-ij8JL/4zGS7aObN80o7i8ZLAt8GfYj89fvecPVAK9SJlhX5exj101MPil36r7fqaegYrDisHPOmfCL+Ugea4Bg==, tarball: file:projects/cosmos.tgz} name: '@rush-temp/cosmos' version: 0.0.0 dependencies: @@ -19451,7 +19485,7 @@ packages: dev: false file:projects/data-tables.tgz: - resolution: {integrity: sha512-u5oqhA0j9Jw6vMUVntv72ZZkCudLYAaBulp6PIT9RSv14NumLHGLyREQnGDAXBXqmbe9+Vz4czFSwVtatqK4ng==, tarball: file:projects/data-tables.tgz} + resolution: {integrity: sha512-gy8athc1GjMM8SXSFbd/T97YL32IqLca+oEKELuftNQgXbdBcPqhXVZhLB1lsuKOdCvdw48N0MZWkitpAVC4Ag==, tarball: file:projects/data-tables.tgz} name: '@rush-temp/data-tables' version: 0.0.0 dependencies: @@ -19495,7 +19529,7 @@ packages: dev: false file:projects/defender-easm.tgz: - resolution: {integrity: sha512-o5DbhNz+IhKlcyejPVDXxvbYCVRV4MbYLR8iy+T2GJcnbtzj6ItonNv9UHUSBxdykBbFKdBSahgL5RZNyZ+o/g==, tarball: file:projects/defender-easm.tgz} + resolution: {integrity: sha512-3tDPav1BNGHWZC3iq29Shix/tC94el7P/kvaoROponvav7SVw00sNIt6D2Qu05uh05zohWkshB2LLPQ37bBxSA==, tarball: file:projects/defender-easm.tgz} name: '@rush-temp/defender-easm' version: 0.0.0 dependencies: @@ -19542,7 +19576,7 @@ packages: dev: false file:projects/dev-tool.tgz: - resolution: {integrity: sha512-mf1EMMPr+3cw+PHiJF9hmKT/H5T6Xi5lwY7NG+UWQGabk7qPuduoRwkQpG207CwH56Yrs1pan2Qs9AGWI1s+JA==, tarball: file:projects/dev-tool.tgz} + resolution: {integrity: sha512-Xef6yFTzkzY5FP/Q6/WfIxVXCW8Dn+le7XOCIXXnMxFNHI18pWKGWZQuvhH8kHO/dkyA2s7npvIVKW4PKas5gg==, tarball: file:projects/dev-tool.tgz} name: '@rush-temp/dev-tool' version: 0.0.0 dependencies: @@ -19609,7 +19643,7 @@ packages: dev: false file:projects/developer-devcenter.tgz: - resolution: {integrity: sha512-GmxMLOmDadXhKvnOdsH2Yu8R2d8uulBFBScnAB9FuP0MspimnFFQh4OJYXM4XPP1tssIafKxASgSmBseS/YDPw==, tarball: file:projects/developer-devcenter.tgz} + resolution: {integrity: sha512-wslzkw8iSADqg3l0cBRPkXOgv20hUZbu9fNn/+ejt3YQYRL0rElOKnKaptx4cZ4aYRrktBLxd7QNb7716511qg==, tarball: file:projects/developer-devcenter.tgz} name: '@rush-temp/developer-devcenter' version: 0.0.0 dependencies: @@ -19656,7 +19690,7 @@ packages: dev: false file:projects/digital-twins-core.tgz: - resolution: {integrity: sha512-PJUP7UgpEbZGTQ2O+RmNmdnzVDBCNVeeTIcIVPZdlt5X+x9GLI7AtGmy+Ne0szQ5mY/4OYVndrQtbVf2QXGjJA==, tarball: file:projects/digital-twins-core.tgz} + resolution: {integrity: sha512-rSgOH3WBvx7so7vtqYJXGpZtGY71AVPK4c5+KST8HR6/jNKWnG6+FExO7iO1063PAXwqXcGroTUlIwY+ZSILmg==, tarball: file:projects/digital-twins-core.tgz} name: '@rush-temp/digital-twins-core' version: 0.0.0 dependencies: @@ -19702,7 +19736,7 @@ packages: dev: false file:projects/eslint-plugin-azure-sdk-helper.tgz: - resolution: {integrity: sha512-SPNj3knvD9q0h8ZM3fd+0MjWuXm14lBjMuSYXJ1ixyLkV+V5rWYKjh3TxyUZbqdE4zNGWKn6Iiqy0R1ZC94kQg==, tarball: file:projects/eslint-plugin-azure-sdk-helper.tgz} + resolution: {integrity: sha512-Rnq3WKMDlJPuuOAwJBQvBMhcr7++RnF36+QHbv8R7b76eW4hNIGG2MfAZr83C07W+FEF5o65VzIFCOla8dLLeQ==, tarball: file:projects/eslint-plugin-azure-sdk-helper.tgz} name: '@rush-temp/eslint-plugin-azure-sdk-helper' version: 0.0.0 dependencies: @@ -19721,7 +19755,7 @@ packages: dev: false file:projects/eslint-plugin-azure-sdk.tgz: - resolution: {integrity: sha512-jdY9Llcunp9vaevl1Y4NF6hnoW1oWaCPe9a8JDC7ksLWTtzxrjSXjbbvMgpTneqVKYE5ik/qR5HRtPP0I7lwNw==, tarball: file:projects/eslint-plugin-azure-sdk.tgz} + resolution: {integrity: sha512-r7jeZK4SPTdMP5HkmPJdQD/HsmEJzexIuqzvpcvd3r9D7NUKh+2rNhqPhDIG7wtS1rxLCGA1lh3kPS+kNro+ZQ==, tarball: file:projects/eslint-plugin-azure-sdk.tgz} name: '@rush-temp/eslint-plugin-azure-sdk' version: 0.0.0 dependencies: @@ -19766,7 +19800,7 @@ packages: dev: false file:projects/event-hubs.tgz: - resolution: {integrity: sha512-PpKO2F0cVbAVmlibkwgzGv7LAJybNpc54lujfc8vgMw5RU1hNDPjaeOIj+P/Aa89+63EO23YxwRa86vWvTW9dw==, tarball: file:projects/event-hubs.tgz} + resolution: {integrity: sha512-mqaUvspYjI39cRH2RmYrcdoQn1iuukp9jA99HUktWUo36N2kg71xY9WAoXqvqYRq+e6BCgK4bBTN+QSdGXoCsA==, tarball: file:projects/event-hubs.tgz} name: '@rush-temp/event-hubs' version: 0.0.0 dependencies: @@ -19826,7 +19860,7 @@ packages: dev: false file:projects/eventgrid-namespaces.tgz: - resolution: {integrity: sha512-oiAWRRrmoR318AbKUXkaM+AW7To7EFZf05Wp4V8YwEcQy7LYB90eocuN7mC1EuYRW13TepAqcXQVPgfU7KQFVg==, tarball: file:projects/eventgrid-namespaces.tgz} + resolution: {integrity: sha512-6FHPXRSxkd2/Fh9+Bng4fN1qa444kTwMwKyD/l1KZiinlOYPXYWM5RIv1sSu46x5x64m7HD/kL0bfPqHB0Ul8w==, tarball: file:projects/eventgrid-namespaces.tgz} name: '@rush-temp/eventgrid-namespaces' version: 0.0.0 dependencies: @@ -19873,7 +19907,7 @@ packages: dev: false file:projects/eventgrid.tgz: - resolution: {integrity: sha512-7shUAEcQDMj67CrgI4QjwcXp5+eOrVvZUZ6vlz057PfpLWBwR7wwkMk7d9K34QWHyP+TT8kNUdmx2NfLMvWjaQ==, tarball: file:projects/eventgrid.tgz} + resolution: {integrity: sha512-v1UvBWcby0gwLiwBXSIMOZep3JZZ3kjxfIrwOpW45agBs9Nl08f8GLA34bnYRS6TpGY/nIPTN0fVCBUj+IU8MQ==, tarball: file:projects/eventgrid.tgz} name: '@rush-temp/eventgrid' version: 0.0.0 dependencies: @@ -19916,7 +19950,7 @@ packages: dev: false file:projects/eventhubs-checkpointstore-blob.tgz: - resolution: {integrity: sha512-gYOpBSzMBs/wUWGwU9ze5PTN+2Iz66I1Cplmz4PZ1tPyEx6QZRVc3gZabi2vfiGY8EEJM/zsOtmcxdTY57WejA==, tarball: file:projects/eventhubs-checkpointstore-blob.tgz} + resolution: {integrity: sha512-M+p6/rXzuCFLHAR5nGfvEDTn8znmr+2HQIWTSHVreJWIZu3wtCUeNHELFTQl4cmRw1pJFdE/94rH8BNmv2yk8w==, tarball: file:projects/eventhubs-checkpointstore-blob.tgz} name: '@rush-temp/eventhubs-checkpointstore-blob' version: 0.0.0 dependencies: @@ -19965,7 +19999,7 @@ packages: dev: false file:projects/eventhubs-checkpointstore-table.tgz: - resolution: {integrity: sha512-fDjdl55fWeyQcCEjqJAAAJdefgTioeDwLK9uWdQHdFPBBlYFPfgOBkd5+SwSU0MXItniMhYsfl+WcIVmPayL7Q==, tarball: file:projects/eventhubs-checkpointstore-table.tgz} + resolution: {integrity: sha512-YrNAGcbEHO/3iYMoX2Pr8lxgfx53Ggel7ub3N105kO0R2xTmS3z79ygC+wz9LpgQdPy7UtGgJEdiVQOJ99GDzw==, tarball: file:projects/eventhubs-checkpointstore-table.tgz} name: '@rush-temp/eventhubs-checkpointstore-table' version: 0.0.0 dependencies: @@ -20011,7 +20045,7 @@ packages: dev: false file:projects/functions-authentication-events.tgz: - resolution: {integrity: sha512-EBHC9eBFDkiTeu6Z+7AIxNE0TL6kjyQY4hGULO1CWsDF10RHW2+fDdb/OJ+zJQz/oVkShyMx/yzf2Ezt7AHfKg==, tarball: file:projects/functions-authentication-events.tgz} + resolution: {integrity: sha512-4mFhWOZES5SUB/2diTQQPQHRdO988Ns5UnRNV5r8disbYVg660Dd5X3Xq66Ry55mK2Bt0sfz1qOH9AHfkIOblw==, tarball: file:projects/functions-authentication-events.tgz} name: '@rush-temp/functions-authentication-events' version: 0.0.0 dependencies: @@ -20056,7 +20090,7 @@ packages: dev: false file:projects/health-insights-cancerprofiling.tgz: - resolution: {integrity: sha512-knSmGvR2vrh2PC6vk+0kTQ3FRRmD31neBGDCABqATHfI+NKzAY1KUJ6iBd4syBA9upFFkBRjYOT74l3P9tCASw==, tarball: file:projects/health-insights-cancerprofiling.tgz} + resolution: {integrity: sha512-288H2dapTauMnvVvXaD3DjwWR0zP6W/s/C8KiAZ5a+C1pf+ykPzQXZ0sl5E+0oj5P4AHkTiE1Nz2VbSPYRBzmw==, tarball: file:projects/health-insights-cancerprofiling.tgz} name: '@rush-temp/health-insights-cancerprofiling' version: 0.0.0 dependencies: @@ -20103,7 +20137,7 @@ packages: dev: false file:projects/health-insights-clinicalmatching.tgz: - resolution: {integrity: sha512-ikoz79TFUl/5jnayf0QfpcN6DfPm1LTsPgiIGoHklWAfV7OComuUkvYdhVEuZ8222CPNC1IPpn7C5z4noWS8qw==, tarball: file:projects/health-insights-clinicalmatching.tgz} + resolution: {integrity: sha512-RLEY5FsCQo/L6FJDqOZEuc25wMPACvXA3He6z5a2F/XDXJ1qB/Q7LQ2nZO2stf0dTXYCb1HIyP/xNIubhM1EEg==, tarball: file:projects/health-insights-clinicalmatching.tgz} name: '@rush-temp/health-insights-clinicalmatching' version: 0.0.0 dependencies: @@ -20150,7 +20184,7 @@ packages: dev: false file:projects/health-insights-radiologyinsights.tgz: - resolution: {integrity: sha512-xAM2kqKp9eRjzuQV4Obk+hv02S1J/DHcxuTLipVVPUSYsGU7neDsoxlhre/XmxAei7GhKj8mW1MeULxae54+fw==, tarball: file:projects/health-insights-radiologyinsights.tgz} + resolution: {integrity: sha512-y6flqr0Wkug13wsvIqyVnZqI54GZXtYQSmUT+ABT25Swnp98+h//aSe8WKoVI6OH3dyPrBfv6WfaUA06huxS/g==, tarball: file:projects/health-insights-radiologyinsights.tgz} name: '@rush-temp/health-insights-radiologyinsights' version: 0.0.0 dependencies: @@ -20197,7 +20231,7 @@ packages: dev: false file:projects/identity-broker.tgz: - resolution: {integrity: sha512-tltADNWL/WbSJjT0wYa9GutUPP9afP5xoUpXb9zrMdU5dZpMXwXQOOFdFwLH5B21OrlrT1cRHWuPqOKdG9eDMQ==, tarball: file:projects/identity-broker.tgz} + resolution: {integrity: sha512-pd3NogAUdY+BZ4LqaXA9KArDBt7LZBNS5hawa0hUusB2sdVzTQYqSQPZ5Li9icrnMjzmXn/3X07NwYfP7v7c7Q==, tarball: file:projects/identity-broker.tgz} name: '@rush-temp/identity-broker' version: 0.0.0 dependencies: @@ -20225,7 +20259,7 @@ packages: dev: false file:projects/identity-cache-persistence.tgz: - resolution: {integrity: sha512-4d18eroBNxUQK0rIm4Hr+jf72gFG/Z2qtApwp+a0wqxR0GANOHZzm2W59mZg7bDIXqFTXYboB1jJ8lSc8tIOQw==, tarball: file:projects/identity-cache-persistence.tgz} + resolution: {integrity: sha512-2G9g3YR5pYi1MUour7OL2JV4u/AH2T3omZCaKA+IKr0AKQ71dM0jCof85MbC/l+dPOStytLq08M1U/46KBzbIw==, tarball: file:projects/identity-cache-persistence.tgz} name: '@rush-temp/identity-cache-persistence' version: 0.0.0 dependencies: @@ -20261,7 +20295,7 @@ packages: dev: false file:projects/identity-vscode.tgz: - resolution: {integrity: sha512-+bunzAGa/7EawRgBUQXKh92PeI0vIVxGaQW+lWZ5IMc+oDjGmlG2Ei/EIgkAW9jzJVhckCwk2/D7frXysJIYig==, tarball: file:projects/identity-vscode.tgz} + resolution: {integrity: sha512-IGrhmoRUb2ZhgG/m2deIfPIUSrehNpuyNwWRdOm8ims7ain7PQgpy9CSPMIcsq49LzRCllq9y9NcQ+D7fsHHZw==, tarball: file:projects/identity-vscode.tgz} name: '@rush-temp/identity-vscode' version: 0.0.0 dependencies: @@ -20296,7 +20330,7 @@ packages: dev: false file:projects/identity.tgz: - resolution: {integrity: sha512-u1dbgoew26XEWD36lWOTrU9z1fEV4bdc+pqGBG6ACxWJKXnWhxJH6WjdBsSFxI3SYtd8zcudAexxSdy+B0EOuQ==, tarball: file:projects/identity.tgz} + resolution: {integrity: sha512-hByUR/HYHlfBSNb+6QYjcOuIxsu1J1jbdR7YRiSdbXIZfjQ9ovVR5MaEwYVI5no6azfCiiBcEHdnVtn/rVx8Aw==, tarball: file:projects/identity.tgz} name: '@rush-temp/identity' version: 0.0.0 dependencies: @@ -20353,7 +20387,7 @@ packages: dev: false file:projects/iot-device-update.tgz: - resolution: {integrity: sha512-y8igara0nPLv+Svp/d4sVOePSqCMhQ4D4ls+qvYe7PK/dnKa0KHMLpD1mOOxck8cHng/0k4oxysdMlJKLp/JFA==, tarball: file:projects/iot-device-update.tgz} + resolution: {integrity: sha512-aLWF455OqyXe4AEKo503tZcquAANip3wKtTHmt218aCDpiH6yU9zVMO+fDGguF8y6wOTEajliTKG5YZgr8/aQQ==, tarball: file:projects/iot-device-update.tgz} name: '@rush-temp/iot-device-update' version: 0.0.0 dependencies: @@ -20400,7 +20434,7 @@ packages: dev: false file:projects/iot-modelsrepository.tgz: - resolution: {integrity: sha512-Z3r0s0MPewb2f8rUylf2xeUBdiM5MK9AFevBkBU/9z99pUjZyh1kvAk9zj0TQbHEJpuaGAw6fdFxvaZd0ye4gw==, tarball: file:projects/iot-modelsrepository.tgz} + resolution: {integrity: sha512-Mj6YTGX+Prxqr38w409U9syJ9cjHNcGTPFA41c21gposz3Sy25mD9hx/wwBFX4U1GsL5Jqub2g8aVyjtyd/IZg==, tarball: file:projects/iot-modelsrepository.tgz} name: '@rush-temp/iot-modelsrepository' version: 0.0.0 dependencies: @@ -20444,7 +20478,7 @@ packages: dev: false file:projects/keyvault-admin.tgz: - resolution: {integrity: sha512-vONPnewx6q8BuPkbnPduyYeHlChDqYqJO70vANam6CsFMN4zAyHWuHRCe7PchtOSgx0vzkl/YvG09kl2V7zuZA==, tarball: file:projects/keyvault-admin.tgz} + resolution: {integrity: sha512-WCiJvP3In04vn6vdmkeDvCYcJ9/Ze4JCmcc3ALCi1EMXt9/ZS7KDOBIY/f0mvvBlX+6Mo0jJrIrEBVedJNoISw==, tarball: file:projects/keyvault-admin.tgz} name: '@rush-temp/keyvault-admin' version: 0.0.0 dependencies: @@ -20477,7 +20511,7 @@ packages: dev: false file:projects/keyvault-certificates.tgz: - resolution: {integrity: sha512-Qwd98s2iMN4ZDxh8XLsert9imux/RrQnUV1NVwzxAaNd7K6dvhZOcOgsZrJQ/rSOkyM9/sVldVGEY/thRFecLw==, tarball: file:projects/keyvault-certificates.tgz} + resolution: {integrity: sha512-S23dQdwK1jnJwX1XoGiLrntDpG1kJRsPeXvbWo9WEZhOll+1zYWqGGDGj4trhDsIgDjBI+9zLDFSi/E1zg5jbw==, tarball: file:projects/keyvault-certificates.tgz} name: '@rush-temp/keyvault-certificates' version: 0.0.0 dependencies: @@ -20523,7 +20557,7 @@ packages: dev: false file:projects/keyvault-common.tgz: - resolution: {integrity: sha512-HZlDlQ+CmWc57EMgQAnEVW6T0KCD1aB0F26iV62uWvFFfGtPgNeT5H0f8YGTt64qnyWjVKcSch5RRReLmFY4GA==, tarball: file:projects/keyvault-common.tgz} + resolution: {integrity: sha512-qUpo5LZ1iwi7FQf6Qq0xYShwVlUb01cXDQ0jskosTo96ckDRMiX6G9edfJT8WgB2472yPcRa0XHshz6qwbasUA==, tarball: file:projects/keyvault-common.tgz} name: '@rush-temp/keyvault-common' version: 0.0.0 dependencies: @@ -20551,7 +20585,7 @@ packages: dev: false file:projects/keyvault-keys.tgz: - resolution: {integrity: sha512-aS1vKYQKlF2GV2cfqHc1H2/k3VoGwG1E/lTr5W/K91RgiyX2B3pRx2h3Ti7LIKRYvCiEEiMPk0jB+p0RuRVHoA==, tarball: file:projects/keyvault-keys.tgz} + resolution: {integrity: sha512-H3cD63NehEEMN5/3s3Jvf2SBccKPUYojw6Xz02NboizdtyksVK6rjGUgXxCSuLUnF49tqHdT4Jt41m8icLEYNg==, tarball: file:projects/keyvault-keys.tgz} name: '@rush-temp/keyvault-keys' version: 0.0.0 dependencies: @@ -20598,7 +20632,7 @@ packages: dev: false file:projects/keyvault-secrets.tgz: - resolution: {integrity: sha512-z6heC9EfNP0bWwSpepGq5HGqDkmDNBlekUq/6tEHK3EnjyJiUJHTHecq3gjY1BNt0H6c5HkKiu09x4LGtwAtew==, tarball: file:projects/keyvault-secrets.tgz} + resolution: {integrity: sha512-agHy9pw+tLm0Tpepc9C2TLz+IStKOHE8tOvHN88mDWl5beuZGRslN/jsfaog4bkeTRganPYOZqLBaLsg3/auHA==, tarball: file:projects/keyvault-secrets.tgz} name: '@rush-temp/keyvault-secrets' version: 0.0.0 dependencies: @@ -20642,7 +20676,7 @@ packages: dev: false file:projects/load-testing.tgz: - resolution: {integrity: sha512-6V0S3pIyGB+gIDspR+XRRlf8pRE5pi5HHGL29serWXBPDGM8D17jBuSQjwUvchKURVRy0VJad/sAnvtrqrzrzg==, tarball: file:projects/load-testing.tgz} + resolution: {integrity: sha512-cr2hScfeQgVdRAGOZcg1M9J7yX/6xehSxOEAxWsT+cVngt4TNdhYQUPtiN1oKuTKm9PswgXar0DQPrOJxtdKCQ==, tarball: file:projects/load-testing.tgz} name: '@rush-temp/load-testing' version: 0.0.0 dependencies: @@ -20691,7 +20725,7 @@ packages: dev: false file:projects/logger.tgz: - resolution: {integrity: sha512-DXdgDzzwRLpM45GbytE0xo7X2nzZEMBB4fXm6sQdzhx/oqi24eMMVOdHnXZ3UtgoOaHTKni5cgnEaW7ySJQxQQ==, tarball: file:projects/logger.tgz} + resolution: {integrity: sha512-wUuLbeDFqwh0hlDLDLsgXWTp0Z7UBbV23hPR/iw4e2RcSkQDF4MqJrUYkm7hNIuLkgUfiJU+OAXWySbftzu0Ig==, tarball: file:projects/logger.tgz} name: '@rush-temp/logger' version: 0.0.0 dependencies: @@ -20724,7 +20758,7 @@ packages: dev: false file:projects/maps-common.tgz: - resolution: {integrity: sha512-C0UH1u82g5SVN6aUh9HpbrTEV4yg+LR3zGsgGq+5DOlDQ7rLz2tyaKCf1hT13B5+xlko38jYB2sguwE8kAMs7w==, tarball: file:projects/maps-common.tgz} + resolution: {integrity: sha512-AQCdfMgx3/Vv0dlAhhnYTyIojwZlQr3joRLHxJB93H/fdUG4IFwvZggRjos0ckEzURgZjHQIwHFZwibS3S+G+g==, tarball: file:projects/maps-common.tgz} name: '@rush-temp/maps-common' version: 0.0.0 dependencies: @@ -20743,7 +20777,7 @@ packages: dev: false file:projects/maps-geolocation.tgz: - resolution: {integrity: sha512-+GGM8Da7UTLzmFpgdpBJNyRR8zf6kkYU/P+upwTKKPW4HSPTYTHJzv2F+AWSSNHCTHbEWukJItbmI9tAGMPP+g==, tarball: file:projects/maps-geolocation.tgz} + resolution: {integrity: sha512-Vm5Xi0fjf0xWw/Pthatr5dyiRt3z8+2b94gkiXFovEVfHEw9GE/mK72GGfi0EbzM1FTEoi4Y/exce+xLalTXAw==, tarball: file:projects/maps-geolocation.tgz} name: '@rush-temp/maps-geolocation' version: 0.0.0 dependencies: @@ -20789,7 +20823,7 @@ packages: dev: false file:projects/maps-render.tgz: - resolution: {integrity: sha512-v6aRlzZOvEjMpc4gkHkN5gAEzZCbb97P4Hc+icaPTPjqWFiKMKKTnhkvL0KtWfxBhfhYtTpVIb9yVlDG+VKJEQ==, tarball: file:projects/maps-render.tgz} + resolution: {integrity: sha512-+tq/A1pRzI6g2fcoVGFf4jGjoHEIDUX9LuOK4083oiPQ1roC7fFiGyhQaPmcbtpxPRQWT0KDfimXW3PWV5riFA==, tarball: file:projects/maps-render.tgz} name: '@rush-temp/maps-render' version: 0.0.0 dependencies: @@ -20835,7 +20869,7 @@ packages: dev: false file:projects/maps-route.tgz: - resolution: {integrity: sha512-f9kfTahoWAyKRaF4L8SKN3HUuHvSCaj+8IsSd/IpuuJ02PnDGBvLGdIxlgXEQCq4mia4mRTFIr6OoeYijp1gKg==, tarball: file:projects/maps-route.tgz} + resolution: {integrity: sha512-j6DD5KKmszXmTFhDqaKq6hDAWqtE6R1TON8TvF29nNSB0d0SCmAgyX/rJ5+bs615v7+wAL6/Hf35Ecg5KBZt7A==, tarball: file:projects/maps-route.tgz} name: '@rush-temp/maps-route' version: 0.0.0 dependencies: @@ -20882,7 +20916,7 @@ packages: dev: false file:projects/maps-search.tgz: - resolution: {integrity: sha512-4fwjw3YuPIQGvLdzaAPAbtkMHG4zkZ1lO2N+dVAXgOHYpABOELJaLfOBuFdy1jkuaysZEzd57ZbvxY/xU4VVMw==, tarball: file:projects/maps-search.tgz} + resolution: {integrity: sha512-7bpzMAvBQnyBwmflWrakVxhggSwFrhkR9+KmnLTa54w+l/Kk16Tf2NIv80TwaX/Waudp0amU1wz6bXAwUjl3cw==, tarball: file:projects/maps-search.tgz} name: '@rush-temp/maps-search' version: 0.0.0 dependencies: @@ -20929,7 +20963,7 @@ packages: dev: false file:projects/mixed-reality-authentication.tgz: - resolution: {integrity: sha512-xr6cEWU7r4iiDGpHx7qlntr8DF7G4y9SzSC0dVANd4KOIBuUQJc769wGoAFJJk+kZjpuE9ooAj//C9uV2FW7MA==, tarball: file:projects/mixed-reality-authentication.tgz} + resolution: {integrity: sha512-no5+L3eIuY6tuBpXwmnhEkVFcLcrz6I16PnheCRki3VmGKpUOlNV1BHT8f3cd9Oly7air1Typgc54Fc7tAw2nA==, tarball: file:projects/mixed-reality-authentication.tgz} name: '@rush-temp/mixed-reality-authentication' version: 0.0.0 dependencies: @@ -20972,7 +21006,7 @@ packages: dev: false file:projects/mixed-reality-remote-rendering.tgz: - resolution: {integrity: sha512-N27o70P/K3PKkRMvzfLRMEdA4PbiyZWKSJpT3+yiVs4qChH+UtljaLAQwaFeHXqQ/UoG3y6igQruvSnAbJAlkA==, tarball: file:projects/mixed-reality-remote-rendering.tgz} + resolution: {integrity: sha512-dhjLeKoVTB8SwN5a2jvZXDNI57wZyva66dPPrWY/s5UC8nXg9z4nsDYW7GP56qY+I8h9HXsSC43mFycIjw/dEg==, tarball: file:projects/mixed-reality-remote-rendering.tgz} name: '@rush-temp/mixed-reality-remote-rendering' version: 0.0.0 dependencies: @@ -21020,7 +21054,7 @@ packages: dev: false file:projects/mock-hub.tgz: - resolution: {integrity: sha512-2u15yJgthiFRvamHInxtcoPhxPynLh1lNdXF95NDdXlt4Eoqn1RumKuzrSX/PzIQEVU+OUrNAi9EmktTV395/A==, tarball: file:projects/mock-hub.tgz} + resolution: {integrity: sha512-HdkufUS5H4Ypr/1+cJ8EQcD9C30Jir9slYsZjgs9wCBhPHBtn8wOer0XDhSTJ4W4JnuR2XE3zc5JyHGeRZ2HKA==, tarball: file:projects/mock-hub.tgz} name: '@rush-temp/mock-hub' version: 0.0.0 dependencies: @@ -21040,7 +21074,7 @@ packages: dev: false file:projects/monitor-ingestion.tgz: - resolution: {integrity: sha512-fL3tQObZwLkNWleudftXuNCTXkiQN9BlzFvrqCaWJ9Jhs1fu5SrVLqUF+xZal1RgAqIqgAfPU4tgM688LnLd7A==, tarball: file:projects/monitor-ingestion.tgz} + resolution: {integrity: sha512-71XPUWsMg3wyJysCxcZmGn4dIaq57JdD4D8E1VBKBhmkVF0VwZ1r7ExZ3dtry0fKdoGY4MzcCH8jNpiAGIuHow==, tarball: file:projects/monitor-ingestion.tgz} name: '@rush-temp/monitor-ingestion' version: 0.0.0 dependencies: @@ -21089,7 +21123,7 @@ packages: dev: false file:projects/monitor-opentelemetry-exporter.tgz: - resolution: {integrity: sha512-RBEpLP5B1aAAf4iTK9r4N6g77n24F4zeaVZ0z9E6PFacbszFJ3h9I08r+w7KjSPKITOquC0+otdOJw2j/zsxvw==, tarball: file:projects/monitor-opentelemetry-exporter.tgz} + resolution: {integrity: sha512-iie/rpe9LvtyvBe5k+GaiVbKLqF3yO0+teFYtkSZteiXveFT/6MDpCyJn4R4a1+rvWAV+/6BrRezi7Lr5o56zA==, tarball: file:projects/monitor-opentelemetry-exporter.tgz} name: '@rush-temp/monitor-opentelemetry-exporter' version: 0.0.0 dependencies: @@ -21124,7 +21158,7 @@ packages: dev: false file:projects/monitor-opentelemetry.tgz: - resolution: {integrity: sha512-Gwxand1T17xQwbX1cCjHtETjlflTUwDo4hUfVhNd0z3BrKkinKJktZ3rPf0mz5xIavlxl+Ve8X/UnlLod/aIJg==, tarball: file:projects/monitor-opentelemetry.tgz} + resolution: {integrity: sha512-5u+iodS74tP962DsJJNV9NvGZozj4CPLVN+JTpnT4QtCUAp0EUr2Bx4yhBeU+WDungolxMI3q3LUxVspVVHV9g==, tarball: file:projects/monitor-opentelemetry.tgz} name: '@rush-temp/monitor-opentelemetry' version: 0.0.0 dependencies: @@ -21172,7 +21206,7 @@ packages: dev: false file:projects/monitor-query.tgz: - resolution: {integrity: sha512-g10idDBTdtfELyAEvofF6Z5vt2dTL7gXS3+GEtRFgo4isbCw/CZOOmN63yfVIJcmNEv8/AuP/8puElSgFI8YpA==, tarball: file:projects/monitor-query.tgz} + resolution: {integrity: sha512-gqImIE4dbuH7TuSZbkUxr979IShj+6QC19LOll5iMMH/T/2ZtJepGBFlofKh1Xd1Fyv71gKBemM39rEaWrFPbA==, tarball: file:projects/monitor-query.tgz} name: '@rush-temp/monitor-query' version: 0.0.0 dependencies: @@ -21217,7 +21251,7 @@ packages: dev: false file:projects/notification-hubs.tgz: - resolution: {integrity: sha512-wX7n8gHZvyrjovFWVcXBHIvD+rOE1Rh0PX8kImlW7YdHNlwiT/4GkgS/l7pc6Stt/BKqKPhQYoNGsUg2mmkIzA==, tarball: file:projects/notification-hubs.tgz} + resolution: {integrity: sha512-FDq4Kf7DM6+UpiDRWO6jJkUiZp5yJkkhUsEf6O8W4jdXA9q8EKJSuHd/q64YL25VP+lNQOzsUXoBidpL1QmFmg==, tarball: file:projects/notification-hubs.tgz} name: '@rush-temp/notification-hubs' version: 0.0.0 dependencies: @@ -21252,7 +21286,7 @@ packages: dev: false file:projects/openai-1.tgz: - resolution: {integrity: sha512-/hEWC93Y6dGctnxyu7/GluD2agiwmTNkPA3VqRdb59ocDjHt93+5RXdTWrVl3kFWgk1vzbf/4tgnG3M936ScvQ==, tarball: file:projects/openai-1.tgz} + resolution: {integrity: sha512-HX1Au1r6w5Y7cjcWqQmxe9iXgNvlFncM8w52xZt5l18mOqenpc8GWnauBGG2uFzCOJgjzOtmD1hILq5deq3WiQ==, tarball: file:projects/openai-1.tgz} name: '@rush-temp/openai-1' version: 0.0.0 dependencies: @@ -21297,7 +21331,7 @@ packages: dev: false file:projects/openai-assistants.tgz: - resolution: {integrity: sha512-HHjJ5/7nk0PjHl396f+p6z0wjxj4uT7/y0fgFnDn+/zt7UYZ5SAgH3p+hpPBbCWvLdw1JwRoks29LsOtTjDxQA==, tarball: file:projects/openai-assistants.tgz} + resolution: {integrity: sha512-wy+4izUGCLqL3oOVK5YwSrO/s8Hz2iRGEaQCOCsHlo6MfHw9K1wvZrqoVJh8jUtzygqZb8aygHLrHOZhtEeU6Q==, tarball: file:projects/openai-assistants.tgz} name: '@rush-temp/openai-assistants' version: 0.0.0 dependencies: @@ -21340,7 +21374,7 @@ packages: dev: false file:projects/openai.tgz: - resolution: {integrity: sha512-cokO7nL3WDl/VR3sTwekw0uMmjIjAIhpKruJjOkH5usVY3Hdaf+DKXY8PMTK3v8HuyGk8gulKTXofnQ0DxV2BQ==, tarball: file:projects/openai.tgz} + resolution: {integrity: sha512-e4pnCjShYvb0POzp1ehbHeltH9nSgLS8h2uBIaV1g8Fb+XFzgKMOS3WRn4Y6CsM9dIccAcUQ/InvnX1L3SL8bg==, tarball: file:projects/openai.tgz} name: '@rush-temp/openai' version: 0.0.0 dependencies: @@ -21362,7 +21396,7 @@ packages: dev: false file:projects/opentelemetry-instrumentation-azure-sdk.tgz: - resolution: {integrity: sha512-JZIZCjOmPbiKTkvQF7JtUNfbomWa6GE4a9ot6hvFA8PQmwN3WPb+0u7iEPt/rMIAASE+a6JkgHchQ+Q4PgOujA==, tarball: file:projects/opentelemetry-instrumentation-azure-sdk.tgz} + resolution: {integrity: sha512-vSVMVXdzHUQm/Ie+sV7/GgYfpw/co4bYdoyUd2I/IlRnm3VEMcMq8qnwU6SeWfYHvJBcGyPFh0/lI/hIY4hI7A==, tarball: file:projects/opentelemetry-instrumentation-azure-sdk.tgz} name: '@rush-temp/opentelemetry-instrumentation-azure-sdk' version: 0.0.0 dependencies: @@ -21406,7 +21440,7 @@ packages: dev: false file:projects/perf-ai-form-recognizer.tgz: - resolution: {integrity: sha512-ZEtTPnvyzdglFoCqn01JTvsOb325W4uINZxdHD/WxSin4L7mF4BmDYIYW1g0h0BDh4jRxqHTDn8beKxvVTMDhw==, tarball: file:projects/perf-ai-form-recognizer.tgz} + resolution: {integrity: sha512-jJ9yUz/wkp5aCq/JdNw9nQceFCSFZ4ZIrtO8Z1qUB9a5K4OCfYxX2L7xMFVFuwZG4ui0JKiBMzCQvpa/b5KlXw==, tarball: file:projects/perf-ai-form-recognizer.tgz} name: '@rush-temp/perf-ai-form-recognizer' version: 0.0.0 dependencies: @@ -21425,7 +21459,7 @@ packages: dev: false file:projects/perf-ai-language-text.tgz: - resolution: {integrity: sha512-FOyZLxDpzMeSUgh+by2vxRJy7A99mTEyeJrSx9UU4XMzjs+HxmRen4e/g+uPAu6Xy5PxrNz65Gc1deZ+EaBzxQ==, tarball: file:projects/perf-ai-language-text.tgz} + resolution: {integrity: sha512-Ezgs32oa+CFBKE/U+wsHmW7re9+AzSYxgqr0kUWjV3B2+uEDi4edGTf9LQdaQLjACpgL2EiqRue8lB8U2aoLZA==, tarball: file:projects/perf-ai-language-text.tgz} name: '@rush-temp/perf-ai-language-text' version: 0.0.0 dependencies: @@ -21444,7 +21478,7 @@ packages: dev: false file:projects/perf-ai-metrics-advisor.tgz: - resolution: {integrity: sha512-EI0v5BNYVGw+UEvxRTVY/Yg2Intp7uxcy3dcfHSzdbdxwfBKj/S3xdOTC3eJ9hPu2kd1OWJZ1A6K6OQENIIO+Q==, tarball: file:projects/perf-ai-metrics-advisor.tgz} + resolution: {integrity: sha512-FK3uwYwVG4JU0E55VPDHuHChwsuKHlDeBJ0xSAhvytpFRTdaBaZhVZgbEIi8M0Iu9kUKuKhtnLXtX2acK/givQ==, tarball: file:projects/perf-ai-metrics-advisor.tgz} name: '@rush-temp/perf-ai-metrics-advisor' version: 0.0.0 dependencies: @@ -21462,7 +21496,7 @@ packages: dev: false file:projects/perf-ai-text-analytics.tgz: - resolution: {integrity: sha512-a9EE2n2VBdwwJH3aWAfl4IAB6AG01qWhfv7AYoiEUkKNwFrr8j9m4ZW5VNKPnMjPFytIc7rfrygQrhffVzcNcg==, tarball: file:projects/perf-ai-text-analytics.tgz} + resolution: {integrity: sha512-COpqmIBzIBiBUxxxoftoMOQLNatd+D1Z8q6j1um6ZjC8RXldZ1dOcAmy8E8JhGTlzuW0dWDJX1HteJ0gruYhsg==, tarball: file:projects/perf-ai-text-analytics.tgz} name: '@rush-temp/perf-ai-text-analytics' version: 0.0.0 dependencies: @@ -21481,7 +21515,7 @@ packages: dev: false file:projects/perf-app-configuration.tgz: - resolution: {integrity: sha512-mBRrscrjyagQGNmhRBeA0zYUchSX3PKH40/VJsKpHAuGawxZeVymmoEjA3uQCblY8YYyF6b3rST9ifn8RYbKMQ==, tarball: file:projects/perf-app-configuration.tgz} + resolution: {integrity: sha512-m6LgfVtYJ9nxqnIXXiKcHgyvgBf5B185zWW7JPbbeVfQVmr5Xdzqkz0WXWc+CcTF++NpwNEspjcZORfD0IXTeQ==, tarball: file:projects/perf-app-configuration.tgz} name: '@rush-temp/perf-app-configuration' version: 0.0.0 dependencies: @@ -21500,7 +21534,7 @@ packages: dev: false file:projects/perf-container-registry.tgz: - resolution: {integrity: sha512-gR4YkZbX7kyqHh9gh/Vbo90HQPdw08Pt0GiAZdrPdM1FW1mVIoR5BeIIC3H9Fb82/LQ1I+oFg+FY2VIQNZb4kA==, tarball: file:projects/perf-container-registry.tgz} + resolution: {integrity: sha512-QL4EkBV+8EEZG1EmfGH87489mjfmN3k4niRUwi/C+aSiieE5QhTgFxgpu0MZTP3mHWpaGIbou3rGs0E/pRRN7A==, tarball: file:projects/perf-container-registry.tgz} name: '@rush-temp/perf-container-registry' version: 0.0.0 dependencies: @@ -21518,7 +21552,7 @@ packages: dev: false file:projects/perf-core-rest-pipeline.tgz: - resolution: {integrity: sha512-ZHZpAZ/Qz808jXB7P/dLhwmYFufP164O0TLqxpmqfXcaHphgpik5b4x5xMKXrb4WFT61XNFDvFXrdJf1Az7rYA==, tarball: file:projects/perf-core-rest-pipeline.tgz} + resolution: {integrity: sha512-t2vMC8YRmC3A5o9WHN80EqNbvUyLuYFoyewBkEsgx6ju9gI/nqhmSw9dqdT4fINFnzul/n4bFHJWAWPIhVToHQ==, tarball: file:projects/perf-core-rest-pipeline.tgz} name: '@rush-temp/perf-core-rest-pipeline' version: 0.0.0 dependencies: @@ -21540,7 +21574,7 @@ packages: dev: false file:projects/perf-data-tables.tgz: - resolution: {integrity: sha512-FYo4ko2VEcSKWnaLMm6WsCAUMI4LcXN428YMm2iUorgWvWyeado13sbE+SHjSKgzkh26eUXB0bupEEdQKKc7bg==, tarball: file:projects/perf-data-tables.tgz} + resolution: {integrity: sha512-FkJCM5n7DYsf2lzR3Ag2tqxiVn8GU6bZpAuZNIK6BZXLByrUUf8dk7NDYPXHwhs2NaZORzdXy6yNlLqJRHmWgw==, tarball: file:projects/perf-data-tables.tgz} name: '@rush-temp/perf-data-tables' version: 0.0.0 dependencies: @@ -21558,7 +21592,7 @@ packages: dev: false file:projects/perf-event-hubs.tgz: - resolution: {integrity: sha512-my2s1O4skXXIMxC89ecO1/eZlR3+IgNj4XN5vu3JG3a48TKuxiOw/EcTuaeFktt6xMo1dciv+LuYurbFSWh64A==, tarball: file:projects/perf-event-hubs.tgz} + resolution: {integrity: sha512-NtzbPTiRsQgWkCn0a8gkN0J+aKl4Dfl/K1fvOT4QfwzAWf3qaXtbmqvd9laMHajWej+1wo+Vu7tGLPM6hqpfZg==, tarball: file:projects/perf-event-hubs.tgz} name: '@rush-temp/perf-event-hubs' version: 0.0.0 dependencies: @@ -21579,7 +21613,7 @@ packages: dev: false file:projects/perf-eventgrid.tgz: - resolution: {integrity: sha512-a0a/rYZ7+OJo2V1ZNGNpyTkAPxxvTv+KFu7BUyms81FuggrrECUsybfwz3mbG8nIoh8UEB+BY5OXuyN48ZbZ0w==, tarball: file:projects/perf-eventgrid.tgz} + resolution: {integrity: sha512-mB74n6wsIzYFESIifHaaO32a80MTYZNkvhYb5rrHuzjTlqcZKfanZuBPdVAFHjy1m/KZeHVjX5CzY/rFpdD8sw==, tarball: file:projects/perf-eventgrid.tgz} name: '@rush-temp/perf-eventgrid' version: 0.0.0 dependencies: @@ -21597,7 +21631,7 @@ packages: dev: false file:projects/perf-identity.tgz: - resolution: {integrity: sha512-ls/twm+EOl5T0doFYMzDYU4JDQicBKNmr5A7HCHU8vxxzyIqibsMazv/4xtbYLrrdnxDr/wPJrUK5JIHwrBrfQ==, tarball: file:projects/perf-identity.tgz} + resolution: {integrity: sha512-XQArYtGAFPoEcI0kX2NbZE/gZ3mJxu+QEc56gZGoi3OkSLe8FfhrtrNJUMDlGdKaT3/LA5zA2R6exke5K2X4AA==, tarball: file:projects/perf-identity.tgz} name: '@rush-temp/perf-identity' version: 0.0.0 dependencies: @@ -21617,7 +21651,7 @@ packages: dev: false file:projects/perf-keyvault-certificates.tgz: - resolution: {integrity: sha512-MXHTJ5JP994gH9DA96KFQnYMHy0Isj5pWo2Idxs27Bw98WDXrU7CnRfSgxShc9RHwasnrj+ViyH4HTZiuzjdhQ==, tarball: file:projects/perf-keyvault-certificates.tgz} + resolution: {integrity: sha512-q3Uawn8d+iWGS1I45oh3pad1uR1ddbdtMWp08IxrNtovicdTBFVPTsk4upBNXdr+8bTbrVQcz87h42ke1UFsdg==, tarball: file:projects/perf-keyvault-certificates.tgz} name: '@rush-temp/perf-keyvault-certificates' version: 0.0.0 dependencies: @@ -21638,7 +21672,7 @@ packages: dev: false file:projects/perf-keyvault-keys.tgz: - resolution: {integrity: sha512-fp+0/ckF+tA4Fl0ZJTc5VLqRX39uwYuiSPqI2KTo6/FhkmW1Xj0nWAZoyp3KnNW7o2GmZLWnpmc7j0gWWDpkgQ==, tarball: file:projects/perf-keyvault-keys.tgz} + resolution: {integrity: sha512-CgY3i6+Vb6q/jmerEl84jsdSWMDM0leoZ5fZyBagT+IdtCCiO1oNSF94bh9ZBA0Mz3wR5cHzkD5Ty0ZicbtgxA==, tarball: file:projects/perf-keyvault-keys.tgz} name: '@rush-temp/perf-keyvault-keys' version: 0.0.0 dependencies: @@ -21659,7 +21693,7 @@ packages: dev: false file:projects/perf-keyvault-secrets.tgz: - resolution: {integrity: sha512-StJodfvLmN9ey/bqM3Y9hDshqy0B4wnon1KG9QiDV+th/oHSNZr0t8FXMXlH2ujdXLQ1N+f9pIwSXNQ/BypwmQ==, tarball: file:projects/perf-keyvault-secrets.tgz} + resolution: {integrity: sha512-JNWbkcZXkYmiUDl+KOXClXm4O4Af6bvgGEKh74FF/V6hRXe3Rs8ZyGujRD8dl8Q95TZ1mUcNGb4ukVfmX54VBw==, tarball: file:projects/perf-keyvault-secrets.tgz} name: '@rush-temp/perf-keyvault-secrets' version: 0.0.0 dependencies: @@ -21680,7 +21714,7 @@ packages: dev: false file:projects/perf-monitor-ingestion.tgz: - resolution: {integrity: sha512-2o8F1n6D0379E3Iygs3YuJNRHpml3bMIRh+7j71Ps/SE+6joKl7yXKky887BVuCS1RWCZ9vPRvWLmWGOGWLELw==, tarball: file:projects/perf-monitor-ingestion.tgz} + resolution: {integrity: sha512-VSOX6oZ+RlNALvdf5G5811p/m/sh1itoj2Rzf8IjWp4Um5Z6njZXM2sq1bjIQ9DOExSm7cA28AnB1xtxBKJ6fA==, tarball: file:projects/perf-monitor-ingestion.tgz} name: '@rush-temp/perf-monitor-ingestion' version: 0.0.0 dependencies: @@ -21699,7 +21733,7 @@ packages: dev: false file:projects/perf-monitor-opentelemetry.tgz: - resolution: {integrity: sha512-NuplDYc1WdVFOVFPv1t0M1BrQddyOvMjF2l8LT44o+gIJkvin5NiVrE+RnAsAnpL61xQYgSuMGjQPzJwtgVtyg==, tarball: file:projects/perf-monitor-opentelemetry.tgz} + resolution: {integrity: sha512-HSCNDu7ipll6wpOY0EIRAM8u2uTRRnKxDSqTki0pn+X6FynBpEQYCKQK6GVUGXKo7dW3ee8HDNq8KiVVI4WW5g==, tarball: file:projects/perf-monitor-opentelemetry.tgz} name: '@rush-temp/perf-monitor-opentelemetry' version: 0.0.0 dependencies: @@ -21717,7 +21751,7 @@ packages: dev: false file:projects/perf-monitor-query.tgz: - resolution: {integrity: sha512-NNujDSiATIKn6j+HuDYdmKbkRzYrmq/o49zE5cWlmRjDip3Q5hSdY8fu7SMZ0C6Ru9ef2bfoNnj94DJBEnVfeA==, tarball: file:projects/perf-monitor-query.tgz} + resolution: {integrity: sha512-8KBD9rNLXhW7FoU0LgG615jeq7LYO2BHefUWi7LOlTxAejj1cfky7Dl+ViRGC8d7AoO7zUbXDYy0i+8W0Bp2Pw==, tarball: file:projects/perf-monitor-query.tgz} name: '@rush-temp/perf-monitor-query' version: 0.0.0 dependencies: @@ -21736,7 +21770,7 @@ packages: dev: false file:projects/perf-schema-registry-avro.tgz: - resolution: {integrity: sha512-3mr3ScRWDMFMjuiRuoDnfxAd3YriipKc3H5bORI34h9F0/QiuM3ZaQsbtRtH4UyUH+cEjsWMvKbcCkz6v4FI/g==, tarball: file:projects/perf-schema-registry-avro.tgz} + resolution: {integrity: sha512-q2myGYlOV//vWupwQiXpWaO8J7mIP2LS2xmgWEQuMSAnt4UIjBvPP9aLI8g0vu6fEbs/Vjf27ItzkWQ0UJV4Gg==, tarball: file:projects/perf-schema-registry-avro.tgz} name: '@rush-temp/perf-schema-registry-avro' version: 0.0.0 dependencies: @@ -21755,7 +21789,7 @@ packages: dev: false file:projects/perf-search-documents.tgz: - resolution: {integrity: sha512-QjbYe2HFEPsUWbmsPR+bXUhrk3PUxrcX4nYmiH4vQfvV2nV/rwh7lqpXSmxoiFRIqpFcXVGmPB2S+oNMeHP27w==, tarball: file:projects/perf-search-documents.tgz} + resolution: {integrity: sha512-Nl48GSRKt/yg0loArEeALXH5kKYSrL8cPs3vfwx7PdY2o/5KVxu7PNzadEIbhyg7sRu+FPR+/0SqwEY0zJreSQ==, tarball: file:projects/perf-search-documents.tgz} name: '@rush-temp/perf-search-documents' version: 0.0.0 dependencies: @@ -21775,7 +21809,7 @@ packages: dev: false file:projects/perf-service-bus.tgz: - resolution: {integrity: sha512-X95Hh6NnKKUcwXClbV9iQIxP+1FeXIRs0AvD3NXMctlvTTHFwCmy8MrjwSbOZmbzedg6oVE+8rEBdl4nQpeyZQ==, tarball: file:projects/perf-service-bus.tgz} + resolution: {integrity: sha512-uzOm6V4LesEx4etYTgPNSvTFLhdwb/HC7kDOTUJuD3YgCwu6SO1psK1q+yC7Y7hjXk9ZreKmSE3kpzcMuNIXLA==, tarball: file:projects/perf-service-bus.tgz} name: '@rush-temp/perf-service-bus' version: 0.0.0 dependencies: @@ -21795,7 +21829,7 @@ packages: dev: false file:projects/perf-storage-blob.tgz: - resolution: {integrity: sha512-gnVzxlY1vrAzRzZwxxYq0IpU2a7YPUY19+GM3mhITC1zWOgyJG34mkJgcxO7zIXPJe/4cVUQju5/2ffQ2SpU8w==, tarball: file:projects/perf-storage-blob.tgz} + resolution: {integrity: sha512-Jz4y+ZPirsfYMZ3A9Z5rHD8rqG2tX72FvG7+PCkVuaWszL5814GhXAO1HgHovagQzFYyqtYTmlBod4jiR8D2UA==, tarball: file:projects/perf-storage-blob.tgz} name: '@rush-temp/perf-storage-blob' version: 0.0.0 dependencies: @@ -21813,7 +21847,7 @@ packages: dev: false file:projects/perf-storage-file-datalake.tgz: - resolution: {integrity: sha512-IqNMSbO7Zr0HoLvLmtadH8jS8exN3/o/yV+wmm82TAfGWzvo+H/AAHsbDQwE9KOUnfGzeprtrXw/cAW2+m75DA==, tarball: file:projects/perf-storage-file-datalake.tgz} + resolution: {integrity: sha512-tofYs152ezkrv4HoggV0PK6q2THSgnPEtsXjU2xPX1ptV8015o1pNMb0Ida/CgHlFccTKmcWgq3xH2iA10fNyA==, tarball: file:projects/perf-storage-file-datalake.tgz} name: '@rush-temp/perf-storage-file-datalake' version: 0.0.0 dependencies: @@ -21833,7 +21867,7 @@ packages: dev: false file:projects/perf-storage-file-share.tgz: - resolution: {integrity: sha512-R//6vCw8iYaZIH9hz0Cdc+eL42f8/wFyQPERFgqX1m5pjAOs67OLZsURMisUTvRa3GfDLxf34WD0G5CAVVhNgA==, tarball: file:projects/perf-storage-file-share.tgz} + resolution: {integrity: sha512-PDcmow06NkRgxBuWrX0v469wUEPB33LC6ZoQNxG/G9lPwNJ9mv7RbP3jF0OFmdWS+K9gAbfPd554MHJ1nrSRvA==, tarball: file:projects/perf-storage-file-share.tgz} name: '@rush-temp/perf-storage-file-share' version: 0.0.0 dependencies: @@ -21853,7 +21887,7 @@ packages: dev: false file:projects/perf-template.tgz: - resolution: {integrity: sha512-wIgc9CTNbRy3/eZOC3EW1WpqPO/hqhVYGUIyb0QRFZtcnCNWOaXDf1jHTQWXuqnZigGkMi8I1R1plBvQS6XWcA==, tarball: file:projects/perf-template.tgz} + resolution: {integrity: sha512-gA0gzz4ta8i7VVDmi6MhYqsuWBxFX1Zu7r6Wcqt0DXRo7RUhlLoqXN4R/OTlCuSCXAwi+tXK67DBUpjn6s0Yww==, tarball: file:projects/perf-template.tgz} name: '@rush-temp/perf-template' version: 0.0.0 dependencies: @@ -21873,7 +21907,7 @@ packages: dev: false file:projects/purview-administration.tgz: - resolution: {integrity: sha512-KDYSKwHBdzABEFtMqb/2/6Vsnm5XvuVwSMXMb8zd/tDm8BH65dRAw6t9EEq8EocAYC6vRsyRoebpA+dcSgD2dA==, tarball: file:projects/purview-administration.tgz} + resolution: {integrity: sha512-KPCSRJo1TvsE63C2gWyD6YnTLYlp6MCg02IZEOhWQlvxzqXn9zRXkK4HYy9UOMsla5np0LWOICy9UI7ay9XB0Q==, tarball: file:projects/purview-administration.tgz} name: '@rush-temp/purview-administration' version: 0.0.0 dependencies: @@ -21917,7 +21951,7 @@ packages: dev: false file:projects/purview-catalog.tgz: - resolution: {integrity: sha512-BasykcFDPWO54MdS4LxZnSz1/WXbCwYjCvsY6iC+eFrF8k2y8lawUok37Be6gHA1IYOrnkngsAtLRc2EDS5ptg==, tarball: file:projects/purview-catalog.tgz} + resolution: {integrity: sha512-CEFBMxpRhBnH5GUGC1cetUyAwbPjLhQrubT1PEVmH3m1K7y/RjvNA/C1584nhRAcKCXkiTpz9ZrlPnHKcpksnA==, tarball: file:projects/purview-catalog.tgz} name: '@rush-temp/purview-catalog' version: 0.0.0 dependencies: @@ -21962,7 +21996,7 @@ packages: dev: false file:projects/purview-datamap.tgz: - resolution: {integrity: sha512-U53eAUPumCqhhoEb2TP7D6wjo7SIJA8oEFckjyWVD5sMat2mJ1Q9nO84wsisMDExbLCm3hK6uw7AP2E3iF8WNg==, tarball: file:projects/purview-datamap.tgz} + resolution: {integrity: sha512-F2Hg3geCAheNIHTiNghPPFJT+vkTULOn2YwU8I4mV07rpOECFjad5dh1POzEW81Sh9RzXtLWtXiL5HkSB2MmpA==, tarball: file:projects/purview-datamap.tgz} name: '@rush-temp/purview-datamap' version: 0.0.0 dependencies: @@ -22007,7 +22041,7 @@ packages: dev: false file:projects/purview-scanning.tgz: - resolution: {integrity: sha512-Esa2SINTL5mzkjpbXRoqvR72fityNkJaKI7tAeRm+fmESRFszjbXyk8+GW2t3LoL8YJUjrmgjh+3A1Ul/B2OOA==, tarball: file:projects/purview-scanning.tgz} + resolution: {integrity: sha512-MAFAgiwcmwLLmw5X+8HNE2xqkJwdUqqFKKeJLKodKVtjVhQO97L5jX3GqNozoXAS7eZjnQdi+P5k1PfbXq1S8Q==, tarball: file:projects/purview-scanning.tgz} name: '@rush-temp/purview-scanning' version: 0.0.0 dependencies: @@ -22051,7 +22085,7 @@ packages: dev: false file:projects/purview-sharing.tgz: - resolution: {integrity: sha512-p/+v9ovncMASEn/elUdJQ3wSheixHdZ6HB6wFvmSnRydQ0O9CLCtp6nORpe6dS3JVTFGR7LFWMUDM3Ew5U5x4A==, tarball: file:projects/purview-sharing.tgz} + resolution: {integrity: sha512-OVvpxQ/+9KDikIR6Hp5zmD+Xn69DfQhdFSq6mI6mu2DPDNurxAsjfRqA3JNnOOu8cIYvc3ExWMT+kAhz1brwPw==, tarball: file:projects/purview-sharing.tgz} name: '@rush-temp/purview-sharing' version: 0.0.0 dependencies: @@ -22098,7 +22132,7 @@ packages: dev: false file:projects/purview-workflow.tgz: - resolution: {integrity: sha512-ycpLTjwvL7FMcfvDTdvqlsTVqvAYzZ9u/J9PY0DAxzBs0+UQ5XzitubNi3F5RJrJ7WnztZeiexDaQl9rDiAkjg==, tarball: file:projects/purview-workflow.tgz} + resolution: {integrity: sha512-tLXH0ktZlWU1psUBOOAGcooyXT9CrRwD5E/vOW8hlW8VTWee0w43JxAZQdOe239tUQ6jww3a4b7kVe9CmtZQXQ==, tarball: file:projects/purview-workflow.tgz} name: '@rush-temp/purview-workflow' version: 0.0.0 dependencies: @@ -22143,7 +22177,7 @@ packages: dev: false file:projects/quantum-jobs.tgz: - resolution: {integrity: sha512-RtmI/ZJbREK0zj0aS3BtL1vnG39a0w/+fXI3EnN00gmltxPE9OXYYG6+SOIwaHFdEwBUbOfDTg/w/uo6YoGhRA==, tarball: file:projects/quantum-jobs.tgz} + resolution: {integrity: sha512-AsjNDZ4WiCTmdOLuUTvK0S00F8q5LfUP0U+KE++QzjntPqpT9Zcv3svszyU2UI1mfdHAhLP6Km0A6Go42n5mIQ==, tarball: file:projects/quantum-jobs.tgz} name: '@rush-temp/quantum-jobs' version: 0.0.0 dependencies: @@ -22190,7 +22224,7 @@ packages: dev: false file:projects/schema-registry-avro.tgz: - resolution: {integrity: sha512-Eq/e1qWzLdtru4Z3ROP30OjcMGDFfmdnlJM8ojayLHuwzqCLKAm0stHaBWbRgMYt8q3sFcbxMF/R9V6mqfJtwg==, tarball: file:projects/schema-registry-avro.tgz} + resolution: {integrity: sha512-Oh6qAF6SwMj17y8Wwv481WdcsoFOlWIQtshCitVeFN1kw5aYpjg464zDAuVJD3CG0cfEIRu/ZMZ6j32x+uXO+g==, tarball: file:projects/schema-registry-avro.tgz} name: '@rush-temp/schema-registry-avro' version: 0.0.0 dependencies: @@ -22242,7 +22276,7 @@ packages: dev: false file:projects/schema-registry-json.tgz: - resolution: {integrity: sha512-MR7BqzMim61d9FZGwBZPEeGUPDudpOqLgmCPqKvuP5HWFj+NcxqQluBndBCEuMvvkqt09ISWHF4R7uRB37944w==, tarball: file:projects/schema-registry-json.tgz} + resolution: {integrity: sha512-2ACA1zRgwS8SZN8tVRVL/crU+Kgq7u+hWkZkoPHaPL2eqUzdr0vwhvCIaYC58rtzgSVEe3oz5Db4wzWCQQ4+XA==, tarball: file:projects/schema-registry-json.tgz} name: '@rush-temp/schema-registry-json' version: 0.0.0 dependencies: @@ -22284,7 +22318,7 @@ packages: dev: false file:projects/schema-registry.tgz: - resolution: {integrity: sha512-P/MYVOZ8olpk/mJGxAyIQlOVUHudt+chAEPJ5/r+bvAi1I6nlArtZiysn4FGn+NpuqCYWhkZ5FJF4o091v0NGA==, tarball: file:projects/schema-registry.tgz} + resolution: {integrity: sha512-+YnP25zUKS/ECbiyOu5DgVWOWU2dtcP1BdbCEOLhqUADLWHr87svidmifiWtTzzsZ9szo93RQoiCY68gB7wJ3w==, tarball: file:projects/schema-registry.tgz} name: '@rush-temp/schema-registry' version: 0.0.0 dependencies: @@ -22324,7 +22358,7 @@ packages: dev: false file:projects/search-documents.tgz: - resolution: {integrity: sha512-GESktsjXx8HGFREpbEfHE/qbiq2Bd2Iz02KF7v2SxM2Cp2+SKZhYi6/avQSu744XcYKdky6BXoWb9ff0KZBXBg==, tarball: file:projects/search-documents.tgz} + resolution: {integrity: sha512-a5692cRYXBuqUM7K43Loif1z6wcx8mqlK2MyOXRy5mGrpJEWZcHIztXXxEGPGItUmCATidMUhcnu6eYFuCLnlg==, tarball: file:projects/search-documents.tgz} name: '@rush-temp/search-documents' version: 0.0.0 dependencies: @@ -22370,7 +22404,7 @@ packages: dev: false file:projects/service-bus.tgz: - resolution: {integrity: sha512-WG7g0jbZEzquiFZRRmglUIxIpufyvpP00sh85uXCrY2jOvXv6/TeLCFpZc8zAaikJCIA7LGG3zDjnaT/DCjRBg==, tarball: file:projects/service-bus.tgz} + resolution: {integrity: sha512-guFuPSIa6bzJKKN6outYPg5wcqGt1i6kQFtqI5HJpVdWaaWDOxClo6iMvlKImY73KXiqdr1quXRmGwhj0LPdQQ==, tarball: file:projects/service-bus.tgz} name: '@rush-temp/service-bus' version: 0.0.0 dependencies: @@ -22432,7 +22466,7 @@ packages: dev: false file:projects/storage-blob-changefeed.tgz: - resolution: {integrity: sha512-Gp+UCjBva4S3RMBJDYFU1CzkmZuF8s3mQZrL2hh4smDJx69QPAeC7WUqjNnFF2pIV1O2m6Gb3LnOc+5nINptmQ==, tarball: file:projects/storage-blob-changefeed.tgz} + resolution: {integrity: sha512-aBxHdMHdi62S2QnkF/0ydoiHnP4+8aOQTo7yWrcBdKIeIwodAlV6yfQtbLKV3gCCtTVs0SX5lVRvWpBEVDyDBw==, tarball: file:projects/storage-blob-changefeed.tgz} name: '@rush-temp/storage-blob-changefeed' version: 0.0.0 dependencies: @@ -22482,7 +22516,7 @@ packages: dev: false file:projects/storage-blob.tgz: - resolution: {integrity: sha512-wnGBKBpHtPKawBixChAIefVI/HwYcuTpMz8TZr+5RXnHuRfYsMpuG29+py4NOLjlGpajyTQOKSu65UBr0j0L1Q==, tarball: file:projects/storage-blob.tgz} + resolution: {integrity: sha512-c4s3EabfteDM9U4zR8YFc/Lu11dKz9+tKdGeJWNaXcx9wA2G/COc0joc679ORNHtNsFoDiq2JgF7jWdwKloRQw==, tarball: file:projects/storage-blob.tgz} name: '@rush-temp/storage-blob' version: 0.0.0 dependencies: @@ -22530,7 +22564,7 @@ packages: dev: false file:projects/storage-file-datalake.tgz: - resolution: {integrity: sha512-l5d/VFvoQi+yTOZpDmkxEARAxNQ6G/2WLjHInWGill+aMGhocaCLGsJGJQkXGW3XBxYGFM5YwCE6+rv1OCeu0Q==, tarball: file:projects/storage-file-datalake.tgz} + resolution: {integrity: sha512-yccTud/hEEpuvVe0QuLp2u3hxfg26DJZGliE4E1Ds3kOGWvIw52dQhG3i1mhLr+2cFtFmCHI52Hnl8krGpLPWw==, tarball: file:projects/storage-file-datalake.tgz} name: '@rush-temp/storage-file-datalake' version: 0.0.0 dependencies: @@ -22581,7 +22615,7 @@ packages: dev: false file:projects/storage-file-share.tgz: - resolution: {integrity: sha512-MW+5yYNjh6VHSAnniJUV9p5BGYQXhl93jwFf4T5ubHNSDH2MpYFFyj2Z3hK5q8WW3m/Pq0muMBY6BZW0rqYEnA==, tarball: file:projects/storage-file-share.tgz} + resolution: {integrity: sha512-XjuSsYRRKpbjrhuYUAE5YSI3Yg5/5ThWWQkp1cX5BIfoFGo/ee1Gqslr964QxaPldabqRguoa7VzaWIE8/EXgA==, tarball: file:projects/storage-file-share.tgz} name: '@rush-temp/storage-file-share' version: 0.0.0 dependencies: @@ -22630,7 +22664,7 @@ packages: dev: false file:projects/storage-internal-avro.tgz: - resolution: {integrity: sha512-IxiPSZBWFNOFu/spFMWhJfWFPr0Hmv0ymxPvFxd2rzzErBq7FtCLXG50WN3lF4NKAnJz0Zq1g/PCmfDm1A7QrQ==, tarball: file:projects/storage-internal-avro.tgz} + resolution: {integrity: sha512-4t/mfNU3cPSFrda4xICXkHWwpvKP2FvGrl6qNlY7mPGhZMoll8c2UfMdFYPEfXhRG3tFNYO3EG58wZjhvsU1uw==, tarball: file:projects/storage-internal-avro.tgz} name: '@rush-temp/storage-internal-avro' version: 0.0.0 dependencies: @@ -22673,7 +22707,7 @@ packages: dev: false file:projects/storage-queue.tgz: - resolution: {integrity: sha512-j9Zm8Z5bzsZ9pM/1R/NbUlfhf6xOrszxeHvCeG7fH/CUcMdTT3s9/z5wRv0r2ujQKuemsR1phYFqVI8G1QaPxw==, tarball: file:projects/storage-queue.tgz} + resolution: {integrity: sha512-aIPOBCE1n/QbVe+umwvnHs/JIIQLHvTEjNEs4DrthRrXr9FA18nAk4I4Qw8ckT3VsqAnVqqhSWMtrsF2Xv+pqA==, tarball: file:projects/storage-queue.tgz} name: '@rush-temp/storage-queue' version: 0.0.0 dependencies: @@ -22718,7 +22752,7 @@ packages: dev: false file:projects/synapse-access-control-1.tgz: - resolution: {integrity: sha512-wsawV3NYrXi5EvnkoUa5lW26x9ixfhWek/7GGy6cqjbLEoV9HKEwrW/PGTSa11nuflfUUJdnh/kE9/ZZnqhZFw==, tarball: file:projects/synapse-access-control-1.tgz} + resolution: {integrity: sha512-zaGVyaIBrK9tyHMXDLtaDoWtN5InTtO9YGwxNjkx9I+tk8Ks0j34GLoX43BvtX/ToQMIKrOeci7NnboJ7tXj3g==, tarball: file:projects/synapse-access-control-1.tgz} name: '@rush-temp/synapse-access-control-1' version: 0.0.0 dependencies: @@ -22764,7 +22798,7 @@ packages: dev: false file:projects/synapse-access-control.tgz: - resolution: {integrity: sha512-8vnpsFHik+27ge9j3KertZQ1W5W10SEpK5bQYQ5kUc+sj3XsIZMCkpMStwKqrIhJzd3yckQGlkLVOyigm0Udyw==, tarball: file:projects/synapse-access-control.tgz} + resolution: {integrity: sha512-5knc1WqJIw8b6eAEt8Bm88703RybGKDOMqJ7vGbnrMWooXjDmBUrc9DBrTjNjM6UHooqh1ChriAJ4iZW6GvFYg==, tarball: file:projects/synapse-access-control.tgz} name: '@rush-temp/synapse-access-control' version: 0.0.0 dependencies: @@ -22813,7 +22847,7 @@ packages: dev: false file:projects/synapse-artifacts.tgz: - resolution: {integrity: sha512-1L9Y4NbZCbyR1JQvXEuiynGBkIPnq8/bQndWVRdWqpcZQtr8m/q3O9qNUp4f+MWc+EUQlA08pWKVtrQgrwsVSg==, tarball: file:projects/synapse-artifacts.tgz} + resolution: {integrity: sha512-8V1BRLBWq3IS+QOGT37+/xcsBDa2x70z3zDrsjlP/8aZCFIVNHMPCgZNqMXK3Q3/B5AtjfZmj07Z6+BoTZejjQ==, tarball: file:projects/synapse-artifacts.tgz} name: '@rush-temp/synapse-artifacts' version: 0.0.0 dependencies: @@ -22864,7 +22898,7 @@ packages: dev: false file:projects/synapse-managed-private-endpoints.tgz: - resolution: {integrity: sha512-xI5pnusbNS3YF1Kt3Jqo2WfZ8/Zzn9bA5YheXdjSK1SlyzB4duH7sa+GqoYegd4sJiDO5RGk2FRIcrnc+LXiRA==, tarball: file:projects/synapse-managed-private-endpoints.tgz} + resolution: {integrity: sha512-t716orNaK2a57kim6vchh856W1ZJL+N1AeM5/MCjo+IyqJ7G/2xANrw2f6nA1jQhw9gYY4ltAjuXEpsRgwln0w==, tarball: file:projects/synapse-managed-private-endpoints.tgz} name: '@rush-temp/synapse-managed-private-endpoints' version: 0.0.0 dependencies: @@ -22907,7 +22941,7 @@ packages: dev: false file:projects/synapse-monitoring.tgz: - resolution: {integrity: sha512-JGvFLQaloQ6ooq4FDGXLE2VOq0E5LYF2B2S62zMKPb9lRl4px2Wk1JfjapwIzTck3vi5YNqLUQuI5ar3rRyYFQ==, tarball: file:projects/synapse-monitoring.tgz} + resolution: {integrity: sha512-dNdbppT+aoNAi1B0ihGofcFFQt/eEwx5XAC4Pm8QdFfpuAmdstaF//8q2h5z3DO4/hXNorIU1ZKiyXrczMsZlQ==, tarball: file:projects/synapse-monitoring.tgz} name: '@rush-temp/synapse-monitoring' version: 0.0.0 dependencies: @@ -22944,7 +22978,7 @@ packages: dev: false file:projects/synapse-spark.tgz: - resolution: {integrity: sha512-rgCNFUjX6R35CqxPoZxj/3N3ffGSQ6/TSTJHxHTmLGDSzS7KFVUuK1Sztw/pRGhTTSEBAMa/DZjV7lkIQOMdwQ==, tarball: file:projects/synapse-spark.tgz} + resolution: {integrity: sha512-1SsLxCbj4g1CxyXOyjA00O6fX4nso1IVDAllOlEypk2TMCKGMn8NVm15c3UTU0OILHMYDoukiCUpFvjpFYzC5g==, tarball: file:projects/synapse-spark.tgz} name: '@rush-temp/synapse-spark' version: 0.0.0 dependencies: @@ -22987,7 +23021,7 @@ packages: dev: false file:projects/template-dpg.tgz: - resolution: {integrity: sha512-era64OOVVbq7t8sO6CuyVXIMzWBhkJQuVHIYTqjH0jyQPkgbo8waOhwsfEz0sK7dGChhDniYlwP+vnFp/lu6lg==, tarball: file:projects/template-dpg.tgz} + resolution: {integrity: sha512-ssjfeFbOjK+WKB4w5KiaKD7rO6agOIPv/73YxRx53BQ1M/C54JDGijoIvphGhdZqRLO+25x57AphmNqTolhFBw==, tarball: file:projects/template-dpg.tgz} name: '@rush-temp/template-dpg' version: 0.0.0 dependencies: @@ -23030,7 +23064,7 @@ packages: dev: false file:projects/template.tgz: - resolution: {integrity: sha512-Z4jVfdc6F0pVx6TKZMxewtMI9hglqb9vQndoRzYF3+EzAwIulmw5+ukixt9UQSrUD/swoIgx6mxtVmHitSle7A==, tarball: file:projects/template.tgz} + resolution: {integrity: sha512-eKSJx2ZXbvSb94L5as0GWfbmA8IA9lw0+6yl/kFid2b/7OEmkuF5sguhxjIV85c+JaIBHYr1qmC/SNngPH9m/A==, tarball: file:projects/template.tgz} name: '@rush-temp/template' version: 0.0.0 dependencies: @@ -23068,7 +23102,7 @@ packages: dev: false file:projects/test-credential.tgz: - resolution: {integrity: sha512-cnqkP/8hJEC4wKnBQfZ4fJ7b5ycRsqA2iDWtEAYjJL90rRBIImhPwOGK5o2FMGQTyPeHPqtiL8oK4X7AOpwxKA==, tarball: file:projects/test-credential.tgz} + resolution: {integrity: sha512-8Ote+CSTzRrooFVH8YydipORldevCZKRiGewr+LUGX/d9GrYCCYjEHT4nz1lnINoXT0eSqu1NOpZHkeR46b8Lg==, tarball: file:projects/test-credential.tgz} name: '@rush-temp/test-credential' version: 0.0.0 dependencies: @@ -23087,7 +23121,7 @@ packages: dev: false file:projects/test-perf.tgz: - resolution: {integrity: sha512-ZwPBFlm7U2LjZCUqsJJrNubufkZA5WPNQvRqlj9yXXYaSrtQtcV8LutkBWMy3BTFP3QlPU/7Omj/MeLt7BNnBA==, tarball: file:projects/test-perf.tgz} + resolution: {integrity: sha512-eCcCwe+SGSmOt4GBA750BoYWLV7cnEc5E2Dn6D7aoszG9JtCnI1lsY66kFo5D4uLPzM1Kxoud6l5El9oCDyP2Q==, tarball: file:projects/test-perf.tgz} name: '@rush-temp/test-perf' version: 0.0.0 dependencies: @@ -23115,7 +23149,7 @@ packages: dev: false file:projects/test-recorder.tgz: - resolution: {integrity: sha512-qlOsal3Yvx1QrCLwKsxTE0dg1WKpjeZG9zhgNpFb1A9DUVTCb1DoHeUUFzNqDYd4CcLbcd1CTfFcl2UxLPyo7g==, tarball: file:projects/test-recorder.tgz} + resolution: {integrity: sha512-qfNIYuEB3D4HDHkMw51pBk0eN5HDsimcSbFBgI+UQtAn9RByPq+Ho52w6O3NwBmn/fSKvKh/4JR18PLTzCeRoQ==, tarball: file:projects/test-recorder.tgz} name: '@rush-temp/test-recorder' version: 0.0.0 dependencies: @@ -23151,7 +23185,7 @@ packages: dev: false file:projects/test-utils.tgz: - resolution: {integrity: sha512-u4u9CDY3LLHpKg7655DGRsaWaieW93zWY7S0K3e+VOzqwMfGtVPCynsjQ0pfH+7yWl2YuR4HA6Frnitfauq4JQ==, tarball: file:projects/test-utils.tgz} + resolution: {integrity: sha512-uf7jHfyR4w/5UiwsXP0XKAcm5RUaMgEfNS5No5hvB41Z64MtXXiHugen9N81PYuiEV5u9uXnMJ10YVJj4BD7Eg==, tarball: file:projects/test-utils.tgz} name: '@rush-temp/test-utils' version: 0.0.0 dependencies: @@ -23188,7 +23222,7 @@ packages: dev: false file:projects/ts-http-runtime.tgz: - resolution: {integrity: sha512-HXO7Lv/cwgn5X1kgOUzXUWEG4amdxRLrjwPFBKX/R7Zg7k3GjyTgDJTQ+pQkkc9rZd28xI+4EfnOKVulDojROQ==, tarball: file:projects/ts-http-runtime.tgz} + resolution: {integrity: sha512-K3f2DI85IyC5yyUspHmIy8YQrixNXouxaU7eeoLhs1YxuzeMseUGyR8NLS36w2iGkbgl8rLLh71cyd8oBCYjJA==, tarball: file:projects/ts-http-runtime.tgz} name: '@rush-temp/ts-http-runtime' version: 0.0.0 dependencies: @@ -23223,7 +23257,7 @@ packages: dev: false file:projects/vite-plugin-browser-test-map.tgz: - resolution: {integrity: sha512-qKZHdG8f3LTACHV3PdZsjAm8dC+A9GyANO24iYg7ATkihTPXf4nO8l7RR9Ur1bHkDyqqMq2AIosv0QhEH5pvnQ==, tarball: file:projects/vite-plugin-browser-test-map.tgz} + resolution: {integrity: sha512-mCraP3jfWR4/X9V0+o2LLCczyZ/MvB7LfMgdSJ+K2Fg0eg4CmjhL4QaQi24JrhG8BgqVmM7GumlmMkbafTwomA==, tarball: file:projects/vite-plugin-browser-test-map.tgz} name: '@rush-temp/vite-plugin-browser-test-map' version: 0.0.0 dependencies: @@ -23238,7 +23272,7 @@ packages: dev: false file:projects/web-pubsub-client-protobuf.tgz: - resolution: {integrity: sha512-vdkFdbPaJxfF0sQYKXWdKHmIj0z9nWXMo/hn2pMwDO/sxWXxFbNfgEq9I6G/NgN1UsG5mTaYBGg+9Kj4FqBTJw==, tarball: file:projects/web-pubsub-client-protobuf.tgz} + resolution: {integrity: sha512-qXG3DYW78XCaEFGRbiYH7WpNB727a4TC7NA71DbHulyriLYWb2GFRushObANDOpRFCea3pF4rwu1bJK6kS7Y6A==, tarball: file:projects/web-pubsub-client-protobuf.tgz} name: '@rush-temp/web-pubsub-client-protobuf' version: 0.0.0 dependencies: @@ -23297,7 +23331,7 @@ packages: dev: false file:projects/web-pubsub-client.tgz: - resolution: {integrity: sha512-m+IY0VupXTyW3MIox9verksiyHQ4IxqeiUML2XtKJ/kB+g4xhSE2Xrr42HnL3izL9FLVxJrodBQXy/jVvFfakQ==, tarball: file:projects/web-pubsub-client.tgz} + resolution: {integrity: sha512-laYMEsCoTMSHz8WCDoiMDTWcYwDkFzS7+IaUT//G+gU4Zzv2KcQXOxs/PMVQyropNz6/NK/EisjJPVo0rxsYgQ==, tarball: file:projects/web-pubsub-client.tgz} name: '@rush-temp/web-pubsub-client' version: 0.0.0 dependencies: @@ -23351,7 +23385,7 @@ packages: dev: false file:projects/web-pubsub-express.tgz: - resolution: {integrity: sha512-F6zi+OEVdbjyA9WHbPYJ5IPxwqV4GftEL9ts0Un9XI69az7MRx4AzDqjBT2fMRRQqBev8nwSsFuaFjO/Ie5cDg==, tarball: file:projects/web-pubsub-express.tgz} + resolution: {integrity: sha512-JkCH8kWGJZffxvML9ilscmbLpAoEidWvxMaYI5na4tpbB/g/Zh1T6NnrGRgI3kQAu9O8XmCqd8I33ZreroQdJA==, tarball: file:projects/web-pubsub-express.tgz} name: '@rush-temp/web-pubsub-express' version: 0.0.0 dependencies: @@ -23386,7 +23420,7 @@ packages: dev: false file:projects/web-pubsub.tgz: - resolution: {integrity: sha512-swVtqxuR+FDz54JwOA4JSKFgsdum+CM+AmqBVg9d/yu5CNE0pdKDC86iMql1cV3jV+VYgIDn13ga/4F066soxw==, tarball: file:projects/web-pubsub.tgz} + resolution: {integrity: sha512-1+KD+A58E+Y1LQ+uhKwGoubA0zOZZC9wk0XqRgLGxe4g/VJ6UQ4ukAp3zMqDOKHVshFZGcu2uq/yxcVaS85Rsw==, tarball: file:projects/web-pubsub.tgz} name: '@rush-temp/web-pubsub' version: 0.0.0 dependencies: diff --git a/rush.json b/rush.json index 7341635ae9d1..fa877e6107b2 100644 --- a/rush.json +++ b/rush.json @@ -1,7 +1,7 @@ /** * This is the main configuration file for Rush. * For full documentation, please see https://rushjs.io - */ { + */{ "$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json", /** * (Required) This specifies the version of the Rush engine to be used in this repo. @@ -2201,6 +2201,11 @@ "packageName": "@azure/arm-standbypool", "projectFolder": "sdk/standbypool/arm-standbypool", "versionPolicyName": "management" + }, + { + "packageName": "@azure/arm-Oracle.Database", + "projectFolder": "sdk/Oracle.Database/arm-Oracle.Database", + "versionPolicyName": "management" } ] -} +} \ No newline at end of file diff --git a/sdk/Oracle.Database/arm-Oracle.Database/CHANGELOG.md b/sdk/Oracle.Database/arm-Oracle.Database/CHANGELOG.md new file mode 100644 index 000000000000..9c09328ce0d2 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/CHANGELOG.md @@ -0,0 +1,5 @@ +# Release History + +## 1.0.0-beta.1 (2024-05-10) + +The package of @azure/arm-Oracle.Database is using our next generation design principles. To learn more, please refer to our documentation [Quick Start](https://aka.ms/azsdk/js/mgmt/quickstart). diff --git a/sdk/Oracle.Database/arm-Oracle.Database/LICENSE b/sdk/Oracle.Database/arm-Oracle.Database/LICENSE new file mode 100644 index 000000000000..7d5934740965 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2024 Microsoft + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/sdk/Oracle.Database/arm-Oracle.Database/README.md b/sdk/Oracle.Database/arm-Oracle.Database/README.md new file mode 100644 index 000000000000..6573f3604592 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/README.md @@ -0,0 +1,109 @@ +# Azure OracleDatabaseResourceManager client library for JavaScript + +This package contains an isomorphic SDK (runs both in Node.js and in browsers) for Azure OracleDatabaseResourceManager client. + + + +[Source code](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/Oracle.Database/arm-Oracle.Database) | +[Package (NPM)](https://www.npmjs.com/package/@azure/arm-Oracle.Database) | +[API reference documentation](https://docs.microsoft.com/javascript/api/@azure/arm-Oracle.Database?view=azure-node-preview) | +[Samples](https://github.com/Azure-Samples/azure-samples-js-management) + +## Getting started + +### Currently supported environments + +- [LTS versions of Node.js](https://github.com/nodejs/release#release-schedule) +- Latest versions of Safari, Chrome, Edge and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + +### Prerequisites + +- An [Azure subscription][azure_sub]. + +### Install the `@azure/arm-Oracle.Database` package + +Install the Azure OracleDatabaseResourceManager client library for JavaScript with `npm`: + +```bash +npm install @azure/arm-Oracle.Database +``` + +### Create and authenticate a `OracleDatabaseResourceManager` + +To create a client object to access the Azure OracleDatabaseResourceManager API, you will need the `endpoint` of your Azure OracleDatabaseResourceManager resource and a `credential`. The Azure OracleDatabaseResourceManager client can use Azure Active Directory credentials to authenticate. +You can find the endpoint for your Azure OracleDatabaseResourceManager resource in the [Azure Portal][azure_portal]. + +You can authenticate with Azure Active Directory using a credential from the [@azure/identity][azure_identity] library or [an existing AAD Token](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/identity/identity/samples/AzureIdentityExamples.md#authenticating-with-a-pre-fetched-access-token). + +To use the [DefaultAzureCredential][defaultazurecredential] provider shown below, or other credential providers provided with the Azure SDK, please install the `@azure/identity` package: + +```bash +npm install @azure/identity +``` + +You will also need to **register a new AAD application and grant access to Azure OracleDatabaseResourceManager** by assigning the suitable role to your service principal (note: roles such as `"Owner"` will not grant the necessary permissions). +Set the values of the client ID, tenant ID, and client secret of the AAD application as environment variables: `AZURE_CLIENT_ID`, `AZURE_TENANT_ID`, `AZURE_CLIENT_SECRET`. + +For more information about how to create an Azure AD Application check out [this guide](https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal). + +```javascript +const { OracleDatabaseResourceManager } = require("@azure/arm-Oracle.Database"); +const { DefaultAzureCredential } = require("@azure/identity"); +// For client-side applications running in the browser, use InteractiveBrowserCredential instead of DefaultAzureCredential. See https://aka.ms/azsdk/js/identity/examples for more details. + +const subscriptionId = "00000000-0000-0000-0000-000000000000"; +const client = new OracleDatabaseResourceManager(new DefaultAzureCredential(), subscriptionId); + +// For client-side applications running in the browser, use this code instead: +// const credential = new InteractiveBrowserCredential({ +// tenantId: "", +// clientId: "" +// }); +// const client = new OracleDatabaseResourceManager(credential, subscriptionId); +``` + + +### JavaScript Bundle +To use this client library in the browser, first you need to use a bundler. For details on how to do this, please refer to our [bundling documentation](https://aka.ms/AzureSDKBundling). + +## Key concepts + +### OracleDatabaseResourceManager + +`OracleDatabaseResourceManager` is the primary interface for developers using the Azure OracleDatabaseResourceManager client library. Explore the methods on this client object to understand the different features of the Azure OracleDatabaseResourceManager service that you can access. + +## Troubleshooting + +### Logging + +Enabling logging may help uncover useful information about failures. In order to see a log of HTTP requests and responses, set the `AZURE_LOG_LEVEL` environment variable to `info`. Alternatively, logging can be enabled at runtime by calling `setLogLevel` in the `@azure/logger`: + +```javascript +const { setLogLevel } = require("@azure/logger"); +setLogLevel("info"); +``` + +For more detailed instructions on how to enable logs, you can look at the [@azure/logger package docs](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/logger). + +## Next steps + +Please take a look at the [samples](https://github.com/Azure-Samples/azure-samples-js-management) directory for detailed examples on how to use this library. + +## Contributing + +If you'd like to contribute to this library, please read the [contributing guide](https://github.com/Azure/azure-sdk-for-js/blob/main/CONTRIBUTING.md) to learn more about how to build and test the code. + +## Related projects + +- [Microsoft Azure SDK for JavaScript](https://github.com/Azure/azure-sdk-for-js) + +![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js%2Fsdk%2FOracle.Database%2Farm-Oracle.Database%2FREADME.png) + +[azure_cli]: https://docs.microsoft.com/cli/azure +[azure_sub]: https://azure.microsoft.com/free/ +[azure_sub]: https://azure.microsoft.com/free/ +[azure_portal]: https://portal.azure.com +[azure_identity]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/identity/identity +[defaultazurecredential]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/identity/identity#defaultazurecredential diff --git a/sdk/Oracle.Database/arm-Oracle.Database/_meta.json b/sdk/Oracle.Database/arm-Oracle.Database/_meta.json new file mode 100644 index 000000000000..3f89056b4a8c --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/_meta.json @@ -0,0 +1,8 @@ +{ + "commit": "6c7ed2b6656715fc08c3952a574de52239cc51a4", + "readme": "specification/oracle/resource-manager/readme.md", + "autorest_command": "autorest --version=3.9.7 --typescript --modelerfour.lenient-model-deduplication --azure-arm --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-js ../azure-rest-api-specs/specification/oracle/resource-manager/readme.md --use=@autorest/typescript@^6.0.12", + "repository_url": "https://github.com/Azure/azure-rest-api-specs.git", + "release_tool": "@azure-tools/js-sdk-release-tools@2.7.8", + "use": "@autorest/typescript@^6.0.12" +} \ No newline at end of file diff --git a/sdk/Oracle.Database/arm-Oracle.Database/api-extractor.json b/sdk/Oracle.Database/arm-Oracle.Database/api-extractor.json new file mode 100644 index 000000000000..1e567106e7b3 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/api-extractor.json @@ -0,0 +1,31 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", + "mainEntryPointFilePath": "./dist-esm/src/index.d.ts", + "docModel": { + "enabled": true + }, + "apiReport": { + "enabled": true, + "reportFolder": "./review" + }, + "dtsRollup": { + "enabled": true, + "untrimmedFilePath": "", + "publicTrimmedFilePath": "./types/arm-Oracle.Database.d.ts" + }, + "messages": { + "tsdocMessageReporting": { + "default": { + "logLevel": "none" + } + }, + "extractorMessageReporting": { + "ae-missing-release-tag": { + "logLevel": "none" + }, + "ae-unresolved-link": { + "logLevel": "none" + } + } + } +} \ No newline at end of file diff --git a/sdk/Oracle.Database/arm-Oracle.Database/package.json b/sdk/Oracle.Database/arm-Oracle.Database/package.json new file mode 100644 index 000000000000..0cdef89a82f7 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/package.json @@ -0,0 +1,110 @@ +{ + "name": "@azure/arm-Oracle.Database", + "sdk-type": "mgmt", + "author": "Microsoft Corporation", + "description": "A generated SDK for OracleDatabaseResourceManager.", + "version": "1.0.0-beta.1", + "engines": { + "node": ">=18.0.0" + }, + "dependencies": { + "@azure/core-lro": "^2.5.4", + "@azure/abort-controller": "^1.0.0", + "@azure/core-paging": "^1.2.0", + "@azure/core-client": "^1.7.0", + "@azure/core-auth": "^1.6.0", + "@azure/core-rest-pipeline": "^1.14.0", + "tslib": "^2.2.0" + }, + "keywords": [ + "node", + "azure", + "typescript", + "browser", + "isomorphic" + ], + "license": "MIT", + "main": "./dist/index.js", + "module": "./dist-esm/src/index.js", + "types": "./types/arm-Oracle.Database.d.ts", + "devDependencies": { + "@microsoft/api-extractor": "^7.31.1", + "mkdirp": "^3.0.1", + "typescript": "~5.4.5", + "uglify-js": "^3.4.9", + "rimraf": "^5.0.0", + "dotenv": "^16.0.0", + "@azure/dev-tool": "^1.0.0", + "@azure/identity": "^4.0.1", + "@azure-tools/test-recorder": "^3.0.0", + "@azure-tools/test-credential": "^1.0.0", + "mocha": "^10.0.0", + "@types/mocha": "^10.0.0", + "tsx": "^4.7.1", + "@types/chai": "^4.2.8", + "chai": "^4.2.0", + "cross-env": "^7.0.2", + "@types/node": "^18.0.0", + "ts-node": "^10.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/Azure/azure-sdk-for-js.git" + }, + "bugs": { + "url": "https://github.com/Azure/azure-sdk-for-js/issues" + }, + "files": [ + "dist/**/*.js", + "dist/**/*.js.map", + "dist/**/*.d.ts", + "dist/**/*.d.ts.map", + "dist-esm/**/*.js", + "dist-esm/**/*.js.map", + "dist-esm/**/*.d.ts", + "dist-esm/**/*.d.ts.map", + "src/**/*.ts", + "README.md", + "LICENSE", + "tsconfig.json", + "review/*", + "CHANGELOG.md", + "types/*" + ], + "scripts": { + "build": "npm run clean && tsc && dev-tool run bundle && npm run minify && mkdirp ./review && npm run extract-api", + "minify": "uglifyjs -c -m --comments --source-map \"content='./dist/index.js.map'\" -o ./dist/index.min.js ./dist/index.js", + "prepack": "npm run build", + "pack": "npm pack 2>&1", + "extract-api": "dev-tool run extract-api", + "lint": "echo skipped", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "build:node": "echo skipped", + "build:browser": "echo skipped", + "build:test": "echo skipped", + "build:samples": "echo skipped.", + "check-format": "echo skipped", + "execute:samples": "echo skipped", + "format": "echo skipped", + "test": "npm run integration-test", + "test:node": "echo skipped", + "test:browser": "echo skipped", + "unit-test": "npm run unit-test:node && npm run unit-test:browser", + "unit-test:node": "cross-env TEST_MODE=playback npm run integration-test:node", + "unit-test:browser": "echo skipped", + "integration-test": "npm run integration-test:node && npm run integration-test:browser", + "integration-test:node": "dev-tool run test:node-ts-input -- --timeout 1200000 'test/*.ts'", + "integration-test:browser": "echo skipped" + }, + "sideEffects": false, + "//metadata": { + "constantPaths": [ + { + "path": "src/oracleDatabaseResourceManager.ts", + "prefix": "packageDetails" + } + ] + }, + "autoPublish": true, + "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/Oracle.Database/arm-Oracle.Database" +} \ No newline at end of file diff --git a/sdk/Oracle.Database/arm-Oracle.Database/review/arm-Oracle.Database.api.md b/sdk/Oracle.Database/arm-Oracle.Database/review/arm-Oracle.Database.api.md new file mode 100644 index 000000000000..ad90a28bc478 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/review/arm-Oracle.Database.api.md @@ -0,0 +1,2511 @@ +## API Report File for "@azure/arm-Oracle.Database" + +> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). + +```ts + +import * as coreAuth from '@azure/core-auth'; +import * as coreClient from '@azure/core-client'; +import { OperationState } from '@azure/core-lro'; +import { PagedAsyncIterableIterator } from '@azure/core-paging'; +import { SimplePollerLike } from '@azure/core-lro'; + +// @public +export type ActionType = string; + +// @public +export interface ActivationLinks { + readonly existingCloudAccountActivationLink?: string; + readonly newCloudAccountActivationLink?: string; +} + +// @public +export interface AddRemoveDbNode { + dbServers: string[]; +} + +// @public +export interface AllConnectionStringType { + high?: string; + low?: string; + medium?: string; +} + +// @public +export interface ApexDetailsType { + apexVersion?: string; + ordsVersion?: string; +} + +// @public +export interface AutonomousDatabase extends TrackedResource { + readonly actualUsedDataStorageSizeInTbs?: number; + adminPassword?: string; + readonly allocatedStorageSizeInTbs?: number; + readonly apexDetails?: ApexDetailsType; + autonomousDatabaseId?: string; + autonomousMaintenanceScheduleType?: AutonomousMaintenanceScheduleType; + readonly availableUpgradeVersions?: string[]; + backupRetentionPeriodInDays?: number; + characterSet?: string; + computeCount?: number; + computeModel?: ComputeModel; + readonly connectionStrings?: ConnectionStringType; + readonly connectionUrls?: ConnectionUrlType; + cpuCoreCount?: number; + customerContacts?: CustomerContact[]; + databaseEdition?: DatabaseEditionType; + dataBaseType?: DataBaseType; + readonly dataSafeStatus?: DataSafeStatusType; + dataStorageSizeInGbs?: number; + dataStorageSizeInTbs?: number; + dbVersion?: string; + dbWorkload?: WorkloadType; + displayName?: string; + readonly failedDataRecoveryInSeconds?: number; + readonly inMemoryAreaInGbs?: number; + isAutoScalingEnabled?: boolean; + isAutoScalingForStorageEnabled?: boolean; + isLocalDataGuardEnabled?: boolean; + isMtlsConnectionRequired?: boolean; + readonly isPreview?: boolean; + isPreviewVersionWithServiceTermsAccepted?: boolean; + readonly isRemoteDataGuardEnabled?: boolean; + licenseModel?: LicenseModel; + readonly lifecycleDetails?: string; + readonly lifecycleState?: AutonomousDatabaseLifecycleState; + localAdgAutoFailoverMaxDataLossLimit?: number; + readonly localDisasterRecoveryType?: DisasterRecoveryType; + readonly localStandbyDb?: AutonomousDatabaseStandbySummary; + readonly memoryPerOracleComputeUnitInGbs?: number; + ncharacterSet?: string; + readonly ocid?: string; + readonly ociUrl?: string; + openMode?: OpenModeType; + readonly operationsInsightsStatus?: OperationsInsightsStatusType; + peerDbId?: string; + readonly peerDbIds?: string[]; + permissionLevel?: PermissionLevelType; + readonly privateEndpoint?: string; + privateEndpointIp?: string; + privateEndpointLabel?: string; + readonly provisionableCpus?: number[]; + readonly provisioningState?: AzureResourceProvisioningState; + role?: RoleType; + scheduledOperations?: ScheduledOperationsType; + readonly serviceConsoleUrl?: string; + readonly sqlWebDeveloperUrl?: string; + subnetId?: string; + readonly supportedRegionsToCloneTo?: string[]; + readonly timeCreated?: Date; + readonly timeDataGuardRoleChanged?: string; + readonly timeDeletionOfFreeAutonomousDatabase?: string; + readonly timeLocalDataGuardEnabled?: string; + readonly timeMaintenanceBegin?: Date; + readonly timeMaintenanceEnd?: Date; + readonly timeOfLastFailover?: string; + readonly timeOfLastRefresh?: string; + readonly timeOfLastRefreshPoint?: string; + readonly timeOfLastSwitchover?: string; + readonly timeReclamationOfFreeAutonomousDatabase?: string; + readonly usedDataStorageSizeInGbs?: number; + readonly usedDataStorageSizeInTbs?: number; + vnetId?: string; + whitelistedIps?: string[]; +} + +// @public +export interface AutonomousDatabaseBackup extends ProxyResource { + readonly autonomousDatabaseId?: string; + readonly databaseSizeInTBs?: number; + readonly dbVersion?: string; + displayName?: string; + readonly isAutomatic?: boolean; + readonly isRestorable?: boolean; + readonly lifecycleDetails?: string; + readonly lifecycleState?: AutonomousDatabaseBackupLifecycleState; + readonly ocid?: string; + readonly provisioningState?: AzureResourceProvisioningState; + retentionPeriodInDays?: number; + readonly sizeInTBs?: number; + readonly timeAvailableTil?: Date; + readonly timeEnded?: string; + readonly typePropertiesType?: AutonomousDatabaseBackupType; +} + +// @public +export type AutonomousDatabaseBackupLifecycleState = string; + +// @public +export interface AutonomousDatabaseBackupListResult { + readonly nextLink?: string; + value: AutonomousDatabaseBackup[]; +} + +// @public +export interface AutonomousDatabaseBackups { + beginCreateOrUpdate(resourceGroupName: string, autonomousdatabasename: string, adbbackupid: string, resource: AutonomousDatabaseBackup, options?: AutonomousDatabaseBackupsCreateOrUpdateOptionalParams): Promise, AutonomousDatabaseBackupsCreateOrUpdateResponse>>; + beginCreateOrUpdateAndWait(resourceGroupName: string, autonomousdatabasename: string, adbbackupid: string, resource: AutonomousDatabaseBackup, options?: AutonomousDatabaseBackupsCreateOrUpdateOptionalParams): Promise; + beginDelete(resourceGroupName: string, autonomousdatabasename: string, adbbackupid: string, options?: AutonomousDatabaseBackupsDeleteOptionalParams): Promise, AutonomousDatabaseBackupsDeleteResponse>>; + beginDeleteAndWait(resourceGroupName: string, autonomousdatabasename: string, adbbackupid: string, options?: AutonomousDatabaseBackupsDeleteOptionalParams): Promise; + beginUpdate(resourceGroupName: string, autonomousdatabasename: string, adbbackupid: string, properties: AutonomousDatabaseBackupUpdate, options?: AutonomousDatabaseBackupsUpdateOptionalParams): Promise, AutonomousDatabaseBackupsUpdateResponse>>; + beginUpdateAndWait(resourceGroupName: string, autonomousdatabasename: string, adbbackupid: string, properties: AutonomousDatabaseBackupUpdate, options?: AutonomousDatabaseBackupsUpdateOptionalParams): Promise; + get(resourceGroupName: string, autonomousdatabasename: string, adbbackupid: string, options?: AutonomousDatabaseBackupsGetOptionalParams): Promise; + listByAutonomousDatabase(resourceGroupName: string, autonomousdatabasename: string, options?: AutonomousDatabaseBackupsListByAutonomousDatabaseOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export interface AutonomousDatabaseBackupsCreateOrUpdateHeaders { + retryAfter?: number; +} + +// @public +export interface AutonomousDatabaseBackupsCreateOrUpdateOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type AutonomousDatabaseBackupsCreateOrUpdateResponse = AutonomousDatabaseBackup; + +// @public +export interface AutonomousDatabaseBackupsDeleteHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface AutonomousDatabaseBackupsDeleteOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type AutonomousDatabaseBackupsDeleteResponse = AutonomousDatabaseBackupsDeleteHeaders; + +// @public +export interface AutonomousDatabaseBackupsGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabaseBackupsGetResponse = AutonomousDatabaseBackup; + +// @public +export interface AutonomousDatabaseBackupsListByAutonomousDatabaseNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabaseBackupsListByAutonomousDatabaseNextResponse = AutonomousDatabaseBackupListResult; + +// @public +export interface AutonomousDatabaseBackupsListByAutonomousDatabaseOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabaseBackupsListByAutonomousDatabaseResponse = AutonomousDatabaseBackupListResult; + +// @public +export interface AutonomousDatabaseBackupsUpdateHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface AutonomousDatabaseBackupsUpdateOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type AutonomousDatabaseBackupsUpdateResponse = AutonomousDatabaseBackup; + +// @public +export type AutonomousDatabaseBackupType = string; + +// @public +export interface AutonomousDatabaseBackupUpdate { + retentionPeriodInDays?: number; +} + +// @public +export interface AutonomousDatabaseBaseProperties { + readonly actualUsedDataStorageSizeInTbs?: number; + adminPassword?: string; + readonly allocatedStorageSizeInTbs?: number; + readonly apexDetails?: ApexDetailsType; + autonomousDatabaseId?: string; + autonomousMaintenanceScheduleType?: AutonomousMaintenanceScheduleType; + readonly availableUpgradeVersions?: string[]; + backupRetentionPeriodInDays?: number; + characterSet?: string; + computeCount?: number; + computeModel?: ComputeModel; + readonly connectionStrings?: ConnectionStringType; + readonly connectionUrls?: ConnectionUrlType; + cpuCoreCount?: number; + customerContacts?: CustomerContact[]; + databaseEdition?: DatabaseEditionType; + dataBaseType: "Clone" | "Regular"; + readonly dataSafeStatus?: DataSafeStatusType; + dataStorageSizeInGbs?: number; + dataStorageSizeInTbs?: number; + dbVersion?: string; + dbWorkload?: WorkloadType; + displayName?: string; + readonly failedDataRecoveryInSeconds?: number; + readonly inMemoryAreaInGbs?: number; + isAutoScalingEnabled?: boolean; + isAutoScalingForStorageEnabled?: boolean; + isLocalDataGuardEnabled?: boolean; + isMtlsConnectionRequired?: boolean; + readonly isPreview?: boolean; + isPreviewVersionWithServiceTermsAccepted?: boolean; + readonly isRemoteDataGuardEnabled?: boolean; + licenseModel?: LicenseModel; + readonly lifecycleDetails?: string; + readonly lifecycleState?: AutonomousDatabaseLifecycleState; + localAdgAutoFailoverMaxDataLossLimit?: number; + readonly localDisasterRecoveryType?: DisasterRecoveryType; + readonly localStandbyDb?: AutonomousDatabaseStandbySummary; + readonly memoryPerOracleComputeUnitInGbs?: number; + ncharacterSet?: string; + readonly ocid?: string; + readonly ociUrl?: string; + openMode?: OpenModeType; + readonly operationsInsightsStatus?: OperationsInsightsStatusType; + peerDbId?: string; + readonly peerDbIds?: string[]; + permissionLevel?: PermissionLevelType; + readonly privateEndpoint?: string; + privateEndpointIp?: string; + privateEndpointLabel?: string; + readonly provisionableCpus?: number[]; + readonly provisioningState?: AzureResourceProvisioningState; + role?: RoleType; + scheduledOperations?: ScheduledOperationsType; + readonly serviceConsoleUrl?: string; + readonly sqlWebDeveloperUrl?: string; + subnetId?: string; + readonly supportedRegionsToCloneTo?: string[]; + readonly timeCreated?: Date; + readonly timeDataGuardRoleChanged?: string; + readonly timeDeletionOfFreeAutonomousDatabase?: string; + readonly timeLocalDataGuardEnabled?: string; + readonly timeMaintenanceBegin?: Date; + readonly timeMaintenanceEnd?: Date; + readonly timeOfLastFailover?: string; + readonly timeOfLastRefresh?: string; + readonly timeOfLastRefreshPoint?: string; + readonly timeOfLastSwitchover?: string; + readonly timeReclamationOfFreeAutonomousDatabase?: string; + readonly usedDataStorageSizeInGbs?: number; + readonly usedDataStorageSizeInTbs?: number; + vnetId?: string; + whitelistedIps?: string[]; +} + +// @public (undocumented) +export type AutonomousDatabaseBasePropertiesUnion = AutonomousDatabaseBaseProperties | AutonomousDatabaseCloneProperties | AutonomousDatabaseProperties; + +// @public +export interface AutonomousDatabaseCharacterSet extends ProxyResource { + readonly characterSet?: string; +} + +// @public +export interface AutonomousDatabaseCharacterSetListResult { + readonly nextLink?: string; + value: AutonomousDatabaseCharacterSet[]; +} + +// @public +export interface AutonomousDatabaseCharacterSets { + get(location: string, adbscharsetname: string, options?: AutonomousDatabaseCharacterSetsGetOptionalParams): Promise; + listByLocation(location: string, options?: AutonomousDatabaseCharacterSetsListByLocationOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export interface AutonomousDatabaseCharacterSetsGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabaseCharacterSetsGetResponse = AutonomousDatabaseCharacterSet; + +// @public +export interface AutonomousDatabaseCharacterSetsListByLocationNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabaseCharacterSetsListByLocationNextResponse = AutonomousDatabaseCharacterSetListResult; + +// @public +export interface AutonomousDatabaseCharacterSetsListByLocationOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabaseCharacterSetsListByLocationResponse = AutonomousDatabaseCharacterSetListResult; + +// @public +export interface AutonomousDatabaseCloneProperties extends AutonomousDatabaseBaseProperties { + cloneType: CloneType; + dataBaseType: "Clone"; + readonly isReconnectCloneEnabled?: boolean; + readonly isRefreshableClone?: boolean; + refreshableModel?: RefreshableModelType; + readonly refreshableStatus?: RefreshableStatusType; + source?: SourceType; + sourceId: string; + timeUntilReconnectCloneEnabled?: string; +} + +// @public +export type AutonomousDatabaseLifecycleState = string; + +// @public +export interface AutonomousDatabaseListResult { + readonly nextLink?: string; + value: AutonomousDatabase[]; +} + +// @public +export interface AutonomousDatabaseNationalCharacterSet extends ProxyResource { + readonly characterSet?: string; +} + +// @public +export interface AutonomousDatabaseNationalCharacterSetListResult { + readonly nextLink?: string; + value: AutonomousDatabaseNationalCharacterSet[]; +} + +// @public +export interface AutonomousDatabaseNationalCharacterSets { + get(location: string, adbsncharsetname: string, options?: AutonomousDatabaseNationalCharacterSetsGetOptionalParams): Promise; + listByLocation(location: string, options?: AutonomousDatabaseNationalCharacterSetsListByLocationOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export interface AutonomousDatabaseNationalCharacterSetsGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabaseNationalCharacterSetsGetResponse = AutonomousDatabaseNationalCharacterSet; + +// @public +export interface AutonomousDatabaseNationalCharacterSetsListByLocationNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabaseNationalCharacterSetsListByLocationNextResponse = AutonomousDatabaseNationalCharacterSetListResult; + +// @public +export interface AutonomousDatabaseNationalCharacterSetsListByLocationOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabaseNationalCharacterSetsListByLocationResponse = AutonomousDatabaseNationalCharacterSetListResult; + +// @public +export interface AutonomousDatabaseProperties extends AutonomousDatabaseBaseProperties { + dataBaseType: "Regular"; +} + +// @public +export interface AutonomousDatabases { + beginCreateOrUpdate(resourceGroupName: string, autonomousdatabasename: string, resource: AutonomousDatabase, options?: AutonomousDatabasesCreateOrUpdateOptionalParams): Promise, AutonomousDatabasesCreateOrUpdateResponse>>; + beginCreateOrUpdateAndWait(resourceGroupName: string, autonomousdatabasename: string, resource: AutonomousDatabase, options?: AutonomousDatabasesCreateOrUpdateOptionalParams): Promise; + beginDelete(resourceGroupName: string, autonomousdatabasename: string, options?: AutonomousDatabasesDeleteOptionalParams): Promise, AutonomousDatabasesDeleteResponse>>; + beginDeleteAndWait(resourceGroupName: string, autonomousdatabasename: string, options?: AutonomousDatabasesDeleteOptionalParams): Promise; + beginFailover(resourceGroupName: string, autonomousdatabasename: string, body: PeerDbDetails, options?: AutonomousDatabasesFailoverOptionalParams): Promise, AutonomousDatabasesFailoverResponse>>; + beginFailoverAndWait(resourceGroupName: string, autonomousdatabasename: string, body: PeerDbDetails, options?: AutonomousDatabasesFailoverOptionalParams): Promise; + beginSwitchover(resourceGroupName: string, autonomousdatabasename: string, body: PeerDbDetails, options?: AutonomousDatabasesSwitchoverOptionalParams): Promise, AutonomousDatabasesSwitchoverResponse>>; + beginSwitchoverAndWait(resourceGroupName: string, autonomousdatabasename: string, body: PeerDbDetails, options?: AutonomousDatabasesSwitchoverOptionalParams): Promise; + beginUpdate(resourceGroupName: string, autonomousdatabasename: string, properties: AutonomousDatabaseUpdate, options?: AutonomousDatabasesUpdateOptionalParams): Promise, AutonomousDatabasesUpdateResponse>>; + beginUpdateAndWait(resourceGroupName: string, autonomousdatabasename: string, properties: AutonomousDatabaseUpdate, options?: AutonomousDatabasesUpdateOptionalParams): Promise; + generateWallet(resourceGroupName: string, autonomousdatabasename: string, body: GenerateAutonomousDatabaseWalletDetails, options?: AutonomousDatabasesGenerateWalletOptionalParams): Promise; + get(resourceGroupName: string, autonomousdatabasename: string, options?: AutonomousDatabasesGetOptionalParams): Promise; + listByResourceGroup(resourceGroupName: string, options?: AutonomousDatabasesListByResourceGroupOptionalParams): PagedAsyncIterableIterator; + listBySubscription(options?: AutonomousDatabasesListBySubscriptionOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export interface AutonomousDatabasesCreateOrUpdateHeaders { + retryAfter?: number; +} + +// @public +export interface AutonomousDatabasesCreateOrUpdateOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type AutonomousDatabasesCreateOrUpdateResponse = AutonomousDatabase; + +// @public +export interface AutonomousDatabasesDeleteHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface AutonomousDatabasesDeleteOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type AutonomousDatabasesDeleteResponse = AutonomousDatabasesDeleteHeaders; + +// @public +export interface AutonomousDatabasesFailoverHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface AutonomousDatabasesFailoverOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type AutonomousDatabasesFailoverResponse = AutonomousDatabase; + +// @public +export interface AutonomousDatabasesGenerateWalletOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabasesGenerateWalletResponse = AutonomousDatabaseWalletFile; + +// @public +export interface AutonomousDatabasesGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabasesGetResponse = AutonomousDatabase; + +// @public +export interface AutonomousDatabasesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabasesListByResourceGroupNextResponse = AutonomousDatabaseListResult; + +// @public +export interface AutonomousDatabasesListByResourceGroupOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabasesListByResourceGroupResponse = AutonomousDatabaseListResult; + +// @public +export interface AutonomousDatabasesListBySubscriptionNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabasesListBySubscriptionNextResponse = AutonomousDatabaseListResult; + +// @public +export interface AutonomousDatabasesListBySubscriptionOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabasesListBySubscriptionResponse = AutonomousDatabaseListResult; + +// @public +export interface AutonomousDatabasesSwitchoverHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface AutonomousDatabasesSwitchoverOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type AutonomousDatabasesSwitchoverResponse = AutonomousDatabase; + +// @public +export interface AutonomousDatabaseStandbySummary { + lagTimeInSeconds?: number; + lifecycleDetails?: string; + lifecycleState?: AutonomousDatabaseLifecycleState; + timeDataGuardRoleChanged?: string; + timeDisasterRecoveryRoleChanged?: string; +} + +// @public +export interface AutonomousDatabasesUpdateHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface AutonomousDatabasesUpdateOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type AutonomousDatabasesUpdateResponse = AutonomousDatabase; + +// @public +export interface AutonomousDatabaseUpdate { + adminPassword?: string; + autonomousMaintenanceScheduleType?: AutonomousMaintenanceScheduleType; + backupRetentionPeriodInDays?: number; + computeCount?: number; + cpuCoreCount?: number; + customerContacts?: CustomerContact[]; + databaseEdition?: DatabaseEditionType; + dataStorageSizeInGbs?: number; + dataStorageSizeInTbs?: number; + displayName?: string; + isAutoScalingEnabled?: boolean; + isAutoScalingForStorageEnabled?: boolean; + isLocalDataGuardEnabled?: boolean; + isMtlsConnectionRequired?: boolean; + licenseModel?: LicenseModel; + localAdgAutoFailoverMaxDataLossLimit?: number; + openMode?: OpenModeType; + peerDbId?: string; + permissionLevel?: PermissionLevelType; + role?: RoleType; + scheduledOperations?: ScheduledOperationsTypeUpdate; + tags?: { + [propertyName: string]: string; + }; + whitelistedIps?: string[]; +} + +// @public +export interface AutonomousDatabaseVersions { + get(location: string, autonomousdbversionsname: string, options?: AutonomousDatabaseVersionsGetOptionalParams): Promise; + listByLocation(location: string, options?: AutonomousDatabaseVersionsListByLocationOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export interface AutonomousDatabaseVersionsGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabaseVersionsGetResponse = AutonomousDbVersion; + +// @public +export interface AutonomousDatabaseVersionsListByLocationNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabaseVersionsListByLocationNextResponse = AutonomousDbVersionListResult; + +// @public +export interface AutonomousDatabaseVersionsListByLocationOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type AutonomousDatabaseVersionsListByLocationResponse = AutonomousDbVersionListResult; + +// @public +export interface AutonomousDatabaseWalletFile { + walletFiles: string; +} + +// @public +export interface AutonomousDbVersion extends ProxyResource { + readonly dbWorkload?: WorkloadType; + readonly isDefaultForFree?: boolean; + readonly isDefaultForPaid?: boolean; + readonly isFreeTierEnabled?: boolean; + readonly isPaidEnabled?: boolean; + readonly version?: string; +} + +// @public +export interface AutonomousDbVersionListResult { + readonly nextLink?: string; + value: AutonomousDbVersion[]; +} + +// @public +export type AutonomousMaintenanceScheduleType = string; + +// @public +export type AzureResourceProvisioningState = string; + +// @public +export type CloneType = string; + +// @public +export interface CloudAccountDetails { + readonly cloudAccountHomeRegion?: string; + readonly cloudAccountName?: string; +} + +// @public +export type CloudAccountProvisioningState = string; + +// @public +export interface CloudExadataInfrastructure extends TrackedResource { + readonly activatedStorageCount?: number; + readonly additionalStorageCount?: number; + readonly availableStorageSizeInGbs?: number; + computeCount?: number; + readonly cpuCount?: number; + customerContacts?: CustomerContact[]; + readonly dataStorageSizeInTbs?: number; + readonly dbNodeStorageSizeInGbs?: number; + readonly dbServerVersion?: string; + displayName?: string; + readonly estimatedPatchingTime?: EstimatedPatchingTime; + readonly lastMaintenanceRunId?: string; + readonly lifecycleDetails?: string; + readonly lifecycleState?: CloudExadataInfrastructureLifecycleState; + maintenanceWindow?: MaintenanceWindow; + readonly maxCpuCount?: number; + readonly maxDataStorageInTbs?: number; + readonly maxDbNodeStorageSizeInGbs?: number; + readonly maxMemoryInGbs?: number; + readonly memorySizeInGbs?: number; + readonly monthlyDbServerVersion?: string; + readonly monthlyStorageServerVersion?: string; + readonly nextMaintenanceRunId?: string; + readonly ocid?: string; + readonly ociUrl?: string; + readonly provisioningState?: AzureResourceProvisioningState; + shape?: string; + storageCount?: number; + readonly storageServerVersion?: string; + readonly timeCreated?: string; + readonly totalStorageSizeInGbs?: number; + zones: string[]; +} + +// @public +export type CloudExadataInfrastructureLifecycleState = string; + +// @public +export interface CloudExadataInfrastructureListResult { + readonly nextLink?: string; + value: CloudExadataInfrastructure[]; +} + +// @public +export interface CloudExadataInfrastructures { + beginAddStorageCapacity(resourceGroupName: string, cloudexadatainfrastructurename: string, options?: CloudExadataInfrastructuresAddStorageCapacityOptionalParams): Promise, CloudExadataInfrastructuresAddStorageCapacityResponse>>; + beginAddStorageCapacityAndWait(resourceGroupName: string, cloudexadatainfrastructurename: string, options?: CloudExadataInfrastructuresAddStorageCapacityOptionalParams): Promise; + beginCreateOrUpdate(resourceGroupName: string, cloudexadatainfrastructurename: string, resource: CloudExadataInfrastructure, options?: CloudExadataInfrastructuresCreateOrUpdateOptionalParams): Promise, CloudExadataInfrastructuresCreateOrUpdateResponse>>; + beginCreateOrUpdateAndWait(resourceGroupName: string, cloudexadatainfrastructurename: string, resource: CloudExadataInfrastructure, options?: CloudExadataInfrastructuresCreateOrUpdateOptionalParams): Promise; + beginDelete(resourceGroupName: string, cloudexadatainfrastructurename: string, options?: CloudExadataInfrastructuresDeleteOptionalParams): Promise, CloudExadataInfrastructuresDeleteResponse>>; + beginDeleteAndWait(resourceGroupName: string, cloudexadatainfrastructurename: string, options?: CloudExadataInfrastructuresDeleteOptionalParams): Promise; + beginUpdate(resourceGroupName: string, cloudexadatainfrastructurename: string, properties: CloudExadataInfrastructureUpdate, options?: CloudExadataInfrastructuresUpdateOptionalParams): Promise, CloudExadataInfrastructuresUpdateResponse>>; + beginUpdateAndWait(resourceGroupName: string, cloudexadatainfrastructurename: string, properties: CloudExadataInfrastructureUpdate, options?: CloudExadataInfrastructuresUpdateOptionalParams): Promise; + get(resourceGroupName: string, cloudexadatainfrastructurename: string, options?: CloudExadataInfrastructuresGetOptionalParams): Promise; + listByResourceGroup(resourceGroupName: string, options?: CloudExadataInfrastructuresListByResourceGroupOptionalParams): PagedAsyncIterableIterator; + listBySubscription(options?: CloudExadataInfrastructuresListBySubscriptionOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export interface CloudExadataInfrastructuresAddStorageCapacityHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface CloudExadataInfrastructuresAddStorageCapacityOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type CloudExadataInfrastructuresAddStorageCapacityResponse = CloudExadataInfrastructure; + +// @public +export interface CloudExadataInfrastructuresCreateOrUpdateHeaders { + retryAfter?: number; +} + +// @public +export interface CloudExadataInfrastructuresCreateOrUpdateOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type CloudExadataInfrastructuresCreateOrUpdateResponse = CloudExadataInfrastructure; + +// @public +export interface CloudExadataInfrastructuresDeleteHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface CloudExadataInfrastructuresDeleteOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type CloudExadataInfrastructuresDeleteResponse = CloudExadataInfrastructuresDeleteHeaders; + +// @public +export interface CloudExadataInfrastructuresGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type CloudExadataInfrastructuresGetResponse = CloudExadataInfrastructure; + +// @public +export interface CloudExadataInfrastructuresListByResourceGroupNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type CloudExadataInfrastructuresListByResourceGroupNextResponse = CloudExadataInfrastructureListResult; + +// @public +export interface CloudExadataInfrastructuresListByResourceGroupOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type CloudExadataInfrastructuresListByResourceGroupResponse = CloudExadataInfrastructureListResult; + +// @public +export interface CloudExadataInfrastructuresListBySubscriptionNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type CloudExadataInfrastructuresListBySubscriptionNextResponse = CloudExadataInfrastructureListResult; + +// @public +export interface CloudExadataInfrastructuresListBySubscriptionOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type CloudExadataInfrastructuresListBySubscriptionResponse = CloudExadataInfrastructureListResult; + +// @public +export interface CloudExadataInfrastructuresUpdateHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface CloudExadataInfrastructuresUpdateOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type CloudExadataInfrastructuresUpdateResponse = CloudExadataInfrastructure; + +// @public +export interface CloudExadataInfrastructureUpdate { + computeCount?: number; + customerContacts?: CustomerContact[]; + displayName?: string; + maintenanceWindow?: MaintenanceWindow; + storageCount?: number; + tags?: { + [propertyName: string]: string; + }; + zones?: string[]; +} + +// @public +export interface CloudVmCluster extends TrackedResource { + backupSubnetCidr?: string; + cloudExadataInfrastructureId?: string; + clusterName?: string; + readonly compartmentId?: string; + computeNodes?: string[]; + cpuCoreCount?: number; + dataCollectionOptions?: DataCollectionOptions; + dataStoragePercentage?: number; + dataStorageSizeInTbs?: number; + dbNodeStorageSizeInGbs?: number; + dbServers?: string[]; + readonly diskRedundancy?: DiskRedundancy; + displayName?: string; + domain?: string; + giVersion?: string; + hostname?: string; + readonly iormConfigCache?: ExadataIormConfig; + isLocalBackupEnabled?: boolean; + isSparseDiskgroupEnabled?: boolean; + readonly lastUpdateHistoryEntryId?: string; + licenseModel?: LicenseModel; + readonly lifecycleDetails?: string; + readonly lifecycleState?: CloudVmClusterLifecycleState; + readonly listenerPort?: number; + memorySizeInGbs?: number; + readonly nodeCount?: number; + nsgCidrs?: NSGCidr[]; + readonly nsgUrl?: string; + readonly ocid?: string; + readonly ociUrl?: string; + ocpuCount?: number; + readonly provisioningState?: AzureResourceProvisioningState; + readonly scanDnsName?: string; + readonly scanDnsRecordId?: string; + readonly scanIpIds?: string[]; + scanListenerPortTcp?: number; + scanListenerPortTcpSsl?: number; + readonly shape?: string; + sshPublicKeys?: string[]; + storageSizeInGbs?: number; + subnetId?: string; + readonly subnetOcid?: string; + readonly systemVersion?: string; + readonly timeCreated?: Date; + timeZone?: string; + readonly vipIds?: string[]; + vnetId?: string; + zoneId?: string; +} + +// @public +export type CloudVmClusterLifecycleState = string; + +// @public +export interface CloudVmClusterListResult { + readonly nextLink?: string; + value: CloudVmCluster[]; +} + +// @public +export interface CloudVmClusters { + beginAddVms(resourceGroupName: string, cloudvmclustername: string, body: AddRemoveDbNode, options?: CloudVmClustersAddVmsOptionalParams): Promise, CloudVmClustersAddVmsResponse>>; + beginAddVmsAndWait(resourceGroupName: string, cloudvmclustername: string, body: AddRemoveDbNode, options?: CloudVmClustersAddVmsOptionalParams): Promise; + beginCreateOrUpdate(resourceGroupName: string, cloudvmclustername: string, resource: CloudVmCluster, options?: CloudVmClustersCreateOrUpdateOptionalParams): Promise, CloudVmClustersCreateOrUpdateResponse>>; + beginCreateOrUpdateAndWait(resourceGroupName: string, cloudvmclustername: string, resource: CloudVmCluster, options?: CloudVmClustersCreateOrUpdateOptionalParams): Promise; + beginDelete(resourceGroupName: string, cloudvmclustername: string, options?: CloudVmClustersDeleteOptionalParams): Promise, CloudVmClustersDeleteResponse>>; + beginDeleteAndWait(resourceGroupName: string, cloudvmclustername: string, options?: CloudVmClustersDeleteOptionalParams): Promise; + beginRemoveVms(resourceGroupName: string, cloudvmclustername: string, body: AddRemoveDbNode, options?: CloudVmClustersRemoveVmsOptionalParams): Promise, CloudVmClustersRemoveVmsResponse>>; + beginRemoveVmsAndWait(resourceGroupName: string, cloudvmclustername: string, body: AddRemoveDbNode, options?: CloudVmClustersRemoveVmsOptionalParams): Promise; + beginUpdate(resourceGroupName: string, cloudvmclustername: string, properties: CloudVmClusterUpdate, options?: CloudVmClustersUpdateOptionalParams): Promise, CloudVmClustersUpdateResponse>>; + beginUpdateAndWait(resourceGroupName: string, cloudvmclustername: string, properties: CloudVmClusterUpdate, options?: CloudVmClustersUpdateOptionalParams): Promise; + get(resourceGroupName: string, cloudvmclustername: string, options?: CloudVmClustersGetOptionalParams): Promise; + listByResourceGroup(resourceGroupName: string, options?: CloudVmClustersListByResourceGroupOptionalParams): PagedAsyncIterableIterator; + listBySubscription(options?: CloudVmClustersListBySubscriptionOptionalParams): PagedAsyncIterableIterator; + listPrivateIpAddresses(resourceGroupName: string, cloudvmclustername: string, body: PrivateIpAddressesFilter, options?: CloudVmClustersListPrivateIpAddressesOptionalParams): Promise; +} + +// @public +export interface CloudVmClustersAddVmsHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface CloudVmClustersAddVmsOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type CloudVmClustersAddVmsResponse = CloudVmCluster; + +// @public +export interface CloudVmClustersCreateOrUpdateHeaders { + retryAfter?: number; +} + +// @public +export interface CloudVmClustersCreateOrUpdateOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type CloudVmClustersCreateOrUpdateResponse = CloudVmCluster; + +// @public +export interface CloudVmClustersDeleteHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface CloudVmClustersDeleteOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type CloudVmClustersDeleteResponse = CloudVmClustersDeleteHeaders; + +// @public +export interface CloudVmClustersGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type CloudVmClustersGetResponse = CloudVmCluster; + +// @public +export interface CloudVmClustersListByResourceGroupNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type CloudVmClustersListByResourceGroupNextResponse = CloudVmClusterListResult; + +// @public +export interface CloudVmClustersListByResourceGroupOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type CloudVmClustersListByResourceGroupResponse = CloudVmClusterListResult; + +// @public +export interface CloudVmClustersListBySubscriptionNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type CloudVmClustersListBySubscriptionNextResponse = CloudVmClusterListResult; + +// @public +export interface CloudVmClustersListBySubscriptionOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type CloudVmClustersListBySubscriptionResponse = CloudVmClusterListResult; + +// @public +export interface CloudVmClustersListPrivateIpAddressesOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type CloudVmClustersListPrivateIpAddressesResponse = PrivateIpAddressProperties[]; + +// @public +export interface CloudVmClustersRemoveVmsHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface CloudVmClustersRemoveVmsOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type CloudVmClustersRemoveVmsResponse = CloudVmCluster; + +// @public +export interface CloudVmClustersUpdateHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface CloudVmClustersUpdateOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type CloudVmClustersUpdateResponse = CloudVmCluster; + +// @public +export interface CloudVmClusterUpdate { + computeNodes?: string[]; + cpuCoreCount?: number; + dataCollectionOptions?: DataCollectionOptions; + dataStorageSizeInTbs?: number; + dbNodeStorageSizeInGbs?: number; + displayName?: string; + licenseModel?: LicenseModel; + memorySizeInGbs?: number; + ocpuCount?: number; + sshPublicKeys?: string[]; + storageSizeInGbs?: number; + tags?: { + [propertyName: string]: string; + }; +} + +// @public +export type ComputeModel = string; + +// @public +export interface ConnectionStringType { + allConnectionStrings?: AllConnectionStringType; + dedicated?: string; + high?: string; + low?: string; + medium?: string; + profiles?: ProfileType[]; +} + +// @public +export interface ConnectionUrlType { + apexUrl?: string; + databaseTransformsUrl?: string; + graphStudioUrl?: string; + machineLearningNotebookUrl?: string; + mongoDbUrl?: string; + ordsUrl?: string; + sqlDevWebUrl?: string; +} + +// @public +export type ConsumerGroup = string; + +// @public +export type CreatedByType = string; + +// @public +export interface CustomerContact { + email: string; +} + +// @public +export type DatabaseEditionType = string; + +// @public +export type DataBaseType = string; + +// @public +export interface DataCollectionOptions { + isDiagnosticsEventsEnabled?: boolean; + isHealthMonitoringEnabled?: boolean; + isIncidentLogsEnabled?: boolean; +} + +// @public +export type DataSafeStatusType = string; + +// @public +export interface DayOfWeek { + name: DayOfWeekName; +} + +// @public +export type DayOfWeekName = string; + +// @public +export interface DayOfWeekUpdate { + name?: DayOfWeekName; +} + +// @public +export interface DbIormConfig { + dbName?: string; + flashCacheLimit?: string; + share?: number; +} + +// @public +export interface DbNode extends ProxyResource { + readonly additionalDetails?: string; + readonly backupIpId?: string; + readonly backupVnic2Id?: string; + readonly backupVnicId?: string; + readonly cpuCoreCount?: number; + readonly dbNodeStorageSizeInGbs?: number; + readonly dbServerId?: string; + readonly dbSystemId?: string; + readonly faultDomain?: string; + readonly hostIpId?: string; + readonly hostname?: string; + readonly lifecycleDetails?: string; + readonly lifecycleState?: DbNodeProvisioningState; + readonly maintenanceType?: DbNodeMaintenanceType; + readonly memorySizeInGbs?: number; + readonly ocid?: string; + readonly provisioningState?: ResourceProvisioningState; + readonly softwareStorageSizeInGb?: number; + readonly timeCreated?: Date; + readonly timeMaintenanceWindowEnd?: Date; + readonly timeMaintenanceWindowStart?: Date; + readonly vnic2Id?: string; + readonly vnicId?: string; +} + +// @public +export interface DbNodeAction { + action: DbNodeActionEnum; +} + +// @public +export type DbNodeActionEnum = string; + +// @public +export interface DbNodeListResult { + readonly nextLink?: string; + value: DbNode[]; +} + +// @public +export type DbNodeMaintenanceType = string; + +// @public +export type DbNodeProvisioningState = string; + +// @public +export interface DbNodes { + beginAction(resourceGroupName: string, cloudvmclustername: string, dbnodeocid: string, body: DbNodeAction, options?: DbNodesActionOptionalParams): Promise, DbNodesActionResponse>>; + beginActionAndWait(resourceGroupName: string, cloudvmclustername: string, dbnodeocid: string, body: DbNodeAction, options?: DbNodesActionOptionalParams): Promise; + get(resourceGroupName: string, cloudvmclustername: string, dbnodeocid: string, options?: DbNodesGetOptionalParams): Promise; + listByCloudVmCluster(resourceGroupName: string, cloudvmclustername: string, options?: DbNodesListByCloudVmClusterOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export interface DbNodesActionHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface DbNodesActionOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type DbNodesActionResponse = DbNode; + +// @public +export interface DbNodesGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type DbNodesGetResponse = DbNode; + +// @public +export interface DbNodesListByCloudVmClusterNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type DbNodesListByCloudVmClusterNextResponse = DbNodeListResult; + +// @public +export interface DbNodesListByCloudVmClusterOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type DbNodesListByCloudVmClusterResponse = DbNodeListResult; + +// @public +export interface DbServer extends ProxyResource { + readonly autonomousVirtualMachineIds?: string[]; + readonly autonomousVmClusterIds?: string[]; + readonly compartmentId?: string; + readonly cpuCoreCount?: number; + readonly dbNodeIds?: string[]; + readonly dbNodeStorageSizeInGbs?: number; + readonly dbServerPatchingDetails?: DbServerPatchingDetails; + readonly displayName?: string; + readonly exadataInfrastructureId?: string; + readonly lifecycleDetails?: string; + readonly lifecycleState?: DbServerProvisioningState; + readonly maxCpuCount?: number; + readonly maxDbNodeStorageInGbs?: number; + readonly maxMemoryInGbs?: number; + readonly memorySizeInGbs?: number; + readonly ocid?: string; + readonly provisioningState?: ResourceProvisioningState; + readonly shape?: string; + readonly timeCreated?: Date; + readonly vmClusterIds?: string[]; +} + +// @public +export interface DbServerListResult { + readonly nextLink?: string; + value: DbServer[]; +} + +// @public +export interface DbServerPatchingDetails { + readonly estimatedPatchDuration?: number; + readonly patchingStatus?: DbServerPatchingStatus; + readonly timePatchingEnded?: Date; + readonly timePatchingStarted?: Date; +} + +// @public +export type DbServerPatchingStatus = string; + +// @public +export type DbServerProvisioningState = string; + +// @public +export interface DbServers { + get(resourceGroupName: string, cloudexadatainfrastructurename: string, dbserverocid: string, options?: DbServersGetOptionalParams): Promise; + listByCloudExadataInfrastructure(resourceGroupName: string, cloudexadatainfrastructurename: string, options?: DbServersListByCloudExadataInfrastructureOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export interface DbServersGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type DbServersGetResponse = DbServer; + +// @public +export interface DbServersListByCloudExadataInfrastructureNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type DbServersListByCloudExadataInfrastructureNextResponse = DbServerListResult; + +// @public +export interface DbServersListByCloudExadataInfrastructureOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type DbServersListByCloudExadataInfrastructureResponse = DbServerListResult; + +// @public +export interface DbSystemShape extends ProxyResource { + readonly availableCoreCount?: number; + readonly availableCoreCountPerNode?: number; + readonly availableDataStorageInTbs?: number; + readonly availableDataStoragePerServerInTbs?: number; + readonly availableDbNodePerNodeInGbs?: number; + readonly availableDbNodeStorageInGbs?: number; + readonly availableMemoryInGbs?: number; + readonly availableMemoryPerNodeInGbs?: number; + readonly coreCountIncrement?: number; + readonly maximumNodeCount?: number; + readonly maxStorageCount?: number; + readonly minCoreCountPerNode?: number; + readonly minDataStorageInTbs?: number; + readonly minDbNodeStoragePerNodeInGbs?: number; + readonly minimumCoreCount?: number; + readonly minimumNodeCount?: number; + readonly minMemoryPerNodeInGbs?: number; + readonly minStorageCount?: number; + readonly runtimeMinimumCoreCount?: number; + readonly shapeFamily?: string; +} + +// @public +export interface DbSystemShapeListResult { + readonly nextLink?: string; + value: DbSystemShape[]; +} + +// @public +export interface DbSystemShapes { + get(location: string, dbsystemshapename: string, options?: DbSystemShapesGetOptionalParams): Promise; + listByLocation(location: string, options?: DbSystemShapesListByLocationOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export interface DbSystemShapesGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type DbSystemShapesGetResponse = DbSystemShape; + +// @public +export interface DbSystemShapesListByLocationNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type DbSystemShapesListByLocationNextResponse = DbSystemShapeListResult; + +// @public +export interface DbSystemShapesListByLocationOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type DbSystemShapesListByLocationResponse = DbSystemShapeListResult; + +// @public +export type DisasterRecoveryType = string; + +// @public +export type DiskRedundancy = string; + +// @public +export interface DnsPrivateView extends ProxyResource { + readonly displayName?: string; + readonly isProtected?: boolean; + readonly lifecycleState?: DnsPrivateViewsLifecycleState; + readonly ocid?: string; + readonly provisioningState?: ResourceProvisioningState; + readonly self?: string; + readonly timeCreated?: Date; + readonly timeUpdated?: Date; +} + +// @public +export interface DnsPrivateViewListResult { + readonly nextLink?: string; + value: DnsPrivateView[]; +} + +// @public +export interface DnsPrivateViews { + get(location: string, dnsprivateviewocid: string, options?: DnsPrivateViewsGetOptionalParams): Promise; + listByLocation(location: string, options?: DnsPrivateViewsListByLocationOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export interface DnsPrivateViewsGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type DnsPrivateViewsGetResponse = DnsPrivateView; + +// @public +export type DnsPrivateViewsLifecycleState = string; + +// @public +export interface DnsPrivateViewsListByLocationNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type DnsPrivateViewsListByLocationNextResponse = DnsPrivateViewListResult; + +// @public +export interface DnsPrivateViewsListByLocationOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type DnsPrivateViewsListByLocationResponse = DnsPrivateViewListResult; + +// @public +export interface DnsPrivateZone extends ProxyResource { + readonly isProtected?: boolean; + readonly lifecycleState?: DnsPrivateZonesLifecycleState; + readonly ocid?: string; + readonly provisioningState?: ResourceProvisioningState; + readonly self?: string; + readonly serial?: number; + readonly timeCreated?: Date; + readonly version?: string; + readonly viewId?: string; + readonly zoneType?: ZoneType; +} + +// @public +export interface DnsPrivateZoneListResult { + readonly nextLink?: string; + value: DnsPrivateZone[]; +} + +// @public +export interface DnsPrivateZones { + get(location: string, dnsprivatezonename: string, options?: DnsPrivateZonesGetOptionalParams): Promise; + listByLocation(location: string, options?: DnsPrivateZonesListByLocationOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export interface DnsPrivateZonesGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type DnsPrivateZonesGetResponse = DnsPrivateZone; + +// @public +export type DnsPrivateZonesLifecycleState = string; + +// @public +export interface DnsPrivateZonesListByLocationNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type DnsPrivateZonesListByLocationNextResponse = DnsPrivateZoneListResult; + +// @public +export interface DnsPrivateZonesListByLocationOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type DnsPrivateZonesListByLocationResponse = DnsPrivateZoneListResult; + +// @public +export interface ErrorAdditionalInfo { + readonly info?: Record; + readonly type?: string; +} + +// @public +export interface ErrorDetail { + readonly additionalInfo?: ErrorAdditionalInfo[]; + readonly code?: string; + readonly details?: ErrorDetail[]; + readonly message?: string; + readonly target?: string; +} + +// @public +export interface ErrorResponse { + error?: ErrorDetail; +} + +// @public +export interface EstimatedPatchingTime { + readonly estimatedDbServerPatchingTime?: number; + readonly estimatedNetworkSwitchesPatchingTime?: number; + readonly estimatedStorageServerPatchingTime?: number; + readonly totalEstimatedPatchingTime?: number; +} + +// @public +export interface ExadataIormConfig { + dbPlans?: DbIormConfig[]; + lifecycleDetails?: string; + lifecycleState?: IormLifecycleState; + objective?: Objective; +} + +// @public +export interface GenerateAutonomousDatabaseWalletDetails { + generateType?: GenerateType; + isRegional?: boolean; + password: string; +} + +// @public +export type GenerateType = string; + +// @public +export function getContinuationToken(page: unknown): string | undefined; + +// @public +export interface GiVersion extends ProxyResource { + readonly version?: string; +} + +// @public +export interface GiVersionListResult { + readonly nextLink?: string; + value: GiVersion[]; +} + +// @public +export interface GiVersions { + get(location: string, giversionname: string, options?: GiVersionsGetOptionalParams): Promise; + listByLocation(location: string, options?: GiVersionsListByLocationOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export interface GiVersionsGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type GiVersionsGetResponse = GiVersion; + +// @public +export interface GiVersionsListByLocationNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type GiVersionsListByLocationNextResponse = GiVersionListResult; + +// @public +export interface GiVersionsListByLocationOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type GiVersionsListByLocationResponse = GiVersionListResult; + +// @public +export type HostFormatType = string; + +// @public +export type Intent = string; + +// @public +export type IormLifecycleState = string; + +// @public +export enum KnownActionType { + Internal = "Internal" +} + +// @public +export enum KnownAutonomousDatabaseBackupLifecycleState { + Active = "Active", + Creating = "Creating", + Deleting = "Deleting", + Failed = "Failed", + Updating = "Updating" +} + +// @public +export enum KnownAutonomousDatabaseBackupType { + Full = "Full", + Incremental = "Incremental", + LongTerm = "LongTerm" +} + +// @public +export enum KnownAutonomousDatabaseLifecycleState { + Available = "Available", + AvailableNeedsAttention = "AvailableNeedsAttention", + BackupInProgress = "BackupInProgress", + Inaccessible = "Inaccessible", + MaintenanceInProgress = "MaintenanceInProgress", + Provisioning = "Provisioning", + Recreating = "Recreating", + Restarting = "Restarting", + RestoreFailed = "RestoreFailed", + RestoreInProgress = "RestoreInProgress", + RoleChangeInProgress = "RoleChangeInProgress", + ScaleInProgress = "ScaleInProgress", + Standby = "Standby", + Starting = "Starting", + Stopped = "Stopped", + Stopping = "Stopping", + Terminated = "Terminated", + Terminating = "Terminating", + Unavailable = "Unavailable", + Updating = "Updating", + Upgrading = "Upgrading" +} + +// @public +export enum KnownAutonomousMaintenanceScheduleType { + Early = "Early", + Regular = "Regular" +} + +// @public +export enum KnownAzureResourceProvisioningState { + Canceled = "Canceled", + Failed = "Failed", + Provisioning = "Provisioning", + Succeeded = "Succeeded" +} + +// @public +export enum KnownCloneType { + Full = "Full", + Metadata = "Metadata" +} + +// @public +export enum KnownCloudAccountProvisioningState { + Available = "Available", + Pending = "Pending", + Provisioning = "Provisioning" +} + +// @public +export enum KnownCloudExadataInfrastructureLifecycleState { + Available = "Available", + Failed = "Failed", + MaintenanceInProgress = "MaintenanceInProgress", + Provisioning = "Provisioning", + Terminated = "Terminated", + Terminating = "Terminating", + Updating = "Updating" +} + +// @public +export enum KnownCloudVmClusterLifecycleState { + Available = "Available", + Failed = "Failed", + MaintenanceInProgress = "MaintenanceInProgress", + Provisioning = "Provisioning", + Terminated = "Terminated", + Terminating = "Terminating", + Updating = "Updating" +} + +// @public +export enum KnownComputeModel { + Ecpu = "ECPU", + Ocpu = "OCPU" +} + +// @public +export enum KnownConsumerGroup { + High = "High", + Low = "Low", + Medium = "Medium", + Tp = "Tp", + Tpurgent = "Tpurgent" +} + +// @public +export enum KnownCreatedByType { + Application = "Application", + Key = "Key", + ManagedIdentity = "ManagedIdentity", + User = "User" +} + +// @public +export enum KnownDatabaseEditionType { + EnterpriseEdition = "EnterpriseEdition", + StandardEdition = "StandardEdition" +} + +// @public +export enum KnownDataBaseType { + Clone = "Clone", + Regular = "Regular" +} + +// @public +export enum KnownDataSafeStatusType { + Deregistering = "Deregistering", + Failed = "Failed", + NotRegistered = "NotRegistered", + Registered = "Registered", + Registering = "Registering" +} + +// @public +export enum KnownDayOfWeekName { + Friday = "Friday", + Monday = "Monday", + Saturday = "Saturday", + Sunday = "Sunday", + Thursday = "Thursday", + Tuesday = "Tuesday", + Wednesday = "Wednesday" +} + +// @public +export enum KnownDbNodeActionEnum { + Reset = "Reset", + SoftReset = "SoftReset", + Start = "Start", + Stop = "Stop" +} + +// @public +export enum KnownDbNodeMaintenanceType { + VmdbRebootMigration = "VmdbRebootMigration" +} + +// @public +export enum KnownDbNodeProvisioningState { + Available = "Available", + Failed = "Failed", + Provisioning = "Provisioning", + Starting = "Starting", + Stopped = "Stopped", + Stopping = "Stopping", + Terminated = "Terminated", + Terminating = "Terminating", + Updating = "Updating" +} + +// @public +export enum KnownDbServerPatchingStatus { + Complete = "Complete", + Failed = "Failed", + MaintenanceInProgress = "MaintenanceInProgress", + Scheduled = "Scheduled" +} + +// @public +export enum KnownDbServerProvisioningState { + Available = "Available", + Creating = "Creating", + Deleted = "Deleted", + Deleting = "Deleting", + MaintenanceInProgress = "MaintenanceInProgress", + Unavailable = "Unavailable" +} + +// @public +export enum KnownDisasterRecoveryType { + Adg = "Adg", + BackupBased = "BackupBased" +} + +// @public +export enum KnownDiskRedundancy { + High = "High", + Normal = "Normal" +} + +// @public +export enum KnownDnsPrivateViewsLifecycleState { + Active = "Active", + Deleted = "Deleted", + Deleting = "Deleting", + Updating = "Updating" +} + +// @public +export enum KnownDnsPrivateZonesLifecycleState { + Active = "Active", + Creating = "Creating", + Deleted = "Deleted", + Deleting = "Deleting", + Updating = "Updating" +} + +// @public +export enum KnownGenerateType { + All = "All", + Single = "Single" +} + +// @public +export enum KnownHostFormatType { + Fqdn = "Fqdn", + Ip = "Ip" +} + +// @public +export enum KnownIntent { + Reset = "Reset", + Retain = "Retain" +} + +// @public +export enum KnownIormLifecycleState { + BootStrapping = "BootStrapping", + Disabled = "Disabled", + Enabled = "Enabled", + Failed = "Failed", + Updating = "Updating" +} + +// @public +export enum KnownLicenseModel { + BringYourOwnLicense = "BringYourOwnLicense", + LicenseIncluded = "LicenseIncluded" +} + +// @public +export enum KnownMonthName { + April = "April", + August = "August", + December = "December", + February = "February", + January = "January", + July = "July", + June = "June", + March = "March", + May = "May", + November = "November", + October = "October", + September = "September" +} + +// @public +export enum KnownObjective { + Auto = "Auto", + Balanced = "Balanced", + Basic = "Basic", + HighThroughput = "HighThroughput", + LowLatency = "LowLatency" +} + +// @public +export enum KnownOpenModeType { + ReadOnly = "ReadOnly", + ReadWrite = "ReadWrite" +} + +// @public +export enum KnownOperationsInsightsStatusType { + Disabling = "Disabling", + Enabled = "Enabled", + Enabling = "Enabling", + FailedDisabling = "FailedDisabling", + FailedEnabling = "FailedEnabling", + NotEnabled = "NotEnabled" +} + +// @public +export enum KnownOracleSubscriptionProvisioningState { + Canceled = "Canceled", + Failed = "Failed", + Succeeded = "Succeeded" +} + +// @public +export enum KnownOrigin { + System = "system", + User = "user", + UserSystem = "user,system" +} + +// @public +export enum KnownPatchingMode { + NonRolling = "NonRolling", + Rolling = "Rolling" +} + +// @public +export enum KnownPermissionLevelType { + Restricted = "Restricted", + Unrestricted = "Unrestricted" +} + +// @public +export enum KnownPreference { + CustomPreference = "CustomPreference", + NoPreference = "NoPreference" +} + +// @public +export enum KnownProtocolType { + TCP = "TCP", + Tcps = "TCPS" +} + +// @public +export enum KnownRefreshableModelType { + Automatic = "Automatic", + Manual = "Manual" +} + +// @public +export enum KnownRefreshableStatusType { + NotRefreshing = "NotRefreshing", + Refreshing = "Refreshing" +} + +// @public +export enum KnownResourceProvisioningState { + Canceled = "Canceled", + Failed = "Failed", + Succeeded = "Succeeded" +} + +// @public +export enum KnownRoleType { + BackupCopy = "BackupCopy", + DisabledStandby = "DisabledStandby", + Primary = "Primary", + SnapshotStandby = "SnapshotStandby", + Standby = "Standby" +} + +// @public +export enum KnownSessionModeType { + Direct = "Direct", + Redirect = "Redirect" +} + +// @public +export enum KnownSourceType { + BackupFromId = "BackupFromId", + BackupFromTimestamp = "BackupFromTimestamp", + CloneToRefreshable = "CloneToRefreshable", + CrossRegionDataguard = "CrossRegionDataguard", + CrossRegionDisasterRecovery = "CrossRegionDisasterRecovery", + Database = "Database", + None = "None" +} + +// @public +export enum KnownSyntaxFormatType { + Ezconnect = "Ezconnect", + Ezconnectplus = "Ezconnectplus", + Long = "Long" +} + +// @public +export enum KnownTlsAuthenticationType { + Mutual = "Mutual", + Server = "Server" +} + +// @public +export enum KnownUpdateAction { + NonRollingApply = "NonRollingApply", + PreCheck = "PreCheck", + RollBack = "RollBack", + RollingApply = "RollingApply" +} + +// @public +export enum KnownValidationStatus { + Failed = "Failed", + Succeeded = "Succeeded" +} + +// @public +export enum KnownVersions { + V20230901 = "2023-09-01-preview", + VInternalApi = "internal" +} + +// @public +export enum KnownVirtualNetworkAddressLifecycleState { + Available = "Available", + Failed = "Failed", + Provisioning = "Provisioning", + Terminated = "Terminated", + Terminating = "Terminating" +} + +// @public +export enum KnownWorkloadType { + AJD = "AJD", + Apex = "APEX", + DW = "DW", + Oltp = "OLTP" +} + +// @public +export enum KnownZoneType { + Primary = "Primary", + Secondary = "Secondary" +} + +// @public +export type LicenseModel = string; + +// @public +export interface MaintenanceWindow { + customActionTimeoutInMins?: number; + daysOfWeek?: DayOfWeek[]; + hoursOfDay?: number[]; + isCustomActionTimeoutEnabled?: boolean; + isMonthlyPatchingEnabled?: boolean; + leadTimeInWeeks?: number; + months?: Month[]; + patchingMode?: PatchingMode; + preference?: Preference; + weeksOfMonth?: number[]; +} + +// @public +export interface Month { + name: MonthName; +} + +// @public +export type MonthName = string; + +// @public +export interface NSGCidr { + destinationPortRange?: PortRange; + source: string; +} + +// @public +export type Objective = string; + +// @public +export type OpenModeType = string; + +// @public +export interface Operation { + readonly actionType?: ActionType; + display?: OperationDisplay; + readonly isDataAction?: boolean; + readonly name?: string; + readonly origin?: Origin; +} + +// @public +export interface OperationDisplay { + readonly description?: string; + readonly operation?: string; + readonly provider?: string; + readonly resource?: string; +} + +// @public +export interface OperationListResult { + readonly nextLink?: string; + readonly value?: Operation[]; +} + +// @public +export interface Operations { + list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export type OperationsInsightsStatusType = string; + +// @public +export interface OperationsListNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type OperationsListNextResponse = OperationListResult; + +// @public +export interface OperationsListOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type OperationsListResponse = OperationListResult; + +// @public (undocumented) +export class OracleDatabaseResourceManager extends coreClient.ServiceClient { + // (undocumented) + $host: string; + constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: OracleDatabaseResourceManagerOptionalParams); + // (undocumented) + apiVersion: string; + // (undocumented) + autonomousDatabaseBackups: AutonomousDatabaseBackups; + // (undocumented) + autonomousDatabaseCharacterSets: AutonomousDatabaseCharacterSets; + // (undocumented) + autonomousDatabaseNationalCharacterSets: AutonomousDatabaseNationalCharacterSets; + // (undocumented) + autonomousDatabases: AutonomousDatabases; + // (undocumented) + autonomousDatabaseVersions: AutonomousDatabaseVersions; + // (undocumented) + cloudExadataInfrastructures: CloudExadataInfrastructures; + // (undocumented) + cloudVmClusters: CloudVmClusters; + // (undocumented) + dbNodes: DbNodes; + // (undocumented) + dbServers: DbServers; + // (undocumented) + dbSystemShapes: DbSystemShapes; + // (undocumented) + dnsPrivateViews: DnsPrivateViews; + // (undocumented) + dnsPrivateZones: DnsPrivateZones; + // (undocumented) + giVersions: GiVersions; + // (undocumented) + operations: Operations; + // (undocumented) + oracleSubscriptions: OracleSubscriptions; + // (undocumented) + subscriptionId: string; + // (undocumented) + virtualNetworkAddresses: VirtualNetworkAddresses; +} + +// @public +export interface OracleDatabaseResourceManagerOptionalParams extends coreClient.ServiceClientOptions { + $host?: string; + apiVersion?: string; + endpoint?: string; +} + +// @public +export interface OracleSubscription extends ProxyResource { + readonly cloudAccountId?: string; + readonly cloudAccountState?: CloudAccountProvisioningState; + intent?: Intent; + plan?: Plan; + productCode?: string; + readonly provisioningState?: OracleSubscriptionProvisioningState; + readonly saasSubscriptionId?: string; + termUnit?: string; +} + +// @public +export interface OracleSubscriptionListResult { + readonly nextLink?: string; + value: OracleSubscription[]; +} + +// @public +export type OracleSubscriptionProvisioningState = string; + +// @public +export interface OracleSubscriptions { + beginCreateOrUpdate(resource: OracleSubscription, options?: OracleSubscriptionsCreateOrUpdateOptionalParams): Promise, OracleSubscriptionsCreateOrUpdateResponse>>; + beginCreateOrUpdateAndWait(resource: OracleSubscription, options?: OracleSubscriptionsCreateOrUpdateOptionalParams): Promise; + beginDelete(options?: OracleSubscriptionsDeleteOptionalParams): Promise, OracleSubscriptionsDeleteResponse>>; + beginDeleteAndWait(options?: OracleSubscriptionsDeleteOptionalParams): Promise; + beginListActivationLinks(options?: OracleSubscriptionsListActivationLinksOptionalParams): Promise, OracleSubscriptionsListActivationLinksResponse>>; + beginListActivationLinksAndWait(options?: OracleSubscriptionsListActivationLinksOptionalParams): Promise; + beginListCloudAccountDetails(options?: OracleSubscriptionsListCloudAccountDetailsOptionalParams): Promise, OracleSubscriptionsListCloudAccountDetailsResponse>>; + beginListCloudAccountDetailsAndWait(options?: OracleSubscriptionsListCloudAccountDetailsOptionalParams): Promise; + beginListSaasSubscriptionDetails(options?: OracleSubscriptionsListSaasSubscriptionDetailsOptionalParams): Promise, OracleSubscriptionsListSaasSubscriptionDetailsResponse>>; + beginListSaasSubscriptionDetailsAndWait(options?: OracleSubscriptionsListSaasSubscriptionDetailsOptionalParams): Promise; + beginUpdate(properties: OracleSubscriptionUpdate, options?: OracleSubscriptionsUpdateOptionalParams): Promise, OracleSubscriptionsUpdateResponse>>; + beginUpdateAndWait(properties: OracleSubscriptionUpdate, options?: OracleSubscriptionsUpdateOptionalParams): Promise; + get(options?: OracleSubscriptionsGetOptionalParams): Promise; + listBySubscription(options?: OracleSubscriptionsListBySubscriptionOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export interface OracleSubscriptionsCreateOrUpdateHeaders { + retryAfter?: number; +} + +// @public +export interface OracleSubscriptionsCreateOrUpdateOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type OracleSubscriptionsCreateOrUpdateResponse = OracleSubscription; + +// @public +export interface OracleSubscriptionsDeleteHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface OracleSubscriptionsDeleteOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type OracleSubscriptionsDeleteResponse = OracleSubscriptionsDeleteHeaders; + +// @public +export interface OracleSubscriptionsGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type OracleSubscriptionsGetResponse = OracleSubscription; + +// @public +export interface OracleSubscriptionsListActivationLinksHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface OracleSubscriptionsListActivationLinksOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type OracleSubscriptionsListActivationLinksResponse = ActivationLinks; + +// @public +export interface OracleSubscriptionsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type OracleSubscriptionsListBySubscriptionNextResponse = OracleSubscriptionListResult; + +// @public +export interface OracleSubscriptionsListBySubscriptionOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type OracleSubscriptionsListBySubscriptionResponse = OracleSubscriptionListResult; + +// @public +export interface OracleSubscriptionsListCloudAccountDetailsHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface OracleSubscriptionsListCloudAccountDetailsOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type OracleSubscriptionsListCloudAccountDetailsResponse = CloudAccountDetails; + +// @public +export interface OracleSubscriptionsListSaasSubscriptionDetailsHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface OracleSubscriptionsListSaasSubscriptionDetailsOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type OracleSubscriptionsListSaasSubscriptionDetailsResponse = SaasSubscriptionDetails; + +// @public +export interface OracleSubscriptionsUpdateHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface OracleSubscriptionsUpdateOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type OracleSubscriptionsUpdateResponse = OracleSubscription; + +// @public +export interface OracleSubscriptionUpdate { + intent?: Intent; + plan?: ResourcePlanTypeUpdate; + productCode?: string; +} + +// @public +export type Origin = string; + +// @public +export type PatchingMode = string; + +// @public +export interface PeerDbDetails { + peerDbId?: string; +} + +// @public +export type PermissionLevelType = string; + +// @public +export interface Plan { + name: string; + product: string; + promotionCode?: string; + publisher: string; + version?: string; +} + +// @public +export interface PortRange { + max: number; + min: number; +} + +// @public +export type Preference = string; + +// @public +export interface PrivateIpAddressesFilter { + subnetId: string; + vnicId: string; +} + +// @public +export interface PrivateIpAddressProperties { + displayName: string; + hostnameLabel: string; + ipAddress: string; + ocid: string; + subnetId: string; +} + +// @public +export interface ProfileType { + consumerGroup?: ConsumerGroup; + displayName: string; + hostFormat: HostFormatType; + isRegional?: boolean; + protocol: ProtocolType; + sessionMode: SessionModeType; + syntaxFormat: SyntaxFormatType; + tlsAuthentication?: TlsAuthenticationType; + value: string; +} + +// @public +export type ProtocolType = string; + +// @public +export interface ProxyResource extends Resource { +} + +// @public +export type RefreshableModelType = string; + +// @public +export type RefreshableStatusType = string; + +// @public +export interface Resource { + readonly id?: string; + readonly name?: string; + readonly systemData?: SystemData; + readonly type?: string; +} + +// @public +export interface ResourcePlanTypeUpdate { + name?: string; + product?: string; + promotionCode?: string; + publisher?: string; + version?: string; +} + +// @public +export type ResourceProvisioningState = string; + +// @public +export type RoleType = string; + +// @public +export interface SaasSubscriptionDetails { + readonly id?: string; + readonly isAutoRenew?: boolean; + readonly isFreeTrial?: boolean; + readonly offerId?: string; + readonly planId?: string; + readonly publisherId?: string; + readonly purchaserEmailId?: string; + readonly purchaserTenantId?: string; + readonly saasSubscriptionStatus?: string; + readonly subscriptionName?: string; + readonly termUnit?: string; + readonly timeCreated?: Date; +} + +// @public +export interface ScheduledOperationsType { + dayOfWeek: DayOfWeek; + scheduledStartTime?: string; + scheduledStopTime?: string; +} + +// @public +export interface ScheduledOperationsTypeUpdate { + dayOfWeek?: DayOfWeekUpdate; + scheduledStartTime?: string; + scheduledStopTime?: string; +} + +// @public +export type SessionModeType = string; + +// @public +export type SourceType = string; + +// @public +export type SyntaxFormatType = string; + +// @public +export interface SystemData { + createdAt?: Date; + createdBy?: string; + createdByType?: CreatedByType; + lastModifiedAt?: Date; + lastModifiedBy?: string; + lastModifiedByType?: CreatedByType; +} + +// @public +export type TlsAuthenticationType = string; + +// @public +export interface TrackedResource extends Resource { + location: string; + tags?: { + [propertyName: string]: string; + }; +} + +// @public +export type UpdateAction = string; + +// @public +export interface ValidationError { + code: string; + message: string; +} + +// @public +export interface ValidationResult { + error: ValidationError; + readonly status: ValidationStatus; +} + +// @public +export type ValidationStatus = string; + +// @public +export type Versions = string; + +// @public +export interface VirtualNetworkAddress extends ProxyResource { + readonly domain?: string; + ipAddress?: string; + readonly lifecycleDetails?: string; + readonly lifecycleState?: VirtualNetworkAddressLifecycleState; + readonly ocid?: string; + readonly provisioningState?: AzureResourceProvisioningState; + readonly timeAssigned?: Date; + vmOcid?: string; +} + +// @public +export interface VirtualNetworkAddresses { + beginCreateOrUpdate(resourceGroupName: string, cloudvmclustername: string, virtualnetworkaddressname: string, resource: VirtualNetworkAddress, options?: VirtualNetworkAddressesCreateOrUpdateOptionalParams): Promise, VirtualNetworkAddressesCreateOrUpdateResponse>>; + beginCreateOrUpdateAndWait(resourceGroupName: string, cloudvmclustername: string, virtualnetworkaddressname: string, resource: VirtualNetworkAddress, options?: VirtualNetworkAddressesCreateOrUpdateOptionalParams): Promise; + beginDelete(resourceGroupName: string, cloudvmclustername: string, virtualnetworkaddressname: string, options?: VirtualNetworkAddressesDeleteOptionalParams): Promise, VirtualNetworkAddressesDeleteResponse>>; + beginDeleteAndWait(resourceGroupName: string, cloudvmclustername: string, virtualnetworkaddressname: string, options?: VirtualNetworkAddressesDeleteOptionalParams): Promise; + get(resourceGroupName: string, cloudvmclustername: string, virtualnetworkaddressname: string, options?: VirtualNetworkAddressesGetOptionalParams): Promise; + listByCloudVmCluster(resourceGroupName: string, cloudvmclustername: string, options?: VirtualNetworkAddressesListByCloudVmClusterOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export interface VirtualNetworkAddressesCreateOrUpdateHeaders { + retryAfter?: number; +} + +// @public +export interface VirtualNetworkAddressesCreateOrUpdateOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type VirtualNetworkAddressesCreateOrUpdateResponse = VirtualNetworkAddress; + +// @public +export interface VirtualNetworkAddressesDeleteHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface VirtualNetworkAddressesDeleteOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type VirtualNetworkAddressesDeleteResponse = VirtualNetworkAddressesDeleteHeaders; + +// @public +export interface VirtualNetworkAddressesGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type VirtualNetworkAddressesGetResponse = VirtualNetworkAddress; + +// @public +export interface VirtualNetworkAddressesListByCloudVmClusterNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type VirtualNetworkAddressesListByCloudVmClusterNextResponse = VirtualNetworkAddressListResult; + +// @public +export interface VirtualNetworkAddressesListByCloudVmClusterOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type VirtualNetworkAddressesListByCloudVmClusterResponse = VirtualNetworkAddressListResult; + +// @public +export type VirtualNetworkAddressLifecycleState = string; + +// @public +export interface VirtualNetworkAddressListResult { + readonly nextLink?: string; + value: VirtualNetworkAddress[]; +} + +// @public +export type WorkloadType = string; + +// @public +export type ZoneType = string; + +// (No @packageDocumentation comment for this package) + +``` diff --git a/sdk/Oracle.Database/arm-Oracle.Database/sample.env b/sdk/Oracle.Database/arm-Oracle.Database/sample.env new file mode 100644 index 000000000000..672847a3fea0 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/sample.env @@ -0,0 +1,4 @@ +# App registration secret for AAD authentication +AZURE_CLIENT_SECRET= +AZURE_CLIENT_ID= +AZURE_TENANT_ID= \ No newline at end of file diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/index.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/index.ts new file mode 100644 index 000000000000..743a8bbc83dc --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/index.ts @@ -0,0 +1,13 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +/// +export { getContinuationToken } from "./pagingHelper"; +export * from "./models"; +export { OracleDatabaseResourceManager } from "./oracleDatabaseResourceManager"; +export * from "./operationsInterfaces"; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/lroImpl.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/lroImpl.ts new file mode 100644 index 000000000000..b27f5ac7209b --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/lroImpl.ts @@ -0,0 +1,42 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +import { AbortSignalLike } from "@azure/abort-controller"; +import { LongRunningOperation, LroResponse } from "@azure/core-lro"; + +export function createLroSpec(inputs: { + sendOperationFn: (args: any, spec: any) => Promise>; + args: Record; + spec: { + readonly requestBody?: unknown; + readonly path?: string; + readonly httpMethod: string; + } & Record; +}): LongRunningOperation { + const { args, spec, sendOperationFn } = inputs; + return { + requestMethod: spec.httpMethod, + requestPath: spec.path!, + sendInitialRequest: () => sendOperationFn(args, spec), + sendPollRequest: ( + path: string, + options?: { abortSignal?: AbortSignalLike }, + ) => { + const { requestBody, ...restSpec } = spec; + return sendOperationFn(args, { + ...restSpec, + httpMethod: "GET", + path, + abortSignal: options?.abortSignal, + }); + }, + }; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/models/index.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/models/index.ts new file mode 100644 index 000000000000..972c4463bb03 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/models/index.ts @@ -0,0 +1,4674 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import * as coreClient from "@azure/core-client"; + +export type AutonomousDatabaseBasePropertiesUnion = + | AutonomousDatabaseBaseProperties + | AutonomousDatabaseCloneProperties + | AutonomousDatabaseProperties; + +/** A list of REST API operations supported by an Azure Resource Provider. It contains an URL link to get the next set of results. */ +export interface OperationListResult { + /** + * List of operations supported by the resource provider + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly value?: Operation[]; + /** + * URL to get the next set of operation list results (if there are any). + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nextLink?: string; +} + +/** Details of a REST API operation, returned from the Resource Provider Operations API */ +export interface Operation { + /** + * The name of the operation, as per Resource-Based Access Control (RBAC). Examples: "Microsoft.Compute/virtualMachines/write", "Microsoft.Compute/virtualMachines/capture/action" + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly name?: string; + /** + * Whether the operation applies to data-plane. This is "true" for data-plane operations and "false" for ARM/control-plane operations. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly isDataAction?: boolean; + /** Localized display information for this particular operation. */ + display?: OperationDisplay; + /** + * The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is "user,system" + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly origin?: Origin; + /** + * Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly actionType?: ActionType; +} + +/** Localized display information for this particular operation. */ +export interface OperationDisplay { + /** + * The localized friendly form of the resource provider name, e.g. "Microsoft Monitoring Insights" or "Microsoft Compute". + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly provider?: string; + /** + * The localized friendly name of the resource type related to this operation. E.g. "Virtual Machines" or "Job Schedule Collections". + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly resource?: string; + /** + * The concise, localized friendly name for the operation; suitable for dropdowns. E.g. "Create or Update Virtual Machine", "Restart Virtual Machine". + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly operation?: string; + /** + * The short, localized friendly description of the operation; suitable for tool tips and detailed views. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly description?: string; +} + +/** Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.). */ +export interface ErrorResponse { + /** The error object. */ + error?: ErrorDetail; +} + +/** The error detail. */ +export interface ErrorDetail { + /** + * The error code. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly code?: string; + /** + * The error message. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly message?: string; + /** + * The error target. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly target?: string; + /** + * The error details. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly details?: ErrorDetail[]; + /** + * The error additional info. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly additionalInfo?: ErrorAdditionalInfo[]; +} + +/** The resource management error additional info. */ +export interface ErrorAdditionalInfo { + /** + * The additional info type. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly type?: string; + /** + * The additional info. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly info?: Record; +} + +/** The response of a AutonomousDatabase list operation. */ +export interface AutonomousDatabaseListResult { + /** The AutonomousDatabase items on this page */ + value: AutonomousDatabase[]; + /** + * The link to the next page of items + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nextLink?: string; +} + +/** Autonomous Database base resource model. */ +export interface AutonomousDatabaseBaseProperties { + /** Polymorphic discriminator, which specifies the different types this object can be */ + dataBaseType: "Clone" | "Regular"; + /** + * Admin password. + * This value contains a credential. Consider obscuring before showing to users + */ + adminPassword?: string; + /** The maintenance schedule type of the Autonomous Database Serverless. */ + autonomousMaintenanceScheduleType?: AutonomousMaintenanceScheduleType; + /** The character set for the autonomous database. */ + characterSet?: string; + /** The compute amount (CPUs) available to the database. */ + computeCount?: number; + /** The compute model of the Autonomous Database. */ + computeModel?: ComputeModel; + /** The number of CPU cores to be made available to the database. */ + cpuCoreCount?: number; + /** Customer Contacts. */ + customerContacts?: CustomerContact[]; + /** The quantity of data in the database, in terabytes. */ + dataStorageSizeInTbs?: number; + /** The size, in gigabytes, of the data volume that will be created and attached to the database. */ + dataStorageSizeInGbs?: number; + /** A valid Oracle Database version for Autonomous Database. */ + dbVersion?: string; + /** The Autonomous Database workload type */ + dbWorkload?: WorkloadType; + /** The user-friendly name for the Autonomous Database. */ + displayName?: string; + /** Indicates if auto scaling is enabled for the Autonomous Database CPU core count. */ + isAutoScalingEnabled?: boolean; + /** Indicates if auto scaling is enabled for the Autonomous Database storage. */ + isAutoScalingForStorageEnabled?: boolean; + /** + * The list of [OCIDs](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of standby databases located in Autonomous Data Guard remote regions that are associated with the source database. Note that for Autonomous Database Serverless instances, standby databases located in the same region as the source primary database do not have OCIDs. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly peerDbIds?: string[]; + /** The database OCID of the Disaster Recovery peer database, which is located in a different region from the current peer database. */ + peerDbId?: string; + /** Indicates whether the Autonomous Database has local or called in-region Data Guard enabled. */ + isLocalDataGuardEnabled?: boolean; + /** + * Indicates whether the Autonomous Database has Cross Region Data Guard enabled. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly isRemoteDataGuardEnabled?: boolean; + /** + * Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance.Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover.Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly localDisasterRecoveryType?: DisasterRecoveryType; + /** + * Local Autonomous Disaster Recovery standby database details. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly localStandbyDb?: AutonomousDatabaseStandbySummary; + /** + * Indicates the number of seconds of data loss for a Data Guard failover. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly failedDataRecoveryInSeconds?: number; + /** Specifies if the Autonomous Database requires mTLS connections. */ + isMtlsConnectionRequired?: boolean; + /** Specifies if the Autonomous Database preview version is being provisioned. */ + isPreviewVersionWithServiceTermsAccepted?: boolean; + /** The Oracle license model that applies to the Oracle Autonomous Database. The default is LICENSE_INCLUDED. */ + licenseModel?: LicenseModel; + /** The character set for the Autonomous Database. */ + ncharacterSet?: string; + /** + * Additional information about the current lifecycle state. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleDetails?: string; + /** + * Azure resource provisioning state. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly provisioningState?: AzureResourceProvisioningState; + /** + * Views lifecycleState + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleState?: AutonomousDatabaseLifecycleState; + /** The list of scheduled operations. */ + scheduledOperations?: ScheduledOperationsType; + /** The private endpoint Ip address for the resource. */ + privateEndpointIp?: string; + /** The resource's private endpoint label. */ + privateEndpointLabel?: string; + /** + * HTTPS link to OCI resources exposed to Azure Customer via Azure Interface. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly ociUrl?: string; + /** Client subnet */ + subnetId?: string; + /** VNET for network connectivity */ + vnetId?: string; + /** + * The date and time that the database was created. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeCreated?: Date; + /** + * The date and time when maintenance will begin. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeMaintenanceBegin?: Date; + /** + * The date and time when maintenance will end. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeMaintenanceEnd?: Date; + /** + * The current amount of storage in use for user and system data, in terabytes (TB). + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly actualUsedDataStorageSizeInTbs?: number; + /** + * The amount of storage currently allocated for the database tables and billed for, rounded up. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly allocatedStorageSizeInTbs?: number; + /** + * Information about Oracle APEX Application Development. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly apexDetails?: ApexDetailsType; + /** + * List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly availableUpgradeVersions?: string[]; + /** + * The connection string used to connect to the Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly connectionStrings?: ConnectionStringType; + /** + * The URLs for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly connectionUrls?: ConnectionUrlType; + /** + * Status of the Data Safe registration for this Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly dataSafeStatus?: DataSafeStatusType; + /** The Oracle Database Edition that applies to the Autonomous databases. */ + databaseEdition?: DatabaseEditionType; + /** Autonomous Database ID */ + autonomousDatabaseId?: string; + /** + * The area assigned to In-Memory tables in Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly inMemoryAreaInGbs?: number; + /** + * Indicates if the Autonomous Database version is a preview version. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly isPreview?: boolean; + /** Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard */ + localAdgAutoFailoverMaxDataLossLimit?: number; + /** + * The amount of memory (in GBs) enabled per ECPU or OCPU. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly memoryPerOracleComputeUnitInGbs?: number; + /** Indicates the Autonomous Database mode. */ + openMode?: OpenModeType; + /** + * Status of Operations Insights for this Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly operationsInsightsStatus?: OperationsInsightsStatusType; + /** The Autonomous Database permission level. */ + permissionLevel?: PermissionLevelType; + /** + * The private endpoint for the resource. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly privateEndpoint?: string; + /** + * An array of CPU values that an Autonomous Database can be scaled to. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly provisionableCpus?: number[]; + /** The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled. */ + role?: RoleType; + /** + * The URL of the Service Console for the Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly serviceConsoleUrl?: string; + /** + * The SQL Web Developer URL for the Oracle Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly sqlWebDeveloperUrl?: string; + /** + * The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly supportedRegionsToCloneTo?: string[]; + /** + * The date and time the Autonomous Data Guard role was switched for the Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeDataGuardRoleChanged?: string; + /** + * The date and time the Always Free database will be automatically deleted because of inactivity. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeDeletionOfFreeAutonomousDatabase?: string; + /** + * The date and time that Autonomous Data Guard was enabled for an Autonomous Database where the standby was provisioned in the same region as the primary database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeLocalDataGuardEnabled?: string; + /** + * The timestamp of the last failover operation. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeOfLastFailover?: string; + /** + * The date and time when last refresh happened. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeOfLastRefresh?: string; + /** + * The refresh point timestamp (UTC). + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeOfLastRefreshPoint?: string; + /** + * The timestamp of the last switchover operation for the Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeOfLastSwitchover?: string; + /** + * The date and time the Always Free database will be stopped because of inactivity. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeReclamationOfFreeAutonomousDatabase?: string; + /** + * The storage space consumed by Autonomous Database in GBs. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly usedDataStorageSizeInGbs?: number; + /** + * The amount of storage that has been used, in terabytes. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly usedDataStorageSizeInTbs?: number; + /** + * Database ocid + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly ocid?: string; + /** Retention period, in days, for long-term backups */ + backupRetentionPeriodInDays?: number; + /** The client IP access control list (ACL). This is an array of CIDR notations and/or IP addresses. Values should be separate strings, separated by commas. Example: ['1.1.1.1','1.1.1.0/24','1.1.2.25'] */ + whitelistedIps?: string[]; +} + +/** CustomerContact resource properties */ +export interface CustomerContact { + /** The email address used by Oracle to send notifications regarding databases and infrastructure. */ + email: string; +} + +/** Autonomous Disaster Recovery standby database details. */ +export interface AutonomousDatabaseStandbySummary { + /** The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover. */ + lagTimeInSeconds?: number; + /** The current state of the Autonomous Database. */ + lifecycleState?: AutonomousDatabaseLifecycleState; + /** Additional information about the current lifecycle state. */ + lifecycleDetails?: string; + /** The date and time the Autonomous Data Guard role was switched for the standby Autonomous Database. */ + timeDataGuardRoleChanged?: string; + /** The date and time the Disaster Recovery role was switched for the standby Autonomous Database. */ + timeDisasterRecoveryRoleChanged?: string; +} + +/** The list of scheduled operations. */ +export interface ScheduledOperationsType { + /** Day of week */ + dayOfWeek: DayOfWeek; + /** auto start time. value must be of ISO-8601 format HH:mm */ + scheduledStartTime?: string; + /** auto stop time. value must be of ISO-8601 format HH:mm */ + scheduledStopTime?: string; +} + +/** DayOfWeek resource properties */ +export interface DayOfWeek { + /** Name of the day of the week. */ + name: DayOfWeekName; +} + +/** Information about Oracle APEX Application Development. */ +export interface ApexDetailsType { + /** The Oracle APEX Application Development version. */ + apexVersion?: string; + /** The Oracle REST Data Services (ORDS) version. */ + ordsVersion?: string; +} + +/** Connection strings to connect to an Oracle Autonomous Database. */ +export interface ConnectionStringType { + /** Returns all connection strings that can be used to connect to the Autonomous Database. */ + allConnectionStrings?: AllConnectionStringType; + /** The database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements. */ + dedicated?: string; + /** The High database service provides the highest level of resources to each SQL statement resulting in the highest performance, but supports the fewest number of concurrent SQL statements. */ + high?: string; + /** The Low database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements. */ + low?: string; + /** The Medium database service provides a lower level of resources to each SQL statement potentially resulting a lower level of performance, but supports more concurrent SQL statements. */ + medium?: string; + /** A list of connection string profiles to allow clients to group, filter and select connection string values based on structured metadata. */ + profiles?: ProfileType[]; +} + +/** The connection string profile to allow clients to group, filter and select connection string values based on structured metadata. */ +export interface AllConnectionStringType { + /** The High database service provides the highest level of resources to each SQL statement resulting in the highest performance, but supports the fewest number of concurrent SQL statements. */ + high?: string; + /** The Low database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements. */ + low?: string; + /** The Medium database service provides a lower level of resources to each SQL statement potentially resulting a lower level of performance, but supports more concurrent SQL statements. */ + medium?: string; +} + +/** The connection string profile to allow clients to group, filter and select connection string values based on structured metadata. */ +export interface ProfileType { + /** Consumer group used by the connection. */ + consumerGroup?: ConsumerGroup; + /** A user-friendly name for the connection. */ + displayName: string; + /** Host format used in connection string. */ + hostFormat: HostFormatType; + /** True for a regional connection string, applicable to cross-region DG only. */ + isRegional?: boolean; + /** Protocol used by the connection. */ + protocol: ProtocolType; + /** Specifies whether the listener performs a direct hand-off of the session, or redirects the session. */ + sessionMode: SessionModeType; + /** Specifies whether the connection string is using the long (LONG), Easy Connect (EZCONNECT), or Easy Connect Plus (EZCONNECTPLUS) format. */ + syntaxFormat: SyntaxFormatType; + /** Specifies whether the TLS handshake is using one-way (SERVER) or mutual (MUTUAL) authentication. */ + tlsAuthentication?: TlsAuthenticationType; + /** Connection string value. */ + value: string; +} + +/** The URLs for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN. */ +export interface ConnectionUrlType { + /** Oracle Application Express (APEX) URL. */ + apexUrl?: string; + /** The URL of the Database Transforms for the Autonomous Database. */ + databaseTransformsUrl?: string; + /** The URL of the Graph Studio for the Autonomous Database. */ + graphStudioUrl?: string; + /** The URL of the Oracle Machine Learning (OML) Notebook for the Autonomous Database. */ + machineLearningNotebookUrl?: string; + /** The URL of the MongoDB API for the Autonomous Database. */ + mongoDbUrl?: string; + /** The Oracle REST Data Services (ORDS) URL of the Web Access for the Autonomous Database. */ + ordsUrl?: string; + /** Oracle SQL Developer Web URL. */ + sqlDevWebUrl?: string; +} + +/** Common fields that are returned in the response for all Azure Resource Manager resources */ +export interface Resource { + /** + * Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly id?: string; + /** + * The name of the resource + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly name?: string; + /** + * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly type?: string; + /** + * Azure Resource Manager metadata containing createdBy and modifiedBy information. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly systemData?: SystemData; +} + +/** Metadata pertaining to creation and last modification of the resource. */ +export interface SystemData { + /** The identity that created the resource. */ + createdBy?: string; + /** The type of identity that created the resource. */ + createdByType?: CreatedByType; + /** The timestamp of resource creation (UTC). */ + createdAt?: Date; + /** The identity that last modified the resource. */ + lastModifiedBy?: string; + /** The type of identity that last modified the resource. */ + lastModifiedByType?: CreatedByType; + /** The timestamp of resource last modification (UTC) */ + lastModifiedAt?: Date; +} + +/** The response of a CloudExadataInfrastructure list operation. */ +export interface CloudExadataInfrastructureListResult { + /** The CloudExadataInfrastructure items on this page */ + value: CloudExadataInfrastructure[]; + /** + * The link to the next page of items + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nextLink?: string; +} + +/** MaintenanceWindow resource properties */ +export interface MaintenanceWindow { + /** The maintenance window scheduling preference. */ + preference?: Preference; + /** Months during the year when maintenance should be performed. */ + months?: Month[]; + /** Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed. */ + weeksOfMonth?: number[]; + /** Days during the week when maintenance should be performed. */ + daysOfWeek?: DayOfWeek[]; + /** The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC */ + hoursOfDay?: number[]; + /** Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4. */ + leadTimeInWeeks?: number; + /** Cloud Exadata infrastructure node patching method. */ + patchingMode?: PatchingMode; + /** Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive). */ + customActionTimeoutInMins?: number; + /** If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations. */ + isCustomActionTimeoutEnabled?: boolean; + /** is Monthly Patching Enabled */ + isMonthlyPatchingEnabled?: boolean; +} + +/** Month resource properties */ +export interface Month { + /** Name of the month of the year. */ + name: MonthName; +} + +/** The estimated total time required in minutes for all patching operations (database server, storage server, and network switch patching). */ +export interface EstimatedPatchingTime { + /** + * The estimated time required in minutes for database server patching. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly estimatedDbServerPatchingTime?: number; + /** + * The estimated time required in minutes for network switch patching. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly estimatedNetworkSwitchesPatchingTime?: number; + /** + * The estimated time required in minutes for storage server patching. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly estimatedStorageServerPatchingTime?: number; + /** + * The estimated total time required in minutes for all patching operations. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly totalEstimatedPatchingTime?: number; +} + +/** The response of a CloudVmCluster list operation. */ +export interface CloudVmClusterListResult { + /** The CloudVmCluster items on this page */ + value: CloudVmCluster[]; + /** + * The link to the next page of items + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nextLink?: string; +} + +/** A rule for allowing inbound (INGRESS) IP packets */ +export interface NSGCidr { + /** Conceptually, this is the range of IP addresses that a packet coming into the instance can come from. */ + source: string; + /** Destination port range to specify particular destination ports for TCP rules. */ + destinationPortRange?: PortRange; +} + +/** Port Range to specify particular destination ports for TCP rules. */ +export interface PortRange { + /** The minimum port number, which must not be greater than the maximum port number. */ + min: number; + /** The maximum port number, which must not be less than the minimum port number. To specify a single port number, set both the min and max to the same value. */ + max: number; +} + +/** DataCollectionOptions resource properties */ +export interface DataCollectionOptions { + /** Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. */ + isDiagnosticsEventsEnabled?: boolean; + /** Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. */ + isHealthMonitoringEnabled?: boolean; + /** Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. */ + isIncidentLogsEnabled?: boolean; +} + +/** ExadataIormConfig for cloud vm cluster */ +export interface ExadataIormConfig { + /** An array of IORM settings for all the database in the Exadata DB system. */ + dbPlans?: DbIormConfig[]; + /** Additional information about the current lifecycleState. */ + lifecycleDetails?: string; + /** The current state of IORM configuration for the Exadata DB system. */ + lifecycleState?: IormLifecycleState; + /** The current value for the IORM objective. The default is AUTO. */ + objective?: Objective; +} + +/** DbIormConfig for cloud vm cluster */ +export interface DbIormConfig { + /** The database name. For the default DbPlan, the dbName is default. */ + dbName?: string; + /** The flash cache limit for this database. This value is internally configured based on the share value assigned to the database. */ + flashCacheLimit?: string; + /** The relative priority of this database. */ + share?: number; +} + +/** The response of a AutonomousDatabaseCharacterSet list operation. */ +export interface AutonomousDatabaseCharacterSetListResult { + /** The AutonomousDatabaseCharacterSet items on this page */ + value: AutonomousDatabaseCharacterSet[]; + /** + * The link to the next page of items + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nextLink?: string; +} + +/** The response of a AutonomousDatabaseNationalCharacterSet list operation. */ +export interface AutonomousDatabaseNationalCharacterSetListResult { + /** The AutonomousDatabaseNationalCharacterSet items on this page */ + value: AutonomousDatabaseNationalCharacterSet[]; + /** + * The link to the next page of items + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nextLink?: string; +} + +/** The response of a AutonomousDbVersion list operation. */ +export interface AutonomousDbVersionListResult { + /** The AutonomousDbVersion items on this page */ + value: AutonomousDbVersion[]; + /** + * The link to the next page of items + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nextLink?: string; +} + +/** The response of a DbSystemShape list operation. */ +export interface DbSystemShapeListResult { + /** The DbSystemShape items on this page */ + value: DbSystemShape[]; + /** + * The link to the next page of items + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nextLink?: string; +} + +/** The response of a DnsPrivateView list operation. */ +export interface DnsPrivateViewListResult { + /** The DnsPrivateView items on this page */ + value: DnsPrivateView[]; + /** + * The link to the next page of items + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nextLink?: string; +} + +/** The response of a DnsPrivateZone list operation. */ +export interface DnsPrivateZoneListResult { + /** The DnsPrivateZone items on this page */ + value: DnsPrivateZone[]; + /** + * The link to the next page of items + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nextLink?: string; +} + +/** The response of a GiVersion list operation. */ +export interface GiVersionListResult { + /** The GiVersion items on this page */ + value: GiVersion[]; + /** + * The link to the next page of items + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nextLink?: string; +} + +/** The response of a OracleSubscription list operation. */ +export interface OracleSubscriptionListResult { + /** The OracleSubscription items on this page */ + value: OracleSubscription[]; + /** + * The link to the next page of items + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nextLink?: string; +} + +/** Plan for the resource. */ +export interface Plan { + /** A user defined name of the 3rd Party Artifact that is being procured. */ + name: string; + /** The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic */ + publisher: string; + /** The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding. */ + product: string; + /** A publisher provided promotion code as provisioned in Data Market for the said product/artifact. */ + promotionCode?: string; + /** The version of the desired product/artifact. */ + version?: string; +} + +/** The type used for update operations of the OracleSubscription. */ +export interface OracleSubscriptionUpdate { + /** Details of the resource plan. */ + plan?: ResourcePlanTypeUpdate; + /** Product code for the term unit */ + productCode?: string; + /** Intent for the update operation */ + intent?: Intent; +} + +/** ResourcePlanTypeUpdate model definition */ +export interface ResourcePlanTypeUpdate { + /** A user defined name of the 3rd Party Artifact that is being procured. */ + name?: string; + /** The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic */ + publisher?: string; + /** The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding. */ + product?: string; + /** A publisher provided promotion code as provisioned in Data Market for the said product/artifact. */ + promotionCode?: string; + /** The version of the desired product/artifact. */ + version?: string; +} + +/** Activation Links model */ +export interface ActivationLinks { + /** + * New Cloud Account Activation Link + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly newCloudAccountActivationLink?: string; + /** + * Existing Cloud Account Activation Link + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly existingCloudAccountActivationLink?: string; +} + +/** Cloud Account Details model */ +export interface CloudAccountDetails { + /** + * Cloud Account name + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly cloudAccountName?: string; + /** + * Cloud Account Home region + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly cloudAccountHomeRegion?: string; +} + +/** SaaS Subscription Details model */ +export interface SaasSubscriptionDetails { + /** + * Purchased SaaS subscription ID + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly id?: string; + /** + * SaaS subscription name + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly subscriptionName?: string; + /** + * Creation Date and Time + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeCreated?: Date; + /** + * Purchased offer ID + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly offerId?: string; + /** + * Purchased offer's plan ID + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly planId?: string; + /** + * Indicates the status of the Subscription. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly saasSubscriptionStatus?: string; + /** + * Publisher ID + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly publisherId?: string; + /** + * Purchaser Email ID + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly purchaserEmailId?: string; + /** + * Purchaser Tenant ID + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly purchaserTenantId?: string; + /** + * Purchase Term Unit + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly termUnit?: string; + /** + * AutoRenew flag + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly isAutoRenew?: boolean; + /** + * FreeTrial flag + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly isFreeTrial?: boolean; +} + +/** The type used for update operations of the AutonomousDatabase. */ +export interface AutonomousDatabaseUpdate { + /** Resource tags. */ + tags?: { [propertyName: string]: string }; + /** + * Admin password. + * This value contains a credential. Consider obscuring before showing to users + */ + adminPassword?: string; + /** The maintenance schedule type of the Autonomous Database Serverless. */ + autonomousMaintenanceScheduleType?: AutonomousMaintenanceScheduleType; + /** The compute amount (CPUs) available to the database. */ + computeCount?: number; + /** The number of CPU cores to be made available to the database. */ + cpuCoreCount?: number; + /** Customer Contacts. */ + customerContacts?: CustomerContact[]; + /** The quantity of data in the database, in terabytes. */ + dataStorageSizeInTbs?: number; + /** The size, in gigabytes, of the data volume that will be created and attached to the database. */ + dataStorageSizeInGbs?: number; + /** The user-friendly name for the Autonomous Database. */ + displayName?: string; + /** Indicates if auto scaling is enabled for the Autonomous Database CPU core count. */ + isAutoScalingEnabled?: boolean; + /** Indicates if auto scaling is enabled for the Autonomous Database storage. */ + isAutoScalingForStorageEnabled?: boolean; + /** The database OCID of the Disaster Recovery peer database, which is located in a different region from the current peer database. */ + peerDbId?: string; + /** Indicates whether the Autonomous Database has local or called in-region Data Guard enabled. */ + isLocalDataGuardEnabled?: boolean; + /** Specifies if the Autonomous Database requires mTLS connections. */ + isMtlsConnectionRequired?: boolean; + /** The Oracle license model that applies to the Oracle Autonomous Database. The default is LICENSE_INCLUDED. */ + licenseModel?: LicenseModel; + /** The list of scheduled operations. */ + scheduledOperations?: ScheduledOperationsTypeUpdate; + /** The Oracle Database Edition that applies to the Autonomous databases. */ + databaseEdition?: DatabaseEditionType; + /** Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard */ + localAdgAutoFailoverMaxDataLossLimit?: number; + /** Indicates the Autonomous Database mode. */ + openMode?: OpenModeType; + /** The Autonomous Database permission level. */ + permissionLevel?: PermissionLevelType; + /** The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled. */ + role?: RoleType; + /** Retention period, in days, for long-term backups */ + backupRetentionPeriodInDays?: number; + /** The client IP access control list (ACL). This is an array of CIDR notations and/or IP addresses. Values should be separate strings, separated by commas. Example: ['1.1.1.1','1.1.1.0/24','1.1.2.25'] */ + whitelistedIps?: string[]; +} + +/** The list of scheduled operations. */ +export interface ScheduledOperationsTypeUpdate { + /** Day of week */ + dayOfWeek?: DayOfWeekUpdate; + /** auto start time. value must be of ISO-8601 format HH:mm */ + scheduledStartTime?: string; + /** auto stop time. value must be of ISO-8601 format HH:mm */ + scheduledStopTime?: string; +} + +/** DayOfWeek resource properties */ +export interface DayOfWeekUpdate { + /** Name of the day of the week. */ + name?: DayOfWeekName; +} + +/** The response of a AutonomousDatabaseBackup list operation. */ +export interface AutonomousDatabaseBackupListResult { + /** The AutonomousDatabaseBackup items on this page */ + value: AutonomousDatabaseBackup[]; + /** + * The link to the next page of items + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nextLink?: string; +} + +/** The type used for update operations of the AutonomousDatabaseBackup. */ +export interface AutonomousDatabaseBackupUpdate { + /** Retention period, in days, for long-term backups. */ + retentionPeriodInDays?: number; +} + +/** PeerDb Details */ +export interface PeerDbDetails { + /** The database OCID of the Disaster Recovery peer database, which is located in a different region from the current peer database. */ + peerDbId?: string; +} + +/** Autonomous Database Generate Wallet resource model. */ +export interface GenerateAutonomousDatabaseWalletDetails { + /** The type of wallet to generate. */ + generateType?: GenerateType; + /** True when requesting regional connection strings in PDB connect info, applicable to cross-region DG only. */ + isRegional?: boolean; + /** + * The password to encrypt the keys inside the wallet + * This value contains a credential. Consider obscuring before showing to users + */ + password: string; +} + +/** Autonomous Database Wallet File resource model. */ +export interface AutonomousDatabaseWalletFile { + /** The base64 encoded wallet files */ + walletFiles: string; +} + +/** The type used for update operations of the CloudExadataInfrastructure. */ +export interface CloudExadataInfrastructureUpdate { + /** CloudExadataInfrastructure zones */ + zones?: string[]; + /** Resource tags. */ + tags?: { [propertyName: string]: string }; + /** The number of compute servers for the cloud Exadata infrastructure. */ + computeCount?: number; + /** The number of storage servers for the cloud Exadata infrastructure. */ + storageCount?: number; + /** maintenanceWindow property */ + maintenanceWindow?: MaintenanceWindow; + /** The list of customer email addresses that receive information from Oracle about the specified OCI Database service resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a cloud Exadata infrastructure instance. */ + customerContacts?: CustomerContact[]; + /** The name for the Exadata infrastructure. */ + displayName?: string; +} + +/** The response of a DbServer list operation. */ +export interface DbServerListResult { + /** The DbServer items on this page */ + value: DbServer[]; + /** + * The link to the next page of items + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nextLink?: string; +} + +/** DbServer Patching Properties */ +export interface DbServerPatchingDetails { + /** + * Estimated Patch Duration + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly estimatedPatchDuration?: number; + /** + * Patching Status + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly patchingStatus?: DbServerPatchingStatus; + /** + * Time Patching Ended + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timePatchingEnded?: Date; + /** + * Time Patching Started + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timePatchingStarted?: Date; +} + +/** The type used for update operations of the CloudVmCluster. */ +export interface CloudVmClusterUpdate { + /** Resource tags. */ + tags?: { [propertyName: string]: string }; + /** The data disk group size to be allocated in GBs per VM. */ + storageSizeInGbs?: number; + /** The data disk group size to be allocated in TBs. */ + dataStorageSizeInTbs?: number; + /** The local node storage to be allocated in GBs. */ + dbNodeStorageSizeInGbs?: number; + /** The memory to be allocated in GBs. */ + memorySizeInGbs?: number; + /** The number of CPU cores enabled on the cloud VM cluster. */ + cpuCoreCount?: number; + /** The number of OCPU cores to enable on the cloud VM cluster. Only 1 decimal place is allowed for the fractional part. */ + ocpuCount?: number; + /** The public key portion of one or more key pairs used for SSH access to the cloud VM cluster. */ + sshPublicKeys?: string[]; + /** The Oracle license model that applies to the cloud VM cluster. The default is LICENSE_INCLUDED. */ + licenseModel?: LicenseModel; + /** Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS. */ + dataCollectionOptions?: DataCollectionOptions; + /** Display Name */ + displayName?: string; + /** The list of compute servers to be added to the cloud VM cluster. */ + computeNodes?: string[]; +} + +/** Add/Remove (Virtual Machine) DbNode model */ +export interface AddRemoveDbNode { + /** Db servers ocids */ + dbServers: string[]; +} + +/** The response of a DbNode list operation. */ +export interface DbNodeListResult { + /** The DbNode items on this page */ + value: DbNode[]; + /** + * The link to the next page of items + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nextLink?: string; +} + +/** DbNode action object */ +export interface DbNodeAction { + /** Db action */ + action: DbNodeActionEnum; +} + +/** Private Ip Addresses filter */ +export interface PrivateIpAddressesFilter { + /** Subnet OCID */ + subnetId: string; + /** VCN OCID */ + vnicId: string; +} + +/** PrivateIpAddress resource properties */ +export interface PrivateIpAddressProperties { + /** PrivateIpAddresses displayName */ + displayName: string; + /** PrivateIpAddresses hostnameLabel */ + hostnameLabel: string; + /** PrivateIpAddresses Id */ + ocid: string; + /** PrivateIpAddresses ipAddress */ + ipAddress: string; + /** PrivateIpAddresses subnetId */ + subnetId: string; +} + +/** The response of a VirtualNetworkAddress list operation. */ +export interface VirtualNetworkAddressListResult { + /** The VirtualNetworkAddress items on this page */ + value: VirtualNetworkAddress[]; + /** + * The link to the next page of items + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nextLink?: string; +} + +/** validation error */ +export interface ValidationError { + /** error code */ + code: string; + /** error message */ + message: string; +} + +/** validation result */ +export interface ValidationResult { + /** + * validation status + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly status: ValidationStatus; + /** validation error */ + error: ValidationError; +} + +/** Autonomous Database clone resource model. */ +export interface AutonomousDatabaseCloneProperties + extends AutonomousDatabaseBaseProperties { + /** Polymorphic discriminator, which specifies the different types this object can be */ + dataBaseType: "Clone"; + /** The source of the database. */ + source?: SourceType; + /** The Azure ID of the Autonomous Database that was cloned to create the current Autonomous Database. */ + sourceId: string; + /** The Autonomous Database clone type. */ + cloneType: CloneType; + /** + * Indicates if the refreshable clone can be reconnected to its source database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly isReconnectCloneEnabled?: boolean; + /** + * Indicates if the Autonomous Database is a refreshable clone. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly isRefreshableClone?: boolean; + /** The refresh mode of the clone. */ + refreshableModel?: RefreshableModelType; + /** + * The refresh status of the clone. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly refreshableStatus?: RefreshableStatusType; + /** The time and date as an RFC3339 formatted string, e.g., 2022-01-01T12:00:00.000Z, to set the limit for a refreshable clone to be reconnected to its source database. */ + timeUntilReconnectCloneEnabled?: string; +} + +/** Autonomous Database resource model. */ +export interface AutonomousDatabaseProperties + extends AutonomousDatabaseBaseProperties { + /** Polymorphic discriminator, which specifies the different types this object can be */ + dataBaseType: "Regular"; +} + +/** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */ +export interface TrackedResource extends Resource { + /** Resource tags. */ + tags?: { [propertyName: string]: string }; + /** The geo-location where the resource lives */ + location: string; +} + +/** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */ +export interface ProxyResource extends Resource {} + +/** Autonomous Database resource model. */ +export interface AutonomousDatabase extends TrackedResource { + /** + * Admin password. + * This value contains a credential. Consider obscuring before showing to users + */ + adminPassword?: string; + /** Database type to be created. */ + dataBaseType?: DataBaseType; + /** The maintenance schedule type of the Autonomous Database Serverless. */ + autonomousMaintenanceScheduleType?: AutonomousMaintenanceScheduleType; + /** The character set for the autonomous database. */ + characterSet?: string; + /** The compute amount (CPUs) available to the database. */ + computeCount?: number; + /** The compute model of the Autonomous Database. */ + computeModel?: ComputeModel; + /** The number of CPU cores to be made available to the database. */ + cpuCoreCount?: number; + /** Customer Contacts. */ + customerContacts?: CustomerContact[]; + /** The quantity of data in the database, in terabytes. */ + dataStorageSizeInTbs?: number; + /** The size, in gigabytes, of the data volume that will be created and attached to the database. */ + dataStorageSizeInGbs?: number; + /** A valid Oracle Database version for Autonomous Database. */ + dbVersion?: string; + /** The Autonomous Database workload type */ + dbWorkload?: WorkloadType; + /** The user-friendly name for the Autonomous Database. */ + displayName?: string; + /** Indicates if auto scaling is enabled for the Autonomous Database CPU core count. */ + isAutoScalingEnabled?: boolean; + /** Indicates if auto scaling is enabled for the Autonomous Database storage. */ + isAutoScalingForStorageEnabled?: boolean; + /** + * The list of [OCIDs](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of standby databases located in Autonomous Data Guard remote regions that are associated with the source database. Note that for Autonomous Database Serverless instances, standby databases located in the same region as the source primary database do not have OCIDs. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly peerDbIds?: string[]; + /** The database OCID of the Disaster Recovery peer database, which is located in a different region from the current peer database. */ + peerDbId?: string; + /** Indicates whether the Autonomous Database has local or called in-region Data Guard enabled. */ + isLocalDataGuardEnabled?: boolean; + /** + * Indicates whether the Autonomous Database has Cross Region Data Guard enabled. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly isRemoteDataGuardEnabled?: boolean; + /** + * Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance.Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover.Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly localDisasterRecoveryType?: DisasterRecoveryType; + /** + * Local Autonomous Disaster Recovery standby database details. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly localStandbyDb?: AutonomousDatabaseStandbySummary; + /** + * Indicates the number of seconds of data loss for a Data Guard failover. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly failedDataRecoveryInSeconds?: number; + /** Specifies if the Autonomous Database requires mTLS connections. */ + isMtlsConnectionRequired?: boolean; + /** Specifies if the Autonomous Database preview version is being provisioned. */ + isPreviewVersionWithServiceTermsAccepted?: boolean; + /** The Oracle license model that applies to the Oracle Autonomous Database. The default is LICENSE_INCLUDED. */ + licenseModel?: LicenseModel; + /** The character set for the Autonomous Database. */ + ncharacterSet?: string; + /** + * Additional information about the current lifecycle state. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleDetails?: string; + /** + * Azure resource provisioning state. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly provisioningState?: AzureResourceProvisioningState; + /** + * Views lifecycleState + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleState?: AutonomousDatabaseLifecycleState; + /** The list of scheduled operations. */ + scheduledOperations?: ScheduledOperationsType; + /** The private endpoint Ip address for the resource. */ + privateEndpointIp?: string; + /** The resource's private endpoint label. */ + privateEndpointLabel?: string; + /** + * HTTPS link to OCI resources exposed to Azure Customer via Azure Interface. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly ociUrl?: string; + /** Client subnet */ + subnetId?: string; + /** VNET for network connectivity */ + vnetId?: string; + /** + * The date and time that the database was created. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeCreated?: Date; + /** + * The date and time when maintenance will begin. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeMaintenanceBegin?: Date; + /** + * The date and time when maintenance will end. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeMaintenanceEnd?: Date; + /** + * The current amount of storage in use for user and system data, in terabytes (TB). + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly actualUsedDataStorageSizeInTbs?: number; + /** + * The amount of storage currently allocated for the database tables and billed for, rounded up. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly allocatedStorageSizeInTbs?: number; + /** + * Information about Oracle APEX Application Development. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly apexDetails?: ApexDetailsType; + /** + * List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly availableUpgradeVersions?: string[]; + /** + * The connection string used to connect to the Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly connectionStrings?: ConnectionStringType; + /** + * The URLs for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly connectionUrls?: ConnectionUrlType; + /** + * Status of the Data Safe registration for this Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly dataSafeStatus?: DataSafeStatusType; + /** The Oracle Database Edition that applies to the Autonomous databases. */ + databaseEdition?: DatabaseEditionType; + /** Autonomous Database ID */ + autonomousDatabaseId?: string; + /** + * The area assigned to In-Memory tables in Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly inMemoryAreaInGbs?: number; + /** + * Indicates if the Autonomous Database version is a preview version. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly isPreview?: boolean; + /** Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard */ + localAdgAutoFailoverMaxDataLossLimit?: number; + /** + * The amount of memory (in GBs) enabled per ECPU or OCPU. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly memoryPerOracleComputeUnitInGbs?: number; + /** Indicates the Autonomous Database mode. */ + openMode?: OpenModeType; + /** + * Status of Operations Insights for this Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly operationsInsightsStatus?: OperationsInsightsStatusType; + /** The Autonomous Database permission level. */ + permissionLevel?: PermissionLevelType; + /** + * The private endpoint for the resource. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly privateEndpoint?: string; + /** + * An array of CPU values that an Autonomous Database can be scaled to. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly provisionableCpus?: number[]; + /** The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled. */ + role?: RoleType; + /** + * The URL of the Service Console for the Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly serviceConsoleUrl?: string; + /** + * The SQL Web Developer URL for the Oracle Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly sqlWebDeveloperUrl?: string; + /** + * The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly supportedRegionsToCloneTo?: string[]; + /** + * The date and time the Autonomous Data Guard role was switched for the Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeDataGuardRoleChanged?: string; + /** + * The date and time the Always Free database will be automatically deleted because of inactivity. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeDeletionOfFreeAutonomousDatabase?: string; + /** + * The date and time that Autonomous Data Guard was enabled for an Autonomous Database where the standby was provisioned in the same region as the primary database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeLocalDataGuardEnabled?: string; + /** + * The timestamp of the last failover operation. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeOfLastFailover?: string; + /** + * The date and time when last refresh happened. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeOfLastRefresh?: string; + /** + * The refresh point timestamp (UTC). + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeOfLastRefreshPoint?: string; + /** + * The timestamp of the last switchover operation for the Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeOfLastSwitchover?: string; + /** + * The date and time the Always Free database will be stopped because of inactivity. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeReclamationOfFreeAutonomousDatabase?: string; + /** + * The storage space consumed by Autonomous Database in GBs. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly usedDataStorageSizeInGbs?: number; + /** + * The amount of storage that has been used, in terabytes. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly usedDataStorageSizeInTbs?: number; + /** + * Database ocid + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly ocid?: string; + /** Retention period, in days, for long-term backups */ + backupRetentionPeriodInDays?: number; + /** The client IP access control list (ACL). This is an array of CIDR notations and/or IP addresses. Values should be separate strings, separated by commas. Example: ['1.1.1.1','1.1.1.0/24','1.1.2.25'] */ + whitelistedIps?: string[]; +} + +/** CloudExadataInfrastructure resource definition */ +export interface CloudExadataInfrastructure extends TrackedResource { + /** CloudExadataInfrastructure zones */ + zones: string[]; + /** + * Exadata infra ocid + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly ocid?: string; + /** The number of compute servers for the cloud Exadata infrastructure. */ + computeCount?: number; + /** The number of storage servers for the cloud Exadata infrastructure. */ + storageCount?: number; + /** + * The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB). + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly totalStorageSizeInGbs?: number; + /** + * The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB). + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly availableStorageSizeInGbs?: number; + /** + * The date and time the cloud Exadata infrastructure resource was created. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeCreated?: string; + /** + * Additional information about the current lifecycle state. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleDetails?: string; + /** maintenanceWindow property */ + maintenanceWindow?: MaintenanceWindow; + /** + * The estimated total time required in minutes for all patching operations (database server, storage server, and network switch patching). + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly estimatedPatchingTime?: EstimatedPatchingTime; + /** The list of customer email addresses that receive information from Oracle about the specified OCI Database service resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a cloud Exadata infrastructure instance. */ + customerContacts?: CustomerContact[]; + /** + * CloudExadataInfrastructure provisioning state + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly provisioningState?: AzureResourceProvisioningState; + /** + * CloudExadataInfrastructure lifecycle state + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleState?: CloudExadataInfrastructureLifecycleState; + /** The model name of the cloud Exadata infrastructure resource. */ + shape?: string; + /** + * HTTPS link to OCI resources exposed to Azure Customer via Azure Interface. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly ociUrl?: string; + /** + * The total number of CPU cores allocated. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly cpuCount?: number; + /** + * The total number of CPU cores available. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly maxCpuCount?: number; + /** + * The memory allocated in GBs. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly memorySizeInGbs?: number; + /** + * The total memory available in GBs. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly maxMemoryInGbs?: number; + /** + * The local node storage to be allocated in GBs. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly dbNodeStorageSizeInGbs?: number; + /** + * The total local node storage available in GBs. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly maxDbNodeStorageSizeInGbs?: number; + /** + * The quantity of data in the database, in terabytes. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly dataStorageSizeInTbs?: number; + /** + * The total available DATA disk group size. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly maxDataStorageInTbs?: number; + /** + * The software version of the database servers (dom0) in the Exadata infrastructure. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly dbServerVersion?: string; + /** + * The software version of the storage servers (cells) in the Exadata infrastructure. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly storageServerVersion?: string; + /** + * The requested number of additional storage servers activated for the Exadata infrastructure. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly activatedStorageCount?: number; + /** + * The requested number of additional storage servers for the Exadata infrastructure. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly additionalStorageCount?: number; + /** The name for the Exadata infrastructure. */ + displayName?: string; + /** + * The OCID of the last maintenance run. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lastMaintenanceRunId?: string; + /** + * The OCID of the next maintenance run. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nextMaintenanceRunId?: string; + /** + * Monthly Db Server version + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly monthlyDbServerVersion?: string; + /** + * Monthly Storage Server version + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly monthlyStorageServerVersion?: string; +} + +/** CloudVmCluster resource definition */ +export interface CloudVmCluster extends TrackedResource { + /** + * Cloud VM Cluster ocid + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly ocid?: string; + /** + * The port number configured for the listener on the cloud VM cluster. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly listenerPort?: number; + /** + * The number of nodes in the cloud VM cluster. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nodeCount?: number; + /** The data disk group size to be allocated in GBs per VM. */ + storageSizeInGbs?: number; + /** The data disk group size to be allocated in TBs. */ + dataStorageSizeInTbs?: number; + /** The local node storage to be allocated in GBs. */ + dbNodeStorageSizeInGbs?: number; + /** The memory to be allocated in GBs. */ + memorySizeInGbs?: number; + /** + * The date and time that the cloud VM cluster was created. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeCreated?: Date; + /** + * Additional information about the current lifecycle state. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleDetails?: string; + /** The time zone of the cloud VM cluster. For details, see [Exadata Infrastructure Time Zones](/Content/Database/References/timezones.htm). */ + timeZone?: string; + /** The OCID of the zone the cloud VM cluster is associated with. */ + zoneId?: string; + /** The hostname for the cloud VM cluster. */ + hostname?: string; + /** The domain name for the cloud VM cluster. */ + domain?: string; + /** The number of CPU cores enabled on the cloud VM cluster. */ + cpuCoreCount?: number; + /** The number of OCPU cores to enable on the cloud VM cluster. Only 1 decimal place is allowed for the fractional part. */ + ocpuCount?: number; + /** The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive. */ + clusterName?: string; + /** The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See [Storage Configuration](/Content/Database/Concepts/exaoverview.htm#Exadata) in the Exadata documentation for details on the impact of the configuration settings on storage. */ + dataStoragePercentage?: number; + /** If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster. */ + isLocalBackupEnabled?: boolean; + /** Cloud Exadata Infrastructure ID */ + cloudExadataInfrastructureId?: string; + /** If true, sparse disk group is configured for the cloud VM cluster. If false, sparse disk group is not created. */ + isSparseDiskgroupEnabled?: boolean; + /** + * Operating system version of the image. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly systemVersion?: string; + /** The public key portion of one or more key pairs used for SSH access to the cloud VM cluster. */ + sshPublicKeys?: string[]; + /** The Oracle license model that applies to the cloud VM cluster. The default is LICENSE_INCLUDED. */ + licenseModel?: LicenseModel; + /** + * The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly diskRedundancy?: DiskRedundancy; + /** + * The Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster. **Note:** For a single-node DB system, this list is empty. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly scanIpIds?: string[]; + /** + * The virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster. **Note:** For a single-node DB system, this list is empty. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly vipIds?: string[]; + /** + * The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly scanDnsName?: string; + /** The TCP Single Client Access Name (SCAN) port. The default port is 1521. */ + scanListenerPortTcp?: number; + /** The TCPS Single Client Access Name (SCAN) port. The default port is 2484. */ + scanListenerPortTcpSsl?: number; + /** + * The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly scanDnsRecordId?: string; + /** + * The model name of the Exadata hardware running the cloud VM cluster. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly shape?: string; + /** + * CloudVmCluster provisioning state + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly provisioningState?: AzureResourceProvisioningState; + /** + * CloudVmCluster lifecycle state + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleState?: CloudVmClusterLifecycleState; + /** VNET for network connectivity */ + vnetId?: string; + /** Oracle Grid Infrastructure (GI) software version */ + giVersion?: string; + /** + * HTTPS link to OCI resources exposed to Azure Customer via Azure Interface. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly ociUrl?: string; + /** + * HTTPS link to OCI Network Security Group exposed to Azure Customer via the Azure Interface. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly nsgUrl?: string; + /** Client subnet */ + subnetId?: string; + /** Client OCI backup subnet CIDR, default is 192.168.252.0/22 */ + backupSubnetCidr?: string; + /** CIDR blocks for additional NSG ingress rules. The VNET CIDRs used to provision the VM Cluster will be added by default. */ + nsgCidrs?: NSGCidr[]; + /** Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS. */ + dataCollectionOptions?: DataCollectionOptions; + /** Display Name */ + displayName?: string; + /** The list of compute servers to be added to the cloud VM cluster. */ + computeNodes?: string[]; + /** + * iormConfigCache details for cloud VM cluster. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly iormConfigCache?: ExadataIormConfig; + /** + * The OCID of the last maintenance update history entry. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lastUpdateHistoryEntryId?: string; + /** The list of DB servers. */ + dbServers?: string[]; + /** + * Cluster compartmentId + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly compartmentId?: string; + /** + * Cluster subnet ocid + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly subnetOcid?: string; +} + +/** AutonomousDatabaseCharacterSets resource definition */ +export interface AutonomousDatabaseCharacterSet extends ProxyResource { + /** + * The Oracle Autonomous Database supported character sets. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly characterSet?: string; +} + +/** AutonomousDatabaseNationalCharacterSets resource definition */ +export interface AutonomousDatabaseNationalCharacterSet extends ProxyResource { + /** + * The Oracle Autonomous Database supported national character sets. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly characterSet?: string; +} + +/** AutonomousDbVersion resource definition */ +export interface AutonomousDbVersion extends ProxyResource { + /** + * Supported Autonomous Db versions. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly version?: string; + /** + * The Autonomous Database workload type + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly dbWorkload?: WorkloadType; + /** + * True if this version of the Oracle Database software's default is free. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly isDefaultForFree?: boolean; + /** + * True if this version of the Oracle Database software's default is paid. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly isDefaultForPaid?: boolean; + /** + * True if this version of the Oracle Database software can be used for Always-Free Autonomous Databases. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly isFreeTierEnabled?: boolean; + /** + * True if this version of the Oracle Database software has payments enabled. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly isPaidEnabled?: boolean; +} + +/** DbSystemShape resource definition */ +export interface DbSystemShape extends ProxyResource { + /** + * The family of the shape used for the DB system. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly shapeFamily?: string; + /** + * The maximum number of CPU cores that can be enabled on the DB system for this shape. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly availableCoreCount?: number; + /** + * The minimum number of CPU cores that can be enabled on the DB system for this shape. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly minimumCoreCount?: number; + /** + * The runtime minimum number of CPU cores that can be enabled on the DB system for this shape. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly runtimeMinimumCoreCount?: number; + /** + * The discrete number by which the CPU core count for this shape can be increased or decreased. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly coreCountIncrement?: number; + /** + * The minimum number of Exadata storage servers available for the Exadata infrastructure. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly minStorageCount?: number; + /** + * The maximum number of Exadata storage servers available for the Exadata infrastructure. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly maxStorageCount?: number; + /** + * The maximum data storage available per storage server for this shape. Only applicable to ExaCC Elastic shapes. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly availableDataStoragePerServerInTbs?: number; + /** + * The maximum memory available per database node for this shape. Only applicable to ExaCC Elastic shapes. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly availableMemoryPerNodeInGbs?: number; + /** + * The maximum Db Node storage available per database node for this shape. Only applicable to ExaCC Elastic shapes. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly availableDbNodePerNodeInGbs?: number; + /** + * The minimum number of CPU cores that can be enabled per node for this shape. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly minCoreCountPerNode?: number; + /** + * The maximum memory that can be enabled for this shape. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly availableMemoryInGbs?: number; + /** + * The minimum memory that need be allocated per node for this shape. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly minMemoryPerNodeInGbs?: number; + /** + * The maximum Db Node storage that can be enabled for this shape. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly availableDbNodeStorageInGbs?: number; + /** + * The minimum Db Node storage that need be allocated per node for this shape. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly minDbNodeStoragePerNodeInGbs?: number; + /** + * The maximum DATA storage that can be enabled for this shape. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly availableDataStorageInTbs?: number; + /** + * The minimum data storage that need be allocated for this shape. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly minDataStorageInTbs?: number; + /** + * The minimum number of database nodes available for this shape. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly minimumNodeCount?: number; + /** + * The maximum number of database nodes available for this shape. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly maximumNodeCount?: number; + /** + * The maximum number of CPU cores per database node that can be enabled for this shape. Only applicable to the flex Exadata shape and ExaCC Elastic shapes. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly availableCoreCountPerNode?: number; +} + +/** DnsPrivateView resource definition */ +export interface DnsPrivateView extends ProxyResource { + /** + * The OCID of the view + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly ocid?: string; + /** + * The display name of the view resource + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly displayName?: string; + /** + * A Boolean flag indicating whether or not parts of the resource are unable to be explicitly managed. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly isProtected?: boolean; + /** + * Views lifecycleState + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleState?: DnsPrivateViewsLifecycleState; + /** + * The canonical absolute URL of the resource. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly self?: string; + /** + * views timeCreated + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeCreated?: Date; + /** + * views timeCreated + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeUpdated?: Date; + /** + * Azure resource provisioning state. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly provisioningState?: ResourceProvisioningState; +} + +/** DnsPrivateZone resource definition */ +export interface DnsPrivateZone extends ProxyResource { + /** + * The OCID of the Zone + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly ocid?: string; + /** + * A Boolean flag indicating whether or not parts of the resource are unable to be explicitly managed. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly isProtected?: boolean; + /** + * Zones lifecycleState + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleState?: DnsPrivateZonesLifecycleState; + /** + * The canonical absolute URL of the resource. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly self?: string; + /** + * The current serial of the zone. As seen in the zone's SOA record. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly serial?: number; + /** + * Version is the never-repeating, totally-orderable, version of the zone, from which the serial field of the zone's SOA record is derived. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly version?: string; + /** + * The OCID of the private view containing the zone. This value will be null for zones in the global DNS, which are publicly resolvable and not part of a private view. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly viewId?: string; + /** + * The type of the zone. Must be either PRIMARY or SECONDARY. SECONDARY is only supported for GLOBAL zones. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly zoneType?: ZoneType; + /** + * Zones timeCreated + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeCreated?: Date; + /** + * Azure resource provisioning state. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly provisioningState?: ResourceProvisioningState; +} + +/** GiVersion resource definition */ +export interface GiVersion extends ProxyResource { + /** + * A valid Oracle Grid Infrastructure (GI) software version. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly version?: string; +} + +/** OracleSubscription resource definition */ +export interface OracleSubscription extends ProxyResource { + /** Details of the resource plan. */ + plan?: Plan; + /** + * OracleSubscriptionProvisioningState provisioning state + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly provisioningState?: OracleSubscriptionProvisioningState; + /** + * SAAS subscription ID generated by Marketplace + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly saasSubscriptionId?: string; + /** + * Cloud Account Id + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly cloudAccountId?: string; + /** + * Cloud Account provisioning state. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly cloudAccountState?: CloudAccountProvisioningState; + /** Term Unit. P1Y, P3Y, etc, see Durations https://en.wikipedia.org/wiki/ISO_8601 */ + termUnit?: string; + /** Product code for the term unit */ + productCode?: string; + /** Intent for the update operation */ + intent?: Intent; +} + +/** AutonomousDatabaseBackup resource definition */ +export interface AutonomousDatabaseBackup extends ProxyResource { + /** + * The OCID of the Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly autonomousDatabaseId?: string; + /** + * The size of the database in terabytes at the time the backup was taken. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly databaseSizeInTBs?: number; + /** + * A valid Oracle Database version for Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly dbVersion?: string; + /** The user-friendly name for the backup. The name does not have to be unique. */ + displayName?: string; + /** + * The OCID of the Autonomous Database backup. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly ocid?: string; + /** + * Indicates whether the backup is user-initiated or automatic. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly isAutomatic?: boolean; + /** + * Indicates whether the backup can be used to restore the associated Autonomous Database. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly isRestorable?: boolean; + /** + * Additional information about the current lifecycle state. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleDetails?: string; + /** + * The current state of the backup. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleState?: AutonomousDatabaseBackupLifecycleState; + /** Retention period, in days, for long-term backups. */ + retentionPeriodInDays?: number; + /** + * The backup size in terabytes (TB). + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly sizeInTBs?: number; + /** + * Timestamp until when the backup will be available. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeAvailableTil?: Date; + /** + * The date and time the backup completed. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeEnded?: string; + /** + * The type of backup. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly typePropertiesType?: AutonomousDatabaseBackupType; + /** + * Azure resource provisioning state. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly provisioningState?: AzureResourceProvisioningState; +} + +/** DbServer resource model */ +export interface DbServer extends ProxyResource { + /** + * Db server name. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly ocid?: string; + /** + * The name for the Db Server. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly displayName?: string; + /** + * The OCID of the compartment. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly compartmentId?: string; + /** + * The OCID of the Exadata infrastructure. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly exadataInfrastructureId?: string; + /** + * The number of CPU cores enabled on the Db server. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly cpuCoreCount?: number; + /** + * dbServerPatching details of the Db server. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly dbServerPatchingDetails?: DbServerPatchingDetails; + /** + * The total memory available in GBs. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly maxMemoryInGbs?: number; + /** + * The allocated local node storage in GBs on the Db server. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly dbNodeStorageSizeInGbs?: number; + /** + * The OCID of the VM Clusters associated with the Db server. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly vmClusterIds?: string[]; + /** + * The OCID of the Db nodes associated with the Db server. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly dbNodeIds?: string[]; + /** + * Lifecycle details of dbServer. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleDetails?: string; + /** + * DbServer provisioning state. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleState?: DbServerProvisioningState; + /** + * The total number of CPU cores available. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly maxCpuCount?: number; + /** + * The list of OCIDs of the Autonomous VM Clusters associated with the Db server. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly autonomousVmClusterIds?: string[]; + /** + * The list of OCIDs of the Autonomous Virtual Machines associated with the Db server. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly autonomousVirtualMachineIds?: string[]; + /** + * The total max dbNode storage in GBs. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly maxDbNodeStorageInGbs?: number; + /** + * The total memory size in GBs. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly memorySizeInGbs?: number; + /** + * The shape of the Db server. The shape determines the amount of CPU, storage, and memory resources available. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly shape?: string; + /** + * The date and time that the Db Server was created. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeCreated?: Date; + /** + * Azure resource provisioning state. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly provisioningState?: ResourceProvisioningState; +} + +/** The DbNode resource belonging to vmCluster */ +export interface DbNode extends ProxyResource { + /** + * DbNode OCID + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly ocid?: string; + /** + * Additional information about the planned maintenance. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly additionalDetails?: string; + /** + * The OCID of the backup IP address associated with the database node. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly backupIpId?: string; + /** + * The OCID of the second backup VNIC. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly backupVnic2Id?: string; + /** + * The OCID of the backup VNIC. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly backupVnicId?: string; + /** + * The number of CPU cores enabled on the Db node. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly cpuCoreCount?: number; + /** + * The allocated local node storage in GBs on the Db node. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly dbNodeStorageSizeInGbs?: number; + /** + * The OCID of the Exacc Db server associated with the database node. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly dbServerId?: string; + /** + * The OCID of the DB system. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly dbSystemId?: string; + /** + * The name of the Fault Domain the instance is contained in. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly faultDomain?: string; + /** + * The OCID of the host IP address associated with the database node. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly hostIpId?: string; + /** + * The host name for the database node. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly hostname?: string; + /** + * The current state of the database node. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleState?: DbNodeProvisioningState; + /** + * Lifecycle details of Db Node. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleDetails?: string; + /** + * The type of database node maintenance. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly maintenanceType?: DbNodeMaintenanceType; + /** + * The allocated memory in GBs on the Db node. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly memorySizeInGbs?: number; + /** + * The size (in GB) of the block storage volume allocation for the DB system. This attribute applies only for virtual machine DB systems. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly softwareStorageSizeInGb?: number; + /** + * The date and time that the database node was created. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeCreated?: Date; + /** + * End date and time of maintenance window. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeMaintenanceWindowEnd?: Date; + /** + * Start date and time of maintenance window. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeMaintenanceWindowStart?: Date; + /** + * The OCID of the second VNIC. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly vnic2Id?: string; + /** + * The OCID of the VNIC. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly vnicId?: string; + /** + * Azure resource provisioning state. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly provisioningState?: ResourceProvisioningState; +} + +/** Virtual IP resource belonging to a vm cluster resource. */ +export interface VirtualNetworkAddress extends ProxyResource { + /** Virtual network Address address. */ + ipAddress?: string; + /** Virtual Machine OCID. */ + vmOcid?: string; + /** + * Application VIP OCID. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly ocid?: string; + /** + * Virtual network address fully qualified domain name. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly domain?: string; + /** + * Additional information about the current lifecycle state of the application virtual IP (VIP) address. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleDetails?: string; + /** + * Azure resource provisioning state. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly provisioningState?: AzureResourceProvisioningState; + /** + * virtual network address lifecycle state. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly lifecycleState?: VirtualNetworkAddressLifecycleState; + /** + * The date and time when the create operation for the application virtual IP (VIP) address completed. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly timeAssigned?: Date; +} + +/** Defines headers for AutonomousDatabases_createOrUpdate operation. */ +export interface AutonomousDatabasesCreateOrUpdateHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; +} + +/** Defines headers for AutonomousDatabases_update operation. */ +export interface AutonomousDatabasesUpdateHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for AutonomousDatabases_delete operation. */ +export interface AutonomousDatabasesDeleteHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for AutonomousDatabases_failover operation. */ +export interface AutonomousDatabasesFailoverHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for AutonomousDatabases_switchover operation. */ +export interface AutonomousDatabasesSwitchoverHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for CloudExadataInfrastructures_createOrUpdate operation. */ +export interface CloudExadataInfrastructuresCreateOrUpdateHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; +} + +/** Defines headers for CloudExadataInfrastructures_update operation. */ +export interface CloudExadataInfrastructuresUpdateHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for CloudExadataInfrastructures_delete operation. */ +export interface CloudExadataInfrastructuresDeleteHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for CloudExadataInfrastructures_addStorageCapacity operation. */ +export interface CloudExadataInfrastructuresAddStorageCapacityHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for CloudVmClusters_createOrUpdate operation. */ +export interface CloudVmClustersCreateOrUpdateHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; +} + +/** Defines headers for CloudVmClusters_update operation. */ +export interface CloudVmClustersUpdateHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for CloudVmClusters_delete operation. */ +export interface CloudVmClustersDeleteHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for CloudVmClusters_addVms operation. */ +export interface CloudVmClustersAddVmsHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for CloudVmClusters_removeVms operation. */ +export interface CloudVmClustersRemoveVmsHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for OracleSubscriptions_createOrUpdate operation. */ +export interface OracleSubscriptionsCreateOrUpdateHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; +} + +/** Defines headers for OracleSubscriptions_update operation. */ +export interface OracleSubscriptionsUpdateHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for OracleSubscriptions_delete operation. */ +export interface OracleSubscriptionsDeleteHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for OracleSubscriptions_listActivationLinks operation. */ +export interface OracleSubscriptionsListActivationLinksHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for OracleSubscriptions_listCloudAccountDetails operation. */ +export interface OracleSubscriptionsListCloudAccountDetailsHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for OracleSubscriptions_listSaasSubscriptionDetails operation. */ +export interface OracleSubscriptionsListSaasSubscriptionDetailsHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for AutonomousDatabaseBackups_createOrUpdate operation. */ +export interface AutonomousDatabaseBackupsCreateOrUpdateHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; +} + +/** Defines headers for AutonomousDatabaseBackups_update operation. */ +export interface AutonomousDatabaseBackupsUpdateHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for AutonomousDatabaseBackups_delete operation. */ +export interface AutonomousDatabaseBackupsDeleteHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for DbNodes_action operation. */ +export interface DbNodesActionHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Defines headers for VirtualNetworkAddresses_createOrUpdate operation. */ +export interface VirtualNetworkAddressesCreateOrUpdateHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; +} + +/** Defines headers for VirtualNetworkAddresses_delete operation. */ +export interface VirtualNetworkAddressesDeleteHeaders { + /** The Retry-After header can indicate how long the client should wait before polling the operation status. */ + retryAfter?: number; + /** The Location header contains the URL where the status of the long running operation can be checked. */ + location?: string; +} + +/** Known values of {@link Origin} that the service accepts. */ +export enum KnownOrigin { + /** User */ + User = "user", + /** System */ + System = "system", + /** UserSystem */ + UserSystem = "user,system", +} + +/** + * Defines values for Origin. \ + * {@link KnownOrigin} can be used interchangeably with Origin, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **user** \ + * **system** \ + * **user,system** + */ +export type Origin = string; + +/** Known values of {@link ActionType} that the service accepts. */ +export enum KnownActionType { + /** Internal */ + Internal = "Internal", +} + +/** + * Defines values for ActionType. \ + * {@link KnownActionType} can be used interchangeably with ActionType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Internal** + */ +export type ActionType = string; + +/** Known values of {@link DataBaseType} that the service accepts. */ +export enum KnownDataBaseType { + /** REGULAR value */ + Regular = "Regular", + /** CLONE value */ + Clone = "Clone", +} + +/** + * Defines values for DataBaseType. \ + * {@link KnownDataBaseType} can be used interchangeably with DataBaseType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Regular**: REGULAR value \ + * **Clone**: CLONE value + */ +export type DataBaseType = string; + +/** Known values of {@link AutonomousMaintenanceScheduleType} that the service accepts. */ +export enum KnownAutonomousMaintenanceScheduleType { + /** EARLY value */ + Early = "Early", + /** REGULAR value */ + Regular = "Regular", +} + +/** + * Defines values for AutonomousMaintenanceScheduleType. \ + * {@link KnownAutonomousMaintenanceScheduleType} can be used interchangeably with AutonomousMaintenanceScheduleType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Early**: EARLY value \ + * **Regular**: REGULAR value + */ +export type AutonomousMaintenanceScheduleType = string; + +/** Known values of {@link ComputeModel} that the service accepts. */ +export enum KnownComputeModel { + /** ECPU value */ + Ecpu = "ECPU", + /** OCPU value */ + Ocpu = "OCPU", +} + +/** + * Defines values for ComputeModel. \ + * {@link KnownComputeModel} can be used interchangeably with ComputeModel, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **ECPU**: ECPU value \ + * **OCPU**: OCPU value + */ +export type ComputeModel = string; + +/** Known values of {@link WorkloadType} that the service accepts. */ +export enum KnownWorkloadType { + /** OLTP - indicates an Autonomous Transaction Processing database */ + Oltp = "OLTP", + /** DW - indicates an Autonomous Data Warehouse database */ + DW = "DW", + /** AJD - indicates an Autonomous JSON Database */ + AJD = "AJD", + /** APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type. */ + Apex = "APEX", +} + +/** + * Defines values for WorkloadType. \ + * {@link KnownWorkloadType} can be used interchangeably with WorkloadType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **OLTP**: OLTP - indicates an Autonomous Transaction Processing database \ + * **DW**: DW - indicates an Autonomous Data Warehouse database \ + * **AJD**: AJD - indicates an Autonomous JSON Database \ + * **APEX**: APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type. + */ +export type WorkloadType = string; + +/** Known values of {@link DisasterRecoveryType} that the service accepts. */ +export enum KnownDisasterRecoveryType { + /** ADG value */ + Adg = "Adg", + /** BACKUP_BASED value */ + BackupBased = "BackupBased", +} + +/** + * Defines values for DisasterRecoveryType. \ + * {@link KnownDisasterRecoveryType} can be used interchangeably with DisasterRecoveryType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Adg**: ADG value \ + * **BackupBased**: BACKUP_BASED value + */ +export type DisasterRecoveryType = string; + +/** Known values of {@link AutonomousDatabaseLifecycleState} that the service accepts. */ +export enum KnownAutonomousDatabaseLifecycleState { + /** PROVISIONING value */ + Provisioning = "Provisioning", + /** AVAILABLE value */ + Available = "Available", + /** STOPPING value */ + Stopping = "Stopping", + /** STOPPED value */ + Stopped = "Stopped", + /** STARTING value */ + Starting = "Starting", + /** TERMINATING value */ + Terminating = "Terminating", + /** TERMINATED value */ + Terminated = "Terminated", + /** UNAVAILABLE value */ + Unavailable = "Unavailable", + /** RESTORE_IN_PROGRESS value */ + RestoreInProgress = "RestoreInProgress", + /** RESTORE_FAILED value */ + RestoreFailed = "RestoreFailed", + /** BACKUP_IN_PROGRESS value */ + BackupInProgress = "BackupInProgress", + /** SCALE_IN_PROGRESS value */ + ScaleInProgress = "ScaleInProgress", + /** AVAILABLE_NEEDS_ATTENTION value */ + AvailableNeedsAttention = "AvailableNeedsAttention", + /** UPDATING value */ + Updating = "Updating", + /** MAINTENANCE_IN_PROGRESS value */ + MaintenanceInProgress = "MaintenanceInProgress", + /** RESTARTING value */ + Restarting = "Restarting", + /** RECREATING value */ + Recreating = "Recreating", + /** ROLE_CHANGE_IN_PROGRESS value */ + RoleChangeInProgress = "RoleChangeInProgress", + /** UPGRADING value */ + Upgrading = "Upgrading", + /** INACCESSIBLE value */ + Inaccessible = "Inaccessible", + /** STANDBY value */ + Standby = "Standby", +} + +/** + * Defines values for AutonomousDatabaseLifecycleState. \ + * {@link KnownAutonomousDatabaseLifecycleState} can be used interchangeably with AutonomousDatabaseLifecycleState, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Provisioning**: PROVISIONING value \ + * **Available**: AVAILABLE value \ + * **Stopping**: STOPPING value \ + * **Stopped**: STOPPED value \ + * **Starting**: STARTING value \ + * **Terminating**: TERMINATING value \ + * **Terminated**: TERMINATED value \ + * **Unavailable**: UNAVAILABLE value \ + * **RestoreInProgress**: RESTORE_IN_PROGRESS value \ + * **RestoreFailed**: RESTORE_FAILED value \ + * **BackupInProgress**: BACKUP_IN_PROGRESS value \ + * **ScaleInProgress**: SCALE_IN_PROGRESS value \ + * **AvailableNeedsAttention**: AVAILABLE_NEEDS_ATTENTION value \ + * **Updating**: UPDATING value \ + * **MaintenanceInProgress**: MAINTENANCE_IN_PROGRESS value \ + * **Restarting**: RESTARTING value \ + * **Recreating**: RECREATING value \ + * **RoleChangeInProgress**: ROLE_CHANGE_IN_PROGRESS value \ + * **Upgrading**: UPGRADING value \ + * **Inaccessible**: INACCESSIBLE value \ + * **Standby**: STANDBY value + */ +export type AutonomousDatabaseLifecycleState = string; + +/** Known values of {@link LicenseModel} that the service accepts. */ +export enum KnownLicenseModel { + /** LicenseIncluded value */ + LicenseIncluded = "LicenseIncluded", + /** BringYourOwnLicense value */ + BringYourOwnLicense = "BringYourOwnLicense", +} + +/** + * Defines values for LicenseModel. \ + * {@link KnownLicenseModel} can be used interchangeably with LicenseModel, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **LicenseIncluded**: LicenseIncluded value \ + * **BringYourOwnLicense**: BringYourOwnLicense value + */ +export type LicenseModel = string; + +/** Known values of {@link AzureResourceProvisioningState} that the service accepts. */ +export enum KnownAzureResourceProvisioningState { + /** Resource has been created. */ + Succeeded = "Succeeded", + /** Resource creation failed. */ + Failed = "Failed", + /** Resource creation was canceled. */ + Canceled = "Canceled", + /** Provisioning value */ + Provisioning = "Provisioning", +} + +/** + * Defines values for AzureResourceProvisioningState. \ + * {@link KnownAzureResourceProvisioningState} can be used interchangeably with AzureResourceProvisioningState, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Succeeded**: Resource has been created. \ + * **Failed**: Resource creation failed. \ + * **Canceled**: Resource creation was canceled. \ + * **Provisioning**: Provisioning value + */ +export type AzureResourceProvisioningState = string; + +/** Known values of {@link DayOfWeekName} that the service accepts. */ +export enum KnownDayOfWeekName { + /** Monday value */ + Monday = "Monday", + /** Tuesday value */ + Tuesday = "Tuesday", + /** Wednesday value */ + Wednesday = "Wednesday", + /** Thursday value */ + Thursday = "Thursday", + /** Friday value */ + Friday = "Friday", + /** Saturday value */ + Saturday = "Saturday", + /** Sunday value */ + Sunday = "Sunday", +} + +/** + * Defines values for DayOfWeekName. \ + * {@link KnownDayOfWeekName} can be used interchangeably with DayOfWeekName, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Monday**: Monday value \ + * **Tuesday**: Tuesday value \ + * **Wednesday**: Wednesday value \ + * **Thursday**: Thursday value \ + * **Friday**: Friday value \ + * **Saturday**: Saturday value \ + * **Sunday**: Sunday value + */ +export type DayOfWeekName = string; + +/** Known values of {@link ConsumerGroup} that the service accepts. */ +export enum KnownConsumerGroup { + /** HIGH value */ + High = "High", + /** MEDIUM value */ + Medium = "Medium", + /** LOW value */ + Low = "Low", + /** TP value */ + Tp = "Tp", + /** TPURGENT value */ + Tpurgent = "Tpurgent", +} + +/** + * Defines values for ConsumerGroup. \ + * {@link KnownConsumerGroup} can be used interchangeably with ConsumerGroup, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **High**: HIGH value \ + * **Medium**: MEDIUM value \ + * **Low**: LOW value \ + * **Tp**: TP value \ + * **Tpurgent**: TPURGENT value + */ +export type ConsumerGroup = string; + +/** Known values of {@link HostFormatType} that the service accepts. */ +export enum KnownHostFormatType { + /** FQDN value */ + Fqdn = "Fqdn", + /** IP value */ + Ip = "Ip", +} + +/** + * Defines values for HostFormatType. \ + * {@link KnownHostFormatType} can be used interchangeably with HostFormatType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Fqdn**: FQDN value \ + * **Ip**: IP value + */ +export type HostFormatType = string; + +/** Known values of {@link ProtocolType} that the service accepts. */ +export enum KnownProtocolType { + /** TCP value */ + TCP = "TCP", + /** TCPS value */ + Tcps = "TCPS", +} + +/** + * Defines values for ProtocolType. \ + * {@link KnownProtocolType} can be used interchangeably with ProtocolType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **TCP**: TCP value \ + * **TCPS**: TCPS value + */ +export type ProtocolType = string; + +/** Known values of {@link SessionModeType} that the service accepts. */ +export enum KnownSessionModeType { + /** DIRECT value */ + Direct = "Direct", + /** REDIRECT value */ + Redirect = "Redirect", +} + +/** + * Defines values for SessionModeType. \ + * {@link KnownSessionModeType} can be used interchangeably with SessionModeType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Direct**: DIRECT value \ + * **Redirect**: REDIRECT value + */ +export type SessionModeType = string; + +/** Known values of {@link SyntaxFormatType} that the service accepts. */ +export enum KnownSyntaxFormatType { + /** LONG value */ + Long = "Long", + /** EZCONNECT value */ + Ezconnect = "Ezconnect", + /** EZCONNECTPLUS value */ + Ezconnectplus = "Ezconnectplus", +} + +/** + * Defines values for SyntaxFormatType. \ + * {@link KnownSyntaxFormatType} can be used interchangeably with SyntaxFormatType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Long**: LONG value \ + * **Ezconnect**: EZCONNECT value \ + * **Ezconnectplus**: EZCONNECTPLUS value + */ +export type SyntaxFormatType = string; + +/** Known values of {@link TlsAuthenticationType} that the service accepts. */ +export enum KnownTlsAuthenticationType { + /** SERVER value */ + Server = "Server", + /** MUTUAL value */ + Mutual = "Mutual", +} + +/** + * Defines values for TlsAuthenticationType. \ + * {@link KnownTlsAuthenticationType} can be used interchangeably with TlsAuthenticationType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Server**: SERVER value \ + * **Mutual**: MUTUAL value + */ +export type TlsAuthenticationType = string; + +/** Known values of {@link DataSafeStatusType} that the service accepts. */ +export enum KnownDataSafeStatusType { + /** REGISTERING value */ + Registering = "Registering", + /** REGISTERED value */ + Registered = "Registered", + /** DEREGISTERING value */ + Deregistering = "Deregistering", + /** NOT_REGISTERED value */ + NotRegistered = "NotRegistered", + /** FAILED value */ + Failed = "Failed", +} + +/** + * Defines values for DataSafeStatusType. \ + * {@link KnownDataSafeStatusType} can be used interchangeably with DataSafeStatusType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Registering**: REGISTERING value \ + * **Registered**: REGISTERED value \ + * **Deregistering**: DEREGISTERING value \ + * **NotRegistered**: NOT_REGISTERED value \ + * **Failed**: FAILED value + */ +export type DataSafeStatusType = string; + +/** Known values of {@link DatabaseEditionType} that the service accepts. */ +export enum KnownDatabaseEditionType { + /** STANDARD_EDITION value */ + StandardEdition = "StandardEdition", + /** ENTERPRISE_EDITION value */ + EnterpriseEdition = "EnterpriseEdition", +} + +/** + * Defines values for DatabaseEditionType. \ + * {@link KnownDatabaseEditionType} can be used interchangeably with DatabaseEditionType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **StandardEdition**: STANDARD_EDITION value \ + * **EnterpriseEdition**: ENTERPRISE_EDITION value + */ +export type DatabaseEditionType = string; + +/** Known values of {@link OpenModeType} that the service accepts. */ +export enum KnownOpenModeType { + /** READ_ONLY value */ + ReadOnly = "ReadOnly", + /** READ_WRITE value */ + ReadWrite = "ReadWrite", +} + +/** + * Defines values for OpenModeType. \ + * {@link KnownOpenModeType} can be used interchangeably with OpenModeType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **ReadOnly**: READ_ONLY value \ + * **ReadWrite**: READ_WRITE value + */ +export type OpenModeType = string; + +/** Known values of {@link OperationsInsightsStatusType} that the service accepts. */ +export enum KnownOperationsInsightsStatusType { + /** ENABLING value */ + Enabling = "Enabling", + /** ENABLED value */ + Enabled = "Enabled", + /** DISABLING value */ + Disabling = "Disabling", + /** NOT_ENABLED value */ + NotEnabled = "NotEnabled", + /** FAILED_ENABLING value */ + FailedEnabling = "FailedEnabling", + /** FAILED_DISABLING value */ + FailedDisabling = "FailedDisabling", +} + +/** + * Defines values for OperationsInsightsStatusType. \ + * {@link KnownOperationsInsightsStatusType} can be used interchangeably with OperationsInsightsStatusType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Enabling**: ENABLING value \ + * **Enabled**: ENABLED value \ + * **Disabling**: DISABLING value \ + * **NotEnabled**: NOT_ENABLED value \ + * **FailedEnabling**: FAILED_ENABLING value \ + * **FailedDisabling**: FAILED_DISABLING value + */ +export type OperationsInsightsStatusType = string; + +/** Known values of {@link PermissionLevelType} that the service accepts. */ +export enum KnownPermissionLevelType { + /** RESTRICTED value */ + Restricted = "Restricted", + /** UNRESTRICTED value */ + Unrestricted = "Unrestricted", +} + +/** + * Defines values for PermissionLevelType. \ + * {@link KnownPermissionLevelType} can be used interchangeably with PermissionLevelType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Restricted**: RESTRICTED value \ + * **Unrestricted**: UNRESTRICTED value + */ +export type PermissionLevelType = string; + +/** Known values of {@link RoleType} that the service accepts. */ +export enum KnownRoleType { + /** PRIMARY value */ + Primary = "Primary", + /** STANDBY value */ + Standby = "Standby", + /** DISABLED_STANDBY value */ + DisabledStandby = "DisabledStandby", + /** BACKUP_COPY value */ + BackupCopy = "BackupCopy", + /** SNAPSHOT_STANDBY value */ + SnapshotStandby = "SnapshotStandby", +} + +/** + * Defines values for RoleType. \ + * {@link KnownRoleType} can be used interchangeably with RoleType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Primary**: PRIMARY value \ + * **Standby**: STANDBY value \ + * **DisabledStandby**: DISABLED_STANDBY value \ + * **BackupCopy**: BACKUP_COPY value \ + * **SnapshotStandby**: SNAPSHOT_STANDBY value + */ +export type RoleType = string; + +/** Known values of {@link CreatedByType} that the service accepts. */ +export enum KnownCreatedByType { + /** User */ + User = "User", + /** Application */ + Application = "Application", + /** ManagedIdentity */ + ManagedIdentity = "ManagedIdentity", + /** Key */ + Key = "Key", +} + +/** + * Defines values for CreatedByType. \ + * {@link KnownCreatedByType} can be used interchangeably with CreatedByType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **User** \ + * **Application** \ + * **ManagedIdentity** \ + * **Key** + */ +export type CreatedByType = string; + +/** Known values of {@link Preference} that the service accepts. */ +export enum KnownPreference { + /** NoPreference value */ + NoPreference = "NoPreference", + /** CustomPreference value */ + CustomPreference = "CustomPreference", +} + +/** + * Defines values for Preference. \ + * {@link KnownPreference} can be used interchangeably with Preference, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **NoPreference**: NoPreference value \ + * **CustomPreference**: CustomPreference value + */ +export type Preference = string; + +/** Known values of {@link MonthName} that the service accepts. */ +export enum KnownMonthName { + /** January value */ + January = "January", + /** February value */ + February = "February", + /** March value */ + March = "March", + /** April value */ + April = "April", + /** May value */ + May = "May", + /** June value */ + June = "June", + /** July value */ + July = "July", + /** August value */ + August = "August", + /** September value */ + September = "September", + /** October value */ + October = "October", + /** November value */ + November = "November", + /** December value */ + December = "December", +} + +/** + * Defines values for MonthName. \ + * {@link KnownMonthName} can be used interchangeably with MonthName, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **January**: January value \ + * **February**: February value \ + * **March**: March value \ + * **April**: April value \ + * **May**: May value \ + * **June**: June value \ + * **July**: July value \ + * **August**: August value \ + * **September**: September value \ + * **October**: October value \ + * **November**: November value \ + * **December**: December value + */ +export type MonthName = string; + +/** Known values of {@link PatchingMode} that the service accepts. */ +export enum KnownPatchingMode { + /** Rolling value */ + Rolling = "Rolling", + /** Non Rolling value */ + NonRolling = "NonRolling", +} + +/** + * Defines values for PatchingMode. \ + * {@link KnownPatchingMode} can be used interchangeably with PatchingMode, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Rolling**: Rolling value \ + * **NonRolling**: Non Rolling value + */ +export type PatchingMode = string; + +/** Known values of {@link CloudExadataInfrastructureLifecycleState} that the service accepts. */ +export enum KnownCloudExadataInfrastructureLifecycleState { + /** PROVISIONING value */ + Provisioning = "Provisioning", + /** AVAILABLE value */ + Available = "Available", + /** UPDATING value */ + Updating = "Updating", + /** TERMINATING value */ + Terminating = "Terminating", + /** TERMINATED value */ + Terminated = "Terminated", + /** MAINTENANCE_IN_PROGRESS value */ + MaintenanceInProgress = "MaintenanceInProgress", + /** FAILED value */ + Failed = "Failed", +} + +/** + * Defines values for CloudExadataInfrastructureLifecycleState. \ + * {@link KnownCloudExadataInfrastructureLifecycleState} can be used interchangeably with CloudExadataInfrastructureLifecycleState, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Provisioning**: PROVISIONING value \ + * **Available**: AVAILABLE value \ + * **Updating**: UPDATING value \ + * **Terminating**: TERMINATING value \ + * **Terminated**: TERMINATED value \ + * **MaintenanceInProgress**: MAINTENANCE_IN_PROGRESS value \ + * **Failed**: FAILED value + */ +export type CloudExadataInfrastructureLifecycleState = string; + +/** Known values of {@link DiskRedundancy} that the service accepts. */ +export enum KnownDiskRedundancy { + /** High value */ + High = "High", + /** Normal value */ + Normal = "Normal", +} + +/** + * Defines values for DiskRedundancy. \ + * {@link KnownDiskRedundancy} can be used interchangeably with DiskRedundancy, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **High**: High value \ + * **Normal**: Normal value + */ +export type DiskRedundancy = string; + +/** Known values of {@link CloudVmClusterLifecycleState} that the service accepts. */ +export enum KnownCloudVmClusterLifecycleState { + /** PROVISIONING value */ + Provisioning = "Provisioning", + /** AVAILABLE value */ + Available = "Available", + /** UPDATING value */ + Updating = "Updating", + /** TERMINATING value */ + Terminating = "Terminating", + /** TERMINATED value */ + Terminated = "Terminated", + /** MAINTENANCE_IN_PROGRESS value */ + MaintenanceInProgress = "MaintenanceInProgress", + /** FAILED value */ + Failed = "Failed", +} + +/** + * Defines values for CloudVmClusterLifecycleState. \ + * {@link KnownCloudVmClusterLifecycleState} can be used interchangeably with CloudVmClusterLifecycleState, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Provisioning**: PROVISIONING value \ + * **Available**: AVAILABLE value \ + * **Updating**: UPDATING value \ + * **Terminating**: TERMINATING value \ + * **Terminated**: TERMINATED value \ + * **MaintenanceInProgress**: MAINTENANCE_IN_PROGRESS value \ + * **Failed**: FAILED value + */ +export type CloudVmClusterLifecycleState = string; + +/** Known values of {@link IormLifecycleState} that the service accepts. */ +export enum KnownIormLifecycleState { + /** BOOTSTRAPPING value */ + BootStrapping = "BootStrapping", + /** ENABLED value */ + Enabled = "Enabled", + /** DISABLED value */ + Disabled = "Disabled", + /** UPDATING value */ + Updating = "Updating", + /** FAILED value */ + Failed = "Failed", +} + +/** + * Defines values for IormLifecycleState. \ + * {@link KnownIormLifecycleState} can be used interchangeably with IormLifecycleState, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **BootStrapping**: BOOTSTRAPPING value \ + * **Enabled**: ENABLED value \ + * **Disabled**: DISABLED value \ + * **Updating**: UPDATING value \ + * **Failed**: FAILED value + */ +export type IormLifecycleState = string; + +/** Known values of {@link Objective} that the service accepts. */ +export enum KnownObjective { + /** LOW_LATENCY value */ + LowLatency = "LowLatency", + /** HIGH_THROUGHPUT value */ + HighThroughput = "HighThroughput", + /** BALANCED value */ + Balanced = "Balanced", + /** AUTO value */ + Auto = "Auto", + /** BASIC value */ + Basic = "Basic", +} + +/** + * Defines values for Objective. \ + * {@link KnownObjective} can be used interchangeably with Objective, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **LowLatency**: LOW_LATENCY value \ + * **HighThroughput**: HIGH_THROUGHPUT value \ + * **Balanced**: BALANCED value \ + * **Auto**: AUTO value \ + * **Basic**: BASIC value + */ +export type Objective = string; + +/** Known values of {@link DnsPrivateViewsLifecycleState} that the service accepts. */ +export enum KnownDnsPrivateViewsLifecycleState { + /** Active value */ + Active = "Active", + /** Deleted value */ + Deleted = "Deleted", + /** Deleting value */ + Deleting = "Deleting", + /** Updating value */ + Updating = "Updating", +} + +/** + * Defines values for DnsPrivateViewsLifecycleState. \ + * {@link KnownDnsPrivateViewsLifecycleState} can be used interchangeably with DnsPrivateViewsLifecycleState, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Active**: Active value \ + * **Deleted**: Deleted value \ + * **Deleting**: Deleting value \ + * **Updating**: Updating value + */ +export type DnsPrivateViewsLifecycleState = string; + +/** Known values of {@link ResourceProvisioningState} that the service accepts. */ +export enum KnownResourceProvisioningState { + /** Resource has been created. */ + Succeeded = "Succeeded", + /** Resource creation failed. */ + Failed = "Failed", + /** Resource creation was canceled. */ + Canceled = "Canceled", +} + +/** + * Defines values for ResourceProvisioningState. \ + * {@link KnownResourceProvisioningState} can be used interchangeably with ResourceProvisioningState, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Succeeded**: Resource has been created. \ + * **Failed**: Resource creation failed. \ + * **Canceled**: Resource creation was canceled. + */ +export type ResourceProvisioningState = string; + +/** Known values of {@link DnsPrivateZonesLifecycleState} that the service accepts. */ +export enum KnownDnsPrivateZonesLifecycleState { + /** Active value */ + Active = "Active", + /** Creating value */ + Creating = "Creating", + /** Deleted value */ + Deleted = "Deleted", + /** Deleting value */ + Deleting = "Deleting", + /** Updating value */ + Updating = "Updating", +} + +/** + * Defines values for DnsPrivateZonesLifecycleState. \ + * {@link KnownDnsPrivateZonesLifecycleState} can be used interchangeably with DnsPrivateZonesLifecycleState, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Active**: Active value \ + * **Creating**: Creating value \ + * **Deleted**: Deleted value \ + * **Deleting**: Deleting value \ + * **Updating**: Updating value + */ +export type DnsPrivateZonesLifecycleState = string; + +/** Known values of {@link ZoneType} that the service accepts. */ +export enum KnownZoneType { + /** Primary value */ + Primary = "Primary", + /** Secondary value */ + Secondary = "Secondary", +} + +/** + * Defines values for ZoneType. \ + * {@link KnownZoneType} can be used interchangeably with ZoneType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Primary**: Primary value \ + * **Secondary**: Secondary value + */ +export type ZoneType = string; + +/** Known values of {@link OracleSubscriptionProvisioningState} that the service accepts. */ +export enum KnownOracleSubscriptionProvisioningState { + /** Resource has been created. */ + Succeeded = "Succeeded", + /** Resource creation failed. */ + Failed = "Failed", + /** Resource creation was canceled. */ + Canceled = "Canceled", +} + +/** + * Defines values for OracleSubscriptionProvisioningState. \ + * {@link KnownOracleSubscriptionProvisioningState} can be used interchangeably with OracleSubscriptionProvisioningState, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Succeeded**: Resource has been created. \ + * **Failed**: Resource creation failed. \ + * **Canceled**: Resource creation was canceled. + */ +export type OracleSubscriptionProvisioningState = string; + +/** Known values of {@link CloudAccountProvisioningState} that the service accepts. */ +export enum KnownCloudAccountProvisioningState { + /** Pending value */ + Pending = "Pending", + /** Provisioning value */ + Provisioning = "Provisioning", + /** Available value */ + Available = "Available", +} + +/** + * Defines values for CloudAccountProvisioningState. \ + * {@link KnownCloudAccountProvisioningState} can be used interchangeably with CloudAccountProvisioningState, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Pending**: Pending value \ + * **Provisioning**: Provisioning value \ + * **Available**: Available value + */ +export type CloudAccountProvisioningState = string; + +/** Known values of {@link Intent} that the service accepts. */ +export enum KnownIntent { + /** Retain value */ + Retain = "Retain", + /** Reset value */ + Reset = "Reset", +} + +/** + * Defines values for Intent. \ + * {@link KnownIntent} can be used interchangeably with Intent, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Retain**: Retain value \ + * **Reset**: Reset value + */ +export type Intent = string; + +/** Known values of {@link AutonomousDatabaseBackupLifecycleState} that the service accepts. */ +export enum KnownAutonomousDatabaseBackupLifecycleState { + /** Creating */ + Creating = "Creating", + /** Active */ + Active = "Active", + /** Deleting */ + Deleting = "Deleting", + /** Failed */ + Failed = "Failed", + /** Updating */ + Updating = "Updating", +} + +/** + * Defines values for AutonomousDatabaseBackupLifecycleState. \ + * {@link KnownAutonomousDatabaseBackupLifecycleState} can be used interchangeably with AutonomousDatabaseBackupLifecycleState, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Creating** \ + * **Active** \ + * **Deleting** \ + * **Failed** \ + * **Updating** + */ +export type AutonomousDatabaseBackupLifecycleState = string; + +/** Known values of {@link AutonomousDatabaseBackupType} that the service accepts. */ +export enum KnownAutonomousDatabaseBackupType { + /** Incremental */ + Incremental = "Incremental", + /** Full */ + Full = "Full", + /** LongTerm */ + LongTerm = "LongTerm", +} + +/** + * Defines values for AutonomousDatabaseBackupType. \ + * {@link KnownAutonomousDatabaseBackupType} can be used interchangeably with AutonomousDatabaseBackupType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Incremental** \ + * **Full** \ + * **LongTerm** + */ +export type AutonomousDatabaseBackupType = string; + +/** Known values of {@link GenerateType} that the service accepts. */ +export enum KnownGenerateType { + /** SINGLE value */ + Single = "Single", + /** ALL value */ + All = "All", +} + +/** + * Defines values for GenerateType. \ + * {@link KnownGenerateType} can be used interchangeably with GenerateType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Single**: SINGLE value \ + * **All**: ALL value + */ +export type GenerateType = string; + +/** Known values of {@link DbServerPatchingStatus} that the service accepts. */ +export enum KnownDbServerPatchingStatus { + /** SCHEDULED value */ + Scheduled = "Scheduled", + /** MAINTENANCE_IN_PROGRESS value */ + MaintenanceInProgress = "MaintenanceInProgress", + /** FAILED value */ + Failed = "Failed", + /** COMPLETE value */ + Complete = "Complete", +} + +/** + * Defines values for DbServerPatchingStatus. \ + * {@link KnownDbServerPatchingStatus} can be used interchangeably with DbServerPatchingStatus, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Scheduled**: SCHEDULED value \ + * **MaintenanceInProgress**: MAINTENANCE_IN_PROGRESS value \ + * **Failed**: FAILED value \ + * **Complete**: COMPLETE value + */ +export type DbServerPatchingStatus = string; + +/** Known values of {@link DbServerProvisioningState} that the service accepts. */ +export enum KnownDbServerProvisioningState { + /** CREATING value */ + Creating = "Creating", + /** AVAILABLE value */ + Available = "Available", + /** UNAVAILABLE value */ + Unavailable = "Unavailable", + /** DELETING value */ + Deleting = "Deleting", + /** DELETED value */ + Deleted = "Deleted", + /** MAINTENANCE_IN_PROGRESS value */ + MaintenanceInProgress = "MaintenanceInProgress", +} + +/** + * Defines values for DbServerProvisioningState. \ + * {@link KnownDbServerProvisioningState} can be used interchangeably with DbServerProvisioningState, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Creating**: CREATING value \ + * **Available**: AVAILABLE value \ + * **Unavailable**: UNAVAILABLE value \ + * **Deleting**: DELETING value \ + * **Deleted**: DELETED value \ + * **MaintenanceInProgress**: MAINTENANCE_IN_PROGRESS value + */ +export type DbServerProvisioningState = string; + +/** Known values of {@link DbNodeProvisioningState} that the service accepts. */ +export enum KnownDbNodeProvisioningState { + /** PROVISIONING value */ + Provisioning = "Provisioning", + /** AVAILABLE value */ + Available = "Available", + /** UPDATING value */ + Updating = "Updating", + /** STOPPING value */ + Stopping = "Stopping", + /** STOPPED value */ + Stopped = "Stopped", + /** STARTING value */ + Starting = "Starting", + /** TERMINATING value */ + Terminating = "Terminating", + /** TERMINATED value */ + Terminated = "Terminated", + /** FAILED value */ + Failed = "Failed", +} + +/** + * Defines values for DbNodeProvisioningState. \ + * {@link KnownDbNodeProvisioningState} can be used interchangeably with DbNodeProvisioningState, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Provisioning**: PROVISIONING value \ + * **Available**: AVAILABLE value \ + * **Updating**: UPDATING value \ + * **Stopping**: STOPPING value \ + * **Stopped**: STOPPED value \ + * **Starting**: STARTING value \ + * **Terminating**: TERMINATING value \ + * **Terminated**: TERMINATED value \ + * **Failed**: FAILED value + */ +export type DbNodeProvisioningState = string; + +/** Known values of {@link DbNodeMaintenanceType} that the service accepts. */ +export enum KnownDbNodeMaintenanceType { + /** Provisioning value */ + VmdbRebootMigration = "VmdbRebootMigration", +} + +/** + * Defines values for DbNodeMaintenanceType. \ + * {@link KnownDbNodeMaintenanceType} can be used interchangeably with DbNodeMaintenanceType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **VmdbRebootMigration**: Provisioning value + */ +export type DbNodeMaintenanceType = string; + +/** Known values of {@link DbNodeActionEnum} that the service accepts. */ +export enum KnownDbNodeActionEnum { + /** Start DbNode */ + Start = "Start", + /** Stop DbNode */ + Stop = "Stop", + /** Soft reset DbNode */ + SoftReset = "SoftReset", + /** Reset DbNode */ + Reset = "Reset", +} + +/** + * Defines values for DbNodeActionEnum. \ + * {@link KnownDbNodeActionEnum} can be used interchangeably with DbNodeActionEnum, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Start**: Start DbNode \ + * **Stop**: Stop DbNode \ + * **SoftReset**: Soft reset DbNode \ + * **Reset**: Reset DbNode + */ +export type DbNodeActionEnum = string; + +/** Known values of {@link VirtualNetworkAddressLifecycleState} that the service accepts. */ +export enum KnownVirtualNetworkAddressLifecycleState { + /** Provisioning value */ + Provisioning = "Provisioning", + /** Available value */ + Available = "Available", + /** Terminating value */ + Terminating = "Terminating", + /** Terminated value */ + Terminated = "Terminated", + /** Failed value */ + Failed = "Failed", +} + +/** + * Defines values for VirtualNetworkAddressLifecycleState. \ + * {@link KnownVirtualNetworkAddressLifecycleState} can be used interchangeably with VirtualNetworkAddressLifecycleState, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Provisioning**: Provisioning value \ + * **Available**: Available value \ + * **Terminating**: Terminating value \ + * **Terminated**: Terminated value \ + * **Failed**: Failed value + */ +export type VirtualNetworkAddressLifecycleState = string; + +/** Known values of {@link SourceType} that the service accepts. */ +export enum KnownSourceType { + /** NONE value */ + None = "None", + /** DATABASE value */ + Database = "Database", + /** BACKUP_FROM_ID value */ + BackupFromId = "BackupFromId", + /** BACKUP_FROM_TIMESTAMP value */ + BackupFromTimestamp = "BackupFromTimestamp", + /** CLONE_TO_REFRESHABLE value */ + CloneToRefreshable = "CloneToRefreshable", + /** CROSS_REGION_DATAGUARD value */ + CrossRegionDataguard = "CrossRegionDataguard", + /** CROSS_REGION_DISASTER_RECOVERY value */ + CrossRegionDisasterRecovery = "CrossRegionDisasterRecovery", +} + +/** + * Defines values for SourceType. \ + * {@link KnownSourceType} can be used interchangeably with SourceType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **None**: NONE value \ + * **Database**: DATABASE value \ + * **BackupFromId**: BACKUP_FROM_ID value \ + * **BackupFromTimestamp**: BACKUP_FROM_TIMESTAMP value \ + * **CloneToRefreshable**: CLONE_TO_REFRESHABLE value \ + * **CrossRegionDataguard**: CROSS_REGION_DATAGUARD value \ + * **CrossRegionDisasterRecovery**: CROSS_REGION_DISASTER_RECOVERY value + */ +export type SourceType = string; + +/** Known values of {@link CloneType} that the service accepts. */ +export enum KnownCloneType { + /** FULL value */ + Full = "Full", + /** METADATA value */ + Metadata = "Metadata", +} + +/** + * Defines values for CloneType. \ + * {@link KnownCloneType} can be used interchangeably with CloneType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Full**: FULL value \ + * **Metadata**: METADATA value + */ +export type CloneType = string; + +/** Known values of {@link RefreshableModelType} that the service accepts. */ +export enum KnownRefreshableModelType { + /** AUTOMATIC value */ + Automatic = "Automatic", + /** MANUAL value */ + Manual = "Manual", +} + +/** + * Defines values for RefreshableModelType. \ + * {@link KnownRefreshableModelType} can be used interchangeably with RefreshableModelType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Automatic**: AUTOMATIC value \ + * **Manual**: MANUAL value + */ +export type RefreshableModelType = string; + +/** Known values of {@link RefreshableStatusType} that the service accepts. */ +export enum KnownRefreshableStatusType { + /** REFRESHING value */ + Refreshing = "Refreshing", + /** NOT_REFRESHING value */ + NotRefreshing = "NotRefreshing", +} + +/** + * Defines values for RefreshableStatusType. \ + * {@link KnownRefreshableStatusType} can be used interchangeably with RefreshableStatusType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Refreshing**: REFRESHING value \ + * **NotRefreshing**: NOT_REFRESHING value + */ +export type RefreshableStatusType = string; + +/** Known values of {@link ValidationStatus} that the service accepts. */ +export enum KnownValidationStatus { + /** Succeeded value */ + Succeeded = "Succeeded", + /** Failed value */ + Failed = "Failed", +} + +/** + * Defines values for ValidationStatus. \ + * {@link KnownValidationStatus} can be used interchangeably with ValidationStatus, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Succeeded**: Succeeded value \ + * **Failed**: Failed value + */ +export type ValidationStatus = string; + +/** Known values of {@link UpdateAction} that the service accepts. */ +export enum KnownUpdateAction { + /** ROLLING_APPLY value */ + RollingApply = "RollingApply", + /** NON_ROLLING_APPLY value */ + NonRollingApply = "NonRollingApply", + /** PRECHECK value */ + PreCheck = "PreCheck", + /** ROLLBACK value */ + RollBack = "RollBack", +} + +/** + * Defines values for UpdateAction. \ + * {@link KnownUpdateAction} can be used interchangeably with UpdateAction, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **RollingApply**: ROLLING_APPLY value \ + * **NonRollingApply**: NON_ROLLING_APPLY value \ + * **PreCheck**: PRECHECK value \ + * **RollBack**: ROLLBACK value + */ +export type UpdateAction = string; + +/** Known values of {@link Versions} that the service accepts. */ +export enum KnownVersions { + /** 2023-09-01-preview */ + V20230901 = "2023-09-01-preview", + /** internal api - RPaaS to ORP */ + VInternalApi = "internal", +} + +/** + * Defines values for Versions. \ + * {@link KnownVersions} can be used interchangeably with Versions, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **2023-09-01-preview**: 2023-09-01-preview \ + * **internal**: internal api - RPaaS to ORP + */ +export type Versions = string; + +/** Optional parameters. */ +export interface OperationsListOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the list operation. */ +export type OperationsListResponse = OperationListResult; + +/** Optional parameters. */ +export interface OperationsListNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listNext operation. */ +export type OperationsListNextResponse = OperationListResult; + +/** Optional parameters. */ +export interface AutonomousDatabasesListBySubscriptionOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listBySubscription operation. */ +export type AutonomousDatabasesListBySubscriptionResponse = + AutonomousDatabaseListResult; + +/** Optional parameters. */ +export interface AutonomousDatabasesListByResourceGroupOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByResourceGroup operation. */ +export type AutonomousDatabasesListByResourceGroupResponse = + AutonomousDatabaseListResult; + +/** Optional parameters. */ +export interface AutonomousDatabasesGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type AutonomousDatabasesGetResponse = AutonomousDatabase; + +/** Optional parameters. */ +export interface AutonomousDatabasesCreateOrUpdateOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the createOrUpdate operation. */ +export type AutonomousDatabasesCreateOrUpdateResponse = AutonomousDatabase; + +/** Optional parameters. */ +export interface AutonomousDatabasesUpdateOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the update operation. */ +export type AutonomousDatabasesUpdateResponse = AutonomousDatabase; + +/** Optional parameters. */ +export interface AutonomousDatabasesDeleteOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the delete operation. */ +export type AutonomousDatabasesDeleteResponse = + AutonomousDatabasesDeleteHeaders; + +/** Optional parameters. */ +export interface AutonomousDatabasesFailoverOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the failover operation. */ +export type AutonomousDatabasesFailoverResponse = AutonomousDatabase; + +/** Optional parameters. */ +export interface AutonomousDatabasesGenerateWalletOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the generateWallet operation. */ +export type AutonomousDatabasesGenerateWalletResponse = + AutonomousDatabaseWalletFile; + +/** Optional parameters. */ +export interface AutonomousDatabasesSwitchoverOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the switchover operation. */ +export type AutonomousDatabasesSwitchoverResponse = AutonomousDatabase; + +/** Optional parameters. */ +export interface AutonomousDatabasesListBySubscriptionNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listBySubscriptionNext operation. */ +export type AutonomousDatabasesListBySubscriptionNextResponse = + AutonomousDatabaseListResult; + +/** Optional parameters. */ +export interface AutonomousDatabasesListByResourceGroupNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByResourceGroupNext operation. */ +export type AutonomousDatabasesListByResourceGroupNextResponse = + AutonomousDatabaseListResult; + +/** Optional parameters. */ +export interface CloudExadataInfrastructuresListBySubscriptionOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listBySubscription operation. */ +export type CloudExadataInfrastructuresListBySubscriptionResponse = + CloudExadataInfrastructureListResult; + +/** Optional parameters. */ +export interface CloudExadataInfrastructuresListByResourceGroupOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByResourceGroup operation. */ +export type CloudExadataInfrastructuresListByResourceGroupResponse = + CloudExadataInfrastructureListResult; + +/** Optional parameters. */ +export interface CloudExadataInfrastructuresGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type CloudExadataInfrastructuresGetResponse = CloudExadataInfrastructure; + +/** Optional parameters. */ +export interface CloudExadataInfrastructuresCreateOrUpdateOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the createOrUpdate operation. */ +export type CloudExadataInfrastructuresCreateOrUpdateResponse = + CloudExadataInfrastructure; + +/** Optional parameters. */ +export interface CloudExadataInfrastructuresUpdateOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the update operation. */ +export type CloudExadataInfrastructuresUpdateResponse = + CloudExadataInfrastructure; + +/** Optional parameters. */ +export interface CloudExadataInfrastructuresDeleteOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the delete operation. */ +export type CloudExadataInfrastructuresDeleteResponse = + CloudExadataInfrastructuresDeleteHeaders; + +/** Optional parameters. */ +export interface CloudExadataInfrastructuresAddStorageCapacityOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the addStorageCapacity operation. */ +export type CloudExadataInfrastructuresAddStorageCapacityResponse = + CloudExadataInfrastructure; + +/** Optional parameters. */ +export interface CloudExadataInfrastructuresListBySubscriptionNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listBySubscriptionNext operation. */ +export type CloudExadataInfrastructuresListBySubscriptionNextResponse = + CloudExadataInfrastructureListResult; + +/** Optional parameters. */ +export interface CloudExadataInfrastructuresListByResourceGroupNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByResourceGroupNext operation. */ +export type CloudExadataInfrastructuresListByResourceGroupNextResponse = + CloudExadataInfrastructureListResult; + +/** Optional parameters. */ +export interface CloudVmClustersListBySubscriptionOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listBySubscription operation. */ +export type CloudVmClustersListBySubscriptionResponse = + CloudVmClusterListResult; + +/** Optional parameters. */ +export interface CloudVmClustersListByResourceGroupOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByResourceGroup operation. */ +export type CloudVmClustersListByResourceGroupResponse = + CloudVmClusterListResult; + +/** Optional parameters. */ +export interface CloudVmClustersGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type CloudVmClustersGetResponse = CloudVmCluster; + +/** Optional parameters. */ +export interface CloudVmClustersCreateOrUpdateOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the createOrUpdate operation. */ +export type CloudVmClustersCreateOrUpdateResponse = CloudVmCluster; + +/** Optional parameters. */ +export interface CloudVmClustersUpdateOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the update operation. */ +export type CloudVmClustersUpdateResponse = CloudVmCluster; + +/** Optional parameters. */ +export interface CloudVmClustersDeleteOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the delete operation. */ +export type CloudVmClustersDeleteResponse = CloudVmClustersDeleteHeaders; + +/** Optional parameters. */ +export interface CloudVmClustersAddVmsOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the addVms operation. */ +export type CloudVmClustersAddVmsResponse = CloudVmCluster; + +/** Optional parameters. */ +export interface CloudVmClustersListPrivateIpAddressesOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listPrivateIpAddresses operation. */ +export type CloudVmClustersListPrivateIpAddressesResponse = + PrivateIpAddressProperties[]; + +/** Optional parameters. */ +export interface CloudVmClustersRemoveVmsOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the removeVms operation. */ +export type CloudVmClustersRemoveVmsResponse = CloudVmCluster; + +/** Optional parameters. */ +export interface CloudVmClustersListBySubscriptionNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listBySubscriptionNext operation. */ +export type CloudVmClustersListBySubscriptionNextResponse = + CloudVmClusterListResult; + +/** Optional parameters. */ +export interface CloudVmClustersListByResourceGroupNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByResourceGroupNext operation. */ +export type CloudVmClustersListByResourceGroupNextResponse = + CloudVmClusterListResult; + +/** Optional parameters. */ +export interface AutonomousDatabaseCharacterSetsListByLocationOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByLocation operation. */ +export type AutonomousDatabaseCharacterSetsListByLocationResponse = + AutonomousDatabaseCharacterSetListResult; + +/** Optional parameters. */ +export interface AutonomousDatabaseCharacterSetsGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type AutonomousDatabaseCharacterSetsGetResponse = + AutonomousDatabaseCharacterSet; + +/** Optional parameters. */ +export interface AutonomousDatabaseCharacterSetsListByLocationNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByLocationNext operation. */ +export type AutonomousDatabaseCharacterSetsListByLocationNextResponse = + AutonomousDatabaseCharacterSetListResult; + +/** Optional parameters. */ +export interface AutonomousDatabaseNationalCharacterSetsListByLocationOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByLocation operation. */ +export type AutonomousDatabaseNationalCharacterSetsListByLocationResponse = + AutonomousDatabaseNationalCharacterSetListResult; + +/** Optional parameters. */ +export interface AutonomousDatabaseNationalCharacterSetsGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type AutonomousDatabaseNationalCharacterSetsGetResponse = + AutonomousDatabaseNationalCharacterSet; + +/** Optional parameters. */ +export interface AutonomousDatabaseNationalCharacterSetsListByLocationNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByLocationNext operation. */ +export type AutonomousDatabaseNationalCharacterSetsListByLocationNextResponse = + AutonomousDatabaseNationalCharacterSetListResult; + +/** Optional parameters. */ +export interface AutonomousDatabaseVersionsListByLocationOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByLocation operation. */ +export type AutonomousDatabaseVersionsListByLocationResponse = + AutonomousDbVersionListResult; + +/** Optional parameters. */ +export interface AutonomousDatabaseVersionsGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type AutonomousDatabaseVersionsGetResponse = AutonomousDbVersion; + +/** Optional parameters. */ +export interface AutonomousDatabaseVersionsListByLocationNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByLocationNext operation. */ +export type AutonomousDatabaseVersionsListByLocationNextResponse = + AutonomousDbVersionListResult; + +/** Optional parameters. */ +export interface DbSystemShapesListByLocationOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByLocation operation. */ +export type DbSystemShapesListByLocationResponse = DbSystemShapeListResult; + +/** Optional parameters. */ +export interface DbSystemShapesGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type DbSystemShapesGetResponse = DbSystemShape; + +/** Optional parameters. */ +export interface DbSystemShapesListByLocationNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByLocationNext operation. */ +export type DbSystemShapesListByLocationNextResponse = DbSystemShapeListResult; + +/** Optional parameters. */ +export interface DnsPrivateViewsListByLocationOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByLocation operation. */ +export type DnsPrivateViewsListByLocationResponse = DnsPrivateViewListResult; + +/** Optional parameters. */ +export interface DnsPrivateViewsGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type DnsPrivateViewsGetResponse = DnsPrivateView; + +/** Optional parameters. */ +export interface DnsPrivateViewsListByLocationNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByLocationNext operation. */ +export type DnsPrivateViewsListByLocationNextResponse = + DnsPrivateViewListResult; + +/** Optional parameters. */ +export interface DnsPrivateZonesListByLocationOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByLocation operation. */ +export type DnsPrivateZonesListByLocationResponse = DnsPrivateZoneListResult; + +/** Optional parameters. */ +export interface DnsPrivateZonesGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type DnsPrivateZonesGetResponse = DnsPrivateZone; + +/** Optional parameters. */ +export interface DnsPrivateZonesListByLocationNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByLocationNext operation. */ +export type DnsPrivateZonesListByLocationNextResponse = + DnsPrivateZoneListResult; + +/** Optional parameters. */ +export interface GiVersionsListByLocationOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByLocation operation. */ +export type GiVersionsListByLocationResponse = GiVersionListResult; + +/** Optional parameters. */ +export interface GiVersionsGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type GiVersionsGetResponse = GiVersion; + +/** Optional parameters. */ +export interface GiVersionsListByLocationNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByLocationNext operation. */ +export type GiVersionsListByLocationNextResponse = GiVersionListResult; + +/** Optional parameters. */ +export interface OracleSubscriptionsListBySubscriptionOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listBySubscription operation. */ +export type OracleSubscriptionsListBySubscriptionResponse = + OracleSubscriptionListResult; + +/** Optional parameters. */ +export interface OracleSubscriptionsGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type OracleSubscriptionsGetResponse = OracleSubscription; + +/** Optional parameters. */ +export interface OracleSubscriptionsCreateOrUpdateOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the createOrUpdate operation. */ +export type OracleSubscriptionsCreateOrUpdateResponse = OracleSubscription; + +/** Optional parameters. */ +export interface OracleSubscriptionsUpdateOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the update operation. */ +export type OracleSubscriptionsUpdateResponse = OracleSubscription; + +/** Optional parameters. */ +export interface OracleSubscriptionsDeleteOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the delete operation. */ +export type OracleSubscriptionsDeleteResponse = + OracleSubscriptionsDeleteHeaders; + +/** Optional parameters. */ +export interface OracleSubscriptionsListActivationLinksOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the listActivationLinks operation. */ +export type OracleSubscriptionsListActivationLinksResponse = ActivationLinks; + +/** Optional parameters. */ +export interface OracleSubscriptionsListCloudAccountDetailsOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the listCloudAccountDetails operation. */ +export type OracleSubscriptionsListCloudAccountDetailsResponse = + CloudAccountDetails; + +/** Optional parameters. */ +export interface OracleSubscriptionsListSaasSubscriptionDetailsOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the listSaasSubscriptionDetails operation. */ +export type OracleSubscriptionsListSaasSubscriptionDetailsResponse = + SaasSubscriptionDetails; + +/** Optional parameters. */ +export interface OracleSubscriptionsListBySubscriptionNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listBySubscriptionNext operation. */ +export type OracleSubscriptionsListBySubscriptionNextResponse = + OracleSubscriptionListResult; + +/** Optional parameters. */ +export interface AutonomousDatabaseBackupsListByAutonomousDatabaseOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByAutonomousDatabase operation. */ +export type AutonomousDatabaseBackupsListByAutonomousDatabaseResponse = + AutonomousDatabaseBackupListResult; + +/** Optional parameters. */ +export interface AutonomousDatabaseBackupsGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type AutonomousDatabaseBackupsGetResponse = AutonomousDatabaseBackup; + +/** Optional parameters. */ +export interface AutonomousDatabaseBackupsCreateOrUpdateOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the createOrUpdate operation. */ +export type AutonomousDatabaseBackupsCreateOrUpdateResponse = + AutonomousDatabaseBackup; + +/** Optional parameters. */ +export interface AutonomousDatabaseBackupsUpdateOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the update operation. */ +export type AutonomousDatabaseBackupsUpdateResponse = AutonomousDatabaseBackup; + +/** Optional parameters. */ +export interface AutonomousDatabaseBackupsDeleteOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the delete operation. */ +export type AutonomousDatabaseBackupsDeleteResponse = + AutonomousDatabaseBackupsDeleteHeaders; + +/** Optional parameters. */ +export interface AutonomousDatabaseBackupsListByAutonomousDatabaseNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByAutonomousDatabaseNext operation. */ +export type AutonomousDatabaseBackupsListByAutonomousDatabaseNextResponse = + AutonomousDatabaseBackupListResult; + +/** Optional parameters. */ +export interface DbServersListByCloudExadataInfrastructureOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByCloudExadataInfrastructure operation. */ +export type DbServersListByCloudExadataInfrastructureResponse = + DbServerListResult; + +/** Optional parameters. */ +export interface DbServersGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type DbServersGetResponse = DbServer; + +/** Optional parameters. */ +export interface DbServersListByCloudExadataInfrastructureNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByCloudExadataInfrastructureNext operation. */ +export type DbServersListByCloudExadataInfrastructureNextResponse = + DbServerListResult; + +/** Optional parameters. */ +export interface DbNodesListByCloudVmClusterOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByCloudVmCluster operation. */ +export type DbNodesListByCloudVmClusterResponse = DbNodeListResult; + +/** Optional parameters. */ +export interface DbNodesGetOptionalParams extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type DbNodesGetResponse = DbNode; + +/** Optional parameters. */ +export interface DbNodesActionOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the action operation. */ +export type DbNodesActionResponse = DbNode; + +/** Optional parameters. */ +export interface DbNodesListByCloudVmClusterNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByCloudVmClusterNext operation. */ +export type DbNodesListByCloudVmClusterNextResponse = DbNodeListResult; + +/** Optional parameters. */ +export interface VirtualNetworkAddressesListByCloudVmClusterOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByCloudVmCluster operation. */ +export type VirtualNetworkAddressesListByCloudVmClusterResponse = + VirtualNetworkAddressListResult; + +/** Optional parameters. */ +export interface VirtualNetworkAddressesGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type VirtualNetworkAddressesGetResponse = VirtualNetworkAddress; + +/** Optional parameters. */ +export interface VirtualNetworkAddressesCreateOrUpdateOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the createOrUpdate operation. */ +export type VirtualNetworkAddressesCreateOrUpdateResponse = + VirtualNetworkAddress; + +/** Optional parameters. */ +export interface VirtualNetworkAddressesDeleteOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the delete operation. */ +export type VirtualNetworkAddressesDeleteResponse = + VirtualNetworkAddressesDeleteHeaders; + +/** Optional parameters. */ +export interface VirtualNetworkAddressesListByCloudVmClusterNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByCloudVmClusterNext operation. */ +export type VirtualNetworkAddressesListByCloudVmClusterNextResponse = + VirtualNetworkAddressListResult; + +/** Optional parameters. */ +export interface OracleDatabaseResourceManagerOptionalParams + extends coreClient.ServiceClientOptions { + /** server parameter */ + $host?: string; + /** Api Version */ + apiVersion?: string; + /** Overrides client endpoint. */ + endpoint?: string; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/models/mappers.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/models/mappers.ts new file mode 100644 index 000000000000..391fc9d7277b --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/models/mappers.ts @@ -0,0 +1,5992 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import * as coreClient from "@azure/core-client"; + +export const OperationListResult: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "OperationListResult", + modelProperties: { + value: { + serializedName: "value", + readOnly: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "Operation", + }, + }, + }, + }, + nextLink: { + serializedName: "nextLink", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const Operation: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "Operation", + modelProperties: { + name: { + serializedName: "name", + readOnly: true, + type: { + name: "String", + }, + }, + isDataAction: { + serializedName: "isDataAction", + readOnly: true, + type: { + name: "Boolean", + }, + }, + display: { + serializedName: "display", + type: { + name: "Composite", + className: "OperationDisplay", + }, + }, + origin: { + serializedName: "origin", + readOnly: true, + type: { + name: "String", + }, + }, + actionType: { + serializedName: "actionType", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const OperationDisplay: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "OperationDisplay", + modelProperties: { + provider: { + serializedName: "provider", + readOnly: true, + type: { + name: "String", + }, + }, + resource: { + serializedName: "resource", + readOnly: true, + type: { + name: "String", + }, + }, + operation: { + serializedName: "operation", + readOnly: true, + type: { + name: "String", + }, + }, + description: { + serializedName: "description", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const ErrorResponse: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ErrorResponse", + modelProperties: { + error: { + serializedName: "error", + type: { + name: "Composite", + className: "ErrorDetail", + }, + }, + }, + }, +}; + +export const ErrorDetail: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ErrorDetail", + modelProperties: { + code: { + serializedName: "code", + readOnly: true, + type: { + name: "String", + }, + }, + message: { + serializedName: "message", + readOnly: true, + type: { + name: "String", + }, + }, + target: { + serializedName: "target", + readOnly: true, + type: { + name: "String", + }, + }, + details: { + serializedName: "details", + readOnly: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "ErrorDetail", + }, + }, + }, + }, + additionalInfo: { + serializedName: "additionalInfo", + readOnly: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "ErrorAdditionalInfo", + }, + }, + }, + }, + }, + }, +}; + +export const ErrorAdditionalInfo: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ErrorAdditionalInfo", + modelProperties: { + type: { + serializedName: "type", + readOnly: true, + type: { + name: "String", + }, + }, + info: { + serializedName: "info", + readOnly: true, + type: { + name: "Dictionary", + value: { type: { name: "any" } }, + }, + }, + }, + }, +}; + +export const AutonomousDatabaseListResult: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutonomousDatabaseListResult", + modelProperties: { + value: { + serializedName: "value", + required: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "AutonomousDatabase", + }, + }, + }, + }, + nextLink: { + serializedName: "nextLink", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const AutonomousDatabaseBaseProperties: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutonomousDatabaseBaseProperties", + uberParent: "AutonomousDatabaseBaseProperties", + polymorphicDiscriminator: { + serializedName: "dataBaseType", + clientName: "dataBaseType", + }, + modelProperties: { + adminPassword: { + serializedName: "adminPassword", + type: { + name: "String", + }, + }, + dataBaseType: { + serializedName: "dataBaseType", + required: true, + type: { + name: "String", + }, + }, + autonomousMaintenanceScheduleType: { + serializedName: "autonomousMaintenanceScheduleType", + type: { + name: "String", + }, + }, + characterSet: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "characterSet", + type: { + name: "String", + }, + }, + computeCount: { + constraints: { + InclusiveMaximum: 512, + InclusiveMinimum: 0.1, + }, + serializedName: "computeCount", + type: { + name: "Number", + }, + }, + computeModel: { + serializedName: "computeModel", + type: { + name: "String", + }, + }, + cpuCoreCount: { + constraints: { + InclusiveMaximum: 128, + InclusiveMinimum: 1, + }, + serializedName: "cpuCoreCount", + type: { + name: "Number", + }, + }, + customerContacts: { + serializedName: "customerContacts", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "CustomerContact", + }, + }, + }, + }, + dataStorageSizeInTbs: { + constraints: { + InclusiveMaximum: 384, + InclusiveMinimum: 1, + }, + serializedName: "dataStorageSizeInTbs", + type: { + name: "Number", + }, + }, + dataStorageSizeInGbs: { + constraints: { + InclusiveMaximum: 393216, + InclusiveMinimum: 20, + }, + serializedName: "dataStorageSizeInGbs", + type: { + name: "Number", + }, + }, + dbVersion: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "dbVersion", + type: { + name: "String", + }, + }, + dbWorkload: { + serializedName: "dbWorkload", + type: { + name: "String", + }, + }, + displayName: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "displayName", + type: { + name: "String", + }, + }, + isAutoScalingEnabled: { + serializedName: "isAutoScalingEnabled", + type: { + name: "Boolean", + }, + }, + isAutoScalingForStorageEnabled: { + serializedName: "isAutoScalingForStorageEnabled", + type: { + name: "Boolean", + }, + }, + peerDbIds: { + serializedName: "peerDbIds", + readOnly: true, + type: { + name: "Sequence", + element: { + type: { + name: "String", + }, + }, + }, + }, + peerDbId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "peerDbId", + type: { + name: "String", + }, + }, + isLocalDataGuardEnabled: { + serializedName: "isLocalDataGuardEnabled", + type: { + name: "Boolean", + }, + }, + isRemoteDataGuardEnabled: { + serializedName: "isRemoteDataGuardEnabled", + readOnly: true, + type: { + name: "Boolean", + }, + }, + localDisasterRecoveryType: { + serializedName: "localDisasterRecoveryType", + readOnly: true, + type: { + name: "String", + }, + }, + localStandbyDb: { + serializedName: "localStandbyDb", + type: { + name: "Composite", + className: "AutonomousDatabaseStandbySummary", + }, + }, + failedDataRecoveryInSeconds: { + serializedName: "failedDataRecoveryInSeconds", + readOnly: true, + type: { + name: "Number", + }, + }, + isMtlsConnectionRequired: { + serializedName: "isMtlsConnectionRequired", + type: { + name: "Boolean", + }, + }, + isPreviewVersionWithServiceTermsAccepted: { + serializedName: "isPreviewVersionWithServiceTermsAccepted", + type: { + name: "Boolean", + }, + }, + licenseModel: { + serializedName: "licenseModel", + type: { + name: "String", + }, + }, + ncharacterSet: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "ncharacterSet", + type: { + name: "String", + }, + }, + lifecycleDetails: { + serializedName: "lifecycleDetails", + readOnly: true, + type: { + name: "String", + }, + }, + provisioningState: { + serializedName: "provisioningState", + readOnly: true, + type: { + name: "String", + }, + }, + lifecycleState: { + serializedName: "lifecycleState", + readOnly: true, + type: { + name: "String", + }, + }, + scheduledOperations: { + serializedName: "scheduledOperations", + type: { + name: "Composite", + className: "ScheduledOperationsType", + }, + }, + privateEndpointIp: { + serializedName: "privateEndpointIp", + type: { + name: "String", + }, + }, + privateEndpointLabel: { + serializedName: "privateEndpointLabel", + type: { + name: "String", + }, + }, + ociUrl: { + serializedName: "ociUrl", + readOnly: true, + type: { + name: "String", + }, + }, + subnetId: { + serializedName: "subnetId", + type: { + name: "String", + }, + }, + vnetId: { + serializedName: "vnetId", + type: { + name: "String", + }, + }, + timeCreated: { + serializedName: "timeCreated", + readOnly: true, + type: { + name: "DateTime", + }, + }, + timeMaintenanceBegin: { + serializedName: "timeMaintenanceBegin", + readOnly: true, + type: { + name: "DateTime", + }, + }, + timeMaintenanceEnd: { + serializedName: "timeMaintenanceEnd", + readOnly: true, + type: { + name: "DateTime", + }, + }, + actualUsedDataStorageSizeInTbs: { + serializedName: "actualUsedDataStorageSizeInTbs", + readOnly: true, + type: { + name: "Number", + }, + }, + allocatedStorageSizeInTbs: { + serializedName: "allocatedStorageSizeInTbs", + readOnly: true, + type: { + name: "Number", + }, + }, + apexDetails: { + serializedName: "apexDetails", + type: { + name: "Composite", + className: "ApexDetailsType", + }, + }, + availableUpgradeVersions: { + serializedName: "availableUpgradeVersions", + readOnly: true, + type: { + name: "Sequence", + element: { + type: { + name: "String", + }, + }, + }, + }, + connectionStrings: { + serializedName: "connectionStrings", + type: { + name: "Composite", + className: "ConnectionStringType", + }, + }, + connectionUrls: { + serializedName: "connectionUrls", + type: { + name: "Composite", + className: "ConnectionUrlType", + }, + }, + dataSafeStatus: { + serializedName: "dataSafeStatus", + readOnly: true, + type: { + name: "String", + }, + }, + databaseEdition: { + serializedName: "databaseEdition", + type: { + name: "String", + }, + }, + autonomousDatabaseId: { + serializedName: "autonomousDatabaseId", + type: { + name: "String", + }, + }, + inMemoryAreaInGbs: { + serializedName: "inMemoryAreaInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + isPreview: { + serializedName: "isPreview", + readOnly: true, + type: { + name: "Boolean", + }, + }, + localAdgAutoFailoverMaxDataLossLimit: { + constraints: { + InclusiveMaximum: 3600, + InclusiveMinimum: 0, + }, + serializedName: "localAdgAutoFailoverMaxDataLossLimit", + type: { + name: "Number", + }, + }, + memoryPerOracleComputeUnitInGbs: { + serializedName: "memoryPerOracleComputeUnitInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + openMode: { + serializedName: "openMode", + type: { + name: "String", + }, + }, + operationsInsightsStatus: { + serializedName: "operationsInsightsStatus", + readOnly: true, + type: { + name: "String", + }, + }, + permissionLevel: { + serializedName: "permissionLevel", + type: { + name: "String", + }, + }, + privateEndpoint: { + serializedName: "privateEndpoint", + readOnly: true, + type: { + name: "String", + }, + }, + provisionableCpus: { + serializedName: "provisionableCpus", + readOnly: true, + type: { + name: "Sequence", + element: { + type: { + name: "Number", + }, + }, + }, + }, + role: { + serializedName: "role", + type: { + name: "String", + }, + }, + serviceConsoleUrl: { + constraints: { + MaxLength: 255, + MinLength: 10, + }, + serializedName: "serviceConsoleUrl", + readOnly: true, + type: { + name: "String", + }, + }, + sqlWebDeveloperUrl: { + constraints: { + MaxLength: 2048, + MinLength: 10, + }, + serializedName: "sqlWebDeveloperUrl", + readOnly: true, + type: { + name: "String", + }, + }, + supportedRegionsToCloneTo: { + constraints: { + MaxItems: 50, + }, + serializedName: "supportedRegionsToCloneTo", + readOnly: true, + type: { + name: "Sequence", + element: { + type: { + name: "String", + }, + }, + }, + }, + timeDataGuardRoleChanged: { + serializedName: "timeDataGuardRoleChanged", + readOnly: true, + type: { + name: "String", + }, + }, + timeDeletionOfFreeAutonomousDatabase: { + serializedName: "timeDeletionOfFreeAutonomousDatabase", + readOnly: true, + type: { + name: "String", + }, + }, + timeLocalDataGuardEnabled: { + serializedName: "timeLocalDataGuardEnabled", + readOnly: true, + type: { + name: "String", + }, + }, + timeOfLastFailover: { + serializedName: "timeOfLastFailover", + readOnly: true, + type: { + name: "String", + }, + }, + timeOfLastRefresh: { + serializedName: "timeOfLastRefresh", + readOnly: true, + type: { + name: "String", + }, + }, + timeOfLastRefreshPoint: { + serializedName: "timeOfLastRefreshPoint", + readOnly: true, + type: { + name: "String", + }, + }, + timeOfLastSwitchover: { + serializedName: "timeOfLastSwitchover", + readOnly: true, + type: { + name: "String", + }, + }, + timeReclamationOfFreeAutonomousDatabase: { + serializedName: "timeReclamationOfFreeAutonomousDatabase", + readOnly: true, + type: { + name: "String", + }, + }, + usedDataStorageSizeInGbs: { + serializedName: "usedDataStorageSizeInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + usedDataStorageSizeInTbs: { + serializedName: "usedDataStorageSizeInTbs", + readOnly: true, + type: { + name: "Number", + }, + }, + ocid: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "ocid", + readOnly: true, + type: { + name: "String", + }, + }, + backupRetentionPeriodInDays: { + serializedName: "backupRetentionPeriodInDays", + type: { + name: "Number", + }, + }, + whitelistedIps: { + serializedName: "whitelistedIps", + type: { + name: "Sequence", + element: { + constraints: { + MaxLength: 1024, + MinLength: 1, + }, + type: { + name: "String", + }, + }, + }, + }, + }, + }, +}; + +export const CustomerContact: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CustomerContact", + modelProperties: { + email: { + constraints: { + MaxLength: 320, + MinLength: 1, + }, + serializedName: "email", + required: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const AutonomousDatabaseStandbySummary: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutonomousDatabaseStandbySummary", + modelProperties: { + lagTimeInSeconds: { + serializedName: "lagTimeInSeconds", + type: { + name: "Number", + }, + }, + lifecycleState: { + serializedName: "lifecycleState", + type: { + name: "String", + }, + }, + lifecycleDetails: { + serializedName: "lifecycleDetails", + type: { + name: "String", + }, + }, + timeDataGuardRoleChanged: { + serializedName: "timeDataGuardRoleChanged", + type: { + name: "String", + }, + }, + timeDisasterRecoveryRoleChanged: { + serializedName: "timeDisasterRecoveryRoleChanged", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const ScheduledOperationsType: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ScheduledOperationsType", + modelProperties: { + dayOfWeek: { + serializedName: "dayOfWeek", + type: { + name: "Composite", + className: "DayOfWeek", + }, + }, + scheduledStartTime: { + constraints: { + MaxLength: 50, + MinLength: 1, + }, + serializedName: "scheduledStartTime", + type: { + name: "String", + }, + }, + scheduledStopTime: { + constraints: { + MaxLength: 50, + MinLength: 1, + }, + serializedName: "scheduledStopTime", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const DayOfWeek: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "DayOfWeek", + modelProperties: { + name: { + serializedName: "name", + required: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const ApexDetailsType: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ApexDetailsType", + modelProperties: { + apexVersion: { + serializedName: "apexVersion", + type: { + name: "String", + }, + }, + ordsVersion: { + serializedName: "ordsVersion", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const ConnectionStringType: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ConnectionStringType", + modelProperties: { + allConnectionStrings: { + serializedName: "allConnectionStrings", + type: { + name: "Composite", + className: "AllConnectionStringType", + }, + }, + dedicated: { + constraints: { + MaxLength: 255, + MinLength: 10, + }, + serializedName: "dedicated", + type: { + name: "String", + }, + }, + high: { + constraints: { + MaxLength: 255, + MinLength: 10, + }, + serializedName: "high", + type: { + name: "String", + }, + }, + low: { + constraints: { + MaxLength: 255, + MinLength: 10, + }, + serializedName: "low", + type: { + name: "String", + }, + }, + medium: { + constraints: { + MaxLength: 255, + MinLength: 10, + }, + serializedName: "medium", + type: { + name: "String", + }, + }, + profiles: { + serializedName: "profiles", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "ProfileType", + }, + }, + }, + }, + }, + }, +}; + +export const AllConnectionStringType: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AllConnectionStringType", + modelProperties: { + high: { + constraints: { + MaxLength: 255, + MinLength: 10, + }, + serializedName: "high", + type: { + name: "String", + }, + }, + low: { + constraints: { + MaxLength: 255, + MinLength: 10, + }, + serializedName: "low", + type: { + name: "String", + }, + }, + medium: { + constraints: { + MaxLength: 255, + MinLength: 10, + }, + serializedName: "medium", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const ProfileType: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ProfileType", + modelProperties: { + consumerGroup: { + serializedName: "consumerGroup", + type: { + name: "String", + }, + }, + displayName: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "displayName", + required: true, + type: { + name: "String", + }, + }, + hostFormat: { + serializedName: "hostFormat", + required: true, + type: { + name: "String", + }, + }, + isRegional: { + serializedName: "isRegional", + type: { + name: "Boolean", + }, + }, + protocol: { + serializedName: "protocol", + required: true, + type: { + name: "String", + }, + }, + sessionMode: { + serializedName: "sessionMode", + required: true, + type: { + name: "String", + }, + }, + syntaxFormat: { + serializedName: "syntaxFormat", + required: true, + type: { + name: "String", + }, + }, + tlsAuthentication: { + serializedName: "tlsAuthentication", + type: { + name: "String", + }, + }, + value: { + serializedName: "value", + required: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const ConnectionUrlType: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ConnectionUrlType", + modelProperties: { + apexUrl: { + constraints: { + MaxLength: 512, + MinLength: 10, + }, + serializedName: "apexUrl", + type: { + name: "String", + }, + }, + databaseTransformsUrl: { + constraints: { + MaxLength: 512, + MinLength: 10, + }, + serializedName: "databaseTransformsUrl", + type: { + name: "String", + }, + }, + graphStudioUrl: { + constraints: { + MaxLength: 512, + MinLength: 10, + }, + serializedName: "graphStudioUrl", + type: { + name: "String", + }, + }, + machineLearningNotebookUrl: { + constraints: { + MaxLength: 512, + MinLength: 10, + }, + serializedName: "machineLearningNotebookUrl", + type: { + name: "String", + }, + }, + mongoDbUrl: { + constraints: { + MaxLength: 512, + MinLength: 10, + }, + serializedName: "mongoDbUrl", + type: { + name: "String", + }, + }, + ordsUrl: { + constraints: { + MaxLength: 512, + MinLength: 10, + }, + serializedName: "ordsUrl", + type: { + name: "String", + }, + }, + sqlDevWebUrl: { + constraints: { + MaxLength: 512, + MinLength: 10, + }, + serializedName: "sqlDevWebUrl", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const Resource: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "Resource", + modelProperties: { + id: { + serializedName: "id", + readOnly: true, + type: { + name: "String", + }, + }, + name: { + serializedName: "name", + readOnly: true, + type: { + name: "String", + }, + }, + type: { + serializedName: "type", + readOnly: true, + type: { + name: "String", + }, + }, + systemData: { + serializedName: "systemData", + type: { + name: "Composite", + className: "SystemData", + }, + }, + }, + }, +}; + +export const SystemData: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "SystemData", + modelProperties: { + createdBy: { + serializedName: "createdBy", + type: { + name: "String", + }, + }, + createdByType: { + serializedName: "createdByType", + type: { + name: "String", + }, + }, + createdAt: { + serializedName: "createdAt", + type: { + name: "DateTime", + }, + }, + lastModifiedBy: { + serializedName: "lastModifiedBy", + type: { + name: "String", + }, + }, + lastModifiedByType: { + serializedName: "lastModifiedByType", + type: { + name: "String", + }, + }, + lastModifiedAt: { + serializedName: "lastModifiedAt", + type: { + name: "DateTime", + }, + }, + }, + }, +}; + +export const CloudExadataInfrastructureListResult: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "CloudExadataInfrastructureListResult", + modelProperties: { + value: { + serializedName: "value", + required: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "CloudExadataInfrastructure", + }, + }, + }, + }, + nextLink: { + serializedName: "nextLink", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, + }; + +export const MaintenanceWindow: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "MaintenanceWindow", + modelProperties: { + preference: { + serializedName: "preference", + type: { + name: "String", + }, + }, + months: { + serializedName: "months", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "Month", + }, + }, + }, + }, + weeksOfMonth: { + serializedName: "weeksOfMonth", + type: { + name: "Sequence", + element: { + type: { + name: "Number", + }, + }, + }, + }, + daysOfWeek: { + serializedName: "daysOfWeek", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "DayOfWeek", + }, + }, + }, + }, + hoursOfDay: { + serializedName: "hoursOfDay", + type: { + name: "Sequence", + element: { + type: { + name: "Number", + }, + }, + }, + }, + leadTimeInWeeks: { + serializedName: "leadTimeInWeeks", + type: { + name: "Number", + }, + }, + patchingMode: { + serializedName: "patchingMode", + type: { + name: "String", + }, + }, + customActionTimeoutInMins: { + constraints: { + InclusiveMaximum: 120, + InclusiveMinimum: 0, + }, + serializedName: "customActionTimeoutInMins", + type: { + name: "Number", + }, + }, + isCustomActionTimeoutEnabled: { + serializedName: "isCustomActionTimeoutEnabled", + type: { + name: "Boolean", + }, + }, + isMonthlyPatchingEnabled: { + serializedName: "isMonthlyPatchingEnabled", + type: { + name: "Boolean", + }, + }, + }, + }, +}; + +export const Month: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "Month", + modelProperties: { + name: { + serializedName: "name", + required: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const EstimatedPatchingTime: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "EstimatedPatchingTime", + modelProperties: { + estimatedDbServerPatchingTime: { + constraints: { + InclusiveMaximum: 3000, + InclusiveMinimum: 1, + }, + serializedName: "estimatedDbServerPatchingTime", + readOnly: true, + type: { + name: "Number", + }, + }, + estimatedNetworkSwitchesPatchingTime: { + constraints: { + InclusiveMaximum: 3000, + InclusiveMinimum: 1, + }, + serializedName: "estimatedNetworkSwitchesPatchingTime", + readOnly: true, + type: { + name: "Number", + }, + }, + estimatedStorageServerPatchingTime: { + constraints: { + InclusiveMaximum: 3000, + InclusiveMinimum: 1, + }, + serializedName: "estimatedStorageServerPatchingTime", + readOnly: true, + type: { + name: "Number", + }, + }, + totalEstimatedPatchingTime: { + constraints: { + InclusiveMaximum: 3000, + InclusiveMinimum: 1, + }, + serializedName: "totalEstimatedPatchingTime", + readOnly: true, + type: { + name: "Number", + }, + }, + }, + }, +}; + +export const CloudVmClusterListResult: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CloudVmClusterListResult", + modelProperties: { + value: { + serializedName: "value", + required: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "CloudVmCluster", + }, + }, + }, + }, + nextLink: { + serializedName: "nextLink", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const NSGCidr: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "NSGCidr", + modelProperties: { + source: { + constraints: { + MaxLength: 128, + MinLength: 1, + }, + serializedName: "source", + required: true, + type: { + name: "String", + }, + }, + destinationPortRange: { + serializedName: "destinationPortRange", + type: { + name: "Composite", + className: "PortRange", + }, + }, + }, + }, +}; + +export const PortRange: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "PortRange", + modelProperties: { + min: { + constraints: { + InclusiveMaximum: 65535, + InclusiveMinimum: 1, + }, + serializedName: "min", + required: true, + type: { + name: "Number", + }, + }, + max: { + constraints: { + InclusiveMaximum: 65535, + InclusiveMinimum: 1, + }, + serializedName: "max", + required: true, + type: { + name: "Number", + }, + }, + }, + }, +}; + +export const DataCollectionOptions: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "DataCollectionOptions", + modelProperties: { + isDiagnosticsEventsEnabled: { + defaultValue: false, + serializedName: "isDiagnosticsEventsEnabled", + type: { + name: "Boolean", + }, + }, + isHealthMonitoringEnabled: { + defaultValue: false, + serializedName: "isHealthMonitoringEnabled", + type: { + name: "Boolean", + }, + }, + isIncidentLogsEnabled: { + defaultValue: false, + serializedName: "isIncidentLogsEnabled", + type: { + name: "Boolean", + }, + }, + }, + }, +}; + +export const ExadataIormConfig: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ExadataIormConfig", + modelProperties: { + dbPlans: { + serializedName: "dbPlans", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "DbIormConfig", + }, + }, + }, + }, + lifecycleDetails: { + serializedName: "lifecycleDetails", + type: { + name: "String", + }, + }, + lifecycleState: { + serializedName: "lifecycleState", + type: { + name: "String", + }, + }, + objective: { + serializedName: "objective", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const DbIormConfig: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "DbIormConfig", + modelProperties: { + dbName: { + serializedName: "dbName", + type: { + name: "String", + }, + }, + flashCacheLimit: { + serializedName: "flashCacheLimit", + type: { + name: "String", + }, + }, + share: { + constraints: { + InclusiveMaximum: 32, + InclusiveMinimum: 1, + }, + serializedName: "share", + type: { + name: "Number", + }, + }, + }, + }, +}; + +export const AutonomousDatabaseCharacterSetListResult: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "AutonomousDatabaseCharacterSetListResult", + modelProperties: { + value: { + serializedName: "value", + required: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "AutonomousDatabaseCharacterSet", + }, + }, + }, + }, + nextLink: { + serializedName: "nextLink", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, + }; + +export const AutonomousDatabaseNationalCharacterSetListResult: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "AutonomousDatabaseNationalCharacterSetListResult", + modelProperties: { + value: { + serializedName: "value", + required: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "AutonomousDatabaseNationalCharacterSet", + }, + }, + }, + }, + nextLink: { + serializedName: "nextLink", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, + }; + +export const AutonomousDbVersionListResult: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutonomousDbVersionListResult", + modelProperties: { + value: { + serializedName: "value", + required: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "AutonomousDbVersion", + }, + }, + }, + }, + nextLink: { + serializedName: "nextLink", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const DbSystemShapeListResult: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "DbSystemShapeListResult", + modelProperties: { + value: { + serializedName: "value", + required: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "DbSystemShape", + }, + }, + }, + }, + nextLink: { + serializedName: "nextLink", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const DnsPrivateViewListResult: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "DnsPrivateViewListResult", + modelProperties: { + value: { + serializedName: "value", + required: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "DnsPrivateView", + }, + }, + }, + }, + nextLink: { + serializedName: "nextLink", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const DnsPrivateZoneListResult: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "DnsPrivateZoneListResult", + modelProperties: { + value: { + serializedName: "value", + required: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "DnsPrivateZone", + }, + }, + }, + }, + nextLink: { + serializedName: "nextLink", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const GiVersionListResult: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "GiVersionListResult", + modelProperties: { + value: { + serializedName: "value", + required: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "GiVersion", + }, + }, + }, + }, + nextLink: { + serializedName: "nextLink", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const OracleSubscriptionListResult: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "OracleSubscriptionListResult", + modelProperties: { + value: { + serializedName: "value", + required: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "OracleSubscription", + }, + }, + }, + }, + nextLink: { + serializedName: "nextLink", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const Plan: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "Plan", + modelProperties: { + name: { + serializedName: "name", + required: true, + type: { + name: "String", + }, + }, + publisher: { + serializedName: "publisher", + required: true, + type: { + name: "String", + }, + }, + product: { + serializedName: "product", + required: true, + type: { + name: "String", + }, + }, + promotionCode: { + serializedName: "promotionCode", + type: { + name: "String", + }, + }, + version: { + serializedName: "version", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const OracleSubscriptionUpdate: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "OracleSubscriptionUpdate", + modelProperties: { + plan: { + serializedName: "plan", + type: { + name: "Composite", + className: "ResourcePlanTypeUpdate", + }, + }, + productCode: { + serializedName: "properties.productCode", + type: { + name: "String", + }, + }, + intent: { + serializedName: "properties.intent", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const ResourcePlanTypeUpdate: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ResourcePlanTypeUpdate", + modelProperties: { + name: { + serializedName: "name", + type: { + name: "String", + }, + }, + publisher: { + serializedName: "publisher", + type: { + name: "String", + }, + }, + product: { + serializedName: "product", + type: { + name: "String", + }, + }, + promotionCode: { + serializedName: "promotionCode", + type: { + name: "String", + }, + }, + version: { + serializedName: "version", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const ActivationLinks: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ActivationLinks", + modelProperties: { + newCloudAccountActivationLink: { + serializedName: "newCloudAccountActivationLink", + readOnly: true, + type: { + name: "String", + }, + }, + existingCloudAccountActivationLink: { + serializedName: "existingCloudAccountActivationLink", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const CloudAccountDetails: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CloudAccountDetails", + modelProperties: { + cloudAccountName: { + serializedName: "cloudAccountName", + readOnly: true, + type: { + name: "String", + }, + }, + cloudAccountHomeRegion: { + serializedName: "cloudAccountHomeRegion", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const SaasSubscriptionDetails: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "SaasSubscriptionDetails", + modelProperties: { + id: { + serializedName: "id", + readOnly: true, + type: { + name: "String", + }, + }, + subscriptionName: { + serializedName: "subscriptionName", + readOnly: true, + type: { + name: "String", + }, + }, + timeCreated: { + serializedName: "timeCreated", + readOnly: true, + type: { + name: "DateTime", + }, + }, + offerId: { + serializedName: "offerId", + readOnly: true, + type: { + name: "String", + }, + }, + planId: { + serializedName: "planId", + readOnly: true, + type: { + name: "String", + }, + }, + saasSubscriptionStatus: { + serializedName: "saasSubscriptionStatus", + readOnly: true, + type: { + name: "String", + }, + }, + publisherId: { + serializedName: "publisherId", + readOnly: true, + type: { + name: "String", + }, + }, + purchaserEmailId: { + serializedName: "purchaserEmailId", + readOnly: true, + type: { + name: "String", + }, + }, + purchaserTenantId: { + serializedName: "purchaserTenantId", + readOnly: true, + type: { + name: "String", + }, + }, + termUnit: { + serializedName: "termUnit", + readOnly: true, + type: { + name: "String", + }, + }, + isAutoRenew: { + serializedName: "isAutoRenew", + readOnly: true, + type: { + name: "Boolean", + }, + }, + isFreeTrial: { + serializedName: "isFreeTrial", + readOnly: true, + type: { + name: "Boolean", + }, + }, + }, + }, +}; + +export const AutonomousDatabaseUpdate: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutonomousDatabaseUpdate", + modelProperties: { + tags: { + serializedName: "tags", + type: { + name: "Dictionary", + value: { type: { name: "String" } }, + }, + }, + adminPassword: { + serializedName: "properties.adminPassword", + type: { + name: "String", + }, + }, + autonomousMaintenanceScheduleType: { + serializedName: "properties.autonomousMaintenanceScheduleType", + type: { + name: "String", + }, + }, + computeCount: { + constraints: { + InclusiveMaximum: 512, + InclusiveMinimum: 0.1, + }, + serializedName: "properties.computeCount", + type: { + name: "Number", + }, + }, + cpuCoreCount: { + constraints: { + InclusiveMaximum: 128, + InclusiveMinimum: 1, + }, + serializedName: "properties.cpuCoreCount", + type: { + name: "Number", + }, + }, + customerContacts: { + serializedName: "properties.customerContacts", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "CustomerContact", + }, + }, + }, + }, + dataStorageSizeInTbs: { + constraints: { + InclusiveMaximum: 384, + InclusiveMinimum: 1, + }, + serializedName: "properties.dataStorageSizeInTbs", + type: { + name: "Number", + }, + }, + dataStorageSizeInGbs: { + constraints: { + InclusiveMaximum: 393216, + InclusiveMinimum: 20, + }, + serializedName: "properties.dataStorageSizeInGbs", + type: { + name: "Number", + }, + }, + displayName: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.displayName", + type: { + name: "String", + }, + }, + isAutoScalingEnabled: { + serializedName: "properties.isAutoScalingEnabled", + type: { + name: "Boolean", + }, + }, + isAutoScalingForStorageEnabled: { + serializedName: "properties.isAutoScalingForStorageEnabled", + type: { + name: "Boolean", + }, + }, + peerDbId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.peerDbId", + type: { + name: "String", + }, + }, + isLocalDataGuardEnabled: { + serializedName: "properties.isLocalDataGuardEnabled", + type: { + name: "Boolean", + }, + }, + isMtlsConnectionRequired: { + serializedName: "properties.isMtlsConnectionRequired", + type: { + name: "Boolean", + }, + }, + licenseModel: { + serializedName: "properties.licenseModel", + type: { + name: "String", + }, + }, + scheduledOperations: { + serializedName: "properties.scheduledOperations", + type: { + name: "Composite", + className: "ScheduledOperationsTypeUpdate", + }, + }, + databaseEdition: { + serializedName: "properties.databaseEdition", + type: { + name: "String", + }, + }, + localAdgAutoFailoverMaxDataLossLimit: { + constraints: { + InclusiveMaximum: 3600, + InclusiveMinimum: 0, + }, + serializedName: "properties.localAdgAutoFailoverMaxDataLossLimit", + type: { + name: "Number", + }, + }, + openMode: { + serializedName: "properties.openMode", + type: { + name: "String", + }, + }, + permissionLevel: { + serializedName: "properties.permissionLevel", + type: { + name: "String", + }, + }, + role: { + serializedName: "properties.role", + type: { + name: "String", + }, + }, + backupRetentionPeriodInDays: { + serializedName: "properties.backupRetentionPeriodInDays", + type: { + name: "Number", + }, + }, + whitelistedIps: { + serializedName: "properties.whitelistedIps", + type: { + name: "Sequence", + element: { + constraints: { + MaxLength: 1024, + MinLength: 1, + }, + type: { + name: "String", + }, + }, + }, + }, + }, + }, +}; + +export const ScheduledOperationsTypeUpdate: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ScheduledOperationsTypeUpdate", + modelProperties: { + dayOfWeek: { + serializedName: "dayOfWeek", + type: { + name: "Composite", + className: "DayOfWeekUpdate", + }, + }, + scheduledStartTime: { + constraints: { + MaxLength: 50, + MinLength: 1, + }, + serializedName: "scheduledStartTime", + type: { + name: "String", + }, + }, + scheduledStopTime: { + constraints: { + MaxLength: 50, + MinLength: 1, + }, + serializedName: "scheduledStopTime", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const DayOfWeekUpdate: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "DayOfWeekUpdate", + modelProperties: { + name: { + serializedName: "name", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const AutonomousDatabaseBackupListResult: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutonomousDatabaseBackupListResult", + modelProperties: { + value: { + serializedName: "value", + required: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "AutonomousDatabaseBackup", + }, + }, + }, + }, + nextLink: { + serializedName: "nextLink", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const AutonomousDatabaseBackupUpdate: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutonomousDatabaseBackupUpdate", + modelProperties: { + retentionPeriodInDays: { + constraints: { + InclusiveMaximum: 3650, + InclusiveMinimum: 90, + }, + serializedName: "properties.retentionPeriodInDays", + type: { + name: "Number", + }, + }, + }, + }, +}; + +export const PeerDbDetails: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "PeerDbDetails", + modelProperties: { + peerDbId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "peerDbId", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const GenerateAutonomousDatabaseWalletDetails: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "GenerateAutonomousDatabaseWalletDetails", + modelProperties: { + generateType: { + serializedName: "generateType", + type: { + name: "String", + }, + }, + isRegional: { + serializedName: "isRegional", + type: { + name: "Boolean", + }, + }, + password: { + serializedName: "password", + required: true, + type: { + name: "String", + }, + }, + }, + }, + }; + +export const AutonomousDatabaseWalletFile: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutonomousDatabaseWalletFile", + modelProperties: { + walletFiles: { + serializedName: "walletFiles", + required: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const CloudExadataInfrastructureUpdate: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CloudExadataInfrastructureUpdate", + modelProperties: { + zones: { + serializedName: "zones", + type: { + name: "Sequence", + element: { + type: { + name: "String", + }, + }, + }, + }, + tags: { + serializedName: "tags", + type: { + name: "Dictionary", + value: { type: { name: "String" } }, + }, + }, + computeCount: { + serializedName: "properties.computeCount", + type: { + name: "Number", + }, + }, + storageCount: { + serializedName: "properties.storageCount", + type: { + name: "Number", + }, + }, + maintenanceWindow: { + serializedName: "properties.maintenanceWindow", + type: { + name: "Composite", + className: "MaintenanceWindow", + }, + }, + customerContacts: { + serializedName: "properties.customerContacts", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "CustomerContact", + }, + }, + }, + }, + displayName: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.displayName", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const DbServerListResult: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "DbServerListResult", + modelProperties: { + value: { + serializedName: "value", + required: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "DbServer", + }, + }, + }, + }, + nextLink: { + serializedName: "nextLink", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const DbServerPatchingDetails: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "DbServerPatchingDetails", + modelProperties: { + estimatedPatchDuration: { + constraints: { + InclusiveMaximum: 3000, + InclusiveMinimum: 1, + }, + serializedName: "estimatedPatchDuration", + readOnly: true, + type: { + name: "Number", + }, + }, + patchingStatus: { + serializedName: "patchingStatus", + readOnly: true, + type: { + name: "String", + }, + }, + timePatchingEnded: { + serializedName: "timePatchingEnded", + readOnly: true, + type: { + name: "DateTime", + }, + }, + timePatchingStarted: { + serializedName: "timePatchingStarted", + readOnly: true, + type: { + name: "DateTime", + }, + }, + }, + }, +}; + +export const CloudVmClusterUpdate: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CloudVmClusterUpdate", + modelProperties: { + tags: { + serializedName: "tags", + type: { + name: "Dictionary", + value: { type: { name: "String" } }, + }, + }, + storageSizeInGbs: { + serializedName: "properties.storageSizeInGbs", + type: { + name: "Number", + }, + }, + dataStorageSizeInTbs: { + serializedName: "properties.dataStorageSizeInTbs", + type: { + name: "Number", + }, + }, + dbNodeStorageSizeInGbs: { + serializedName: "properties.dbNodeStorageSizeInGbs", + type: { + name: "Number", + }, + }, + memorySizeInGbs: { + serializedName: "properties.memorySizeInGbs", + type: { + name: "Number", + }, + }, + cpuCoreCount: { + serializedName: "properties.cpuCoreCount", + type: { + name: "Number", + }, + }, + ocpuCount: { + serializedName: "properties.ocpuCount", + type: { + name: "Number", + }, + }, + sshPublicKeys: { + serializedName: "properties.sshPublicKeys", + type: { + name: "Sequence", + element: { + type: { + name: "String", + }, + }, + }, + }, + licenseModel: { + serializedName: "properties.licenseModel", + type: { + name: "String", + }, + }, + dataCollectionOptions: { + serializedName: "properties.dataCollectionOptions", + type: { + name: "Composite", + className: "DataCollectionOptions", + }, + }, + displayName: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.displayName", + type: { + name: "String", + }, + }, + computeNodes: { + serializedName: "properties.computeNodes", + type: { + name: "Sequence", + element: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + type: { + name: "String", + }, + }, + }, + }, + }, + }, +}; + +export const AddRemoveDbNode: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AddRemoveDbNode", + modelProperties: { + dbServers: { + serializedName: "dbServers", + required: true, + type: { + name: "Sequence", + element: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + type: { + name: "String", + }, + }, + }, + }, + }, + }, +}; + +export const DbNodeListResult: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "DbNodeListResult", + modelProperties: { + value: { + serializedName: "value", + required: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "DbNode", + }, + }, + }, + }, + nextLink: { + serializedName: "nextLink", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const DbNodeAction: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "DbNodeAction", + modelProperties: { + action: { + serializedName: "action", + required: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const PrivateIpAddressesFilter: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "PrivateIpAddressesFilter", + modelProperties: { + subnetId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "subnetId", + required: true, + type: { + name: "String", + }, + }, + vnicId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "vnicId", + required: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const PrivateIpAddressProperties: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "PrivateIpAddressProperties", + modelProperties: { + displayName: { + serializedName: "displayName", + required: true, + type: { + name: "String", + }, + }, + hostnameLabel: { + serializedName: "hostnameLabel", + required: true, + type: { + name: "String", + }, + }, + ocid: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "ocid", + required: true, + type: { + name: "String", + }, + }, + ipAddress: { + serializedName: "ipAddress", + required: true, + type: { + name: "String", + }, + }, + subnetId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "subnetId", + required: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const VirtualNetworkAddressListResult: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "VirtualNetworkAddressListResult", + modelProperties: { + value: { + serializedName: "value", + required: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "VirtualNetworkAddress", + }, + }, + }, + }, + nextLink: { + serializedName: "nextLink", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const ValidationError: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ValidationError", + modelProperties: { + code: { + serializedName: "code", + required: true, + type: { + name: "String", + }, + }, + message: { + serializedName: "message", + required: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const ValidationResult: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ValidationResult", + modelProperties: { + status: { + serializedName: "status", + required: true, + readOnly: true, + type: { + name: "String", + }, + }, + error: { + serializedName: "error", + type: { + name: "Composite", + className: "ValidationError", + }, + }, + }, + }, +}; + +export const AutonomousDatabaseCloneProperties: coreClient.CompositeMapper = { + serializedName: "Clone", + type: { + name: "Composite", + className: "AutonomousDatabaseCloneProperties", + uberParent: "AutonomousDatabaseBaseProperties", + polymorphicDiscriminator: + AutonomousDatabaseBaseProperties.type.polymorphicDiscriminator, + modelProperties: { + ...AutonomousDatabaseBaseProperties.type.modelProperties, + source: { + serializedName: "source", + type: { + name: "String", + }, + }, + sourceId: { + serializedName: "sourceId", + required: true, + type: { + name: "String", + }, + }, + cloneType: { + serializedName: "cloneType", + required: true, + type: { + name: "String", + }, + }, + isReconnectCloneEnabled: { + serializedName: "isReconnectCloneEnabled", + readOnly: true, + type: { + name: "Boolean", + }, + }, + isRefreshableClone: { + serializedName: "isRefreshableClone", + readOnly: true, + type: { + name: "Boolean", + }, + }, + refreshableModel: { + serializedName: "refreshableModel", + type: { + name: "String", + }, + }, + refreshableStatus: { + serializedName: "refreshableStatus", + readOnly: true, + type: { + name: "String", + }, + }, + timeUntilReconnectCloneEnabled: { + serializedName: "timeUntilReconnectCloneEnabled", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const AutonomousDatabaseProperties: coreClient.CompositeMapper = { + serializedName: "Regular", + type: { + name: "Composite", + className: "AutonomousDatabaseProperties", + uberParent: "AutonomousDatabaseBaseProperties", + polymorphicDiscriminator: + AutonomousDatabaseBaseProperties.type.polymorphicDiscriminator, + modelProperties: { + ...AutonomousDatabaseBaseProperties.type.modelProperties, + }, + }, +}; + +export const TrackedResource: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "TrackedResource", + modelProperties: { + ...Resource.type.modelProperties, + tags: { + serializedName: "tags", + type: { + name: "Dictionary", + value: { type: { name: "String" } }, + }, + }, + location: { + serializedName: "location", + required: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const ProxyResource: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ProxyResource", + modelProperties: { + ...Resource.type.modelProperties, + }, + }, +}; + +export const AutonomousDatabase: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutonomousDatabase", + modelProperties: { + ...TrackedResource.type.modelProperties, + adminPassword: { + serializedName: "properties.adminPassword", + type: { + name: "String", + }, + }, + dataBaseType: { + serializedName: "properties.dataBaseType", + type: { + name: "String", + }, + }, + autonomousMaintenanceScheduleType: { + serializedName: "properties.autonomousMaintenanceScheduleType", + type: { + name: "String", + }, + }, + characterSet: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.characterSet", + type: { + name: "String", + }, + }, + computeCount: { + constraints: { + InclusiveMaximum: 512, + InclusiveMinimum: 0.1, + }, + serializedName: "properties.computeCount", + type: { + name: "Number", + }, + }, + computeModel: { + serializedName: "properties.computeModel", + type: { + name: "String", + }, + }, + cpuCoreCount: { + constraints: { + InclusiveMaximum: 128, + InclusiveMinimum: 1, + }, + serializedName: "properties.cpuCoreCount", + type: { + name: "Number", + }, + }, + customerContacts: { + serializedName: "properties.customerContacts", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "CustomerContact", + }, + }, + }, + }, + dataStorageSizeInTbs: { + constraints: { + InclusiveMaximum: 384, + InclusiveMinimum: 1, + }, + serializedName: "properties.dataStorageSizeInTbs", + type: { + name: "Number", + }, + }, + dataStorageSizeInGbs: { + constraints: { + InclusiveMaximum: 393216, + InclusiveMinimum: 20, + }, + serializedName: "properties.dataStorageSizeInGbs", + type: { + name: "Number", + }, + }, + dbVersion: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.dbVersion", + type: { + name: "String", + }, + }, + dbWorkload: { + serializedName: "properties.dbWorkload", + type: { + name: "String", + }, + }, + displayName: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.displayName", + type: { + name: "String", + }, + }, + isAutoScalingEnabled: { + serializedName: "properties.isAutoScalingEnabled", + type: { + name: "Boolean", + }, + }, + isAutoScalingForStorageEnabled: { + serializedName: "properties.isAutoScalingForStorageEnabled", + type: { + name: "Boolean", + }, + }, + peerDbIds: { + serializedName: "properties.peerDbIds", + readOnly: true, + type: { + name: "Sequence", + element: { + type: { + name: "String", + }, + }, + }, + }, + peerDbId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.peerDbId", + type: { + name: "String", + }, + }, + isLocalDataGuardEnabled: { + serializedName: "properties.isLocalDataGuardEnabled", + type: { + name: "Boolean", + }, + }, + isRemoteDataGuardEnabled: { + serializedName: "properties.isRemoteDataGuardEnabled", + readOnly: true, + type: { + name: "Boolean", + }, + }, + localDisasterRecoveryType: { + serializedName: "properties.localDisasterRecoveryType", + readOnly: true, + type: { + name: "String", + }, + }, + localStandbyDb: { + serializedName: "properties.localStandbyDb", + type: { + name: "Composite", + className: "AutonomousDatabaseStandbySummary", + }, + }, + failedDataRecoveryInSeconds: { + serializedName: "properties.failedDataRecoveryInSeconds", + readOnly: true, + type: { + name: "Number", + }, + }, + isMtlsConnectionRequired: { + serializedName: "properties.isMtlsConnectionRequired", + type: { + name: "Boolean", + }, + }, + isPreviewVersionWithServiceTermsAccepted: { + serializedName: "properties.isPreviewVersionWithServiceTermsAccepted", + type: { + name: "Boolean", + }, + }, + licenseModel: { + serializedName: "properties.licenseModel", + type: { + name: "String", + }, + }, + ncharacterSet: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.ncharacterSet", + type: { + name: "String", + }, + }, + lifecycleDetails: { + serializedName: "properties.lifecycleDetails", + readOnly: true, + type: { + name: "String", + }, + }, + provisioningState: { + serializedName: "properties.provisioningState", + readOnly: true, + type: { + name: "String", + }, + }, + lifecycleState: { + serializedName: "properties.lifecycleState", + readOnly: true, + type: { + name: "String", + }, + }, + scheduledOperations: { + serializedName: "properties.scheduledOperations", + type: { + name: "Composite", + className: "ScheduledOperationsType", + }, + }, + privateEndpointIp: { + serializedName: "properties.privateEndpointIp", + type: { + name: "String", + }, + }, + privateEndpointLabel: { + serializedName: "properties.privateEndpointLabel", + type: { + name: "String", + }, + }, + ociUrl: { + serializedName: "properties.ociUrl", + readOnly: true, + type: { + name: "String", + }, + }, + subnetId: { + serializedName: "properties.subnetId", + type: { + name: "String", + }, + }, + vnetId: { + serializedName: "properties.vnetId", + type: { + name: "String", + }, + }, + timeCreated: { + serializedName: "properties.timeCreated", + readOnly: true, + type: { + name: "DateTime", + }, + }, + timeMaintenanceBegin: { + serializedName: "properties.timeMaintenanceBegin", + readOnly: true, + type: { + name: "DateTime", + }, + }, + timeMaintenanceEnd: { + serializedName: "properties.timeMaintenanceEnd", + readOnly: true, + type: { + name: "DateTime", + }, + }, + actualUsedDataStorageSizeInTbs: { + serializedName: "properties.actualUsedDataStorageSizeInTbs", + readOnly: true, + type: { + name: "Number", + }, + }, + allocatedStorageSizeInTbs: { + serializedName: "properties.allocatedStorageSizeInTbs", + readOnly: true, + type: { + name: "Number", + }, + }, + apexDetails: { + serializedName: "properties.apexDetails", + type: { + name: "Composite", + className: "ApexDetailsType", + }, + }, + availableUpgradeVersions: { + serializedName: "properties.availableUpgradeVersions", + readOnly: true, + type: { + name: "Sequence", + element: { + type: { + name: "String", + }, + }, + }, + }, + connectionStrings: { + serializedName: "properties.connectionStrings", + type: { + name: "Composite", + className: "ConnectionStringType", + }, + }, + connectionUrls: { + serializedName: "properties.connectionUrls", + type: { + name: "Composite", + className: "ConnectionUrlType", + }, + }, + dataSafeStatus: { + serializedName: "properties.dataSafeStatus", + readOnly: true, + type: { + name: "String", + }, + }, + databaseEdition: { + serializedName: "properties.databaseEdition", + type: { + name: "String", + }, + }, + autonomousDatabaseId: { + serializedName: "properties.autonomousDatabaseId", + type: { + name: "String", + }, + }, + inMemoryAreaInGbs: { + serializedName: "properties.inMemoryAreaInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + isPreview: { + serializedName: "properties.isPreview", + readOnly: true, + type: { + name: "Boolean", + }, + }, + localAdgAutoFailoverMaxDataLossLimit: { + constraints: { + InclusiveMaximum: 3600, + InclusiveMinimum: 0, + }, + serializedName: "properties.localAdgAutoFailoverMaxDataLossLimit", + type: { + name: "Number", + }, + }, + memoryPerOracleComputeUnitInGbs: { + serializedName: "properties.memoryPerOracleComputeUnitInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + openMode: { + serializedName: "properties.openMode", + type: { + name: "String", + }, + }, + operationsInsightsStatus: { + serializedName: "properties.operationsInsightsStatus", + readOnly: true, + type: { + name: "String", + }, + }, + permissionLevel: { + serializedName: "properties.permissionLevel", + type: { + name: "String", + }, + }, + privateEndpoint: { + serializedName: "properties.privateEndpoint", + readOnly: true, + type: { + name: "String", + }, + }, + provisionableCpus: { + serializedName: "properties.provisionableCpus", + readOnly: true, + type: { + name: "Sequence", + element: { + type: { + name: "Number", + }, + }, + }, + }, + role: { + serializedName: "properties.role", + type: { + name: "String", + }, + }, + serviceConsoleUrl: { + constraints: { + MaxLength: 255, + MinLength: 10, + }, + serializedName: "properties.serviceConsoleUrl", + readOnly: true, + type: { + name: "String", + }, + }, + sqlWebDeveloperUrl: { + constraints: { + MaxLength: 2048, + MinLength: 10, + }, + serializedName: "properties.sqlWebDeveloperUrl", + readOnly: true, + type: { + name: "String", + }, + }, + supportedRegionsToCloneTo: { + constraints: { + MaxItems: 50, + }, + serializedName: "properties.supportedRegionsToCloneTo", + readOnly: true, + type: { + name: "Sequence", + element: { + type: { + name: "String", + }, + }, + }, + }, + timeDataGuardRoleChanged: { + serializedName: "properties.timeDataGuardRoleChanged", + readOnly: true, + type: { + name: "String", + }, + }, + timeDeletionOfFreeAutonomousDatabase: { + serializedName: "properties.timeDeletionOfFreeAutonomousDatabase", + readOnly: true, + type: { + name: "String", + }, + }, + timeLocalDataGuardEnabled: { + serializedName: "properties.timeLocalDataGuardEnabled", + readOnly: true, + type: { + name: "String", + }, + }, + timeOfLastFailover: { + serializedName: "properties.timeOfLastFailover", + readOnly: true, + type: { + name: "String", + }, + }, + timeOfLastRefresh: { + serializedName: "properties.timeOfLastRefresh", + readOnly: true, + type: { + name: "String", + }, + }, + timeOfLastRefreshPoint: { + serializedName: "properties.timeOfLastRefreshPoint", + readOnly: true, + type: { + name: "String", + }, + }, + timeOfLastSwitchover: { + serializedName: "properties.timeOfLastSwitchover", + readOnly: true, + type: { + name: "String", + }, + }, + timeReclamationOfFreeAutonomousDatabase: { + serializedName: "properties.timeReclamationOfFreeAutonomousDatabase", + readOnly: true, + type: { + name: "String", + }, + }, + usedDataStorageSizeInGbs: { + serializedName: "properties.usedDataStorageSizeInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + usedDataStorageSizeInTbs: { + serializedName: "properties.usedDataStorageSizeInTbs", + readOnly: true, + type: { + name: "Number", + }, + }, + ocid: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.ocid", + readOnly: true, + type: { + name: "String", + }, + }, + backupRetentionPeriodInDays: { + serializedName: "properties.backupRetentionPeriodInDays", + type: { + name: "Number", + }, + }, + whitelistedIps: { + serializedName: "properties.whitelistedIps", + type: { + name: "Sequence", + element: { + constraints: { + MaxLength: 1024, + MinLength: 1, + }, + type: { + name: "String", + }, + }, + }, + }, + }, + }, +}; + +export const CloudExadataInfrastructure: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CloudExadataInfrastructure", + modelProperties: { + ...TrackedResource.type.modelProperties, + zones: { + serializedName: "zones", + required: true, + type: { + name: "Sequence", + element: { + type: { + name: "String", + }, + }, + }, + }, + ocid: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.ocid", + readOnly: true, + type: { + name: "String", + }, + }, + computeCount: { + serializedName: "properties.computeCount", + type: { + name: "Number", + }, + }, + storageCount: { + serializedName: "properties.storageCount", + type: { + name: "Number", + }, + }, + totalStorageSizeInGbs: { + serializedName: "properties.totalStorageSizeInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + availableStorageSizeInGbs: { + serializedName: "properties.availableStorageSizeInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + timeCreated: { + serializedName: "properties.timeCreated", + readOnly: true, + type: { + name: "String", + }, + }, + lifecycleDetails: { + serializedName: "properties.lifecycleDetails", + readOnly: true, + type: { + name: "String", + }, + }, + maintenanceWindow: { + serializedName: "properties.maintenanceWindow", + type: { + name: "Composite", + className: "MaintenanceWindow", + }, + }, + estimatedPatchingTime: { + serializedName: "properties.estimatedPatchingTime", + type: { + name: "Composite", + className: "EstimatedPatchingTime", + }, + }, + customerContacts: { + serializedName: "properties.customerContacts", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "CustomerContact", + }, + }, + }, + }, + provisioningState: { + serializedName: "properties.provisioningState", + readOnly: true, + type: { + name: "String", + }, + }, + lifecycleState: { + serializedName: "properties.lifecycleState", + readOnly: true, + type: { + name: "String", + }, + }, + shape: { + serializedName: "properties.shape", + type: { + name: "String", + }, + }, + ociUrl: { + serializedName: "properties.ociUrl", + readOnly: true, + type: { + name: "String", + }, + }, + cpuCount: { + serializedName: "properties.cpuCount", + readOnly: true, + type: { + name: "Number", + }, + }, + maxCpuCount: { + serializedName: "properties.maxCpuCount", + readOnly: true, + type: { + name: "Number", + }, + }, + memorySizeInGbs: { + serializedName: "properties.memorySizeInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + maxMemoryInGbs: { + serializedName: "properties.maxMemoryInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + dbNodeStorageSizeInGbs: { + serializedName: "properties.dbNodeStorageSizeInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + maxDbNodeStorageSizeInGbs: { + serializedName: "properties.maxDbNodeStorageSizeInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + dataStorageSizeInTbs: { + serializedName: "properties.dataStorageSizeInTbs", + readOnly: true, + type: { + name: "Number", + }, + }, + maxDataStorageInTbs: { + serializedName: "properties.maxDataStorageInTbs", + readOnly: true, + type: { + name: "Number", + }, + }, + dbServerVersion: { + serializedName: "properties.dbServerVersion", + readOnly: true, + type: { + name: "String", + }, + }, + storageServerVersion: { + serializedName: "properties.storageServerVersion", + readOnly: true, + type: { + name: "String", + }, + }, + activatedStorageCount: { + serializedName: "properties.activatedStorageCount", + readOnly: true, + type: { + name: "Number", + }, + }, + additionalStorageCount: { + serializedName: "properties.additionalStorageCount", + readOnly: true, + type: { + name: "Number", + }, + }, + displayName: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.displayName", + type: { + name: "String", + }, + }, + lastMaintenanceRunId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.lastMaintenanceRunId", + readOnly: true, + type: { + name: "String", + }, + }, + nextMaintenanceRunId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.nextMaintenanceRunId", + readOnly: true, + type: { + name: "String", + }, + }, + monthlyDbServerVersion: { + serializedName: "properties.monthlyDbServerVersion", + readOnly: true, + type: { + name: "String", + }, + }, + monthlyStorageServerVersion: { + serializedName: "properties.monthlyStorageServerVersion", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const CloudVmCluster: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CloudVmCluster", + modelProperties: { + ...TrackedResource.type.modelProperties, + ocid: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.ocid", + readOnly: true, + type: { + name: "String", + }, + }, + listenerPort: { + serializedName: "properties.listenerPort", + readOnly: true, + type: { + name: "Number", + }, + }, + nodeCount: { + serializedName: "properties.nodeCount", + readOnly: true, + type: { + name: "Number", + }, + }, + storageSizeInGbs: { + serializedName: "properties.storageSizeInGbs", + type: { + name: "Number", + }, + }, + dataStorageSizeInTbs: { + serializedName: "properties.dataStorageSizeInTbs", + type: { + name: "Number", + }, + }, + dbNodeStorageSizeInGbs: { + serializedName: "properties.dbNodeStorageSizeInGbs", + type: { + name: "Number", + }, + }, + memorySizeInGbs: { + serializedName: "properties.memorySizeInGbs", + type: { + name: "Number", + }, + }, + timeCreated: { + serializedName: "properties.timeCreated", + readOnly: true, + type: { + name: "DateTime", + }, + }, + lifecycleDetails: { + serializedName: "properties.lifecycleDetails", + readOnly: true, + type: { + name: "String", + }, + }, + timeZone: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.timeZone", + type: { + name: "String", + }, + }, + zoneId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.zoneId", + type: { + name: "String", + }, + }, + hostname: { + constraints: { + MaxLength: 23, + MinLength: 1, + }, + serializedName: "properties.hostname", + type: { + name: "String", + }, + }, + domain: { + serializedName: "properties.domain", + type: { + name: "String", + }, + }, + cpuCoreCount: { + serializedName: "properties.cpuCoreCount", + type: { + name: "Number", + }, + }, + ocpuCount: { + serializedName: "properties.ocpuCount", + type: { + name: "Number", + }, + }, + clusterName: { + constraints: { + MaxLength: 11, + MinLength: 1, + }, + serializedName: "properties.clusterName", + type: { + name: "String", + }, + }, + dataStoragePercentage: { + serializedName: "properties.dataStoragePercentage", + type: { + name: "Number", + }, + }, + isLocalBackupEnabled: { + defaultValue: false, + serializedName: "properties.isLocalBackupEnabled", + type: { + name: "Boolean", + }, + }, + cloudExadataInfrastructureId: { + serializedName: "properties.cloudExadataInfrastructureId", + type: { + name: "String", + }, + }, + isSparseDiskgroupEnabled: { + defaultValue: false, + serializedName: "properties.isSparseDiskgroupEnabled", + type: { + name: "Boolean", + }, + }, + systemVersion: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.systemVersion", + readOnly: true, + type: { + name: "String", + }, + }, + sshPublicKeys: { + serializedName: "properties.sshPublicKeys", + type: { + name: "Sequence", + element: { + type: { + name: "String", + }, + }, + }, + }, + licenseModel: { + serializedName: "properties.licenseModel", + type: { + name: "String", + }, + }, + diskRedundancy: { + serializedName: "properties.diskRedundancy", + readOnly: true, + type: { + name: "String", + }, + }, + scanIpIds: { + serializedName: "properties.scanIpIds", + readOnly: true, + type: { + name: "Sequence", + element: { + type: { + name: "String", + }, + }, + }, + }, + vipIds: { + serializedName: "properties.vipIds", + readOnly: true, + type: { + name: "Sequence", + element: { + type: { + name: "String", + }, + }, + }, + }, + scanDnsName: { + constraints: { + MaxLength: 72, + MinLength: 1, + }, + serializedName: "properties.scanDnsName", + readOnly: true, + type: { + name: "String", + }, + }, + scanListenerPortTcp: { + serializedName: "properties.scanListenerPortTcp", + type: { + name: "Number", + }, + }, + scanListenerPortTcpSsl: { + serializedName: "properties.scanListenerPortTcpSsl", + type: { + name: "Number", + }, + }, + scanDnsRecordId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.scanDnsRecordId", + readOnly: true, + type: { + name: "String", + }, + }, + shape: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.shape", + readOnly: true, + type: { + name: "String", + }, + }, + provisioningState: { + serializedName: "properties.provisioningState", + readOnly: true, + type: { + name: "String", + }, + }, + lifecycleState: { + serializedName: "properties.lifecycleState", + readOnly: true, + type: { + name: "String", + }, + }, + vnetId: { + serializedName: "properties.vnetId", + type: { + name: "String", + }, + }, + giVersion: { + serializedName: "properties.giVersion", + type: { + name: "String", + }, + }, + ociUrl: { + serializedName: "properties.ociUrl", + readOnly: true, + type: { + name: "String", + }, + }, + nsgUrl: { + serializedName: "properties.nsgUrl", + readOnly: true, + type: { + name: "String", + }, + }, + subnetId: { + serializedName: "properties.subnetId", + type: { + name: "String", + }, + }, + backupSubnetCidr: { + constraints: { + MaxLength: 32, + MinLength: 1, + }, + serializedName: "properties.backupSubnetCidr", + type: { + name: "String", + }, + }, + nsgCidrs: { + serializedName: "properties.nsgCidrs", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "NSGCidr", + }, + }, + }, + }, + dataCollectionOptions: { + serializedName: "properties.dataCollectionOptions", + type: { + name: "Composite", + className: "DataCollectionOptions", + }, + }, + displayName: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.displayName", + type: { + name: "String", + }, + }, + computeNodes: { + serializedName: "properties.computeNodes", + type: { + name: "Sequence", + element: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + type: { + name: "String", + }, + }, + }, + }, + iormConfigCache: { + serializedName: "properties.iormConfigCache", + type: { + name: "Composite", + className: "ExadataIormConfig", + }, + }, + lastUpdateHistoryEntryId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.lastUpdateHistoryEntryId", + readOnly: true, + type: { + name: "String", + }, + }, + dbServers: { + serializedName: "properties.dbServers", + type: { + name: "Sequence", + element: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + type: { + name: "String", + }, + }, + }, + }, + compartmentId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.compartmentId", + readOnly: true, + type: { + name: "String", + }, + }, + subnetOcid: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.subnetOcid", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const AutonomousDatabaseCharacterSet: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutonomousDatabaseCharacterSet", + modelProperties: { + ...ProxyResource.type.modelProperties, + characterSet: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.characterSet", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const AutonomousDatabaseNationalCharacterSet: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "AutonomousDatabaseNationalCharacterSet", + modelProperties: { + ...ProxyResource.type.modelProperties, + characterSet: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.characterSet", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, + }; + +export const AutonomousDbVersion: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutonomousDbVersion", + modelProperties: { + ...ProxyResource.type.modelProperties, + version: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.version", + readOnly: true, + type: { + name: "String", + }, + }, + dbWorkload: { + serializedName: "properties.dbWorkload", + readOnly: true, + type: { + name: "String", + }, + }, + isDefaultForFree: { + serializedName: "properties.isDefaultForFree", + readOnly: true, + type: { + name: "Boolean", + }, + }, + isDefaultForPaid: { + serializedName: "properties.isDefaultForPaid", + readOnly: true, + type: { + name: "Boolean", + }, + }, + isFreeTierEnabled: { + serializedName: "properties.isFreeTierEnabled", + readOnly: true, + type: { + name: "Boolean", + }, + }, + isPaidEnabled: { + serializedName: "properties.isPaidEnabled", + readOnly: true, + type: { + name: "Boolean", + }, + }, + }, + }, +}; + +export const DbSystemShape: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "DbSystemShape", + modelProperties: { + ...ProxyResource.type.modelProperties, + shapeFamily: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.shapeFamily", + readOnly: true, + type: { + name: "String", + }, + }, + availableCoreCount: { + serializedName: "properties.availableCoreCount", + readOnly: true, + type: { + name: "Number", + }, + }, + minimumCoreCount: { + serializedName: "properties.minimumCoreCount", + readOnly: true, + type: { + name: "Number", + }, + }, + runtimeMinimumCoreCount: { + serializedName: "properties.runtimeMinimumCoreCount", + readOnly: true, + type: { + name: "Number", + }, + }, + coreCountIncrement: { + serializedName: "properties.coreCountIncrement", + readOnly: true, + type: { + name: "Number", + }, + }, + minStorageCount: { + serializedName: "properties.minStorageCount", + readOnly: true, + type: { + name: "Number", + }, + }, + maxStorageCount: { + serializedName: "properties.maxStorageCount", + readOnly: true, + type: { + name: "Number", + }, + }, + availableDataStoragePerServerInTbs: { + serializedName: "properties.availableDataStoragePerServerInTbs", + readOnly: true, + type: { + name: "Number", + }, + }, + availableMemoryPerNodeInGbs: { + serializedName: "properties.availableMemoryPerNodeInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + availableDbNodePerNodeInGbs: { + serializedName: "properties.availableDbNodePerNodeInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + minCoreCountPerNode: { + serializedName: "properties.minCoreCountPerNode", + readOnly: true, + type: { + name: "Number", + }, + }, + availableMemoryInGbs: { + serializedName: "properties.availableMemoryInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + minMemoryPerNodeInGbs: { + serializedName: "properties.minMemoryPerNodeInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + availableDbNodeStorageInGbs: { + serializedName: "properties.availableDbNodeStorageInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + minDbNodeStoragePerNodeInGbs: { + serializedName: "properties.minDbNodeStoragePerNodeInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + availableDataStorageInTbs: { + serializedName: "properties.availableDataStorageInTbs", + readOnly: true, + type: { + name: "Number", + }, + }, + minDataStorageInTbs: { + serializedName: "properties.minDataStorageInTbs", + readOnly: true, + type: { + name: "Number", + }, + }, + minimumNodeCount: { + serializedName: "properties.minimumNodeCount", + readOnly: true, + type: { + name: "Number", + }, + }, + maximumNodeCount: { + serializedName: "properties.maximumNodeCount", + readOnly: true, + type: { + name: "Number", + }, + }, + availableCoreCountPerNode: { + serializedName: "properties.availableCoreCountPerNode", + readOnly: true, + type: { + name: "Number", + }, + }, + }, + }, +}; + +export const DnsPrivateView: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "DnsPrivateView", + modelProperties: { + ...ProxyResource.type.modelProperties, + ocid: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.ocid", + readOnly: true, + type: { + name: "String", + }, + }, + displayName: { + serializedName: "properties.displayName", + readOnly: true, + type: { + name: "String", + }, + }, + isProtected: { + serializedName: "properties.isProtected", + readOnly: true, + type: { + name: "Boolean", + }, + }, + lifecycleState: { + serializedName: "properties.lifecycleState", + readOnly: true, + type: { + name: "String", + }, + }, + self: { + serializedName: "properties.self", + readOnly: true, + type: { + name: "String", + }, + }, + timeCreated: { + serializedName: "properties.timeCreated", + readOnly: true, + type: { + name: "DateTime", + }, + }, + timeUpdated: { + serializedName: "properties.timeUpdated", + readOnly: true, + type: { + name: "DateTime", + }, + }, + provisioningState: { + serializedName: "properties.provisioningState", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const DnsPrivateZone: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "DnsPrivateZone", + modelProperties: { + ...ProxyResource.type.modelProperties, + ocid: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.ocid", + readOnly: true, + type: { + name: "String", + }, + }, + isProtected: { + serializedName: "properties.isProtected", + readOnly: true, + type: { + name: "Boolean", + }, + }, + lifecycleState: { + serializedName: "properties.lifecycleState", + readOnly: true, + type: { + name: "String", + }, + }, + self: { + serializedName: "properties.self", + readOnly: true, + type: { + name: "String", + }, + }, + serial: { + serializedName: "properties.serial", + readOnly: true, + type: { + name: "Number", + }, + }, + version: { + serializedName: "properties.version", + readOnly: true, + type: { + name: "String", + }, + }, + viewId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.viewId", + readOnly: true, + type: { + name: "String", + }, + }, + zoneType: { + serializedName: "properties.zoneType", + readOnly: true, + type: { + name: "String", + }, + }, + timeCreated: { + serializedName: "properties.timeCreated", + readOnly: true, + type: { + name: "DateTime", + }, + }, + provisioningState: { + serializedName: "properties.provisioningState", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const GiVersion: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "GiVersion", + modelProperties: { + ...ProxyResource.type.modelProperties, + version: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.version", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const OracleSubscription: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "OracleSubscription", + modelProperties: { + ...ProxyResource.type.modelProperties, + plan: { + serializedName: "plan", + type: { + name: "Composite", + className: "Plan", + }, + }, + provisioningState: { + serializedName: "properties.provisioningState", + readOnly: true, + type: { + name: "String", + }, + }, + saasSubscriptionId: { + serializedName: "properties.saasSubscriptionId", + readOnly: true, + type: { + name: "String", + }, + }, + cloudAccountId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.cloudAccountId", + readOnly: true, + type: { + name: "String", + }, + }, + cloudAccountState: { + serializedName: "properties.cloudAccountState", + readOnly: true, + type: { + name: "String", + }, + }, + termUnit: { + serializedName: "properties.termUnit", + type: { + name: "String", + }, + }, + productCode: { + serializedName: "properties.productCode", + type: { + name: "String", + }, + }, + intent: { + serializedName: "properties.intent", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const AutonomousDatabaseBackup: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutonomousDatabaseBackup", + modelProperties: { + ...ProxyResource.type.modelProperties, + autonomousDatabaseId: { + serializedName: "properties.autonomousDatabaseId", + readOnly: true, + type: { + name: "String", + }, + }, + databaseSizeInTBs: { + serializedName: "properties.databaseSizeInTBs", + readOnly: true, + type: { + name: "Number", + }, + }, + dbVersion: { + serializedName: "properties.dbVersion", + readOnly: true, + type: { + name: "String", + }, + }, + displayName: { + serializedName: "properties.displayName", + type: { + name: "String", + }, + }, + ocid: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.ocid", + readOnly: true, + type: { + name: "String", + }, + }, + isAutomatic: { + serializedName: "properties.isAutomatic", + readOnly: true, + type: { + name: "Boolean", + }, + }, + isRestorable: { + serializedName: "properties.isRestorable", + readOnly: true, + type: { + name: "Boolean", + }, + }, + lifecycleDetails: { + serializedName: "properties.lifecycleDetails", + readOnly: true, + type: { + name: "String", + }, + }, + lifecycleState: { + serializedName: "properties.lifecycleState", + readOnly: true, + type: { + name: "String", + }, + }, + retentionPeriodInDays: { + constraints: { + InclusiveMaximum: 3650, + InclusiveMinimum: 90, + }, + serializedName: "properties.retentionPeriodInDays", + type: { + name: "Number", + }, + }, + sizeInTBs: { + serializedName: "properties.sizeInTBs", + readOnly: true, + type: { + name: "Number", + }, + }, + timeAvailableTil: { + serializedName: "properties.timeAvailableTil", + readOnly: true, + type: { + name: "DateTime", + }, + }, + timeEnded: { + serializedName: "properties.timeEnded", + readOnly: true, + type: { + name: "String", + }, + }, + typePropertiesType: { + serializedName: "properties.type", + readOnly: true, + type: { + name: "String", + }, + }, + provisioningState: { + serializedName: "properties.provisioningState", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const DbServer: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "DbServer", + modelProperties: { + ...ProxyResource.type.modelProperties, + ocid: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.ocid", + readOnly: true, + type: { + name: "String", + }, + }, + displayName: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.displayName", + readOnly: true, + type: { + name: "String", + }, + }, + compartmentId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.compartmentId", + readOnly: true, + type: { + name: "String", + }, + }, + exadataInfrastructureId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.exadataInfrastructureId", + readOnly: true, + type: { + name: "String", + }, + }, + cpuCoreCount: { + serializedName: "properties.cpuCoreCount", + readOnly: true, + type: { + name: "Number", + }, + }, + dbServerPatchingDetails: { + serializedName: "properties.dbServerPatchingDetails", + type: { + name: "Composite", + className: "DbServerPatchingDetails", + }, + }, + maxMemoryInGbs: { + serializedName: "properties.maxMemoryInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + dbNodeStorageSizeInGbs: { + serializedName: "properties.dbNodeStorageSizeInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + vmClusterIds: { + serializedName: "properties.vmClusterIds", + readOnly: true, + type: { + name: "Sequence", + element: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + type: { + name: "String", + }, + }, + }, + }, + dbNodeIds: { + serializedName: "properties.dbNodeIds", + readOnly: true, + type: { + name: "Sequence", + element: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + type: { + name: "String", + }, + }, + }, + }, + lifecycleDetails: { + serializedName: "properties.lifecycleDetails", + readOnly: true, + type: { + name: "String", + }, + }, + lifecycleState: { + serializedName: "properties.lifecycleState", + readOnly: true, + type: { + name: "String", + }, + }, + maxCpuCount: { + serializedName: "properties.maxCpuCount", + readOnly: true, + type: { + name: "Number", + }, + }, + autonomousVmClusterIds: { + serializedName: "properties.autonomousVmClusterIds", + readOnly: true, + type: { + name: "Sequence", + element: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + type: { + name: "String", + }, + }, + }, + }, + autonomousVirtualMachineIds: { + serializedName: "properties.autonomousVirtualMachineIds", + readOnly: true, + type: { + name: "Sequence", + element: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + type: { + name: "String", + }, + }, + }, + }, + maxDbNodeStorageInGbs: { + serializedName: "properties.maxDbNodeStorageInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + memorySizeInGbs: { + serializedName: "properties.memorySizeInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + shape: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.shape", + readOnly: true, + type: { + name: "String", + }, + }, + timeCreated: { + serializedName: "properties.timeCreated", + readOnly: true, + type: { + name: "DateTime", + }, + }, + provisioningState: { + serializedName: "properties.provisioningState", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const DbNode: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "DbNode", + modelProperties: { + ...ProxyResource.type.modelProperties, + ocid: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.ocid", + readOnly: true, + type: { + name: "String", + }, + }, + additionalDetails: { + serializedName: "properties.additionalDetails", + readOnly: true, + type: { + name: "String", + }, + }, + backupIpId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.backupIpId", + readOnly: true, + type: { + name: "String", + }, + }, + backupVnic2Id: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.backupVnic2Id", + readOnly: true, + type: { + name: "String", + }, + }, + backupVnicId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.backupVnicId", + readOnly: true, + type: { + name: "String", + }, + }, + cpuCoreCount: { + serializedName: "properties.cpuCoreCount", + readOnly: true, + type: { + name: "Number", + }, + }, + dbNodeStorageSizeInGbs: { + serializedName: "properties.dbNodeStorageSizeInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + dbServerId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.dbServerId", + readOnly: true, + type: { + name: "String", + }, + }, + dbSystemId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.dbSystemId", + readOnly: true, + type: { + name: "String", + }, + }, + faultDomain: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.faultDomain", + readOnly: true, + type: { + name: "String", + }, + }, + hostIpId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.hostIpId", + readOnly: true, + type: { + name: "String", + }, + }, + hostname: { + serializedName: "properties.hostname", + readOnly: true, + type: { + name: "String", + }, + }, + lifecycleState: { + serializedName: "properties.lifecycleState", + readOnly: true, + type: { + name: "String", + }, + }, + lifecycleDetails: { + serializedName: "properties.lifecycleDetails", + readOnly: true, + type: { + name: "String", + }, + }, + maintenanceType: { + serializedName: "properties.maintenanceType", + readOnly: true, + type: { + name: "String", + }, + }, + memorySizeInGbs: { + serializedName: "properties.memorySizeInGbs", + readOnly: true, + type: { + name: "Number", + }, + }, + softwareStorageSizeInGb: { + serializedName: "properties.softwareStorageSizeInGb", + readOnly: true, + type: { + name: "Number", + }, + }, + timeCreated: { + serializedName: "properties.timeCreated", + readOnly: true, + type: { + name: "DateTime", + }, + }, + timeMaintenanceWindowEnd: { + serializedName: "properties.timeMaintenanceWindowEnd", + readOnly: true, + type: { + name: "DateTime", + }, + }, + timeMaintenanceWindowStart: { + serializedName: "properties.timeMaintenanceWindowStart", + readOnly: true, + type: { + name: "DateTime", + }, + }, + vnic2Id: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.vnic2Id", + readOnly: true, + type: { + name: "String", + }, + }, + vnicId: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.vnicId", + readOnly: true, + type: { + name: "String", + }, + }, + provisioningState: { + serializedName: "properties.provisioningState", + readOnly: true, + type: { + name: "String", + }, + }, + }, + }, +}; + +export const VirtualNetworkAddress: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "VirtualNetworkAddress", + modelProperties: { + ...ProxyResource.type.modelProperties, + ipAddress: { + serializedName: "properties.ipAddress", + type: { + name: "String", + }, + }, + vmOcid: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.vmOcid", + type: { + name: "String", + }, + }, + ocid: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "properties.ocid", + readOnly: true, + type: { + name: "String", + }, + }, + domain: { + serializedName: "properties.domain", + readOnly: true, + type: { + name: "String", + }, + }, + lifecycleDetails: { + serializedName: "properties.lifecycleDetails", + readOnly: true, + type: { + name: "String", + }, + }, + provisioningState: { + serializedName: "properties.provisioningState", + readOnly: true, + type: { + name: "String", + }, + }, + lifecycleState: { + serializedName: "properties.lifecycleState", + readOnly: true, + type: { + name: "String", + }, + }, + timeAssigned: { + serializedName: "properties.timeAssigned", + readOnly: true, + type: { + name: "DateTime", + }, + }, + }, + }, +}; + +export const AutonomousDatabasesCreateOrUpdateHeaders: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "AutonomousDatabasesCreateOrUpdateHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + }, + }, + }; + +export const AutonomousDatabasesUpdateHeaders: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutonomousDatabasesUpdateHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const AutonomousDatabasesDeleteHeaders: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutonomousDatabasesDeleteHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const AutonomousDatabasesFailoverHeaders: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutonomousDatabasesFailoverHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const AutonomousDatabasesSwitchoverHeaders: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "AutonomousDatabasesSwitchoverHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, + }; + +export const CloudExadataInfrastructuresCreateOrUpdateHeaders: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "CloudExadataInfrastructuresCreateOrUpdateHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + }, + }, + }; + +export const CloudExadataInfrastructuresUpdateHeaders: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "CloudExadataInfrastructuresUpdateHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, + }; + +export const CloudExadataInfrastructuresDeleteHeaders: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "CloudExadataInfrastructuresDeleteHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, + }; + +export const CloudExadataInfrastructuresAddStorageCapacityHeaders: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "CloudExadataInfrastructuresAddStorageCapacityHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, + }; + +export const CloudVmClustersCreateOrUpdateHeaders: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "CloudVmClustersCreateOrUpdateHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + }, + }, + }; + +export const CloudVmClustersUpdateHeaders: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CloudVmClustersUpdateHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const CloudVmClustersDeleteHeaders: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CloudVmClustersDeleteHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const CloudVmClustersAddVmsHeaders: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CloudVmClustersAddVmsHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const CloudVmClustersRemoveVmsHeaders: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CloudVmClustersRemoveVmsHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const OracleSubscriptionsCreateOrUpdateHeaders: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "OracleSubscriptionsCreateOrUpdateHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + }, + }, + }; + +export const OracleSubscriptionsUpdateHeaders: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "OracleSubscriptionsUpdateHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const OracleSubscriptionsDeleteHeaders: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "OracleSubscriptionsDeleteHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const OracleSubscriptionsListActivationLinksHeaders: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "OracleSubscriptionsListActivationLinksHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, + }; + +export const OracleSubscriptionsListCloudAccountDetailsHeaders: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "OracleSubscriptionsListCloudAccountDetailsHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, + }; + +export const OracleSubscriptionsListSaasSubscriptionDetailsHeaders: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "OracleSubscriptionsListSaasSubscriptionDetailsHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, + }; + +export const AutonomousDatabaseBackupsCreateOrUpdateHeaders: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "AutonomousDatabaseBackupsCreateOrUpdateHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + }, + }, + }; + +export const AutonomousDatabaseBackupsUpdateHeaders: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "AutonomousDatabaseBackupsUpdateHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, + }; + +export const AutonomousDatabaseBackupsDeleteHeaders: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "AutonomousDatabaseBackupsDeleteHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, + }; + +export const DbNodesActionHeaders: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "DbNodesActionHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, +}; + +export const VirtualNetworkAddressesCreateOrUpdateHeaders: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "VirtualNetworkAddressesCreateOrUpdateHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + }, + }, + }; + +export const VirtualNetworkAddressesDeleteHeaders: coreClient.CompositeMapper = + { + type: { + name: "Composite", + className: "VirtualNetworkAddressesDeleteHeaders", + modelProperties: { + retryAfter: { + serializedName: "retry-after", + type: { + name: "Number", + }, + }, + location: { + serializedName: "location", + type: { + name: "String", + }, + }, + }, + }, + }; + +export let discriminators = { + AutonomousDatabaseBaseProperties: AutonomousDatabaseBaseProperties, + "AutonomousDatabaseBaseProperties.Clone": AutonomousDatabaseCloneProperties, + "AutonomousDatabaseBaseProperties.Regular": AutonomousDatabaseProperties, +}; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/models/parameters.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/models/parameters.ts new file mode 100644 index 000000000000..78873f92b867 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/models/parameters.ts @@ -0,0 +1,385 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { + OperationParameter, + OperationURLParameter, + OperationQueryParameter, +} from "@azure/core-client"; +import { + AutonomousDatabase as AutonomousDatabaseMapper, + AutonomousDatabaseUpdate as AutonomousDatabaseUpdateMapper, + PeerDbDetails as PeerDbDetailsMapper, + GenerateAutonomousDatabaseWalletDetails as GenerateAutonomousDatabaseWalletDetailsMapper, + CloudExadataInfrastructure as CloudExadataInfrastructureMapper, + CloudExadataInfrastructureUpdate as CloudExadataInfrastructureUpdateMapper, + CloudVmCluster as CloudVmClusterMapper, + CloudVmClusterUpdate as CloudVmClusterUpdateMapper, + AddRemoveDbNode as AddRemoveDbNodeMapper, + PrivateIpAddressesFilter as PrivateIpAddressesFilterMapper, + OracleSubscription as OracleSubscriptionMapper, + OracleSubscriptionUpdate as OracleSubscriptionUpdateMapper, + AutonomousDatabaseBackup as AutonomousDatabaseBackupMapper, + AutonomousDatabaseBackupUpdate as AutonomousDatabaseBackupUpdateMapper, + DbNodeAction as DbNodeActionMapper, + VirtualNetworkAddress as VirtualNetworkAddressMapper, +} from "../models/mappers"; + +export const accept: OperationParameter = { + parameterPath: "accept", + mapper: { + defaultValue: "application/json", + isConstant: true, + serializedName: "Accept", + type: { + name: "String", + }, + }, +}; + +export const $host: OperationURLParameter = { + parameterPath: "$host", + mapper: { + serializedName: "$host", + required: true, + type: { + name: "String", + }, + }, + skipEncoding: true, +}; + +export const apiVersion: OperationQueryParameter = { + parameterPath: "apiVersion", + mapper: { + defaultValue: "2023-09-01-preview", + isConstant: true, + serializedName: "api-version", + type: { + name: "String", + }, + }, +}; + +export const nextLink: OperationURLParameter = { + parameterPath: "nextLink", + mapper: { + serializedName: "nextLink", + required: true, + type: { + name: "String", + }, + }, + skipEncoding: true, +}; + +export const subscriptionId: OperationURLParameter = { + parameterPath: "subscriptionId", + mapper: { + serializedName: "subscriptionId", + required: true, + type: { + name: "Uuid", + }, + }, +}; + +export const resourceGroupName: OperationURLParameter = { + parameterPath: "resourceGroupName", + mapper: { + constraints: { + MaxLength: 90, + MinLength: 1, + }, + serializedName: "resourceGroupName", + required: true, + type: { + name: "String", + }, + }, +}; + +export const autonomousdatabasename: OperationURLParameter = { + parameterPath: "autonomousdatabasename", + mapper: { + constraints: { + MaxLength: 30, + MinLength: 1, + }, + serializedName: "autonomousdatabasename", + required: true, + type: { + name: "String", + }, + }, +}; + +export const contentType: OperationParameter = { + parameterPath: ["options", "contentType"], + mapper: { + defaultValue: "application/json", + isConstant: true, + serializedName: "Content-Type", + type: { + name: "String", + }, + }, +}; + +export const resource: OperationParameter = { + parameterPath: "resource", + mapper: AutonomousDatabaseMapper, +}; + +export const properties: OperationParameter = { + parameterPath: "properties", + mapper: AutonomousDatabaseUpdateMapper, +}; + +export const body: OperationParameter = { + parameterPath: "body", + mapper: PeerDbDetailsMapper, +}; + +export const body1: OperationParameter = { + parameterPath: "body", + mapper: GenerateAutonomousDatabaseWalletDetailsMapper, +}; + +export const cloudexadatainfrastructurename: OperationURLParameter = { + parameterPath: "cloudexadatainfrastructurename", + mapper: { + serializedName: "cloudexadatainfrastructurename", + required: true, + type: { + name: "String", + }, + }, +}; + +export const resource1: OperationParameter = { + parameterPath: "resource", + mapper: CloudExadataInfrastructureMapper, +}; + +export const properties1: OperationParameter = { + parameterPath: "properties", + mapper: CloudExadataInfrastructureUpdateMapper, +}; + +export const cloudvmclustername: OperationURLParameter = { + parameterPath: "cloudvmclustername", + mapper: { + serializedName: "cloudvmclustername", + required: true, + type: { + name: "String", + }, + }, +}; + +export const resource2: OperationParameter = { + parameterPath: "resource", + mapper: CloudVmClusterMapper, +}; + +export const properties2: OperationParameter = { + parameterPath: "properties", + mapper: CloudVmClusterUpdateMapper, +}; + +export const body2: OperationParameter = { + parameterPath: "body", + mapper: AddRemoveDbNodeMapper, +}; + +export const body3: OperationParameter = { + parameterPath: "body", + mapper: PrivateIpAddressesFilterMapper, +}; + +export const location: OperationURLParameter = { + parameterPath: "location", + mapper: { + constraints: { + MinLength: 1, + }, + serializedName: "location", + required: true, + type: { + name: "String", + }, + }, +}; + +export const adbscharsetname: OperationURLParameter = { + parameterPath: "adbscharsetname", + mapper: { + serializedName: "adbscharsetname", + required: true, + type: { + name: "String", + }, + }, +}; + +export const adbsncharsetname: OperationURLParameter = { + parameterPath: "adbsncharsetname", + mapper: { + serializedName: "adbsncharsetname", + required: true, + type: { + name: "String", + }, + }, +}; + +export const autonomousdbversionsname: OperationURLParameter = { + parameterPath: "autonomousdbversionsname", + mapper: { + serializedName: "autonomousdbversionsname", + required: true, + type: { + name: "String", + }, + }, +}; + +export const dbsystemshapename: OperationURLParameter = { + parameterPath: "dbsystemshapename", + mapper: { + serializedName: "dbsystemshapename", + required: true, + type: { + name: "String", + }, + }, +}; + +export const dnsprivateviewocid: OperationURLParameter = { + parameterPath: "dnsprivateviewocid", + mapper: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "dnsprivateviewocid", + required: true, + type: { + name: "String", + }, + }, +}; + +export const dnsprivatezonename: OperationURLParameter = { + parameterPath: "dnsprivatezonename", + mapper: { + serializedName: "dnsprivatezonename", + required: true, + type: { + name: "String", + }, + }, +}; + +export const giversionname: OperationURLParameter = { + parameterPath: "giversionname", + mapper: { + serializedName: "giversionname", + required: true, + type: { + name: "String", + }, + }, +}; + +export const resource3: OperationParameter = { + parameterPath: "resource", + mapper: OracleSubscriptionMapper, +}; + +export const properties3: OperationParameter = { + parameterPath: "properties", + mapper: OracleSubscriptionUpdateMapper, +}; + +export const adbbackupid: OperationURLParameter = { + parameterPath: "adbbackupid", + mapper: { + serializedName: "adbbackupid", + required: true, + type: { + name: "String", + }, + }, +}; + +export const resource4: OperationParameter = { + parameterPath: "resource", + mapper: AutonomousDatabaseBackupMapper, +}; + +export const properties4: OperationParameter = { + parameterPath: "properties", + mapper: AutonomousDatabaseBackupUpdateMapper, +}; + +export const dbserverocid: OperationURLParameter = { + parameterPath: "dbserverocid", + mapper: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "dbserverocid", + required: true, + type: { + name: "String", + }, + }, +}; + +export const dbnodeocid: OperationURLParameter = { + parameterPath: "dbnodeocid", + mapper: { + constraints: { + MaxLength: 255, + MinLength: 1, + }, + serializedName: "dbnodeocid", + required: true, + type: { + name: "String", + }, + }, +}; + +export const body4: OperationParameter = { + parameterPath: "body", + mapper: DbNodeActionMapper, +}; + +export const virtualnetworkaddressname: OperationURLParameter = { + parameterPath: "virtualnetworkaddressname", + mapper: { + constraints: { + MaxLength: 63, + MinLength: 1, + }, + serializedName: "virtualnetworkaddressname", + required: true, + type: { + name: "String", + }, + }, +}; + +export const resource5: OperationParameter = { + parameterPath: "resource", + mapper: VirtualNetworkAddressMapper, +}; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabaseBackups.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabaseBackups.ts new file mode 100644 index 000000000000..365dd399a459 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabaseBackups.ts @@ -0,0 +1,664 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator, PageSettings } from "@azure/core-paging"; +import { setContinuationToken } from "../pagingHelper"; +import { AutonomousDatabaseBackups } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { OracleDatabaseResourceManager } from "../oracleDatabaseResourceManager"; +import { + SimplePollerLike, + OperationState, + createHttpPoller, +} from "@azure/core-lro"; +import { createLroSpec } from "../lroImpl"; +import { + AutonomousDatabaseBackup, + AutonomousDatabaseBackupsListByAutonomousDatabaseNextOptionalParams, + AutonomousDatabaseBackupsListByAutonomousDatabaseOptionalParams, + AutonomousDatabaseBackupsListByAutonomousDatabaseResponse, + AutonomousDatabaseBackupsGetOptionalParams, + AutonomousDatabaseBackupsGetResponse, + AutonomousDatabaseBackupsCreateOrUpdateOptionalParams, + AutonomousDatabaseBackupsCreateOrUpdateResponse, + AutonomousDatabaseBackupUpdate, + AutonomousDatabaseBackupsUpdateOptionalParams, + AutonomousDatabaseBackupsUpdateResponse, + AutonomousDatabaseBackupsDeleteOptionalParams, + AutonomousDatabaseBackupsDeleteResponse, + AutonomousDatabaseBackupsListByAutonomousDatabaseNextResponse, +} from "../models"; + +/// +/** Class containing AutonomousDatabaseBackups operations. */ +export class AutonomousDatabaseBackupsImpl + implements AutonomousDatabaseBackups +{ + private readonly client: OracleDatabaseResourceManager; + + /** + * Initialize a new instance of the class AutonomousDatabaseBackups class. + * @param client Reference to the service client + */ + constructor(client: OracleDatabaseResourceManager) { + this.client = client; + } + + /** + * List AutonomousDatabaseBackup resources by AutonomousDatabase + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param options The options parameters. + */ + public listByAutonomousDatabase( + resourceGroupName: string, + autonomousdatabasename: string, + options?: AutonomousDatabaseBackupsListByAutonomousDatabaseOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listByAutonomousDatabasePagingAll( + resourceGroupName, + autonomousdatabasename, + options, + ); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listByAutonomousDatabasePagingPage( + resourceGroupName, + autonomousdatabasename, + options, + settings, + ); + }, + }; + } + + private async *listByAutonomousDatabasePagingPage( + resourceGroupName: string, + autonomousdatabasename: string, + options?: AutonomousDatabaseBackupsListByAutonomousDatabaseOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: AutonomousDatabaseBackupsListByAutonomousDatabaseResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listByAutonomousDatabase( + resourceGroupName, + autonomousdatabasename, + options, + ); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listByAutonomousDatabaseNext( + resourceGroupName, + autonomousdatabasename, + continuationToken, + options, + ); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listByAutonomousDatabasePagingAll( + resourceGroupName: string, + autonomousdatabasename: string, + options?: AutonomousDatabaseBackupsListByAutonomousDatabaseOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listByAutonomousDatabasePagingPage( + resourceGroupName, + autonomousdatabasename, + options, + )) { + yield* page; + } + } + + /** + * List AutonomousDatabaseBackup resources by AutonomousDatabase + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param options The options parameters. + */ + private _listByAutonomousDatabase( + resourceGroupName: string, + autonomousdatabasename: string, + options?: AutonomousDatabaseBackupsListByAutonomousDatabaseOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, autonomousdatabasename, options }, + listByAutonomousDatabaseOperationSpec, + ); + } + + /** + * Get a AutonomousDatabaseBackup + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param adbbackupid AutonomousDatabaseBackup id + * @param options The options parameters. + */ + get( + resourceGroupName: string, + autonomousdatabasename: string, + adbbackupid: string, + options?: AutonomousDatabaseBackupsGetOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, autonomousdatabasename, adbbackupid, options }, + getOperationSpec, + ); + } + + /** + * Create a AutonomousDatabaseBackup + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param adbbackupid AutonomousDatabaseBackup id + * @param resource Resource create parameters. + * @param options The options parameters. + */ + async beginCreateOrUpdate( + resourceGroupName: string, + autonomousdatabasename: string, + adbbackupid: string, + resource: AutonomousDatabaseBackup, + options?: AutonomousDatabaseBackupsCreateOrUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + AutonomousDatabaseBackupsCreateOrUpdateResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { + resourceGroupName, + autonomousdatabasename, + adbbackupid, + resource, + options, + }, + spec: createOrUpdateOperationSpec, + }); + const poller = await createHttpPoller< + AutonomousDatabaseBackupsCreateOrUpdateResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "azure-async-operation", + }); + await poller.poll(); + return poller; + } + + /** + * Create a AutonomousDatabaseBackup + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param adbbackupid AutonomousDatabaseBackup id + * @param resource Resource create parameters. + * @param options The options parameters. + */ + async beginCreateOrUpdateAndWait( + resourceGroupName: string, + autonomousdatabasename: string, + adbbackupid: string, + resource: AutonomousDatabaseBackup, + options?: AutonomousDatabaseBackupsCreateOrUpdateOptionalParams, + ): Promise { + const poller = await this.beginCreateOrUpdate( + resourceGroupName, + autonomousdatabasename, + adbbackupid, + resource, + options, + ); + return poller.pollUntilDone(); + } + + /** + * Update a AutonomousDatabaseBackup + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param adbbackupid AutonomousDatabaseBackup id + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + async beginUpdate( + resourceGroupName: string, + autonomousdatabasename: string, + adbbackupid: string, + properties: AutonomousDatabaseBackupUpdate, + options?: AutonomousDatabaseBackupsUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + AutonomousDatabaseBackupsUpdateResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { + resourceGroupName, + autonomousdatabasename, + adbbackupid, + properties, + options, + }, + spec: updateOperationSpec, + }); + const poller = await createHttpPoller< + AutonomousDatabaseBackupsUpdateResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * Update a AutonomousDatabaseBackup + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param adbbackupid AutonomousDatabaseBackup id + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + async beginUpdateAndWait( + resourceGroupName: string, + autonomousdatabasename: string, + adbbackupid: string, + properties: AutonomousDatabaseBackupUpdate, + options?: AutonomousDatabaseBackupsUpdateOptionalParams, + ): Promise { + const poller = await this.beginUpdate( + resourceGroupName, + autonomousdatabasename, + adbbackupid, + properties, + options, + ); + return poller.pollUntilDone(); + } + + /** + * Delete a AutonomousDatabaseBackup + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param adbbackupid AutonomousDatabaseBackup id + * @param options The options parameters. + */ + async beginDelete( + resourceGroupName: string, + autonomousdatabasename: string, + adbbackupid: string, + options?: AutonomousDatabaseBackupsDeleteOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + AutonomousDatabaseBackupsDeleteResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { resourceGroupName, autonomousdatabasename, adbbackupid, options }, + spec: deleteOperationSpec, + }); + const poller = await createHttpPoller< + AutonomousDatabaseBackupsDeleteResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * Delete a AutonomousDatabaseBackup + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param adbbackupid AutonomousDatabaseBackup id + * @param options The options parameters. + */ + async beginDeleteAndWait( + resourceGroupName: string, + autonomousdatabasename: string, + adbbackupid: string, + options?: AutonomousDatabaseBackupsDeleteOptionalParams, + ): Promise { + const poller = await this.beginDelete( + resourceGroupName, + autonomousdatabasename, + adbbackupid, + options, + ); + return poller.pollUntilDone(); + } + + /** + * ListByAutonomousDatabaseNext + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param nextLink The nextLink from the previous successful call to the ListByAutonomousDatabase + * method. + * @param options The options parameters. + */ + private _listByAutonomousDatabaseNext( + resourceGroupName: string, + autonomousdatabasename: string, + nextLink: string, + options?: AutonomousDatabaseBackupsListByAutonomousDatabaseNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, autonomousdatabasename, nextLink, options }, + listByAutonomousDatabaseNextOperationSpec, + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listByAutonomousDatabaseOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}/autonomousDatabaseBackups", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabaseBackupListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.autonomousdatabasename, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const getOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}/autonomousDatabaseBackups/{adbbackupid}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabaseBackup, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.autonomousdatabasename, + Parameters.adbbackupid, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const createOrUpdateOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}/autonomousDatabaseBackups/{adbbackupid}", + httpMethod: "PUT", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabaseBackup, + }, + 201: { + bodyMapper: Mappers.AutonomousDatabaseBackup, + }, + 202: { + bodyMapper: Mappers.AutonomousDatabaseBackup, + }, + 204: { + bodyMapper: Mappers.AutonomousDatabaseBackup, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.resource4, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.autonomousdatabasename, + Parameters.adbbackupid, + ], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const updateOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}/autonomousDatabaseBackups/{adbbackupid}", + httpMethod: "PATCH", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabaseBackup, + }, + 201: { + bodyMapper: Mappers.AutonomousDatabaseBackup, + }, + 202: { + bodyMapper: Mappers.AutonomousDatabaseBackup, + }, + 204: { + bodyMapper: Mappers.AutonomousDatabaseBackup, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.properties4, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.autonomousdatabasename, + Parameters.adbbackupid, + ], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const deleteOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}/autonomousDatabaseBackups/{adbbackupid}", + httpMethod: "DELETE", + responses: { + 200: { + headersMapper: Mappers.AutonomousDatabaseBackupsDeleteHeaders, + }, + 201: { + headersMapper: Mappers.AutonomousDatabaseBackupsDeleteHeaders, + }, + 202: { + headersMapper: Mappers.AutonomousDatabaseBackupsDeleteHeaders, + }, + 204: { + headersMapper: Mappers.AutonomousDatabaseBackupsDeleteHeaders, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.autonomousdatabasename, + Parameters.adbbackupid, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const listByAutonomousDatabaseNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabaseBackupListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.autonomousdatabasename, + ], + headerParameters: [Parameters.accept], + serializer, +}; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabaseCharacterSets.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabaseCharacterSets.ts new file mode 100644 index 000000000000..5a94fb410b96 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabaseCharacterSets.ts @@ -0,0 +1,215 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator, PageSettings } from "@azure/core-paging"; +import { setContinuationToken } from "../pagingHelper"; +import { AutonomousDatabaseCharacterSets } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { OracleDatabaseResourceManager } from "../oracleDatabaseResourceManager"; +import { + AutonomousDatabaseCharacterSet, + AutonomousDatabaseCharacterSetsListByLocationNextOptionalParams, + AutonomousDatabaseCharacterSetsListByLocationOptionalParams, + AutonomousDatabaseCharacterSetsListByLocationResponse, + AutonomousDatabaseCharacterSetsGetOptionalParams, + AutonomousDatabaseCharacterSetsGetResponse, + AutonomousDatabaseCharacterSetsListByLocationNextResponse, +} from "../models"; + +/// +/** Class containing AutonomousDatabaseCharacterSets operations. */ +export class AutonomousDatabaseCharacterSetsImpl + implements AutonomousDatabaseCharacterSets +{ + private readonly client: OracleDatabaseResourceManager; + + /** + * Initialize a new instance of the class AutonomousDatabaseCharacterSets class. + * @param client Reference to the service client + */ + constructor(client: OracleDatabaseResourceManager) { + this.client = client; + } + + /** + * List AutonomousDatabaseCharacterSet resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + public listByLocation( + location: string, + options?: AutonomousDatabaseCharacterSetsListByLocationOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listByLocationPagingAll(location, options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listByLocationPagingPage(location, options, settings); + }, + }; + } + + private async *listByLocationPagingPage( + location: string, + options?: AutonomousDatabaseCharacterSetsListByLocationOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: AutonomousDatabaseCharacterSetsListByLocationResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listByLocation(location, options); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listByLocationNext( + location, + continuationToken, + options, + ); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listByLocationPagingAll( + location: string, + options?: AutonomousDatabaseCharacterSetsListByLocationOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listByLocationPagingPage(location, options)) { + yield* page; + } + } + + /** + * List AutonomousDatabaseCharacterSet resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + private _listByLocation( + location: string, + options?: AutonomousDatabaseCharacterSetsListByLocationOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, options }, + listByLocationOperationSpec, + ); + } + + /** + * Get a AutonomousDatabaseCharacterSet + * @param location The name of the Azure region. + * @param adbscharsetname AutonomousDatabaseCharacterSet name + * @param options The options parameters. + */ + get( + location: string, + adbscharsetname: string, + options?: AutonomousDatabaseCharacterSetsGetOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, adbscharsetname, options }, + getOperationSpec, + ); + } + + /** + * ListByLocationNext + * @param location The name of the Azure region. + * @param nextLink The nextLink from the previous successful call to the ListByLocation method. + * @param options The options parameters. + */ + private _listByLocationNext( + location: string, + nextLink: string, + options?: AutonomousDatabaseCharacterSetsListByLocationNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, nextLink, options }, + listByLocationNextOperationSpec, + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listByLocationOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/autonomousDatabaseCharacterSets", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabaseCharacterSetListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.location, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const getOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/autonomousDatabaseCharacterSets/{adbscharsetname}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabaseCharacterSet, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.location, + Parameters.adbscharsetname, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const listByLocationNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabaseCharacterSetListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + Parameters.location, + ], + headerParameters: [Parameters.accept], + serializer, +}; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabaseNationalCharacterSets.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabaseNationalCharacterSets.ts new file mode 100644 index 000000000000..e496cb9e5210 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabaseNationalCharacterSets.ts @@ -0,0 +1,215 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator, PageSettings } from "@azure/core-paging"; +import { setContinuationToken } from "../pagingHelper"; +import { AutonomousDatabaseNationalCharacterSets } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { OracleDatabaseResourceManager } from "../oracleDatabaseResourceManager"; +import { + AutonomousDatabaseNationalCharacterSet, + AutonomousDatabaseNationalCharacterSetsListByLocationNextOptionalParams, + AutonomousDatabaseNationalCharacterSetsListByLocationOptionalParams, + AutonomousDatabaseNationalCharacterSetsListByLocationResponse, + AutonomousDatabaseNationalCharacterSetsGetOptionalParams, + AutonomousDatabaseNationalCharacterSetsGetResponse, + AutonomousDatabaseNationalCharacterSetsListByLocationNextResponse, +} from "../models"; + +/// +/** Class containing AutonomousDatabaseNationalCharacterSets operations. */ +export class AutonomousDatabaseNationalCharacterSetsImpl + implements AutonomousDatabaseNationalCharacterSets +{ + private readonly client: OracleDatabaseResourceManager; + + /** + * Initialize a new instance of the class AutonomousDatabaseNationalCharacterSets class. + * @param client Reference to the service client + */ + constructor(client: OracleDatabaseResourceManager) { + this.client = client; + } + + /** + * List AutonomousDatabaseNationalCharacterSet resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + public listByLocation( + location: string, + options?: AutonomousDatabaseNationalCharacterSetsListByLocationOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listByLocationPagingAll(location, options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listByLocationPagingPage(location, options, settings); + }, + }; + } + + private async *listByLocationPagingPage( + location: string, + options?: AutonomousDatabaseNationalCharacterSetsListByLocationOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: AutonomousDatabaseNationalCharacterSetsListByLocationResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listByLocation(location, options); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listByLocationNext( + location, + continuationToken, + options, + ); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listByLocationPagingAll( + location: string, + options?: AutonomousDatabaseNationalCharacterSetsListByLocationOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listByLocationPagingPage(location, options)) { + yield* page; + } + } + + /** + * List AutonomousDatabaseNationalCharacterSet resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + private _listByLocation( + location: string, + options?: AutonomousDatabaseNationalCharacterSetsListByLocationOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, options }, + listByLocationOperationSpec, + ); + } + + /** + * Get a AutonomousDatabaseNationalCharacterSet + * @param location The name of the Azure region. + * @param adbsncharsetname AutonomousDatabaseNationalCharacterSets name + * @param options The options parameters. + */ + get( + location: string, + adbsncharsetname: string, + options?: AutonomousDatabaseNationalCharacterSetsGetOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, adbsncharsetname, options }, + getOperationSpec, + ); + } + + /** + * ListByLocationNext + * @param location The name of the Azure region. + * @param nextLink The nextLink from the previous successful call to the ListByLocation method. + * @param options The options parameters. + */ + private _listByLocationNext( + location: string, + nextLink: string, + options?: AutonomousDatabaseNationalCharacterSetsListByLocationNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, nextLink, options }, + listByLocationNextOperationSpec, + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listByLocationOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/autonomousDatabaseNationalCharacterSets", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabaseNationalCharacterSetListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.location, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const getOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/autonomousDatabaseNationalCharacterSets/{adbsncharsetname}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabaseNationalCharacterSet, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.location, + Parameters.adbsncharsetname, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const listByLocationNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabaseNationalCharacterSetListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + Parameters.location, + ], + headerParameters: [Parameters.accept], + serializer, +}; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabaseVersions.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabaseVersions.ts new file mode 100644 index 000000000000..f42e281bf532 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabaseVersions.ts @@ -0,0 +1,215 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator, PageSettings } from "@azure/core-paging"; +import { setContinuationToken } from "../pagingHelper"; +import { AutonomousDatabaseVersions } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { OracleDatabaseResourceManager } from "../oracleDatabaseResourceManager"; +import { + AutonomousDbVersion, + AutonomousDatabaseVersionsListByLocationNextOptionalParams, + AutonomousDatabaseVersionsListByLocationOptionalParams, + AutonomousDatabaseVersionsListByLocationResponse, + AutonomousDatabaseVersionsGetOptionalParams, + AutonomousDatabaseVersionsGetResponse, + AutonomousDatabaseVersionsListByLocationNextResponse, +} from "../models"; + +/// +/** Class containing AutonomousDatabaseVersions operations. */ +export class AutonomousDatabaseVersionsImpl + implements AutonomousDatabaseVersions +{ + private readonly client: OracleDatabaseResourceManager; + + /** + * Initialize a new instance of the class AutonomousDatabaseVersions class. + * @param client Reference to the service client + */ + constructor(client: OracleDatabaseResourceManager) { + this.client = client; + } + + /** + * List AutonomousDbVersion resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + public listByLocation( + location: string, + options?: AutonomousDatabaseVersionsListByLocationOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listByLocationPagingAll(location, options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listByLocationPagingPage(location, options, settings); + }, + }; + } + + private async *listByLocationPagingPage( + location: string, + options?: AutonomousDatabaseVersionsListByLocationOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: AutonomousDatabaseVersionsListByLocationResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listByLocation(location, options); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listByLocationNext( + location, + continuationToken, + options, + ); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listByLocationPagingAll( + location: string, + options?: AutonomousDatabaseVersionsListByLocationOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listByLocationPagingPage(location, options)) { + yield* page; + } + } + + /** + * List AutonomousDbVersion resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + private _listByLocation( + location: string, + options?: AutonomousDatabaseVersionsListByLocationOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, options }, + listByLocationOperationSpec, + ); + } + + /** + * Get a AutonomousDbVersion + * @param location The name of the Azure region. + * @param autonomousdbversionsname AutonomousDbVersion name + * @param options The options parameters. + */ + get( + location: string, + autonomousdbversionsname: string, + options?: AutonomousDatabaseVersionsGetOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, autonomousdbversionsname, options }, + getOperationSpec, + ); + } + + /** + * ListByLocationNext + * @param location The name of the Azure region. + * @param nextLink The nextLink from the previous successful call to the ListByLocation method. + * @param options The options parameters. + */ + private _listByLocationNext( + location: string, + nextLink: string, + options?: AutonomousDatabaseVersionsListByLocationNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, nextLink, options }, + listByLocationNextOperationSpec, + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listByLocationOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/autonomousDbVersions", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDbVersionListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.location, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const getOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/autonomousDbVersions/{autonomousdbversionsname}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDbVersion, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.location, + Parameters.autonomousdbversionsname, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const listByLocationNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDbVersionListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + Parameters.location, + ], + headerParameters: [Parameters.accept], + serializer, +}; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabases.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabases.ts new file mode 100644 index 000000000000..2b737bd28286 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/autonomousDatabases.ts @@ -0,0 +1,1032 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator, PageSettings } from "@azure/core-paging"; +import { setContinuationToken } from "../pagingHelper"; +import { AutonomousDatabases } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { OracleDatabaseResourceManager } from "../oracleDatabaseResourceManager"; +import { + SimplePollerLike, + OperationState, + createHttpPoller, +} from "@azure/core-lro"; +import { createLroSpec } from "../lroImpl"; +import { + AutonomousDatabase, + AutonomousDatabasesListBySubscriptionNextOptionalParams, + AutonomousDatabasesListBySubscriptionOptionalParams, + AutonomousDatabasesListBySubscriptionResponse, + AutonomousDatabasesListByResourceGroupNextOptionalParams, + AutonomousDatabasesListByResourceGroupOptionalParams, + AutonomousDatabasesListByResourceGroupResponse, + AutonomousDatabasesGetOptionalParams, + AutonomousDatabasesGetResponse, + AutonomousDatabasesCreateOrUpdateOptionalParams, + AutonomousDatabasesCreateOrUpdateResponse, + AutonomousDatabaseUpdate, + AutonomousDatabasesUpdateOptionalParams, + AutonomousDatabasesUpdateResponse, + AutonomousDatabasesDeleteOptionalParams, + AutonomousDatabasesDeleteResponse, + PeerDbDetails, + AutonomousDatabasesFailoverOptionalParams, + AutonomousDatabasesFailoverResponse, + GenerateAutonomousDatabaseWalletDetails, + AutonomousDatabasesGenerateWalletOptionalParams, + AutonomousDatabasesGenerateWalletResponse, + AutonomousDatabasesSwitchoverOptionalParams, + AutonomousDatabasesSwitchoverResponse, + AutonomousDatabasesListBySubscriptionNextResponse, + AutonomousDatabasesListByResourceGroupNextResponse, +} from "../models"; + +/// +/** Class containing AutonomousDatabases operations. */ +export class AutonomousDatabasesImpl implements AutonomousDatabases { + private readonly client: OracleDatabaseResourceManager; + + /** + * Initialize a new instance of the class AutonomousDatabases class. + * @param client Reference to the service client + */ + constructor(client: OracleDatabaseResourceManager) { + this.client = client; + } + + /** + * List AutonomousDatabase resources by subscription ID + * @param options The options parameters. + */ + public listBySubscription( + options?: AutonomousDatabasesListBySubscriptionOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listBySubscriptionPagingAll(options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listBySubscriptionPagingPage(options, settings); + }, + }; + } + + private async *listBySubscriptionPagingPage( + options?: AutonomousDatabasesListBySubscriptionOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: AutonomousDatabasesListBySubscriptionResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listBySubscription(options); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listBySubscriptionNext(continuationToken, options); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listBySubscriptionPagingAll( + options?: AutonomousDatabasesListBySubscriptionOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listBySubscriptionPagingPage(options)) { + yield* page; + } + } + + /** + * List AutonomousDatabase resources by resource group + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param options The options parameters. + */ + public listByResourceGroup( + resourceGroupName: string, + options?: AutonomousDatabasesListByResourceGroupOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listByResourceGroupPagingAll(resourceGroupName, options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listByResourceGroupPagingPage( + resourceGroupName, + options, + settings, + ); + }, + }; + } + + private async *listByResourceGroupPagingPage( + resourceGroupName: string, + options?: AutonomousDatabasesListByResourceGroupOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: AutonomousDatabasesListByResourceGroupResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listByResourceGroup(resourceGroupName, options); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listByResourceGroupNext( + resourceGroupName, + continuationToken, + options, + ); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listByResourceGroupPagingAll( + resourceGroupName: string, + options?: AutonomousDatabasesListByResourceGroupOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listByResourceGroupPagingPage( + resourceGroupName, + options, + )) { + yield* page; + } + } + + /** + * List AutonomousDatabase resources by subscription ID + * @param options The options parameters. + */ + private _listBySubscription( + options?: AutonomousDatabasesListBySubscriptionOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { options }, + listBySubscriptionOperationSpec, + ); + } + + /** + * List AutonomousDatabase resources by resource group + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param options The options parameters. + */ + private _listByResourceGroup( + resourceGroupName: string, + options?: AutonomousDatabasesListByResourceGroupOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, options }, + listByResourceGroupOperationSpec, + ); + } + + /** + * Get a AutonomousDatabase + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param options The options parameters. + */ + get( + resourceGroupName: string, + autonomousdatabasename: string, + options?: AutonomousDatabasesGetOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, autonomousdatabasename, options }, + getOperationSpec, + ); + } + + /** + * Create a AutonomousDatabase + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param resource Resource create parameters. + * @param options The options parameters. + */ + async beginCreateOrUpdate( + resourceGroupName: string, + autonomousdatabasename: string, + resource: AutonomousDatabase, + options?: AutonomousDatabasesCreateOrUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + AutonomousDatabasesCreateOrUpdateResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { resourceGroupName, autonomousdatabasename, resource, options }, + spec: createOrUpdateOperationSpec, + }); + const poller = await createHttpPoller< + AutonomousDatabasesCreateOrUpdateResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "azure-async-operation", + }); + await poller.poll(); + return poller; + } + + /** + * Create a AutonomousDatabase + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param resource Resource create parameters. + * @param options The options parameters. + */ + async beginCreateOrUpdateAndWait( + resourceGroupName: string, + autonomousdatabasename: string, + resource: AutonomousDatabase, + options?: AutonomousDatabasesCreateOrUpdateOptionalParams, + ): Promise { + const poller = await this.beginCreateOrUpdate( + resourceGroupName, + autonomousdatabasename, + resource, + options, + ); + return poller.pollUntilDone(); + } + + /** + * Update a AutonomousDatabase + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + async beginUpdate( + resourceGroupName: string, + autonomousdatabasename: string, + properties: AutonomousDatabaseUpdate, + options?: AutonomousDatabasesUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + AutonomousDatabasesUpdateResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { resourceGroupName, autonomousdatabasename, properties, options }, + spec: updateOperationSpec, + }); + const poller = await createHttpPoller< + AutonomousDatabasesUpdateResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * Update a AutonomousDatabase + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + async beginUpdateAndWait( + resourceGroupName: string, + autonomousdatabasename: string, + properties: AutonomousDatabaseUpdate, + options?: AutonomousDatabasesUpdateOptionalParams, + ): Promise { + const poller = await this.beginUpdate( + resourceGroupName, + autonomousdatabasename, + properties, + options, + ); + return poller.pollUntilDone(); + } + + /** + * Delete a AutonomousDatabase + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param options The options parameters. + */ + async beginDelete( + resourceGroupName: string, + autonomousdatabasename: string, + options?: AutonomousDatabasesDeleteOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + AutonomousDatabasesDeleteResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { resourceGroupName, autonomousdatabasename, options }, + spec: deleteOperationSpec, + }); + const poller = await createHttpPoller< + AutonomousDatabasesDeleteResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * Delete a AutonomousDatabase + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param options The options parameters. + */ + async beginDeleteAndWait( + resourceGroupName: string, + autonomousdatabasename: string, + options?: AutonomousDatabasesDeleteOptionalParams, + ): Promise { + const poller = await this.beginDelete( + resourceGroupName, + autonomousdatabasename, + options, + ); + return poller.pollUntilDone(); + } + + /** + * Perform failover action on Autonomous Database + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param body The content of the action request + * @param options The options parameters. + */ + async beginFailover( + resourceGroupName: string, + autonomousdatabasename: string, + body: PeerDbDetails, + options?: AutonomousDatabasesFailoverOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + AutonomousDatabasesFailoverResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { resourceGroupName, autonomousdatabasename, body, options }, + spec: failoverOperationSpec, + }); + const poller = await createHttpPoller< + AutonomousDatabasesFailoverResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * Perform failover action on Autonomous Database + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param body The content of the action request + * @param options The options parameters. + */ + async beginFailoverAndWait( + resourceGroupName: string, + autonomousdatabasename: string, + body: PeerDbDetails, + options?: AutonomousDatabasesFailoverOptionalParams, + ): Promise { + const poller = await this.beginFailover( + resourceGroupName, + autonomousdatabasename, + body, + options, + ); + return poller.pollUntilDone(); + } + + /** + * Generate wallet action on Autonomous Database + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param body The content of the action request + * @param options The options parameters. + */ + generateWallet( + resourceGroupName: string, + autonomousdatabasename: string, + body: GenerateAutonomousDatabaseWalletDetails, + options?: AutonomousDatabasesGenerateWalletOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, autonomousdatabasename, body, options }, + generateWalletOperationSpec, + ); + } + + /** + * Perform switchover action on Autonomous Database + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param body The content of the action request + * @param options The options parameters. + */ + async beginSwitchover( + resourceGroupName: string, + autonomousdatabasename: string, + body: PeerDbDetails, + options?: AutonomousDatabasesSwitchoverOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + AutonomousDatabasesSwitchoverResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { resourceGroupName, autonomousdatabasename, body, options }, + spec: switchoverOperationSpec, + }); + const poller = await createHttpPoller< + AutonomousDatabasesSwitchoverResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * Perform switchover action on Autonomous Database + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param body The content of the action request + * @param options The options parameters. + */ + async beginSwitchoverAndWait( + resourceGroupName: string, + autonomousdatabasename: string, + body: PeerDbDetails, + options?: AutonomousDatabasesSwitchoverOptionalParams, + ): Promise { + const poller = await this.beginSwitchover( + resourceGroupName, + autonomousdatabasename, + body, + options, + ); + return poller.pollUntilDone(); + } + + /** + * ListBySubscriptionNext + * @param nextLink The nextLink from the previous successful call to the ListBySubscription method. + * @param options The options parameters. + */ + private _listBySubscriptionNext( + nextLink: string, + options?: AutonomousDatabasesListBySubscriptionNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { nextLink, options }, + listBySubscriptionNextOperationSpec, + ); + } + + /** + * ListByResourceGroupNext + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param nextLink The nextLink from the previous successful call to the ListByResourceGroup method. + * @param options The options parameters. + */ + private _listByResourceGroupNext( + resourceGroupName: string, + nextLink: string, + options?: AutonomousDatabasesListByResourceGroupNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, nextLink, options }, + listByResourceGroupNextOperationSpec, + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listBySubscriptionOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/autonomousDatabases", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabaseListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.$host, Parameters.subscriptionId], + headerParameters: [Parameters.accept], + serializer, +}; +const listByResourceGroupOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabaseListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const getOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabase, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.autonomousdatabasename, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const createOrUpdateOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}", + httpMethod: "PUT", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabase, + }, + 201: { + bodyMapper: Mappers.AutonomousDatabase, + }, + 202: { + bodyMapper: Mappers.AutonomousDatabase, + }, + 204: { + bodyMapper: Mappers.AutonomousDatabase, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.resource, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.autonomousdatabasename, + ], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const updateOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}", + httpMethod: "PATCH", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabase, + }, + 201: { + bodyMapper: Mappers.AutonomousDatabase, + }, + 202: { + bodyMapper: Mappers.AutonomousDatabase, + }, + 204: { + bodyMapper: Mappers.AutonomousDatabase, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.properties, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.autonomousdatabasename, + ], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const deleteOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}", + httpMethod: "DELETE", + responses: { + 200: { + headersMapper: Mappers.AutonomousDatabasesDeleteHeaders, + }, + 201: { + headersMapper: Mappers.AutonomousDatabasesDeleteHeaders, + }, + 202: { + headersMapper: Mappers.AutonomousDatabasesDeleteHeaders, + }, + 204: { + headersMapper: Mappers.AutonomousDatabasesDeleteHeaders, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.autonomousdatabasename, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const failoverOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}/failover", + httpMethod: "POST", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabase, + }, + 201: { + bodyMapper: Mappers.AutonomousDatabase, + }, + 202: { + bodyMapper: Mappers.AutonomousDatabase, + }, + 204: { + bodyMapper: Mappers.AutonomousDatabase, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.body, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.autonomousdatabasename, + ], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const generateWalletOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}/generateWallet", + httpMethod: "POST", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabaseWalletFile, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.body1, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.autonomousdatabasename, + ], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const switchoverOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}/switchover", + httpMethod: "POST", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabase, + }, + 201: { + bodyMapper: Mappers.AutonomousDatabase, + }, + 202: { + bodyMapper: Mappers.AutonomousDatabase, + }, + 204: { + bodyMapper: Mappers.AutonomousDatabase, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.body, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.autonomousdatabasename, + ], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const listBySubscriptionNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabaseListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const listByResourceGroupNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.AutonomousDatabaseListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + Parameters.resourceGroupName, + ], + headerParameters: [Parameters.accept], + serializer, +}; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operations/cloudExadataInfrastructures.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/cloudExadataInfrastructures.ts new file mode 100644 index 000000000000..ff4e48b3ecca --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/cloudExadataInfrastructures.ts @@ -0,0 +1,862 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator, PageSettings } from "@azure/core-paging"; +import { setContinuationToken } from "../pagingHelper"; +import { CloudExadataInfrastructures } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { OracleDatabaseResourceManager } from "../oracleDatabaseResourceManager"; +import { + SimplePollerLike, + OperationState, + createHttpPoller, +} from "@azure/core-lro"; +import { createLroSpec } from "../lroImpl"; +import { + CloudExadataInfrastructure, + CloudExadataInfrastructuresListBySubscriptionNextOptionalParams, + CloudExadataInfrastructuresListBySubscriptionOptionalParams, + CloudExadataInfrastructuresListBySubscriptionResponse, + CloudExadataInfrastructuresListByResourceGroupNextOptionalParams, + CloudExadataInfrastructuresListByResourceGroupOptionalParams, + CloudExadataInfrastructuresListByResourceGroupResponse, + CloudExadataInfrastructuresGetOptionalParams, + CloudExadataInfrastructuresGetResponse, + CloudExadataInfrastructuresCreateOrUpdateOptionalParams, + CloudExadataInfrastructuresCreateOrUpdateResponse, + CloudExadataInfrastructureUpdate, + CloudExadataInfrastructuresUpdateOptionalParams, + CloudExadataInfrastructuresUpdateResponse, + CloudExadataInfrastructuresDeleteOptionalParams, + CloudExadataInfrastructuresDeleteResponse, + CloudExadataInfrastructuresAddStorageCapacityOptionalParams, + CloudExadataInfrastructuresAddStorageCapacityResponse, + CloudExadataInfrastructuresListBySubscriptionNextResponse, + CloudExadataInfrastructuresListByResourceGroupNextResponse, +} from "../models"; + +/// +/** Class containing CloudExadataInfrastructures operations. */ +export class CloudExadataInfrastructuresImpl + implements CloudExadataInfrastructures +{ + private readonly client: OracleDatabaseResourceManager; + + /** + * Initialize a new instance of the class CloudExadataInfrastructures class. + * @param client Reference to the service client + */ + constructor(client: OracleDatabaseResourceManager) { + this.client = client; + } + + /** + * List CloudExadataInfrastructure resources by subscription ID + * @param options The options parameters. + */ + public listBySubscription( + options?: CloudExadataInfrastructuresListBySubscriptionOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listBySubscriptionPagingAll(options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listBySubscriptionPagingPage(options, settings); + }, + }; + } + + private async *listBySubscriptionPagingPage( + options?: CloudExadataInfrastructuresListBySubscriptionOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: CloudExadataInfrastructuresListBySubscriptionResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listBySubscription(options); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listBySubscriptionNext(continuationToken, options); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listBySubscriptionPagingAll( + options?: CloudExadataInfrastructuresListBySubscriptionOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listBySubscriptionPagingPage(options)) { + yield* page; + } + } + + /** + * List CloudExadataInfrastructure resources by resource group + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param options The options parameters. + */ + public listByResourceGroup( + resourceGroupName: string, + options?: CloudExadataInfrastructuresListByResourceGroupOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listByResourceGroupPagingAll(resourceGroupName, options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listByResourceGroupPagingPage( + resourceGroupName, + options, + settings, + ); + }, + }; + } + + private async *listByResourceGroupPagingPage( + resourceGroupName: string, + options?: CloudExadataInfrastructuresListByResourceGroupOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: CloudExadataInfrastructuresListByResourceGroupResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listByResourceGroup(resourceGroupName, options); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listByResourceGroupNext( + resourceGroupName, + continuationToken, + options, + ); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listByResourceGroupPagingAll( + resourceGroupName: string, + options?: CloudExadataInfrastructuresListByResourceGroupOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listByResourceGroupPagingPage( + resourceGroupName, + options, + )) { + yield* page; + } + } + + /** + * List CloudExadataInfrastructure resources by subscription ID + * @param options The options parameters. + */ + private _listBySubscription( + options?: CloudExadataInfrastructuresListBySubscriptionOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { options }, + listBySubscriptionOperationSpec, + ); + } + + /** + * List CloudExadataInfrastructure resources by resource group + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param options The options parameters. + */ + private _listByResourceGroup( + resourceGroupName: string, + options?: CloudExadataInfrastructuresListByResourceGroupOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, options }, + listByResourceGroupOperationSpec, + ); + } + + /** + * Get a CloudExadataInfrastructure + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param options The options parameters. + */ + get( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + options?: CloudExadataInfrastructuresGetOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, cloudexadatainfrastructurename, options }, + getOperationSpec, + ); + } + + /** + * Create a CloudExadataInfrastructure + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param resource Resource create parameters. + * @param options The options parameters. + */ + async beginCreateOrUpdate( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + resource: CloudExadataInfrastructure, + options?: CloudExadataInfrastructuresCreateOrUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudExadataInfrastructuresCreateOrUpdateResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { + resourceGroupName, + cloudexadatainfrastructurename, + resource, + options, + }, + spec: createOrUpdateOperationSpec, + }); + const poller = await createHttpPoller< + CloudExadataInfrastructuresCreateOrUpdateResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "azure-async-operation", + }); + await poller.poll(); + return poller; + } + + /** + * Create a CloudExadataInfrastructure + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param resource Resource create parameters. + * @param options The options parameters. + */ + async beginCreateOrUpdateAndWait( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + resource: CloudExadataInfrastructure, + options?: CloudExadataInfrastructuresCreateOrUpdateOptionalParams, + ): Promise { + const poller = await this.beginCreateOrUpdate( + resourceGroupName, + cloudexadatainfrastructurename, + resource, + options, + ); + return poller.pollUntilDone(); + } + + /** + * Update a CloudExadataInfrastructure + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + async beginUpdate( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + properties: CloudExadataInfrastructureUpdate, + options?: CloudExadataInfrastructuresUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudExadataInfrastructuresUpdateResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { + resourceGroupName, + cloudexadatainfrastructurename, + properties, + options, + }, + spec: updateOperationSpec, + }); + const poller = await createHttpPoller< + CloudExadataInfrastructuresUpdateResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * Update a CloudExadataInfrastructure + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + async beginUpdateAndWait( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + properties: CloudExadataInfrastructureUpdate, + options?: CloudExadataInfrastructuresUpdateOptionalParams, + ): Promise { + const poller = await this.beginUpdate( + resourceGroupName, + cloudexadatainfrastructurename, + properties, + options, + ); + return poller.pollUntilDone(); + } + + /** + * Delete a CloudExadataInfrastructure + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param options The options parameters. + */ + async beginDelete( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + options?: CloudExadataInfrastructuresDeleteOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudExadataInfrastructuresDeleteResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { resourceGroupName, cloudexadatainfrastructurename, options }, + spec: deleteOperationSpec, + }); + const poller = await createHttpPoller< + CloudExadataInfrastructuresDeleteResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * Delete a CloudExadataInfrastructure + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param options The options parameters. + */ + async beginDeleteAndWait( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + options?: CloudExadataInfrastructuresDeleteOptionalParams, + ): Promise { + const poller = await this.beginDelete( + resourceGroupName, + cloudexadatainfrastructurename, + options, + ); + return poller.pollUntilDone(); + } + + /** + * Perform add storage capacity on exadata infra + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param options The options parameters. + */ + async beginAddStorageCapacity( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + options?: CloudExadataInfrastructuresAddStorageCapacityOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudExadataInfrastructuresAddStorageCapacityResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { resourceGroupName, cloudexadatainfrastructurename, options }, + spec: addStorageCapacityOperationSpec, + }); + const poller = await createHttpPoller< + CloudExadataInfrastructuresAddStorageCapacityResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * Perform add storage capacity on exadata infra + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param options The options parameters. + */ + async beginAddStorageCapacityAndWait( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + options?: CloudExadataInfrastructuresAddStorageCapacityOptionalParams, + ): Promise { + const poller = await this.beginAddStorageCapacity( + resourceGroupName, + cloudexadatainfrastructurename, + options, + ); + return poller.pollUntilDone(); + } + + /** + * ListBySubscriptionNext + * @param nextLink The nextLink from the previous successful call to the ListBySubscription method. + * @param options The options parameters. + */ + private _listBySubscriptionNext( + nextLink: string, + options?: CloudExadataInfrastructuresListBySubscriptionNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { nextLink, options }, + listBySubscriptionNextOperationSpec, + ); + } + + /** + * ListByResourceGroupNext + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param nextLink The nextLink from the previous successful call to the ListByResourceGroup method. + * @param options The options parameters. + */ + private _listByResourceGroupNext( + resourceGroupName: string, + nextLink: string, + options?: CloudExadataInfrastructuresListByResourceGroupNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, nextLink, options }, + listByResourceGroupNextOperationSpec, + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listBySubscriptionOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/cloudExadataInfrastructures", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.CloudExadataInfrastructureListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.$host, Parameters.subscriptionId], + headerParameters: [Parameters.accept], + serializer, +}; +const listByResourceGroupOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudExadataInfrastructures", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.CloudExadataInfrastructureListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const getOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudExadataInfrastructures/{cloudexadatainfrastructurename}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.CloudExadataInfrastructure, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudexadatainfrastructurename, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const createOrUpdateOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudExadataInfrastructures/{cloudexadatainfrastructurename}", + httpMethod: "PUT", + responses: { + 200: { + bodyMapper: Mappers.CloudExadataInfrastructure, + }, + 201: { + bodyMapper: Mappers.CloudExadataInfrastructure, + }, + 202: { + bodyMapper: Mappers.CloudExadataInfrastructure, + }, + 204: { + bodyMapper: Mappers.CloudExadataInfrastructure, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.resource1, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudexadatainfrastructurename, + ], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const updateOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudExadataInfrastructures/{cloudexadatainfrastructurename}", + httpMethod: "PATCH", + responses: { + 200: { + bodyMapper: Mappers.CloudExadataInfrastructure, + }, + 201: { + bodyMapper: Mappers.CloudExadataInfrastructure, + }, + 202: { + bodyMapper: Mappers.CloudExadataInfrastructure, + }, + 204: { + bodyMapper: Mappers.CloudExadataInfrastructure, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.properties1, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudexadatainfrastructurename, + ], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const deleteOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudExadataInfrastructures/{cloudexadatainfrastructurename}", + httpMethod: "DELETE", + responses: { + 200: { + headersMapper: Mappers.CloudExadataInfrastructuresDeleteHeaders, + }, + 201: { + headersMapper: Mappers.CloudExadataInfrastructuresDeleteHeaders, + }, + 202: { + headersMapper: Mappers.CloudExadataInfrastructuresDeleteHeaders, + }, + 204: { + headersMapper: Mappers.CloudExadataInfrastructuresDeleteHeaders, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudexadatainfrastructurename, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const addStorageCapacityOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudExadataInfrastructures/{cloudexadatainfrastructurename}/addStorageCapacity", + httpMethod: "POST", + responses: { + 200: { + bodyMapper: Mappers.CloudExadataInfrastructure, + }, + 201: { + bodyMapper: Mappers.CloudExadataInfrastructure, + }, + 202: { + bodyMapper: Mappers.CloudExadataInfrastructure, + }, + 204: { + bodyMapper: Mappers.CloudExadataInfrastructure, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudexadatainfrastructurename, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const listBySubscriptionNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.CloudExadataInfrastructureListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const listByResourceGroupNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.CloudExadataInfrastructureListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + Parameters.resourceGroupName, + ], + headerParameters: [Parameters.accept], + serializer, +}; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operations/cloudVmClusters.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/cloudVmClusters.ts new file mode 100644 index 000000000000..0323e409c575 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/cloudVmClusters.ts @@ -0,0 +1,1042 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator, PageSettings } from "@azure/core-paging"; +import { setContinuationToken } from "../pagingHelper"; +import { CloudVmClusters } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { OracleDatabaseResourceManager } from "../oracleDatabaseResourceManager"; +import { + SimplePollerLike, + OperationState, + createHttpPoller, +} from "@azure/core-lro"; +import { createLroSpec } from "../lroImpl"; +import { + CloudVmCluster, + CloudVmClustersListBySubscriptionNextOptionalParams, + CloudVmClustersListBySubscriptionOptionalParams, + CloudVmClustersListBySubscriptionResponse, + CloudVmClustersListByResourceGroupNextOptionalParams, + CloudVmClustersListByResourceGroupOptionalParams, + CloudVmClustersListByResourceGroupResponse, + CloudVmClustersGetOptionalParams, + CloudVmClustersGetResponse, + CloudVmClustersCreateOrUpdateOptionalParams, + CloudVmClustersCreateOrUpdateResponse, + CloudVmClusterUpdate, + CloudVmClustersUpdateOptionalParams, + CloudVmClustersUpdateResponse, + CloudVmClustersDeleteOptionalParams, + CloudVmClustersDeleteResponse, + AddRemoveDbNode, + CloudVmClustersAddVmsOptionalParams, + CloudVmClustersAddVmsResponse, + PrivateIpAddressesFilter, + CloudVmClustersListPrivateIpAddressesOptionalParams, + CloudVmClustersListPrivateIpAddressesResponse, + CloudVmClustersRemoveVmsOptionalParams, + CloudVmClustersRemoveVmsResponse, + CloudVmClustersListBySubscriptionNextResponse, + CloudVmClustersListByResourceGroupNextResponse, +} from "../models"; + +/// +/** Class containing CloudVmClusters operations. */ +export class CloudVmClustersImpl implements CloudVmClusters { + private readonly client: OracleDatabaseResourceManager; + + /** + * Initialize a new instance of the class CloudVmClusters class. + * @param client Reference to the service client + */ + constructor(client: OracleDatabaseResourceManager) { + this.client = client; + } + + /** + * List CloudVmCluster resources by subscription ID + * @param options The options parameters. + */ + public listBySubscription( + options?: CloudVmClustersListBySubscriptionOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listBySubscriptionPagingAll(options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listBySubscriptionPagingPage(options, settings); + }, + }; + } + + private async *listBySubscriptionPagingPage( + options?: CloudVmClustersListBySubscriptionOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: CloudVmClustersListBySubscriptionResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listBySubscription(options); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listBySubscriptionNext(continuationToken, options); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listBySubscriptionPagingAll( + options?: CloudVmClustersListBySubscriptionOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listBySubscriptionPagingPage(options)) { + yield* page; + } + } + + /** + * List CloudVmCluster resources by resource group + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param options The options parameters. + */ + public listByResourceGroup( + resourceGroupName: string, + options?: CloudVmClustersListByResourceGroupOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listByResourceGroupPagingAll(resourceGroupName, options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listByResourceGroupPagingPage( + resourceGroupName, + options, + settings, + ); + }, + }; + } + + private async *listByResourceGroupPagingPage( + resourceGroupName: string, + options?: CloudVmClustersListByResourceGroupOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: CloudVmClustersListByResourceGroupResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listByResourceGroup(resourceGroupName, options); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listByResourceGroupNext( + resourceGroupName, + continuationToken, + options, + ); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listByResourceGroupPagingAll( + resourceGroupName: string, + options?: CloudVmClustersListByResourceGroupOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listByResourceGroupPagingPage( + resourceGroupName, + options, + )) { + yield* page; + } + } + + /** + * List CloudVmCluster resources by subscription ID + * @param options The options parameters. + */ + private _listBySubscription( + options?: CloudVmClustersListBySubscriptionOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { options }, + listBySubscriptionOperationSpec, + ); + } + + /** + * List CloudVmCluster resources by resource group + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param options The options parameters. + */ + private _listByResourceGroup( + resourceGroupName: string, + options?: CloudVmClustersListByResourceGroupOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, options }, + listByResourceGroupOperationSpec, + ); + } + + /** + * Get a CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param options The options parameters. + */ + get( + resourceGroupName: string, + cloudvmclustername: string, + options?: CloudVmClustersGetOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, cloudvmclustername, options }, + getOperationSpec, + ); + } + + /** + * Create a CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param resource Resource create parameters. + * @param options The options parameters. + */ + async beginCreateOrUpdate( + resourceGroupName: string, + cloudvmclustername: string, + resource: CloudVmCluster, + options?: CloudVmClustersCreateOrUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudVmClustersCreateOrUpdateResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { resourceGroupName, cloudvmclustername, resource, options }, + spec: createOrUpdateOperationSpec, + }); + const poller = await createHttpPoller< + CloudVmClustersCreateOrUpdateResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "azure-async-operation", + }); + await poller.poll(); + return poller; + } + + /** + * Create a CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param resource Resource create parameters. + * @param options The options parameters. + */ + async beginCreateOrUpdateAndWait( + resourceGroupName: string, + cloudvmclustername: string, + resource: CloudVmCluster, + options?: CloudVmClustersCreateOrUpdateOptionalParams, + ): Promise { + const poller = await this.beginCreateOrUpdate( + resourceGroupName, + cloudvmclustername, + resource, + options, + ); + return poller.pollUntilDone(); + } + + /** + * Update a CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + async beginUpdate( + resourceGroupName: string, + cloudvmclustername: string, + properties: CloudVmClusterUpdate, + options?: CloudVmClustersUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudVmClustersUpdateResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { resourceGroupName, cloudvmclustername, properties, options }, + spec: updateOperationSpec, + }); + const poller = await createHttpPoller< + CloudVmClustersUpdateResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * Update a CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + async beginUpdateAndWait( + resourceGroupName: string, + cloudvmclustername: string, + properties: CloudVmClusterUpdate, + options?: CloudVmClustersUpdateOptionalParams, + ): Promise { + const poller = await this.beginUpdate( + resourceGroupName, + cloudvmclustername, + properties, + options, + ); + return poller.pollUntilDone(); + } + + /** + * Delete a CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param options The options parameters. + */ + async beginDelete( + resourceGroupName: string, + cloudvmclustername: string, + options?: CloudVmClustersDeleteOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudVmClustersDeleteResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { resourceGroupName, cloudvmclustername, options }, + spec: deleteOperationSpec, + }); + const poller = await createHttpPoller< + CloudVmClustersDeleteResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * Delete a CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param options The options parameters. + */ + async beginDeleteAndWait( + resourceGroupName: string, + cloudvmclustername: string, + options?: CloudVmClustersDeleteOptionalParams, + ): Promise { + const poller = await this.beginDelete( + resourceGroupName, + cloudvmclustername, + options, + ); + return poller.pollUntilDone(); + } + + /** + * Add VMs to the VM Cluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param body The content of the action request + * @param options The options parameters. + */ + async beginAddVms( + resourceGroupName: string, + cloudvmclustername: string, + body: AddRemoveDbNode, + options?: CloudVmClustersAddVmsOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudVmClustersAddVmsResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { resourceGroupName, cloudvmclustername, body, options }, + spec: addVmsOperationSpec, + }); + const poller = await createHttpPoller< + CloudVmClustersAddVmsResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * Add VMs to the VM Cluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param body The content of the action request + * @param options The options parameters. + */ + async beginAddVmsAndWait( + resourceGroupName: string, + cloudvmclustername: string, + body: AddRemoveDbNode, + options?: CloudVmClustersAddVmsOptionalParams, + ): Promise { + const poller = await this.beginAddVms( + resourceGroupName, + cloudvmclustername, + body, + options, + ); + return poller.pollUntilDone(); + } + + /** + * List Private IP Addresses by the provided filter + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param body The content of the action request + * @param options The options parameters. + */ + listPrivateIpAddresses( + resourceGroupName: string, + cloudvmclustername: string, + body: PrivateIpAddressesFilter, + options?: CloudVmClustersListPrivateIpAddressesOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, cloudvmclustername, body, options }, + listPrivateIpAddressesOperationSpec, + ); + } + + /** + * Remove VMs from the VM Cluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param body The content of the action request + * @param options The options parameters. + */ + async beginRemoveVms( + resourceGroupName: string, + cloudvmclustername: string, + body: AddRemoveDbNode, + options?: CloudVmClustersRemoveVmsOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudVmClustersRemoveVmsResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { resourceGroupName, cloudvmclustername, body, options }, + spec: removeVmsOperationSpec, + }); + const poller = await createHttpPoller< + CloudVmClustersRemoveVmsResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * Remove VMs from the VM Cluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param body The content of the action request + * @param options The options parameters. + */ + async beginRemoveVmsAndWait( + resourceGroupName: string, + cloudvmclustername: string, + body: AddRemoveDbNode, + options?: CloudVmClustersRemoveVmsOptionalParams, + ): Promise { + const poller = await this.beginRemoveVms( + resourceGroupName, + cloudvmclustername, + body, + options, + ); + return poller.pollUntilDone(); + } + + /** + * ListBySubscriptionNext + * @param nextLink The nextLink from the previous successful call to the ListBySubscription method. + * @param options The options parameters. + */ + private _listBySubscriptionNext( + nextLink: string, + options?: CloudVmClustersListBySubscriptionNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { nextLink, options }, + listBySubscriptionNextOperationSpec, + ); + } + + /** + * ListByResourceGroupNext + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param nextLink The nextLink from the previous successful call to the ListByResourceGroup method. + * @param options The options parameters. + */ + private _listByResourceGroupNext( + resourceGroupName: string, + nextLink: string, + options?: CloudVmClustersListByResourceGroupNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, nextLink, options }, + listByResourceGroupNextOperationSpec, + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listBySubscriptionOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/cloudVmClusters", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.CloudVmClusterListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.$host, Parameters.subscriptionId], + headerParameters: [Parameters.accept], + serializer, +}; +const listByResourceGroupOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.CloudVmClusterListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const getOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.CloudVmCluster, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudvmclustername, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const createOrUpdateOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}", + httpMethod: "PUT", + responses: { + 200: { + bodyMapper: Mappers.CloudVmCluster, + }, + 201: { + bodyMapper: Mappers.CloudVmCluster, + }, + 202: { + bodyMapper: Mappers.CloudVmCluster, + }, + 204: { + bodyMapper: Mappers.CloudVmCluster, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.resource2, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudvmclustername, + ], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const updateOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}", + httpMethod: "PATCH", + responses: { + 200: { + bodyMapper: Mappers.CloudVmCluster, + }, + 201: { + bodyMapper: Mappers.CloudVmCluster, + }, + 202: { + bodyMapper: Mappers.CloudVmCluster, + }, + 204: { + bodyMapper: Mappers.CloudVmCluster, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.properties2, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudvmclustername, + ], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const deleteOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}", + httpMethod: "DELETE", + responses: { + 200: { + headersMapper: Mappers.CloudVmClustersDeleteHeaders, + }, + 201: { + headersMapper: Mappers.CloudVmClustersDeleteHeaders, + }, + 202: { + headersMapper: Mappers.CloudVmClustersDeleteHeaders, + }, + 204: { + headersMapper: Mappers.CloudVmClustersDeleteHeaders, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudvmclustername, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const addVmsOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/addVms", + httpMethod: "POST", + responses: { + 200: { + bodyMapper: Mappers.CloudVmCluster, + }, + 201: { + bodyMapper: Mappers.CloudVmCluster, + }, + 202: { + bodyMapper: Mappers.CloudVmCluster, + }, + 204: { + bodyMapper: Mappers.CloudVmCluster, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.body2, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudvmclustername, + ], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const listPrivateIpAddressesOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/listPrivateIpAddresses", + httpMethod: "POST", + responses: { + 200: { + bodyMapper: { + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "PrivateIpAddressProperties", + }, + }, + }, + }, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.body3, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudvmclustername, + ], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const removeVmsOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/removeVms", + httpMethod: "POST", + responses: { + 200: { + bodyMapper: Mappers.CloudVmCluster, + }, + 201: { + bodyMapper: Mappers.CloudVmCluster, + }, + 202: { + bodyMapper: Mappers.CloudVmCluster, + }, + 204: { + bodyMapper: Mappers.CloudVmCluster, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.body2, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudvmclustername, + ], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const listBySubscriptionNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.CloudVmClusterListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const listByResourceGroupNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.CloudVmClusterListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + Parameters.resourceGroupName, + ], + headerParameters: [Parameters.accept], + serializer, +}; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operations/dbNodes.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/dbNodes.ts new file mode 100644 index 000000000000..93d9eccdbbd1 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/dbNodes.ts @@ -0,0 +1,392 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator, PageSettings } from "@azure/core-paging"; +import { setContinuationToken } from "../pagingHelper"; +import { DbNodes } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { OracleDatabaseResourceManager } from "../oracleDatabaseResourceManager"; +import { + SimplePollerLike, + OperationState, + createHttpPoller, +} from "@azure/core-lro"; +import { createLroSpec } from "../lroImpl"; +import { + DbNode, + DbNodesListByCloudVmClusterNextOptionalParams, + DbNodesListByCloudVmClusterOptionalParams, + DbNodesListByCloudVmClusterResponse, + DbNodesGetOptionalParams, + DbNodesGetResponse, + DbNodeAction, + DbNodesActionOptionalParams, + DbNodesActionResponse, + DbNodesListByCloudVmClusterNextResponse, +} from "../models"; + +/// +/** Class containing DbNodes operations. */ +export class DbNodesImpl implements DbNodes { + private readonly client: OracleDatabaseResourceManager; + + /** + * Initialize a new instance of the class DbNodes class. + * @param client Reference to the service client + */ + constructor(client: OracleDatabaseResourceManager) { + this.client = client; + } + + /** + * List DbNode resources by CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param options The options parameters. + */ + public listByCloudVmCluster( + resourceGroupName: string, + cloudvmclustername: string, + options?: DbNodesListByCloudVmClusterOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listByCloudVmClusterPagingAll( + resourceGroupName, + cloudvmclustername, + options, + ); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listByCloudVmClusterPagingPage( + resourceGroupName, + cloudvmclustername, + options, + settings, + ); + }, + }; + } + + private async *listByCloudVmClusterPagingPage( + resourceGroupName: string, + cloudvmclustername: string, + options?: DbNodesListByCloudVmClusterOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: DbNodesListByCloudVmClusterResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listByCloudVmCluster( + resourceGroupName, + cloudvmclustername, + options, + ); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listByCloudVmClusterNext( + resourceGroupName, + cloudvmclustername, + continuationToken, + options, + ); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listByCloudVmClusterPagingAll( + resourceGroupName: string, + cloudvmclustername: string, + options?: DbNodesListByCloudVmClusterOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listByCloudVmClusterPagingPage( + resourceGroupName, + cloudvmclustername, + options, + )) { + yield* page; + } + } + + /** + * List DbNode resources by CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param options The options parameters. + */ + private _listByCloudVmCluster( + resourceGroupName: string, + cloudvmclustername: string, + options?: DbNodesListByCloudVmClusterOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, cloudvmclustername, options }, + listByCloudVmClusterOperationSpec, + ); + } + + /** + * Get a DbNode + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param dbnodeocid DbNode OCID. + * @param options The options parameters. + */ + get( + resourceGroupName: string, + cloudvmclustername: string, + dbnodeocid: string, + options?: DbNodesGetOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, cloudvmclustername, dbnodeocid, options }, + getOperationSpec, + ); + } + + /** + * VM actions on DbNode of VM Cluster by the provided filter + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param dbnodeocid DbNode OCID. + * @param body The content of the action request + * @param options The options parameters. + */ + async beginAction( + resourceGroupName: string, + cloudvmclustername: string, + dbnodeocid: string, + body: DbNodeAction, + options?: DbNodesActionOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + DbNodesActionResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { + resourceGroupName, + cloudvmclustername, + dbnodeocid, + body, + options, + }, + spec: actionOperationSpec, + }); + const poller = await createHttpPoller< + DbNodesActionResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * VM actions on DbNode of VM Cluster by the provided filter + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param dbnodeocid DbNode OCID. + * @param body The content of the action request + * @param options The options parameters. + */ + async beginActionAndWait( + resourceGroupName: string, + cloudvmclustername: string, + dbnodeocid: string, + body: DbNodeAction, + options?: DbNodesActionOptionalParams, + ): Promise { + const poller = await this.beginAction( + resourceGroupName, + cloudvmclustername, + dbnodeocid, + body, + options, + ); + return poller.pollUntilDone(); + } + + /** + * ListByCloudVmClusterNext + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param nextLink The nextLink from the previous successful call to the ListByCloudVmCluster method. + * @param options The options parameters. + */ + private _listByCloudVmClusterNext( + resourceGroupName: string, + cloudvmclustername: string, + nextLink: string, + options?: DbNodesListByCloudVmClusterNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, cloudvmclustername, nextLink, options }, + listByCloudVmClusterNextOperationSpec, + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listByCloudVmClusterOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/dbNodes", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.DbNodeListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudvmclustername, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const getOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/dbNodes/{dbnodeocid}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.DbNode, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudvmclustername, + Parameters.dbnodeocid, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const actionOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/dbNodes/{dbnodeocid}/action", + httpMethod: "POST", + responses: { + 200: { + bodyMapper: Mappers.DbNode, + }, + 201: { + bodyMapper: Mappers.DbNode, + }, + 202: { + bodyMapper: Mappers.DbNode, + }, + 204: { + bodyMapper: Mappers.DbNode, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.body4, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudvmclustername, + Parameters.dbnodeocid, + ], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const listByCloudVmClusterNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.DbNodeListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudvmclustername, + ], + headerParameters: [Parameters.accept], + serializer, +}; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operations/dbServers.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/dbServers.ts new file mode 100644 index 000000000000..9e5dc5be079a --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/dbServers.ts @@ -0,0 +1,252 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator, PageSettings } from "@azure/core-paging"; +import { setContinuationToken } from "../pagingHelper"; +import { DbServers } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { OracleDatabaseResourceManager } from "../oracleDatabaseResourceManager"; +import { + DbServer, + DbServersListByCloudExadataInfrastructureNextOptionalParams, + DbServersListByCloudExadataInfrastructureOptionalParams, + DbServersListByCloudExadataInfrastructureResponse, + DbServersGetOptionalParams, + DbServersGetResponse, + DbServersListByCloudExadataInfrastructureNextResponse, +} from "../models"; + +/// +/** Class containing DbServers operations. */ +export class DbServersImpl implements DbServers { + private readonly client: OracleDatabaseResourceManager; + + /** + * Initialize a new instance of the class DbServers class. + * @param client Reference to the service client + */ + constructor(client: OracleDatabaseResourceManager) { + this.client = client; + } + + /** + * List DbServer resources by CloudExadataInfrastructure + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param options The options parameters. + */ + public listByCloudExadataInfrastructure( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + options?: DbServersListByCloudExadataInfrastructureOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listByCloudExadataInfrastructurePagingAll( + resourceGroupName, + cloudexadatainfrastructurename, + options, + ); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listByCloudExadataInfrastructurePagingPage( + resourceGroupName, + cloudexadatainfrastructurename, + options, + settings, + ); + }, + }; + } + + private async *listByCloudExadataInfrastructurePagingPage( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + options?: DbServersListByCloudExadataInfrastructureOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: DbServersListByCloudExadataInfrastructureResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listByCloudExadataInfrastructure( + resourceGroupName, + cloudexadatainfrastructurename, + options, + ); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listByCloudExadataInfrastructureNext( + resourceGroupName, + cloudexadatainfrastructurename, + continuationToken, + options, + ); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listByCloudExadataInfrastructurePagingAll( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + options?: DbServersListByCloudExadataInfrastructureOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listByCloudExadataInfrastructurePagingPage( + resourceGroupName, + cloudexadatainfrastructurename, + options, + )) { + yield* page; + } + } + + /** + * List DbServer resources by CloudExadataInfrastructure + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param options The options parameters. + */ + private _listByCloudExadataInfrastructure( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + options?: DbServersListByCloudExadataInfrastructureOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, cloudexadatainfrastructurename, options }, + listByCloudExadataInfrastructureOperationSpec, + ); + } + + /** + * Get a DbServer + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param dbserverocid DbServer OCID. + * @param options The options parameters. + */ + get( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + dbserverocid: string, + options?: DbServersGetOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { + resourceGroupName, + cloudexadatainfrastructurename, + dbserverocid, + options, + }, + getOperationSpec, + ); + } + + /** + * ListByCloudExadataInfrastructureNext + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param nextLink The nextLink from the previous successful call to the + * ListByCloudExadataInfrastructure method. + * @param options The options parameters. + */ + private _listByCloudExadataInfrastructureNext( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + nextLink: string, + options?: DbServersListByCloudExadataInfrastructureNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, cloudexadatainfrastructurename, nextLink, options }, + listByCloudExadataInfrastructureNextOperationSpec, + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listByCloudExadataInfrastructureOperationSpec: coreClient.OperationSpec = + { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudExadataInfrastructures/{cloudexadatainfrastructurename}/dbServers", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.DbServerListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudexadatainfrastructurename, + ], + headerParameters: [Parameters.accept], + serializer, + }; +const getOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudExadataInfrastructures/{cloudexadatainfrastructurename}/dbServers/{dbserverocid}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.DbServer, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudexadatainfrastructurename, + Parameters.dbserverocid, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const listByCloudExadataInfrastructureNextOperationSpec: coreClient.OperationSpec = + { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.DbServerListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudexadatainfrastructurename, + ], + headerParameters: [Parameters.accept], + serializer, + }; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operations/dbSystemShapes.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/dbSystemShapes.ts new file mode 100644 index 000000000000..dd36e8fd21df --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/dbSystemShapes.ts @@ -0,0 +1,213 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator, PageSettings } from "@azure/core-paging"; +import { setContinuationToken } from "../pagingHelper"; +import { DbSystemShapes } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { OracleDatabaseResourceManager } from "../oracleDatabaseResourceManager"; +import { + DbSystemShape, + DbSystemShapesListByLocationNextOptionalParams, + DbSystemShapesListByLocationOptionalParams, + DbSystemShapesListByLocationResponse, + DbSystemShapesGetOptionalParams, + DbSystemShapesGetResponse, + DbSystemShapesListByLocationNextResponse, +} from "../models"; + +/// +/** Class containing DbSystemShapes operations. */ +export class DbSystemShapesImpl implements DbSystemShapes { + private readonly client: OracleDatabaseResourceManager; + + /** + * Initialize a new instance of the class DbSystemShapes class. + * @param client Reference to the service client + */ + constructor(client: OracleDatabaseResourceManager) { + this.client = client; + } + + /** + * List DbSystemShape resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + public listByLocation( + location: string, + options?: DbSystemShapesListByLocationOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listByLocationPagingAll(location, options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listByLocationPagingPage(location, options, settings); + }, + }; + } + + private async *listByLocationPagingPage( + location: string, + options?: DbSystemShapesListByLocationOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: DbSystemShapesListByLocationResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listByLocation(location, options); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listByLocationNext( + location, + continuationToken, + options, + ); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listByLocationPagingAll( + location: string, + options?: DbSystemShapesListByLocationOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listByLocationPagingPage(location, options)) { + yield* page; + } + } + + /** + * List DbSystemShape resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + private _listByLocation( + location: string, + options?: DbSystemShapesListByLocationOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, options }, + listByLocationOperationSpec, + ); + } + + /** + * Get a DbSystemShape + * @param location The name of the Azure region. + * @param dbsystemshapename DbSystemShape name + * @param options The options parameters. + */ + get( + location: string, + dbsystemshapename: string, + options?: DbSystemShapesGetOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, dbsystemshapename, options }, + getOperationSpec, + ); + } + + /** + * ListByLocationNext + * @param location The name of the Azure region. + * @param nextLink The nextLink from the previous successful call to the ListByLocation method. + * @param options The options parameters. + */ + private _listByLocationNext( + location: string, + nextLink: string, + options?: DbSystemShapesListByLocationNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, nextLink, options }, + listByLocationNextOperationSpec, + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listByLocationOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/dbSystemShapes", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.DbSystemShapeListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.location, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const getOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/dbSystemShapes/{dbsystemshapename}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.DbSystemShape, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.location, + Parameters.dbsystemshapename, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const listByLocationNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.DbSystemShapeListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + Parameters.location, + ], + headerParameters: [Parameters.accept], + serializer, +}; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operations/dnsPrivateViews.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/dnsPrivateViews.ts new file mode 100644 index 000000000000..96ab84a2f4e6 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/dnsPrivateViews.ts @@ -0,0 +1,213 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator, PageSettings } from "@azure/core-paging"; +import { setContinuationToken } from "../pagingHelper"; +import { DnsPrivateViews } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { OracleDatabaseResourceManager } from "../oracleDatabaseResourceManager"; +import { + DnsPrivateView, + DnsPrivateViewsListByLocationNextOptionalParams, + DnsPrivateViewsListByLocationOptionalParams, + DnsPrivateViewsListByLocationResponse, + DnsPrivateViewsGetOptionalParams, + DnsPrivateViewsGetResponse, + DnsPrivateViewsListByLocationNextResponse, +} from "../models"; + +/// +/** Class containing DnsPrivateViews operations. */ +export class DnsPrivateViewsImpl implements DnsPrivateViews { + private readonly client: OracleDatabaseResourceManager; + + /** + * Initialize a new instance of the class DnsPrivateViews class. + * @param client Reference to the service client + */ + constructor(client: OracleDatabaseResourceManager) { + this.client = client; + } + + /** + * List DnsPrivateView resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + public listByLocation( + location: string, + options?: DnsPrivateViewsListByLocationOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listByLocationPagingAll(location, options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listByLocationPagingPage(location, options, settings); + }, + }; + } + + private async *listByLocationPagingPage( + location: string, + options?: DnsPrivateViewsListByLocationOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: DnsPrivateViewsListByLocationResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listByLocation(location, options); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listByLocationNext( + location, + continuationToken, + options, + ); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listByLocationPagingAll( + location: string, + options?: DnsPrivateViewsListByLocationOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listByLocationPagingPage(location, options)) { + yield* page; + } + } + + /** + * List DnsPrivateView resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + private _listByLocation( + location: string, + options?: DnsPrivateViewsListByLocationOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, options }, + listByLocationOperationSpec, + ); + } + + /** + * Get a DnsPrivateView + * @param location The name of the Azure region. + * @param dnsprivateviewocid DnsPrivateView OCID + * @param options The options parameters. + */ + get( + location: string, + dnsprivateviewocid: string, + options?: DnsPrivateViewsGetOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, dnsprivateviewocid, options }, + getOperationSpec, + ); + } + + /** + * ListByLocationNext + * @param location The name of the Azure region. + * @param nextLink The nextLink from the previous successful call to the ListByLocation method. + * @param options The options parameters. + */ + private _listByLocationNext( + location: string, + nextLink: string, + options?: DnsPrivateViewsListByLocationNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, nextLink, options }, + listByLocationNextOperationSpec, + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listByLocationOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/dnsPrivateViews", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.DnsPrivateViewListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.location, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const getOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/dnsPrivateViews/{dnsprivateviewocid}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.DnsPrivateView, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.location, + Parameters.dnsprivateviewocid, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const listByLocationNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.DnsPrivateViewListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + Parameters.location, + ], + headerParameters: [Parameters.accept], + serializer, +}; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operations/dnsPrivateZones.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/dnsPrivateZones.ts new file mode 100644 index 000000000000..e3718bab891b --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/dnsPrivateZones.ts @@ -0,0 +1,213 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator, PageSettings } from "@azure/core-paging"; +import { setContinuationToken } from "../pagingHelper"; +import { DnsPrivateZones } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { OracleDatabaseResourceManager } from "../oracleDatabaseResourceManager"; +import { + DnsPrivateZone, + DnsPrivateZonesListByLocationNextOptionalParams, + DnsPrivateZonesListByLocationOptionalParams, + DnsPrivateZonesListByLocationResponse, + DnsPrivateZonesGetOptionalParams, + DnsPrivateZonesGetResponse, + DnsPrivateZonesListByLocationNextResponse, +} from "../models"; + +/// +/** Class containing DnsPrivateZones operations. */ +export class DnsPrivateZonesImpl implements DnsPrivateZones { + private readonly client: OracleDatabaseResourceManager; + + /** + * Initialize a new instance of the class DnsPrivateZones class. + * @param client Reference to the service client + */ + constructor(client: OracleDatabaseResourceManager) { + this.client = client; + } + + /** + * List DnsPrivateZone resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + public listByLocation( + location: string, + options?: DnsPrivateZonesListByLocationOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listByLocationPagingAll(location, options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listByLocationPagingPage(location, options, settings); + }, + }; + } + + private async *listByLocationPagingPage( + location: string, + options?: DnsPrivateZonesListByLocationOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: DnsPrivateZonesListByLocationResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listByLocation(location, options); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listByLocationNext( + location, + continuationToken, + options, + ); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listByLocationPagingAll( + location: string, + options?: DnsPrivateZonesListByLocationOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listByLocationPagingPage(location, options)) { + yield* page; + } + } + + /** + * List DnsPrivateZone resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + private _listByLocation( + location: string, + options?: DnsPrivateZonesListByLocationOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, options }, + listByLocationOperationSpec, + ); + } + + /** + * Get a DnsPrivateZone + * @param location The name of the Azure region. + * @param dnsprivatezonename DnsPrivateZone name + * @param options The options parameters. + */ + get( + location: string, + dnsprivatezonename: string, + options?: DnsPrivateZonesGetOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, dnsprivatezonename, options }, + getOperationSpec, + ); + } + + /** + * ListByLocationNext + * @param location The name of the Azure region. + * @param nextLink The nextLink from the previous successful call to the ListByLocation method. + * @param options The options parameters. + */ + private _listByLocationNext( + location: string, + nextLink: string, + options?: DnsPrivateZonesListByLocationNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, nextLink, options }, + listByLocationNextOperationSpec, + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listByLocationOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/dnsPrivateZones", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.DnsPrivateZoneListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.location, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const getOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/dnsPrivateZones/{dnsprivatezonename}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.DnsPrivateZone, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.location, + Parameters.dnsprivatezonename, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const listByLocationNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.DnsPrivateZoneListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + Parameters.location, + ], + headerParameters: [Parameters.accept], + serializer, +}; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operations/giVersions.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/giVersions.ts new file mode 100644 index 000000000000..e1891390b123 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/giVersions.ts @@ -0,0 +1,213 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator, PageSettings } from "@azure/core-paging"; +import { setContinuationToken } from "../pagingHelper"; +import { GiVersions } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { OracleDatabaseResourceManager } from "../oracleDatabaseResourceManager"; +import { + GiVersion, + GiVersionsListByLocationNextOptionalParams, + GiVersionsListByLocationOptionalParams, + GiVersionsListByLocationResponse, + GiVersionsGetOptionalParams, + GiVersionsGetResponse, + GiVersionsListByLocationNextResponse, +} from "../models"; + +/// +/** Class containing GiVersions operations. */ +export class GiVersionsImpl implements GiVersions { + private readonly client: OracleDatabaseResourceManager; + + /** + * Initialize a new instance of the class GiVersions class. + * @param client Reference to the service client + */ + constructor(client: OracleDatabaseResourceManager) { + this.client = client; + } + + /** + * List GiVersion resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + public listByLocation( + location: string, + options?: GiVersionsListByLocationOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listByLocationPagingAll(location, options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listByLocationPagingPage(location, options, settings); + }, + }; + } + + private async *listByLocationPagingPage( + location: string, + options?: GiVersionsListByLocationOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: GiVersionsListByLocationResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listByLocation(location, options); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listByLocationNext( + location, + continuationToken, + options, + ); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listByLocationPagingAll( + location: string, + options?: GiVersionsListByLocationOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listByLocationPagingPage(location, options)) { + yield* page; + } + } + + /** + * List GiVersion resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + private _listByLocation( + location: string, + options?: GiVersionsListByLocationOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, options }, + listByLocationOperationSpec, + ); + } + + /** + * Get a GiVersion + * @param location The name of the Azure region. + * @param giversionname GiVersion name + * @param options The options parameters. + */ + get( + location: string, + giversionname: string, + options?: GiVersionsGetOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, giversionname, options }, + getOperationSpec, + ); + } + + /** + * ListByLocationNext + * @param location The name of the Azure region. + * @param nextLink The nextLink from the previous successful call to the ListByLocation method. + * @param options The options parameters. + */ + private _listByLocationNext( + location: string, + nextLink: string, + options?: GiVersionsListByLocationNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { location, nextLink, options }, + listByLocationNextOperationSpec, + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listByLocationOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/giVersions", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.GiVersionListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.location, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const getOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/giVersions/{giversionname}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.GiVersion, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.location, + Parameters.giversionname, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const listByLocationNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.GiVersionListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + Parameters.location, + ], + headerParameters: [Parameters.accept], + serializer, +}; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operations/index.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/index.ts new file mode 100644 index 000000000000..8c12a529345e --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/index.ts @@ -0,0 +1,24 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +export * from "./operations"; +export * from "./autonomousDatabases"; +export * from "./cloudExadataInfrastructures"; +export * from "./cloudVmClusters"; +export * from "./autonomousDatabaseCharacterSets"; +export * from "./autonomousDatabaseNationalCharacterSets"; +export * from "./autonomousDatabaseVersions"; +export * from "./dbSystemShapes"; +export * from "./dnsPrivateViews"; +export * from "./dnsPrivateZones"; +export * from "./giVersions"; +export * from "./oracleSubscriptions"; +export * from "./autonomousDatabaseBackups"; +export * from "./dbServers"; +export * from "./dbNodes"; +export * from "./virtualNetworkAddresses"; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operations/operations.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/operations.ts new file mode 100644 index 000000000000..5dd39264a092 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/operations.ts @@ -0,0 +1,149 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator, PageSettings } from "@azure/core-paging"; +import { setContinuationToken } from "../pagingHelper"; +import { Operations } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { OracleDatabaseResourceManager } from "../oracleDatabaseResourceManager"; +import { + Operation, + OperationsListNextOptionalParams, + OperationsListOptionalParams, + OperationsListResponse, + OperationsListNextResponse, +} from "../models"; + +/// +/** Class containing Operations operations. */ +export class OperationsImpl implements Operations { + private readonly client: OracleDatabaseResourceManager; + + /** + * Initialize a new instance of the class Operations class. + * @param client Reference to the service client + */ + constructor(client: OracleDatabaseResourceManager) { + this.client = client; + } + + /** + * List the operations for the provider + * @param options The options parameters. + */ + public list( + options?: OperationsListOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listPagingAll(options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listPagingPage(options, settings); + }, + }; + } + + private async *listPagingPage( + options?: OperationsListOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: OperationsListResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._list(options); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listNext(continuationToken, options); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listPagingAll( + options?: OperationsListOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listPagingPage(options)) { + yield* page; + } + } + + /** + * List the operations for the provider + * @param options The options parameters. + */ + private _list( + options?: OperationsListOptionalParams, + ): Promise { + return this.client.sendOperationRequest({ options }, listOperationSpec); + } + + /** + * ListNext + * @param nextLink The nextLink from the previous successful call to the List method. + * @param options The options parameters. + */ + private _listNext( + nextLink: string, + options?: OperationsListNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { nextLink, options }, + listNextOperationSpec, + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listOperationSpec: coreClient.OperationSpec = { + path: "/providers/Oracle.Database/operations", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.OperationListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.$host], + headerParameters: [Parameters.accept], + serializer, +}; +const listNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.OperationListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [Parameters.$host, Parameters.nextLink], + headerParameters: [Parameters.accept], + serializer, +}; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operations/oracleSubscriptions.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/oracleSubscriptions.ts new file mode 100644 index 000000000000..2e7aec3e013d --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/oracleSubscriptions.ts @@ -0,0 +1,833 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator, PageSettings } from "@azure/core-paging"; +import { setContinuationToken } from "../pagingHelper"; +import { OracleSubscriptions } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { OracleDatabaseResourceManager } from "../oracleDatabaseResourceManager"; +import { + SimplePollerLike, + OperationState, + createHttpPoller, +} from "@azure/core-lro"; +import { createLroSpec } from "../lroImpl"; +import { + OracleSubscription, + OracleSubscriptionsListBySubscriptionNextOptionalParams, + OracleSubscriptionsListBySubscriptionOptionalParams, + OracleSubscriptionsListBySubscriptionResponse, + OracleSubscriptionsGetOptionalParams, + OracleSubscriptionsGetResponse, + OracleSubscriptionsCreateOrUpdateOptionalParams, + OracleSubscriptionsCreateOrUpdateResponse, + OracleSubscriptionUpdate, + OracleSubscriptionsUpdateOptionalParams, + OracleSubscriptionsUpdateResponse, + OracleSubscriptionsDeleteOptionalParams, + OracleSubscriptionsDeleteResponse, + OracleSubscriptionsListActivationLinksOptionalParams, + OracleSubscriptionsListActivationLinksResponse, + OracleSubscriptionsListCloudAccountDetailsOptionalParams, + OracleSubscriptionsListCloudAccountDetailsResponse, + OracleSubscriptionsListSaasSubscriptionDetailsOptionalParams, + OracleSubscriptionsListSaasSubscriptionDetailsResponse, + OracleSubscriptionsListBySubscriptionNextResponse, +} from "../models"; + +/// +/** Class containing OracleSubscriptions operations. */ +export class OracleSubscriptionsImpl implements OracleSubscriptions { + private readonly client: OracleDatabaseResourceManager; + + /** + * Initialize a new instance of the class OracleSubscriptions class. + * @param client Reference to the service client + */ + constructor(client: OracleDatabaseResourceManager) { + this.client = client; + } + + /** + * List OracleSubscription resources by subscription ID + * @param options The options parameters. + */ + public listBySubscription( + options?: OracleSubscriptionsListBySubscriptionOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listBySubscriptionPagingAll(options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listBySubscriptionPagingPage(options, settings); + }, + }; + } + + private async *listBySubscriptionPagingPage( + options?: OracleSubscriptionsListBySubscriptionOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: OracleSubscriptionsListBySubscriptionResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listBySubscription(options); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listBySubscriptionNext(continuationToken, options); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listBySubscriptionPagingAll( + options?: OracleSubscriptionsListBySubscriptionOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listBySubscriptionPagingPage(options)) { + yield* page; + } + } + + /** + * List OracleSubscription resources by subscription ID + * @param options The options parameters. + */ + private _listBySubscription( + options?: OracleSubscriptionsListBySubscriptionOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { options }, + listBySubscriptionOperationSpec, + ); + } + + /** + * Get a OracleSubscription + * @param options The options parameters. + */ + get( + options?: OracleSubscriptionsGetOptionalParams, + ): Promise { + return this.client.sendOperationRequest({ options }, getOperationSpec); + } + + /** + * Create a OracleSubscription + * @param resource Resource create parameters. + * @param options The options parameters. + */ + async beginCreateOrUpdate( + resource: OracleSubscription, + options?: OracleSubscriptionsCreateOrUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + OracleSubscriptionsCreateOrUpdateResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { resource, options }, + spec: createOrUpdateOperationSpec, + }); + const poller = await createHttpPoller< + OracleSubscriptionsCreateOrUpdateResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "azure-async-operation", + }); + await poller.poll(); + return poller; + } + + /** + * Create a OracleSubscription + * @param resource Resource create parameters. + * @param options The options parameters. + */ + async beginCreateOrUpdateAndWait( + resource: OracleSubscription, + options?: OracleSubscriptionsCreateOrUpdateOptionalParams, + ): Promise { + const poller = await this.beginCreateOrUpdate(resource, options); + return poller.pollUntilDone(); + } + + /** + * Update a OracleSubscription + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + async beginUpdate( + properties: OracleSubscriptionUpdate, + options?: OracleSubscriptionsUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + OracleSubscriptionsUpdateResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { properties, options }, + spec: updateOperationSpec, + }); + const poller = await createHttpPoller< + OracleSubscriptionsUpdateResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * Update a OracleSubscription + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + async beginUpdateAndWait( + properties: OracleSubscriptionUpdate, + options?: OracleSubscriptionsUpdateOptionalParams, + ): Promise { + const poller = await this.beginUpdate(properties, options); + return poller.pollUntilDone(); + } + + /** + * Delete a OracleSubscription + * @param options The options parameters. + */ + async beginDelete( + options?: OracleSubscriptionsDeleteOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + OracleSubscriptionsDeleteResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { options }, + spec: deleteOperationSpec, + }); + const poller = await createHttpPoller< + OracleSubscriptionsDeleteResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * Delete a OracleSubscription + * @param options The options parameters. + */ + async beginDeleteAndWait( + options?: OracleSubscriptionsDeleteOptionalParams, + ): Promise { + const poller = await this.beginDelete(options); + return poller.pollUntilDone(); + } + + /** + * List Activation Links + * @param options The options parameters. + */ + async beginListActivationLinks( + options?: OracleSubscriptionsListActivationLinksOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + OracleSubscriptionsListActivationLinksResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { options }, + spec: listActivationLinksOperationSpec, + }); + const poller = await createHttpPoller< + OracleSubscriptionsListActivationLinksResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * List Activation Links + * @param options The options parameters. + */ + async beginListActivationLinksAndWait( + options?: OracleSubscriptionsListActivationLinksOptionalParams, + ): Promise { + const poller = await this.beginListActivationLinks(options); + return poller.pollUntilDone(); + } + + /** + * List Cloud Account Details + * @param options The options parameters. + */ + async beginListCloudAccountDetails( + options?: OracleSubscriptionsListCloudAccountDetailsOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + OracleSubscriptionsListCloudAccountDetailsResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { options }, + spec: listCloudAccountDetailsOperationSpec, + }); + const poller = await createHttpPoller< + OracleSubscriptionsListCloudAccountDetailsResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * List Cloud Account Details + * @param options The options parameters. + */ + async beginListCloudAccountDetailsAndWait( + options?: OracleSubscriptionsListCloudAccountDetailsOptionalParams, + ): Promise { + const poller = await this.beginListCloudAccountDetails(options); + return poller.pollUntilDone(); + } + + /** + * List Saas Subscription Details + * @param options The options parameters. + */ + async beginListSaasSubscriptionDetails( + options?: OracleSubscriptionsListSaasSubscriptionDetailsOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + OracleSubscriptionsListSaasSubscriptionDetailsResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { options }, + spec: listSaasSubscriptionDetailsOperationSpec, + }); + const poller = await createHttpPoller< + OracleSubscriptionsListSaasSubscriptionDetailsResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * List Saas Subscription Details + * @param options The options parameters. + */ + async beginListSaasSubscriptionDetailsAndWait( + options?: OracleSubscriptionsListSaasSubscriptionDetailsOptionalParams, + ): Promise { + const poller = await this.beginListSaasSubscriptionDetails(options); + return poller.pollUntilDone(); + } + + /** + * ListBySubscriptionNext + * @param nextLink The nextLink from the previous successful call to the ListBySubscription method. + * @param options The options parameters. + */ + private _listBySubscriptionNext( + nextLink: string, + options?: OracleSubscriptionsListBySubscriptionNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { nextLink, options }, + listBySubscriptionNextOperationSpec, + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listBySubscriptionOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/oracleSubscriptions", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.OracleSubscriptionListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.$host, Parameters.subscriptionId], + headerParameters: [Parameters.accept], + serializer, +}; +const getOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/oracleSubscriptions/default", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.OracleSubscription, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.$host, Parameters.subscriptionId], + headerParameters: [Parameters.accept], + serializer, +}; +const createOrUpdateOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/oracleSubscriptions/default", + httpMethod: "PUT", + responses: { + 200: { + bodyMapper: Mappers.OracleSubscription, + }, + 201: { + bodyMapper: Mappers.OracleSubscription, + }, + 202: { + bodyMapper: Mappers.OracleSubscription, + }, + 204: { + bodyMapper: Mappers.OracleSubscription, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.resource3, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.$host, Parameters.subscriptionId], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const updateOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/oracleSubscriptions/default", + httpMethod: "PATCH", + responses: { + 200: { + bodyMapper: Mappers.OracleSubscription, + }, + 201: { + bodyMapper: Mappers.OracleSubscription, + }, + 202: { + bodyMapper: Mappers.OracleSubscription, + }, + 204: { + bodyMapper: Mappers.OracleSubscription, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.properties3, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.$host, Parameters.subscriptionId], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const deleteOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/oracleSubscriptions/default", + httpMethod: "DELETE", + responses: { + 200: { + headersMapper: Mappers.OracleSubscriptionsDeleteHeaders, + }, + 201: { + headersMapper: Mappers.OracleSubscriptionsDeleteHeaders, + }, + 202: { + headersMapper: Mappers.OracleSubscriptionsDeleteHeaders, + }, + 204: { + headersMapper: Mappers.OracleSubscriptionsDeleteHeaders, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.$host, Parameters.subscriptionId], + headerParameters: [Parameters.accept], + serializer, +}; +const listActivationLinksOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/oracleSubscriptions/default/listActivationLinks", + httpMethod: "POST", + responses: { + 200: { + bodyMapper: Mappers.ActivationLinks, + }, + 201: { + bodyMapper: Mappers.ActivationLinks, + }, + 202: { + bodyMapper: Mappers.ActivationLinks, + }, + 204: { + bodyMapper: Mappers.ActivationLinks, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.$host, Parameters.subscriptionId], + headerParameters: [Parameters.accept], + serializer, +}; +const listCloudAccountDetailsOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/oracleSubscriptions/default/listCloudAccountDetails", + httpMethod: "POST", + responses: { + 200: { + bodyMapper: Mappers.CloudAccountDetails, + }, + 201: { + bodyMapper: Mappers.CloudAccountDetails, + }, + 202: { + bodyMapper: Mappers.CloudAccountDetails, + }, + 204: { + bodyMapper: Mappers.CloudAccountDetails, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.$host, Parameters.subscriptionId], + headerParameters: [Parameters.accept], + serializer, +}; +const listSaasSubscriptionDetailsOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/providers/Oracle.Database/oracleSubscriptions/default/listSaasSubscriptionDetails", + httpMethod: "POST", + responses: { + 200: { + bodyMapper: Mappers.SaasSubscriptionDetails, + }, + 201: { + bodyMapper: Mappers.SaasSubscriptionDetails, + }, + 202: { + bodyMapper: Mappers.SaasSubscriptionDetails, + }, + 204: { + bodyMapper: Mappers.SaasSubscriptionDetails, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.$host, Parameters.subscriptionId], + headerParameters: [Parameters.accept], + serializer, +}; +const listBySubscriptionNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.OracleSubscriptionListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + ], + headerParameters: [Parameters.accept], + serializer, +}; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operations/virtualNetworkAddresses.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/virtualNetworkAddresses.ts new file mode 100644 index 000000000000..bf7ae0528f9e --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operations/virtualNetworkAddresses.ts @@ -0,0 +1,529 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator, PageSettings } from "@azure/core-paging"; +import { setContinuationToken } from "../pagingHelper"; +import { VirtualNetworkAddresses } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { OracleDatabaseResourceManager } from "../oracleDatabaseResourceManager"; +import { + SimplePollerLike, + OperationState, + createHttpPoller, +} from "@azure/core-lro"; +import { createLroSpec } from "../lroImpl"; +import { + VirtualNetworkAddress, + VirtualNetworkAddressesListByCloudVmClusterNextOptionalParams, + VirtualNetworkAddressesListByCloudVmClusterOptionalParams, + VirtualNetworkAddressesListByCloudVmClusterResponse, + VirtualNetworkAddressesGetOptionalParams, + VirtualNetworkAddressesGetResponse, + VirtualNetworkAddressesCreateOrUpdateOptionalParams, + VirtualNetworkAddressesCreateOrUpdateResponse, + VirtualNetworkAddressesDeleteOptionalParams, + VirtualNetworkAddressesDeleteResponse, + VirtualNetworkAddressesListByCloudVmClusterNextResponse, +} from "../models"; + +/// +/** Class containing VirtualNetworkAddresses operations. */ +export class VirtualNetworkAddressesImpl implements VirtualNetworkAddresses { + private readonly client: OracleDatabaseResourceManager; + + /** + * Initialize a new instance of the class VirtualNetworkAddresses class. + * @param client Reference to the service client + */ + constructor(client: OracleDatabaseResourceManager) { + this.client = client; + } + + /** + * List VirtualNetworkAddress resources by CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param options The options parameters. + */ + public listByCloudVmCluster( + resourceGroupName: string, + cloudvmclustername: string, + options?: VirtualNetworkAddressesListByCloudVmClusterOptionalParams, + ): PagedAsyncIterableIterator { + const iter = this.listByCloudVmClusterPagingAll( + resourceGroupName, + cloudvmclustername, + options, + ); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: (settings?: PageSettings) => { + if (settings?.maxPageSize) { + throw new Error("maxPageSize is not supported by this operation."); + } + return this.listByCloudVmClusterPagingPage( + resourceGroupName, + cloudvmclustername, + options, + settings, + ); + }, + }; + } + + private async *listByCloudVmClusterPagingPage( + resourceGroupName: string, + cloudvmclustername: string, + options?: VirtualNetworkAddressesListByCloudVmClusterOptionalParams, + settings?: PageSettings, + ): AsyncIterableIterator { + let result: VirtualNetworkAddressesListByCloudVmClusterResponse; + let continuationToken = settings?.continuationToken; + if (!continuationToken) { + result = await this._listByCloudVmCluster( + resourceGroupName, + cloudvmclustername, + options, + ); + let page = result.value || []; + continuationToken = result.nextLink; + setContinuationToken(page, continuationToken); + yield page; + } + while (continuationToken) { + result = await this._listByCloudVmClusterNext( + resourceGroupName, + cloudvmclustername, + continuationToken, + options, + ); + continuationToken = result.nextLink; + let page = result.value || []; + setContinuationToken(page, continuationToken); + yield page; + } + } + + private async *listByCloudVmClusterPagingAll( + resourceGroupName: string, + cloudvmclustername: string, + options?: VirtualNetworkAddressesListByCloudVmClusterOptionalParams, + ): AsyncIterableIterator { + for await (const page of this.listByCloudVmClusterPagingPage( + resourceGroupName, + cloudvmclustername, + options, + )) { + yield* page; + } + } + + /** + * List VirtualNetworkAddress resources by CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param options The options parameters. + */ + private _listByCloudVmCluster( + resourceGroupName: string, + cloudvmclustername: string, + options?: VirtualNetworkAddressesListByCloudVmClusterOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, cloudvmclustername, options }, + listByCloudVmClusterOperationSpec, + ); + } + + /** + * Get a VirtualNetworkAddress + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param virtualnetworkaddressname Virtual IP address hostname. + * @param options The options parameters. + */ + get( + resourceGroupName: string, + cloudvmclustername: string, + virtualnetworkaddressname: string, + options?: VirtualNetworkAddressesGetOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { + resourceGroupName, + cloudvmclustername, + virtualnetworkaddressname, + options, + }, + getOperationSpec, + ); + } + + /** + * Create a VirtualNetworkAddress + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param virtualnetworkaddressname Virtual IP address hostname. + * @param resource Resource create parameters. + * @param options The options parameters. + */ + async beginCreateOrUpdate( + resourceGroupName: string, + cloudvmclustername: string, + virtualnetworkaddressname: string, + resource: VirtualNetworkAddress, + options?: VirtualNetworkAddressesCreateOrUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + VirtualNetworkAddressesCreateOrUpdateResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { + resourceGroupName, + cloudvmclustername, + virtualnetworkaddressname, + resource, + options, + }, + spec: createOrUpdateOperationSpec, + }); + const poller = await createHttpPoller< + VirtualNetworkAddressesCreateOrUpdateResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "azure-async-operation", + }); + await poller.poll(); + return poller; + } + + /** + * Create a VirtualNetworkAddress + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param virtualnetworkaddressname Virtual IP address hostname. + * @param resource Resource create parameters. + * @param options The options parameters. + */ + async beginCreateOrUpdateAndWait( + resourceGroupName: string, + cloudvmclustername: string, + virtualnetworkaddressname: string, + resource: VirtualNetworkAddress, + options?: VirtualNetworkAddressesCreateOrUpdateOptionalParams, + ): Promise { + const poller = await this.beginCreateOrUpdate( + resourceGroupName, + cloudvmclustername, + virtualnetworkaddressname, + resource, + options, + ); + return poller.pollUntilDone(); + } + + /** + * Delete a VirtualNetworkAddress + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param virtualnetworkaddressname Virtual IP address hostname. + * @param options The options parameters. + */ + async beginDelete( + resourceGroupName: string, + cloudvmclustername: string, + virtualnetworkaddressname: string, + options?: VirtualNetworkAddressesDeleteOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + VirtualNetworkAddressesDeleteResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperationFn = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec, + ) => { + let currentRawResponse: coreClient.FullOperationResponse | undefined = + undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown, + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback, + }, + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON(), + }, + }; + }; + + const lro = createLroSpec({ + sendOperationFn, + args: { + resourceGroupName, + cloudvmclustername, + virtualnetworkaddressname, + options, + }, + spec: deleteOperationSpec, + }); + const poller = await createHttpPoller< + VirtualNetworkAddressesDeleteResponse, + OperationState + >(lro, { + restoreFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + resourceLocationConfig: "location", + }); + await poller.poll(); + return poller; + } + + /** + * Delete a VirtualNetworkAddress + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param virtualnetworkaddressname Virtual IP address hostname. + * @param options The options parameters. + */ + async beginDeleteAndWait( + resourceGroupName: string, + cloudvmclustername: string, + virtualnetworkaddressname: string, + options?: VirtualNetworkAddressesDeleteOptionalParams, + ): Promise { + const poller = await this.beginDelete( + resourceGroupName, + cloudvmclustername, + virtualnetworkaddressname, + options, + ); + return poller.pollUntilDone(); + } + + /** + * ListByCloudVmClusterNext + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param nextLink The nextLink from the previous successful call to the ListByCloudVmCluster method. + * @param options The options parameters. + */ + private _listByCloudVmClusterNext( + resourceGroupName: string, + cloudvmclustername: string, + nextLink: string, + options?: VirtualNetworkAddressesListByCloudVmClusterNextOptionalParams, + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, cloudvmclustername, nextLink, options }, + listByCloudVmClusterNextOperationSpec, + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listByCloudVmClusterOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.VirtualNetworkAddressListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudvmclustername, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const getOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses/{virtualnetworkaddressname}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.VirtualNetworkAddress, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudvmclustername, + Parameters.virtualnetworkaddressname, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const createOrUpdateOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses/{virtualnetworkaddressname}", + httpMethod: "PUT", + responses: { + 200: { + bodyMapper: Mappers.VirtualNetworkAddress, + }, + 201: { + bodyMapper: Mappers.VirtualNetworkAddress, + }, + 202: { + bodyMapper: Mappers.VirtualNetworkAddress, + }, + 204: { + bodyMapper: Mappers.VirtualNetworkAddress, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + requestBody: Parameters.resource5, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudvmclustername, + Parameters.virtualnetworkaddressname, + ], + headerParameters: [Parameters.accept, Parameters.contentType], + mediaType: "json", + serializer, +}; +const deleteOperationSpec: coreClient.OperationSpec = { + path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses/{virtualnetworkaddressname}", + httpMethod: "DELETE", + responses: { + 200: { + headersMapper: Mappers.VirtualNetworkAddressesDeleteHeaders, + }, + 201: { + headersMapper: Mappers.VirtualNetworkAddressesDeleteHeaders, + }, + 202: { + headersMapper: Mappers.VirtualNetworkAddressesDeleteHeaders, + }, + 204: { + headersMapper: Mappers.VirtualNetworkAddressesDeleteHeaders, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudvmclustername, + Parameters.virtualnetworkaddressname, + ], + headerParameters: [Parameters.accept], + serializer, +}; +const listByCloudVmClusterNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.VirtualNetworkAddressListResult, + }, + default: { + bodyMapper: Mappers.ErrorResponse, + }, + }, + urlParameters: [ + Parameters.$host, + Parameters.nextLink, + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.cloudvmclustername, + ], + headerParameters: [Parameters.accept], + serializer, +}; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabaseBackups.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabaseBackups.ts new file mode 100644 index 000000000000..645c12c492c8 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabaseBackups.ts @@ -0,0 +1,153 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { SimplePollerLike, OperationState } from "@azure/core-lro"; +import { + AutonomousDatabaseBackup, + AutonomousDatabaseBackupsListByAutonomousDatabaseOptionalParams, + AutonomousDatabaseBackupsGetOptionalParams, + AutonomousDatabaseBackupsGetResponse, + AutonomousDatabaseBackupsCreateOrUpdateOptionalParams, + AutonomousDatabaseBackupsCreateOrUpdateResponse, + AutonomousDatabaseBackupUpdate, + AutonomousDatabaseBackupsUpdateOptionalParams, + AutonomousDatabaseBackupsUpdateResponse, + AutonomousDatabaseBackupsDeleteOptionalParams, + AutonomousDatabaseBackupsDeleteResponse, +} from "../models"; + +/// +/** Interface representing a AutonomousDatabaseBackups. */ +export interface AutonomousDatabaseBackups { + /** + * List AutonomousDatabaseBackup resources by AutonomousDatabase + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param options The options parameters. + */ + listByAutonomousDatabase( + resourceGroupName: string, + autonomousdatabasename: string, + options?: AutonomousDatabaseBackupsListByAutonomousDatabaseOptionalParams, + ): PagedAsyncIterableIterator; + /** + * Get a AutonomousDatabaseBackup + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param adbbackupid AutonomousDatabaseBackup id + * @param options The options parameters. + */ + get( + resourceGroupName: string, + autonomousdatabasename: string, + adbbackupid: string, + options?: AutonomousDatabaseBackupsGetOptionalParams, + ): Promise; + /** + * Create a AutonomousDatabaseBackup + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param adbbackupid AutonomousDatabaseBackup id + * @param resource Resource create parameters. + * @param options The options parameters. + */ + beginCreateOrUpdate( + resourceGroupName: string, + autonomousdatabasename: string, + adbbackupid: string, + resource: AutonomousDatabaseBackup, + options?: AutonomousDatabaseBackupsCreateOrUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + AutonomousDatabaseBackupsCreateOrUpdateResponse + > + >; + /** + * Create a AutonomousDatabaseBackup + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param adbbackupid AutonomousDatabaseBackup id + * @param resource Resource create parameters. + * @param options The options parameters. + */ + beginCreateOrUpdateAndWait( + resourceGroupName: string, + autonomousdatabasename: string, + adbbackupid: string, + resource: AutonomousDatabaseBackup, + options?: AutonomousDatabaseBackupsCreateOrUpdateOptionalParams, + ): Promise; + /** + * Update a AutonomousDatabaseBackup + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param adbbackupid AutonomousDatabaseBackup id + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + beginUpdate( + resourceGroupName: string, + autonomousdatabasename: string, + adbbackupid: string, + properties: AutonomousDatabaseBackupUpdate, + options?: AutonomousDatabaseBackupsUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + AutonomousDatabaseBackupsUpdateResponse + > + >; + /** + * Update a AutonomousDatabaseBackup + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param adbbackupid AutonomousDatabaseBackup id + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + beginUpdateAndWait( + resourceGroupName: string, + autonomousdatabasename: string, + adbbackupid: string, + properties: AutonomousDatabaseBackupUpdate, + options?: AutonomousDatabaseBackupsUpdateOptionalParams, + ): Promise; + /** + * Delete a AutonomousDatabaseBackup + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param adbbackupid AutonomousDatabaseBackup id + * @param options The options parameters. + */ + beginDelete( + resourceGroupName: string, + autonomousdatabasename: string, + adbbackupid: string, + options?: AutonomousDatabaseBackupsDeleteOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + AutonomousDatabaseBackupsDeleteResponse + > + >; + /** + * Delete a AutonomousDatabaseBackup + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param adbbackupid AutonomousDatabaseBackup id + * @param options The options parameters. + */ + beginDeleteAndWait( + resourceGroupName: string, + autonomousdatabasename: string, + adbbackupid: string, + options?: AutonomousDatabaseBackupsDeleteOptionalParams, + ): Promise; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabaseCharacterSets.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabaseCharacterSets.ts new file mode 100644 index 000000000000..33940722ecb0 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabaseCharacterSets.ts @@ -0,0 +1,40 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { + AutonomousDatabaseCharacterSet, + AutonomousDatabaseCharacterSetsListByLocationOptionalParams, + AutonomousDatabaseCharacterSetsGetOptionalParams, + AutonomousDatabaseCharacterSetsGetResponse, +} from "../models"; + +/// +/** Interface representing a AutonomousDatabaseCharacterSets. */ +export interface AutonomousDatabaseCharacterSets { + /** + * List AutonomousDatabaseCharacterSet resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + listByLocation( + location: string, + options?: AutonomousDatabaseCharacterSetsListByLocationOptionalParams, + ): PagedAsyncIterableIterator; + /** + * Get a AutonomousDatabaseCharacterSet + * @param location The name of the Azure region. + * @param adbscharsetname AutonomousDatabaseCharacterSet name + * @param options The options parameters. + */ + get( + location: string, + adbscharsetname: string, + options?: AutonomousDatabaseCharacterSetsGetOptionalParams, + ): Promise; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabaseNationalCharacterSets.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabaseNationalCharacterSets.ts new file mode 100644 index 000000000000..b814000af213 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabaseNationalCharacterSets.ts @@ -0,0 +1,40 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { + AutonomousDatabaseNationalCharacterSet, + AutonomousDatabaseNationalCharacterSetsListByLocationOptionalParams, + AutonomousDatabaseNationalCharacterSetsGetOptionalParams, + AutonomousDatabaseNationalCharacterSetsGetResponse, +} from "../models"; + +/// +/** Interface representing a AutonomousDatabaseNationalCharacterSets. */ +export interface AutonomousDatabaseNationalCharacterSets { + /** + * List AutonomousDatabaseNationalCharacterSet resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + listByLocation( + location: string, + options?: AutonomousDatabaseNationalCharacterSetsListByLocationOptionalParams, + ): PagedAsyncIterableIterator; + /** + * Get a AutonomousDatabaseNationalCharacterSet + * @param location The name of the Azure region. + * @param adbsncharsetname AutonomousDatabaseNationalCharacterSets name + * @param options The options parameters. + */ + get( + location: string, + adbsncharsetname: string, + options?: AutonomousDatabaseNationalCharacterSetsGetOptionalParams, + ): Promise; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabaseVersions.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabaseVersions.ts new file mode 100644 index 000000000000..8fe6f3237377 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabaseVersions.ts @@ -0,0 +1,40 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { + AutonomousDbVersion, + AutonomousDatabaseVersionsListByLocationOptionalParams, + AutonomousDatabaseVersionsGetOptionalParams, + AutonomousDatabaseVersionsGetResponse, +} from "../models"; + +/// +/** Interface representing a AutonomousDatabaseVersions. */ +export interface AutonomousDatabaseVersions { + /** + * List AutonomousDbVersion resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + listByLocation( + location: string, + options?: AutonomousDatabaseVersionsListByLocationOptionalParams, + ): PagedAsyncIterableIterator; + /** + * Get a AutonomousDbVersion + * @param location The name of the Azure region. + * @param autonomousdbversionsname AutonomousDbVersion name + * @param options The options parameters. + */ + get( + location: string, + autonomousdbversionsname: string, + options?: AutonomousDatabaseVersionsGetOptionalParams, + ): Promise; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabases.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabases.ts new file mode 100644 index 000000000000..489a6e4ddad9 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/autonomousDatabases.ts @@ -0,0 +1,228 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { SimplePollerLike, OperationState } from "@azure/core-lro"; +import { + AutonomousDatabase, + AutonomousDatabasesListBySubscriptionOptionalParams, + AutonomousDatabasesListByResourceGroupOptionalParams, + AutonomousDatabasesGetOptionalParams, + AutonomousDatabasesGetResponse, + AutonomousDatabasesCreateOrUpdateOptionalParams, + AutonomousDatabasesCreateOrUpdateResponse, + AutonomousDatabaseUpdate, + AutonomousDatabasesUpdateOptionalParams, + AutonomousDatabasesUpdateResponse, + AutonomousDatabasesDeleteOptionalParams, + AutonomousDatabasesDeleteResponse, + PeerDbDetails, + AutonomousDatabasesFailoverOptionalParams, + AutonomousDatabasesFailoverResponse, + GenerateAutonomousDatabaseWalletDetails, + AutonomousDatabasesGenerateWalletOptionalParams, + AutonomousDatabasesGenerateWalletResponse, + AutonomousDatabasesSwitchoverOptionalParams, + AutonomousDatabasesSwitchoverResponse, +} from "../models"; + +/// +/** Interface representing a AutonomousDatabases. */ +export interface AutonomousDatabases { + /** + * List AutonomousDatabase resources by subscription ID + * @param options The options parameters. + */ + listBySubscription( + options?: AutonomousDatabasesListBySubscriptionOptionalParams, + ): PagedAsyncIterableIterator; + /** + * List AutonomousDatabase resources by resource group + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param options The options parameters. + */ + listByResourceGroup( + resourceGroupName: string, + options?: AutonomousDatabasesListByResourceGroupOptionalParams, + ): PagedAsyncIterableIterator; + /** + * Get a AutonomousDatabase + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param options The options parameters. + */ + get( + resourceGroupName: string, + autonomousdatabasename: string, + options?: AutonomousDatabasesGetOptionalParams, + ): Promise; + /** + * Create a AutonomousDatabase + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param resource Resource create parameters. + * @param options The options parameters. + */ + beginCreateOrUpdate( + resourceGroupName: string, + autonomousdatabasename: string, + resource: AutonomousDatabase, + options?: AutonomousDatabasesCreateOrUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + AutonomousDatabasesCreateOrUpdateResponse + > + >; + /** + * Create a AutonomousDatabase + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param resource Resource create parameters. + * @param options The options parameters. + */ + beginCreateOrUpdateAndWait( + resourceGroupName: string, + autonomousdatabasename: string, + resource: AutonomousDatabase, + options?: AutonomousDatabasesCreateOrUpdateOptionalParams, + ): Promise; + /** + * Update a AutonomousDatabase + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + beginUpdate( + resourceGroupName: string, + autonomousdatabasename: string, + properties: AutonomousDatabaseUpdate, + options?: AutonomousDatabasesUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + AutonomousDatabasesUpdateResponse + > + >; + /** + * Update a AutonomousDatabase + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + beginUpdateAndWait( + resourceGroupName: string, + autonomousdatabasename: string, + properties: AutonomousDatabaseUpdate, + options?: AutonomousDatabasesUpdateOptionalParams, + ): Promise; + /** + * Delete a AutonomousDatabase + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param options The options parameters. + */ + beginDelete( + resourceGroupName: string, + autonomousdatabasename: string, + options?: AutonomousDatabasesDeleteOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + AutonomousDatabasesDeleteResponse + > + >; + /** + * Delete a AutonomousDatabase + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param options The options parameters. + */ + beginDeleteAndWait( + resourceGroupName: string, + autonomousdatabasename: string, + options?: AutonomousDatabasesDeleteOptionalParams, + ): Promise; + /** + * Perform failover action on Autonomous Database + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param body The content of the action request + * @param options The options parameters. + */ + beginFailover( + resourceGroupName: string, + autonomousdatabasename: string, + body: PeerDbDetails, + options?: AutonomousDatabasesFailoverOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + AutonomousDatabasesFailoverResponse + > + >; + /** + * Perform failover action on Autonomous Database + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param body The content of the action request + * @param options The options parameters. + */ + beginFailoverAndWait( + resourceGroupName: string, + autonomousdatabasename: string, + body: PeerDbDetails, + options?: AutonomousDatabasesFailoverOptionalParams, + ): Promise; + /** + * Generate wallet action on Autonomous Database + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param body The content of the action request + * @param options The options parameters. + */ + generateWallet( + resourceGroupName: string, + autonomousdatabasename: string, + body: GenerateAutonomousDatabaseWalletDetails, + options?: AutonomousDatabasesGenerateWalletOptionalParams, + ): Promise; + /** + * Perform switchover action on Autonomous Database + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param body The content of the action request + * @param options The options parameters. + */ + beginSwitchover( + resourceGroupName: string, + autonomousdatabasename: string, + body: PeerDbDetails, + options?: AutonomousDatabasesSwitchoverOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + AutonomousDatabasesSwitchoverResponse + > + >; + /** + * Perform switchover action on Autonomous Database + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param autonomousdatabasename The database name. + * @param body The content of the action request + * @param options The options parameters. + */ + beginSwitchoverAndWait( + resourceGroupName: string, + autonomousdatabasename: string, + body: PeerDbDetails, + options?: AutonomousDatabasesSwitchoverOptionalParams, + ): Promise; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/cloudExadataInfrastructures.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/cloudExadataInfrastructures.ts new file mode 100644 index 000000000000..49bee3e5b67a --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/cloudExadataInfrastructures.ts @@ -0,0 +1,174 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { SimplePollerLike, OperationState } from "@azure/core-lro"; +import { + CloudExadataInfrastructure, + CloudExadataInfrastructuresListBySubscriptionOptionalParams, + CloudExadataInfrastructuresListByResourceGroupOptionalParams, + CloudExadataInfrastructuresGetOptionalParams, + CloudExadataInfrastructuresGetResponse, + CloudExadataInfrastructuresCreateOrUpdateOptionalParams, + CloudExadataInfrastructuresCreateOrUpdateResponse, + CloudExadataInfrastructureUpdate, + CloudExadataInfrastructuresUpdateOptionalParams, + CloudExadataInfrastructuresUpdateResponse, + CloudExadataInfrastructuresDeleteOptionalParams, + CloudExadataInfrastructuresDeleteResponse, + CloudExadataInfrastructuresAddStorageCapacityOptionalParams, + CloudExadataInfrastructuresAddStorageCapacityResponse, +} from "../models"; + +/// +/** Interface representing a CloudExadataInfrastructures. */ +export interface CloudExadataInfrastructures { + /** + * List CloudExadataInfrastructure resources by subscription ID + * @param options The options parameters. + */ + listBySubscription( + options?: CloudExadataInfrastructuresListBySubscriptionOptionalParams, + ): PagedAsyncIterableIterator; + /** + * List CloudExadataInfrastructure resources by resource group + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param options The options parameters. + */ + listByResourceGroup( + resourceGroupName: string, + options?: CloudExadataInfrastructuresListByResourceGroupOptionalParams, + ): PagedAsyncIterableIterator; + /** + * Get a CloudExadataInfrastructure + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param options The options parameters. + */ + get( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + options?: CloudExadataInfrastructuresGetOptionalParams, + ): Promise; + /** + * Create a CloudExadataInfrastructure + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param resource Resource create parameters. + * @param options The options parameters. + */ + beginCreateOrUpdate( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + resource: CloudExadataInfrastructure, + options?: CloudExadataInfrastructuresCreateOrUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudExadataInfrastructuresCreateOrUpdateResponse + > + >; + /** + * Create a CloudExadataInfrastructure + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param resource Resource create parameters. + * @param options The options parameters. + */ + beginCreateOrUpdateAndWait( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + resource: CloudExadataInfrastructure, + options?: CloudExadataInfrastructuresCreateOrUpdateOptionalParams, + ): Promise; + /** + * Update a CloudExadataInfrastructure + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + beginUpdate( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + properties: CloudExadataInfrastructureUpdate, + options?: CloudExadataInfrastructuresUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudExadataInfrastructuresUpdateResponse + > + >; + /** + * Update a CloudExadataInfrastructure + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + beginUpdateAndWait( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + properties: CloudExadataInfrastructureUpdate, + options?: CloudExadataInfrastructuresUpdateOptionalParams, + ): Promise; + /** + * Delete a CloudExadataInfrastructure + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param options The options parameters. + */ + beginDelete( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + options?: CloudExadataInfrastructuresDeleteOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudExadataInfrastructuresDeleteResponse + > + >; + /** + * Delete a CloudExadataInfrastructure + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param options The options parameters. + */ + beginDeleteAndWait( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + options?: CloudExadataInfrastructuresDeleteOptionalParams, + ): Promise; + /** + * Perform add storage capacity on exadata infra + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param options The options parameters. + */ + beginAddStorageCapacity( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + options?: CloudExadataInfrastructuresAddStorageCapacityOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudExadataInfrastructuresAddStorageCapacityResponse + > + >; + /** + * Perform add storage capacity on exadata infra + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param options The options parameters. + */ + beginAddStorageCapacityAndWait( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + options?: CloudExadataInfrastructuresAddStorageCapacityOptionalParams, + ): Promise; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/cloudVmClusters.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/cloudVmClusters.ts new file mode 100644 index 000000000000..ec42f9d22df0 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/cloudVmClusters.ts @@ -0,0 +1,228 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { SimplePollerLike, OperationState } from "@azure/core-lro"; +import { + CloudVmCluster, + CloudVmClustersListBySubscriptionOptionalParams, + CloudVmClustersListByResourceGroupOptionalParams, + CloudVmClustersGetOptionalParams, + CloudVmClustersGetResponse, + CloudVmClustersCreateOrUpdateOptionalParams, + CloudVmClustersCreateOrUpdateResponse, + CloudVmClusterUpdate, + CloudVmClustersUpdateOptionalParams, + CloudVmClustersUpdateResponse, + CloudVmClustersDeleteOptionalParams, + CloudVmClustersDeleteResponse, + AddRemoveDbNode, + CloudVmClustersAddVmsOptionalParams, + CloudVmClustersAddVmsResponse, + PrivateIpAddressesFilter, + CloudVmClustersListPrivateIpAddressesOptionalParams, + CloudVmClustersListPrivateIpAddressesResponse, + CloudVmClustersRemoveVmsOptionalParams, + CloudVmClustersRemoveVmsResponse, +} from "../models"; + +/// +/** Interface representing a CloudVmClusters. */ +export interface CloudVmClusters { + /** + * List CloudVmCluster resources by subscription ID + * @param options The options parameters. + */ + listBySubscription( + options?: CloudVmClustersListBySubscriptionOptionalParams, + ): PagedAsyncIterableIterator; + /** + * List CloudVmCluster resources by resource group + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param options The options parameters. + */ + listByResourceGroup( + resourceGroupName: string, + options?: CloudVmClustersListByResourceGroupOptionalParams, + ): PagedAsyncIterableIterator; + /** + * Get a CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param options The options parameters. + */ + get( + resourceGroupName: string, + cloudvmclustername: string, + options?: CloudVmClustersGetOptionalParams, + ): Promise; + /** + * Create a CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param resource Resource create parameters. + * @param options The options parameters. + */ + beginCreateOrUpdate( + resourceGroupName: string, + cloudvmclustername: string, + resource: CloudVmCluster, + options?: CloudVmClustersCreateOrUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudVmClustersCreateOrUpdateResponse + > + >; + /** + * Create a CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param resource Resource create parameters. + * @param options The options parameters. + */ + beginCreateOrUpdateAndWait( + resourceGroupName: string, + cloudvmclustername: string, + resource: CloudVmCluster, + options?: CloudVmClustersCreateOrUpdateOptionalParams, + ): Promise; + /** + * Update a CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + beginUpdate( + resourceGroupName: string, + cloudvmclustername: string, + properties: CloudVmClusterUpdate, + options?: CloudVmClustersUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudVmClustersUpdateResponse + > + >; + /** + * Update a CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + beginUpdateAndWait( + resourceGroupName: string, + cloudvmclustername: string, + properties: CloudVmClusterUpdate, + options?: CloudVmClustersUpdateOptionalParams, + ): Promise; + /** + * Delete a CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param options The options parameters. + */ + beginDelete( + resourceGroupName: string, + cloudvmclustername: string, + options?: CloudVmClustersDeleteOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudVmClustersDeleteResponse + > + >; + /** + * Delete a CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param options The options parameters. + */ + beginDeleteAndWait( + resourceGroupName: string, + cloudvmclustername: string, + options?: CloudVmClustersDeleteOptionalParams, + ): Promise; + /** + * Add VMs to the VM Cluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param body The content of the action request + * @param options The options parameters. + */ + beginAddVms( + resourceGroupName: string, + cloudvmclustername: string, + body: AddRemoveDbNode, + options?: CloudVmClustersAddVmsOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudVmClustersAddVmsResponse + > + >; + /** + * Add VMs to the VM Cluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param body The content of the action request + * @param options The options parameters. + */ + beginAddVmsAndWait( + resourceGroupName: string, + cloudvmclustername: string, + body: AddRemoveDbNode, + options?: CloudVmClustersAddVmsOptionalParams, + ): Promise; + /** + * List Private IP Addresses by the provided filter + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param body The content of the action request + * @param options The options parameters. + */ + listPrivateIpAddresses( + resourceGroupName: string, + cloudvmclustername: string, + body: PrivateIpAddressesFilter, + options?: CloudVmClustersListPrivateIpAddressesOptionalParams, + ): Promise; + /** + * Remove VMs from the VM Cluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param body The content of the action request + * @param options The options parameters. + */ + beginRemoveVms( + resourceGroupName: string, + cloudvmclustername: string, + body: AddRemoveDbNode, + options?: CloudVmClustersRemoveVmsOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + CloudVmClustersRemoveVmsResponse + > + >; + /** + * Remove VMs from the VM Cluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param body The content of the action request + * @param options The options parameters. + */ + beginRemoveVmsAndWait( + resourceGroupName: string, + cloudvmclustername: string, + body: AddRemoveDbNode, + options?: CloudVmClustersRemoveVmsOptionalParams, + ): Promise; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dbNodes.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dbNodes.ts new file mode 100644 index 000000000000..582718360e63 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dbNodes.ts @@ -0,0 +1,83 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { SimplePollerLike, OperationState } from "@azure/core-lro"; +import { + DbNode, + DbNodesListByCloudVmClusterOptionalParams, + DbNodesGetOptionalParams, + DbNodesGetResponse, + DbNodeAction, + DbNodesActionOptionalParams, + DbNodesActionResponse, +} from "../models"; + +/// +/** Interface representing a DbNodes. */ +export interface DbNodes { + /** + * List DbNode resources by CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param options The options parameters. + */ + listByCloudVmCluster( + resourceGroupName: string, + cloudvmclustername: string, + options?: DbNodesListByCloudVmClusterOptionalParams, + ): PagedAsyncIterableIterator; + /** + * Get a DbNode + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param dbnodeocid DbNode OCID. + * @param options The options parameters. + */ + get( + resourceGroupName: string, + cloudvmclustername: string, + dbnodeocid: string, + options?: DbNodesGetOptionalParams, + ): Promise; + /** + * VM actions on DbNode of VM Cluster by the provided filter + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param dbnodeocid DbNode OCID. + * @param body The content of the action request + * @param options The options parameters. + */ + beginAction( + resourceGroupName: string, + cloudvmclustername: string, + dbnodeocid: string, + body: DbNodeAction, + options?: DbNodesActionOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + DbNodesActionResponse + > + >; + /** + * VM actions on DbNode of VM Cluster by the provided filter + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param dbnodeocid DbNode OCID. + * @param body The content of the action request + * @param options The options parameters. + */ + beginActionAndWait( + resourceGroupName: string, + cloudvmclustername: string, + dbnodeocid: string, + body: DbNodeAction, + options?: DbNodesActionOptionalParams, + ): Promise; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dbServers.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dbServers.ts new file mode 100644 index 000000000000..d0f3f5d1c06e --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dbServers.ts @@ -0,0 +1,44 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { + DbServer, + DbServersListByCloudExadataInfrastructureOptionalParams, + DbServersGetOptionalParams, + DbServersGetResponse, +} from "../models"; + +/// +/** Interface representing a DbServers. */ +export interface DbServers { + /** + * List DbServer resources by CloudExadataInfrastructure + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param options The options parameters. + */ + listByCloudExadataInfrastructure( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + options?: DbServersListByCloudExadataInfrastructureOptionalParams, + ): PagedAsyncIterableIterator; + /** + * Get a DbServer + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudexadatainfrastructurename CloudExadataInfrastructure name + * @param dbserverocid DbServer OCID. + * @param options The options parameters. + */ + get( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + dbserverocid: string, + options?: DbServersGetOptionalParams, + ): Promise; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dbSystemShapes.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dbSystemShapes.ts new file mode 100644 index 000000000000..5bfdda07f0dd --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dbSystemShapes.ts @@ -0,0 +1,40 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { + DbSystemShape, + DbSystemShapesListByLocationOptionalParams, + DbSystemShapesGetOptionalParams, + DbSystemShapesGetResponse, +} from "../models"; + +/// +/** Interface representing a DbSystemShapes. */ +export interface DbSystemShapes { + /** + * List DbSystemShape resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + listByLocation( + location: string, + options?: DbSystemShapesListByLocationOptionalParams, + ): PagedAsyncIterableIterator; + /** + * Get a DbSystemShape + * @param location The name of the Azure region. + * @param dbsystemshapename DbSystemShape name + * @param options The options parameters. + */ + get( + location: string, + dbsystemshapename: string, + options?: DbSystemShapesGetOptionalParams, + ): Promise; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dnsPrivateViews.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dnsPrivateViews.ts new file mode 100644 index 000000000000..ba1f745d81e8 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dnsPrivateViews.ts @@ -0,0 +1,40 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { + DnsPrivateView, + DnsPrivateViewsListByLocationOptionalParams, + DnsPrivateViewsGetOptionalParams, + DnsPrivateViewsGetResponse, +} from "../models"; + +/// +/** Interface representing a DnsPrivateViews. */ +export interface DnsPrivateViews { + /** + * List DnsPrivateView resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + listByLocation( + location: string, + options?: DnsPrivateViewsListByLocationOptionalParams, + ): PagedAsyncIterableIterator; + /** + * Get a DnsPrivateView + * @param location The name of the Azure region. + * @param dnsprivateviewocid DnsPrivateView OCID + * @param options The options parameters. + */ + get( + location: string, + dnsprivateviewocid: string, + options?: DnsPrivateViewsGetOptionalParams, + ): Promise; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dnsPrivateZones.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dnsPrivateZones.ts new file mode 100644 index 000000000000..e4580d7c1186 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/dnsPrivateZones.ts @@ -0,0 +1,40 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { + DnsPrivateZone, + DnsPrivateZonesListByLocationOptionalParams, + DnsPrivateZonesGetOptionalParams, + DnsPrivateZonesGetResponse, +} from "../models"; + +/// +/** Interface representing a DnsPrivateZones. */ +export interface DnsPrivateZones { + /** + * List DnsPrivateZone resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + listByLocation( + location: string, + options?: DnsPrivateZonesListByLocationOptionalParams, + ): PagedAsyncIterableIterator; + /** + * Get a DnsPrivateZone + * @param location The name of the Azure region. + * @param dnsprivatezonename DnsPrivateZone name + * @param options The options parameters. + */ + get( + location: string, + dnsprivatezonename: string, + options?: DnsPrivateZonesGetOptionalParams, + ): Promise; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/giVersions.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/giVersions.ts new file mode 100644 index 000000000000..6dd9c3201d44 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/giVersions.ts @@ -0,0 +1,40 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { + GiVersion, + GiVersionsListByLocationOptionalParams, + GiVersionsGetOptionalParams, + GiVersionsGetResponse, +} from "../models"; + +/// +/** Interface representing a GiVersions. */ +export interface GiVersions { + /** + * List GiVersion resources by Location + * @param location The name of the Azure region. + * @param options The options parameters. + */ + listByLocation( + location: string, + options?: GiVersionsListByLocationOptionalParams, + ): PagedAsyncIterableIterator; + /** + * Get a GiVersion + * @param location The name of the Azure region. + * @param giversionname GiVersion name + * @param options The options parameters. + */ + get( + location: string, + giversionname: string, + options?: GiVersionsGetOptionalParams, + ): Promise; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/index.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/index.ts new file mode 100644 index 000000000000..8c12a529345e --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/index.ts @@ -0,0 +1,24 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +export * from "./operations"; +export * from "./autonomousDatabases"; +export * from "./cloudExadataInfrastructures"; +export * from "./cloudVmClusters"; +export * from "./autonomousDatabaseCharacterSets"; +export * from "./autonomousDatabaseNationalCharacterSets"; +export * from "./autonomousDatabaseVersions"; +export * from "./dbSystemShapes"; +export * from "./dnsPrivateViews"; +export * from "./dnsPrivateZones"; +export * from "./giVersions"; +export * from "./oracleSubscriptions"; +export * from "./autonomousDatabaseBackups"; +export * from "./dbServers"; +export * from "./dbNodes"; +export * from "./virtualNetworkAddresses"; diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/operations.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/operations.ts new file mode 100644 index 000000000000..251f5f582e64 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/operations.ts @@ -0,0 +1,22 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { Operation, OperationsListOptionalParams } from "../models"; + +/// +/** Interface representing a Operations. */ +export interface Operations { + /** + * List the operations for the provider + * @param options The options parameters. + */ + list( + options?: OperationsListOptionalParams, + ): PagedAsyncIterableIterator; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/oracleSubscriptions.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/oracleSubscriptions.ts new file mode 100644 index 000000000000..cd05af50ebb0 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/oracleSubscriptions.ts @@ -0,0 +1,170 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { SimplePollerLike, OperationState } from "@azure/core-lro"; +import { + OracleSubscription, + OracleSubscriptionsListBySubscriptionOptionalParams, + OracleSubscriptionsGetOptionalParams, + OracleSubscriptionsGetResponse, + OracleSubscriptionsCreateOrUpdateOptionalParams, + OracleSubscriptionsCreateOrUpdateResponse, + OracleSubscriptionUpdate, + OracleSubscriptionsUpdateOptionalParams, + OracleSubscriptionsUpdateResponse, + OracleSubscriptionsDeleteOptionalParams, + OracleSubscriptionsDeleteResponse, + OracleSubscriptionsListActivationLinksOptionalParams, + OracleSubscriptionsListActivationLinksResponse, + OracleSubscriptionsListCloudAccountDetailsOptionalParams, + OracleSubscriptionsListCloudAccountDetailsResponse, + OracleSubscriptionsListSaasSubscriptionDetailsOptionalParams, + OracleSubscriptionsListSaasSubscriptionDetailsResponse, +} from "../models"; + +/// +/** Interface representing a OracleSubscriptions. */ +export interface OracleSubscriptions { + /** + * List OracleSubscription resources by subscription ID + * @param options The options parameters. + */ + listBySubscription( + options?: OracleSubscriptionsListBySubscriptionOptionalParams, + ): PagedAsyncIterableIterator; + /** + * Get a OracleSubscription + * @param options The options parameters. + */ + get( + options?: OracleSubscriptionsGetOptionalParams, + ): Promise; + /** + * Create a OracleSubscription + * @param resource Resource create parameters. + * @param options The options parameters. + */ + beginCreateOrUpdate( + resource: OracleSubscription, + options?: OracleSubscriptionsCreateOrUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + OracleSubscriptionsCreateOrUpdateResponse + > + >; + /** + * Create a OracleSubscription + * @param resource Resource create parameters. + * @param options The options parameters. + */ + beginCreateOrUpdateAndWait( + resource: OracleSubscription, + options?: OracleSubscriptionsCreateOrUpdateOptionalParams, + ): Promise; + /** + * Update a OracleSubscription + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + beginUpdate( + properties: OracleSubscriptionUpdate, + options?: OracleSubscriptionsUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + OracleSubscriptionsUpdateResponse + > + >; + /** + * Update a OracleSubscription + * @param properties The resource properties to be updated. + * @param options The options parameters. + */ + beginUpdateAndWait( + properties: OracleSubscriptionUpdate, + options?: OracleSubscriptionsUpdateOptionalParams, + ): Promise; + /** + * Delete a OracleSubscription + * @param options The options parameters. + */ + beginDelete( + options?: OracleSubscriptionsDeleteOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + OracleSubscriptionsDeleteResponse + > + >; + /** + * Delete a OracleSubscription + * @param options The options parameters. + */ + beginDeleteAndWait( + options?: OracleSubscriptionsDeleteOptionalParams, + ): Promise; + /** + * List Activation Links + * @param options The options parameters. + */ + beginListActivationLinks( + options?: OracleSubscriptionsListActivationLinksOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + OracleSubscriptionsListActivationLinksResponse + > + >; + /** + * List Activation Links + * @param options The options parameters. + */ + beginListActivationLinksAndWait( + options?: OracleSubscriptionsListActivationLinksOptionalParams, + ): Promise; + /** + * List Cloud Account Details + * @param options The options parameters. + */ + beginListCloudAccountDetails( + options?: OracleSubscriptionsListCloudAccountDetailsOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + OracleSubscriptionsListCloudAccountDetailsResponse + > + >; + /** + * List Cloud Account Details + * @param options The options parameters. + */ + beginListCloudAccountDetailsAndWait( + options?: OracleSubscriptionsListCloudAccountDetailsOptionalParams, + ): Promise; + /** + * List Saas Subscription Details + * @param options The options parameters. + */ + beginListSaasSubscriptionDetails( + options?: OracleSubscriptionsListSaasSubscriptionDetailsOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + OracleSubscriptionsListSaasSubscriptionDetailsResponse + > + >; + /** + * List Saas Subscription Details + * @param options The options parameters. + */ + beginListSaasSubscriptionDetailsAndWait( + options?: OracleSubscriptionsListSaasSubscriptionDetailsOptionalParams, + ): Promise; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/virtualNetworkAddresses.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/virtualNetworkAddresses.ts new file mode 100644 index 000000000000..7291d7f11c9f --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/operationsInterfaces/virtualNetworkAddresses.ts @@ -0,0 +1,115 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { SimplePollerLike, OperationState } from "@azure/core-lro"; +import { + VirtualNetworkAddress, + VirtualNetworkAddressesListByCloudVmClusterOptionalParams, + VirtualNetworkAddressesGetOptionalParams, + VirtualNetworkAddressesGetResponse, + VirtualNetworkAddressesCreateOrUpdateOptionalParams, + VirtualNetworkAddressesCreateOrUpdateResponse, + VirtualNetworkAddressesDeleteOptionalParams, + VirtualNetworkAddressesDeleteResponse, +} from "../models"; + +/// +/** Interface representing a VirtualNetworkAddresses. */ +export interface VirtualNetworkAddresses { + /** + * List VirtualNetworkAddress resources by CloudVmCluster + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param options The options parameters. + */ + listByCloudVmCluster( + resourceGroupName: string, + cloudvmclustername: string, + options?: VirtualNetworkAddressesListByCloudVmClusterOptionalParams, + ): PagedAsyncIterableIterator; + /** + * Get a VirtualNetworkAddress + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param virtualnetworkaddressname Virtual IP address hostname. + * @param options The options parameters. + */ + get( + resourceGroupName: string, + cloudvmclustername: string, + virtualnetworkaddressname: string, + options?: VirtualNetworkAddressesGetOptionalParams, + ): Promise; + /** + * Create a VirtualNetworkAddress + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param virtualnetworkaddressname Virtual IP address hostname. + * @param resource Resource create parameters. + * @param options The options parameters. + */ + beginCreateOrUpdate( + resourceGroupName: string, + cloudvmclustername: string, + virtualnetworkaddressname: string, + resource: VirtualNetworkAddress, + options?: VirtualNetworkAddressesCreateOrUpdateOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + VirtualNetworkAddressesCreateOrUpdateResponse + > + >; + /** + * Create a VirtualNetworkAddress + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param virtualnetworkaddressname Virtual IP address hostname. + * @param resource Resource create parameters. + * @param options The options parameters. + */ + beginCreateOrUpdateAndWait( + resourceGroupName: string, + cloudvmclustername: string, + virtualnetworkaddressname: string, + resource: VirtualNetworkAddress, + options?: VirtualNetworkAddressesCreateOrUpdateOptionalParams, + ): Promise; + /** + * Delete a VirtualNetworkAddress + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param virtualnetworkaddressname Virtual IP address hostname. + * @param options The options parameters. + */ + beginDelete( + resourceGroupName: string, + cloudvmclustername: string, + virtualnetworkaddressname: string, + options?: VirtualNetworkAddressesDeleteOptionalParams, + ): Promise< + SimplePollerLike< + OperationState, + VirtualNetworkAddressesDeleteResponse + > + >; + /** + * Delete a VirtualNetworkAddress + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param cloudvmclustername CloudVmCluster name + * @param virtualnetworkaddressname Virtual IP address hostname. + * @param options The options parameters. + */ + beginDeleteAndWait( + resourceGroupName: string, + cloudvmclustername: string, + virtualnetworkaddressname: string, + options?: VirtualNetworkAddressesDeleteOptionalParams, + ): Promise; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/oracleDatabaseResourceManager.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/oracleDatabaseResourceManager.ts new file mode 100644 index 000000000000..f27d5d9d0819 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/oracleDatabaseResourceManager.ts @@ -0,0 +1,209 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import * as coreClient from "@azure/core-client"; +import * as coreRestPipeline from "@azure/core-rest-pipeline"; +import { + PipelineRequest, + PipelineResponse, + SendRequest, +} from "@azure/core-rest-pipeline"; +import * as coreAuth from "@azure/core-auth"; +import { + OperationsImpl, + AutonomousDatabasesImpl, + CloudExadataInfrastructuresImpl, + CloudVmClustersImpl, + AutonomousDatabaseCharacterSetsImpl, + AutonomousDatabaseNationalCharacterSetsImpl, + AutonomousDatabaseVersionsImpl, + DbSystemShapesImpl, + DnsPrivateViewsImpl, + DnsPrivateZonesImpl, + GiVersionsImpl, + OracleSubscriptionsImpl, + AutonomousDatabaseBackupsImpl, + DbServersImpl, + DbNodesImpl, + VirtualNetworkAddressesImpl, +} from "./operations"; +import { + Operations, + AutonomousDatabases, + CloudExadataInfrastructures, + CloudVmClusters, + AutonomousDatabaseCharacterSets, + AutonomousDatabaseNationalCharacterSets, + AutonomousDatabaseVersions, + DbSystemShapes, + DnsPrivateViews, + DnsPrivateZones, + GiVersions, + OracleSubscriptions, + AutonomousDatabaseBackups, + DbServers, + DbNodes, + VirtualNetworkAddresses, +} from "./operationsInterfaces"; +import { OracleDatabaseResourceManagerOptionalParams } from "./models"; + +export class OracleDatabaseResourceManager extends coreClient.ServiceClient { + $host: string; + apiVersion: string; + subscriptionId: string; + + /** + * Initializes a new instance of the OracleDatabaseResourceManager class. + * @param credentials Subscription credentials which uniquely identify client subscription. + * @param subscriptionId The ID of the target subscription. The value must be an UUID. + * @param options The parameter options + */ + constructor( + credentials: coreAuth.TokenCredential, + subscriptionId: string, + options?: OracleDatabaseResourceManagerOptionalParams, + ) { + if (credentials === undefined) { + throw new Error("'credentials' cannot be null"); + } + if (subscriptionId === undefined) { + throw new Error("'subscriptionId' cannot be null"); + } + + // Initializing default values for options + if (!options) { + options = {}; + } + const defaults: OracleDatabaseResourceManagerOptionalParams = { + requestContentType: "application/json; charset=utf-8", + credential: credentials, + }; + + const packageDetails = `azsdk-js-arm-Oracle.Database/1.0.0-beta.1`; + const userAgentPrefix = + options.userAgentOptions && options.userAgentOptions.userAgentPrefix + ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}` + : `${packageDetails}`; + + const optionsWithDefaults = { + ...defaults, + ...options, + userAgentOptions: { + userAgentPrefix, + }, + endpoint: + options.endpoint ?? options.baseUri ?? "https://management.azure.com", + }; + super(optionsWithDefaults); + + let bearerTokenAuthenticationPolicyFound: boolean = false; + if (options?.pipeline && options.pipeline.getOrderedPolicies().length > 0) { + const pipelinePolicies: coreRestPipeline.PipelinePolicy[] = + options.pipeline.getOrderedPolicies(); + bearerTokenAuthenticationPolicyFound = pipelinePolicies.some( + (pipelinePolicy) => + pipelinePolicy.name === + coreRestPipeline.bearerTokenAuthenticationPolicyName, + ); + } + if ( + !options || + !options.pipeline || + options.pipeline.getOrderedPolicies().length == 0 || + !bearerTokenAuthenticationPolicyFound + ) { + this.pipeline.removePolicy({ + name: coreRestPipeline.bearerTokenAuthenticationPolicyName, + }); + this.pipeline.addPolicy( + coreRestPipeline.bearerTokenAuthenticationPolicy({ + credential: credentials, + scopes: + optionsWithDefaults.credentialScopes ?? + `${optionsWithDefaults.endpoint}/.default`, + challengeCallbacks: { + authorizeRequestOnChallenge: + coreClient.authorizeRequestOnClaimChallenge, + }, + }), + ); + } + // Parameter assignments + this.subscriptionId = subscriptionId; + + // Assigning values to Constant parameters + this.$host = options.$host || "https://management.azure.com"; + this.apiVersion = options.apiVersion || "2023-09-01-preview"; + this.operations = new OperationsImpl(this); + this.autonomousDatabases = new AutonomousDatabasesImpl(this); + this.cloudExadataInfrastructures = new CloudExadataInfrastructuresImpl( + this, + ); + this.cloudVmClusters = new CloudVmClustersImpl(this); + this.autonomousDatabaseCharacterSets = + new AutonomousDatabaseCharacterSetsImpl(this); + this.autonomousDatabaseNationalCharacterSets = + new AutonomousDatabaseNationalCharacterSetsImpl(this); + this.autonomousDatabaseVersions = new AutonomousDatabaseVersionsImpl(this); + this.dbSystemShapes = new DbSystemShapesImpl(this); + this.dnsPrivateViews = new DnsPrivateViewsImpl(this); + this.dnsPrivateZones = new DnsPrivateZonesImpl(this); + this.giVersions = new GiVersionsImpl(this); + this.oracleSubscriptions = new OracleSubscriptionsImpl(this); + this.autonomousDatabaseBackups = new AutonomousDatabaseBackupsImpl(this); + this.dbServers = new DbServersImpl(this); + this.dbNodes = new DbNodesImpl(this); + this.virtualNetworkAddresses = new VirtualNetworkAddressesImpl(this); + this.addCustomApiVersionPolicy(options.apiVersion); + } + + /** A function that adds a policy that sets the api-version (or equivalent) to reflect the library version. */ + private addCustomApiVersionPolicy(apiVersion?: string) { + if (!apiVersion) { + return; + } + const apiVersionPolicy = { + name: "CustomApiVersionPolicy", + async sendRequest( + request: PipelineRequest, + next: SendRequest, + ): Promise { + const param = request.url.split("?"); + if (param.length > 1) { + const newParams = param[1].split("&").map((item) => { + if (item.indexOf("api-version") > -1) { + return "api-version=" + apiVersion; + } else { + return item; + } + }); + request.url = param[0] + "?" + newParams.join("&"); + } + return next(request); + }, + }; + this.pipeline.addPolicy(apiVersionPolicy); + } + + operations: Operations; + autonomousDatabases: AutonomousDatabases; + cloudExadataInfrastructures: CloudExadataInfrastructures; + cloudVmClusters: CloudVmClusters; + autonomousDatabaseCharacterSets: AutonomousDatabaseCharacterSets; + autonomousDatabaseNationalCharacterSets: AutonomousDatabaseNationalCharacterSets; + autonomousDatabaseVersions: AutonomousDatabaseVersions; + dbSystemShapes: DbSystemShapes; + dnsPrivateViews: DnsPrivateViews; + dnsPrivateZones: DnsPrivateZones; + giVersions: GiVersions; + oracleSubscriptions: OracleSubscriptions; + autonomousDatabaseBackups: AutonomousDatabaseBackups; + dbServers: DbServers; + dbNodes: DbNodes; + virtualNetworkAddresses: VirtualNetworkAddresses; +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/src/pagingHelper.ts b/sdk/Oracle.Database/arm-Oracle.Database/src/pagingHelper.ts new file mode 100644 index 000000000000..205cccc26592 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/src/pagingHelper.ts @@ -0,0 +1,39 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +export interface PageInfo { + continuationToken?: string; +} + +const pageMap = new WeakMap(); + +/** + * Given the last `.value` produced by the `byPage` iterator, + * returns a continuation token that can be used to begin paging from + * that point later. + * @param page An object from accessing `value` on the IteratorResult from a `byPage` iterator. + * @returns The continuation token that can be passed into byPage() during future calls. + */ +export function getContinuationToken(page: unknown): string | undefined { + if (typeof page !== "object" || page === null) { + return undefined; + } + return pageMap.get(page)?.continuationToken; +} + +export function setContinuationToken( + page: unknown, + continuationToken: string | undefined, +): void { + if (typeof page !== "object" || page === null || !continuationToken) { + return; + } + const pageInfo = pageMap.get(page) ?? {}; + pageInfo.continuationToken = continuationToken; + pageMap.set(page, pageInfo); +} diff --git a/sdk/Oracle.Database/arm-Oracle.Database/test/sampleTest.ts b/sdk/Oracle.Database/arm-Oracle.Database/test/sampleTest.ts new file mode 100644 index 000000000000..d64be981b694 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/test/sampleTest.ts @@ -0,0 +1,43 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { + Recorder, + RecorderStartOptions, + env, +} from "@azure-tools/test-recorder"; +import { assert } from "chai"; +import { Context } from "mocha"; + +const replaceableVariables: Record = { + AZURE_CLIENT_ID: "azure_client_id", + AZURE_CLIENT_SECRET: "azure_client_secret", + AZURE_TENANT_ID: "88888888-8888-8888-8888-888888888888", + SUBSCRIPTION_ID: "azure_subscription_id", +}; + +const recorderOptions: RecorderStartOptions = { + envSetupForPlayback: replaceableVariables, +}; + +describe("My test", () => { + let recorder: Recorder; + + beforeEach(async function (this: Context) { + recorder = new Recorder(this.currentTest); + await recorder.start(recorderOptions); + }); + + afterEach(async function () { + await recorder.stop(); + }); + + it("sample test", async function () { + console.log("Hi, I'm a test!"); + }); +}); diff --git a/sdk/Oracle.Database/arm-Oracle.Database/tsconfig.json b/sdk/Oracle.Database/arm-Oracle.Database/tsconfig.json new file mode 100644 index 000000000000..3e6ae96443f3 --- /dev/null +++ b/sdk/Oracle.Database/arm-Oracle.Database/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compilerOptions": { + "module": "es6", + "moduleResolution": "node", + "strict": true, + "target": "es6", + "sourceMap": true, + "declarationMap": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "forceConsistentCasingInFileNames": true, + "lib": [ + "es6", + "dom" + ], + "declaration": true, + "outDir": "./dist-esm", + "importHelpers": true + }, + "include": [ + "./src/**/*.ts", + "./test/**/*.ts" + ], + "exclude": [ + "node_modules" + ] +} \ No newline at end of file diff --git a/sdk/Oracle.Database/ci.mgmt.yml b/sdk/Oracle.Database/ci.mgmt.yml new file mode 100644 index 000000000000..a23b2a39eeed --- /dev/null +++ b/sdk/Oracle.Database/ci.mgmt.yml @@ -0,0 +1,38 @@ +# NOTE: Please refer to https://aka.ms/azsdk/engsys/ci-yaml before editing this file. + +trigger: + branches: + include: + - main + - feature/* + - release/* + - hotfix/* + exclude: + - feature/v4 + paths: + include: + - sdk/Oracle.Database/arm-Oracle.Database + - sdk/Oracle.Database/ci.mgmt.yml + +pr: + branches: + include: + - main + - feature/* + - release/* + - hotfix/* + exclude: + - feature/v4 + paths: + include: + - sdk/Oracle.Database/arm-Oracle.Database + - sdk/Oracle.Database/ci.mgmt.yml + +extends: + template: /eng/pipelines/templates/stages/archetype-sdk-client.yml + parameters: + ServiceDirectory: Oracle.Database + Artifacts: + - name: azure-arm-Oracle.Database + safeName: azurearmOracle.Database + \ No newline at end of file