diff --git a/.github/workflows/automation-data-api-differ.yaml b/.github/workflows/automation-data-api-differ.yaml index 0944d12f58..1eac69db17 100644 --- a/.github/workflows/automation-data-api-differ.yaml +++ b/.github/workflows/automation-data-api-differ.yaml @@ -23,6 +23,18 @@ jobs: - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 with: go-version-file: ./.go-version + cache-dependency-path: | + tools/generator-go-sdk/go.mod + tools/data-api-differ/go.mod + tools/wrapper-automation/go.mod + tools/data-api/go.mod + tools/importer-msgraph-metadata/go.mod + tools/data-api-sdk/go.mod + tools/sdk/go.mod + tools/importer-rest-api-specs/go.mod + tools/data-api-repository/go.mod + tools/version-bumper/go.mod + tools/generator-terraform/go.mod - name: Detect Changes run: | diff --git a/.github/workflows/automation-msgraph-metadata-importer.yaml b/.github/workflows/automation-msgraph-metadata-importer.yaml index 27f1fa4eb1..2996bacb0b 100644 --- a/.github/workflows/automation-msgraph-metadata-importer.yaml +++ b/.github/workflows/automation-msgraph-metadata-importer.yaml @@ -29,6 +29,19 @@ jobs: - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 with: go-version: '1.21.3' + cache-dependency-path: | + tools/generator-go-sdk/go.mod + tools/data-api-differ/go.mod + tools/wrapper-automation/go.mod + tools/data-api/go.mod + tools/importer-msgraph-metadata/go.mod + tools/data-api-sdk/go.mod + tools/sdk/go.mod + tools/importer-rest-api-specs/go.mod + tools/data-api-repository/go.mod + tools/version-bumper/go.mod + tools/generator-terraform/go.mod + - name: build and run importer-msgraph-metadata id: import-data diff --git a/.github/workflows/automation-regenerate-go-sdk.yaml b/.github/workflows/automation-regenerate-go-sdk.yaml index a182212d10..ef97f4219a 100644 --- a/.github/workflows/automation-regenerate-go-sdk.yaml +++ b/.github/workflows/automation-regenerate-go-sdk.yaml @@ -26,6 +26,19 @@ jobs: - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 with: go-version-file: ./.go-version + cache-dependency-path: | + tools/generator-go-sdk/go.mod + tools/data-api-differ/go.mod + tools/wrapper-automation/go.mod + tools/data-api/go.mod + tools/importer-msgraph-metadata/go.mod + tools/data-api-sdk/go.mod + tools/sdk/go.mod + tools/importer-rest-api-specs/go.mod + tools/data-api-repository/go.mod + tools/version-bumper/go.mod + tools/generator-terraform/go.mod + - name: ensure goimports is installed run: | diff --git a/.github/workflows/automation-regenerate-terraform.yaml b/.github/workflows/automation-regenerate-terraform.yaml index 746360a43b..227cec3879 100644 --- a/.github/workflows/automation-regenerate-terraform.yaml +++ b/.github/workflows/automation-regenerate-terraform.yaml @@ -23,6 +23,19 @@ jobs: - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 with: go-version: '1.22.7' + cache-dependency-path: | + tools/generator-go-sdk/go.mod + tools/data-api-differ/go.mod + tools/wrapper-automation/go.mod + tools/data-api/go.mod + tools/importer-msgraph-metadata/go.mod + tools/data-api-sdk/go.mod + tools/sdk/go.mod + tools/importer-rest-api-specs/go.mod + tools/data-api-repository/go.mod + tools/version-bumper/go.mod + tools/generator-terraform/go.mod + - name: "Launch SSH Agent" run: | diff --git a/.github/workflows/automation-rest-api-specs-importer.yaml b/.github/workflows/automation-rest-api-specs-importer.yaml index b7eaae16cc..9abcf65398 100644 --- a/.github/workflows/automation-rest-api-specs-importer.yaml +++ b/.github/workflows/automation-rest-api-specs-importer.yaml @@ -33,6 +33,19 @@ jobs: - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 with: go-version-file: ./.go-version + cache-dependency-path: | + tools/generator-go-sdk/go.mod + tools/data-api-differ/go.mod + tools/wrapper-automation/go.mod + tools/data-api/go.mod + tools/importer-msgraph-metadata/go.mod + tools/data-api-sdk/go.mod + tools/sdk/go.mod + tools/importer-rest-api-specs/go.mod + tools/data-api-repository/go.mod + tools/version-bumper/go.mod + tools/generator-terraform/go.mod + - name: build and run importer-rest-api-specs id: import-data @@ -41,6 +54,7 @@ jobs: make tools make build make import + make import-data-plane - name: then commit the diff id: commit-imported-data diff --git a/.github/workflows/automation-version-bumper.yaml b/.github/workflows/automation-version-bumper.yaml index e1217b5cfc..362269b1de 100644 --- a/.github/workflows/automation-version-bumper.yaml +++ b/.github/workflows/automation-version-bumper.yaml @@ -24,6 +24,19 @@ jobs: - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 with: go-version-file: ./.go-version + cache-dependency-path: | + tools/generator-go-sdk/go.mod + tools/data-api-differ/go.mod + tools/wrapper-automation/go.mod + tools/data-api/go.mod + tools/importer-msgraph-metadata/go.mod + tools/data-api-sdk/go.mod + tools/sdk/go.mod + tools/importer-rest-api-specs/go.mod + tools/data-api-repository/go.mod + tools/version-bumper/go.mod + tools/generator-terraform/go.mod + - name: build and run version-bumper id: bump-versions diff --git a/.github/workflows/unit-test-data-api-differ.yaml b/.github/workflows/unit-test-data-api-differ.yaml index c3eeee09b7..0362783606 100644 --- a/.github/workflows/unit-test-data-api-differ.yaml +++ b/.github/workflows/unit-test-data-api-differ.yaml @@ -18,6 +18,19 @@ jobs: - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 with: go-version-file: ./.go-version + cache-dependency-path: | + tools/generator-go-sdk/go.mod + tools/data-api-differ/go.mod + tools/wrapper-automation/go.mod + tools/data-api/go.mod + tools/importer-msgraph-metadata/go.mod + tools/data-api-sdk/go.mod + tools/sdk/go.mod + tools/importer-rest-api-specs/go.mod + tools/data-api-repository/go.mod + tools/version-bumper/go.mod + tools/generator-terraform/go.mod + - name: run unit tests run: | diff --git a/.github/workflows/unit-test-data-api-v2.yaml b/.github/workflows/unit-test-data-api-v2.yaml index ca1be3a77b..b9892f3761 100644 --- a/.github/workflows/unit-test-data-api-v2.yaml +++ b/.github/workflows/unit-test-data-api-v2.yaml @@ -19,6 +19,19 @@ jobs: - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 with: go-version-file: ./.go-version + cache-dependency-path: | + tools/generator-go-sdk/go.mod + tools/data-api-differ/go.mod + tools/wrapper-automation/go.mod + tools/data-api/go.mod + tools/importer-msgraph-metadata/go.mod + tools/data-api-sdk/go.mod + tools/sdk/go.mod + tools/importer-rest-api-specs/go.mod + tools/data-api-repository/go.mod + tools/version-bumper/go.mod + tools/generator-terraform/go.mod + - name: run unit tests run: | diff --git a/.github/workflows/unit-test-end-to-end-data-plane.yaml b/.github/workflows/unit-test-end-to-end-data-plane.yaml index 80010c62c7..f3ff4bf7b3 100644 --- a/.github/workflows/unit-test-end-to-end-data-plane.yaml +++ b/.github/workflows/unit-test-end-to-end-data-plane.yaml @@ -1,5 +1,5 @@ --- -name: Verify All Resource Manager Services can be Imported and Generated +name: Verify All Data Plane Services can be Imported and Generated on: pull_request: types: ['opened', 'synchronize'] @@ -9,6 +9,10 @@ on: - 'tools/generator-go-sdk/**' - 'tools/importer-rest-api-specs/**' +concurrency: + group: 'unit-test-dp-${{ github.head_ref }}' + cancel-in-progress: true # Long running, always triggers, cancel if further changes are pushed + jobs: test: runs-on: custom-linux-xl @@ -24,6 +28,18 @@ jobs: - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 with: go-version-file: ./.go-version + cache-dependency-path: | + tools/generator-go-sdk/go.mod + tools/data-api-differ/go.mod + tools/wrapper-automation/go.mod + tools/data-api/go.mod + tools/importer-msgraph-metadata/go.mod + tools/data-api-sdk/go.mod + tools/sdk/go.mod + tools/importer-rest-api-specs/go.mod + tools/data-api-repository/go.mod + tools/version-bumper/go.mod + tools/generator-terraform/go.mod - name: Install tools run: | @@ -36,7 +52,7 @@ jobs: make tools make build make import-data-plane -# Uncomment after the first data-plane files are present in go-azure-sdk -# - name: "Run the Go SDK Generator" -# run: | -# ./scripts/automation-generate-go-sdk.sh data-plane + + - name: "Run the Go SDK Generator" + run: | + ./scripts/automation-generate-go-sdk.sh data-plane diff --git a/.github/workflows/unit-test-end-to-end-microsoft-graph.yaml b/.github/workflows/unit-test-end-to-end-microsoft-graph.yaml index 30c7e0a3ba..9a295fc6f7 100644 --- a/.github/workflows/unit-test-end-to-end-microsoft-graph.yaml +++ b/.github/workflows/unit-test-end-to-end-microsoft-graph.yaml @@ -9,10 +9,18 @@ on: - 'tools/generator-go-sdk/**' - 'tools/importer-msgraph-metadata/**' +concurrency: + group: 'unit-test-graph-${{ github.head_ref }}' + cancel-in-progress: true # Long running, always triggers, cancel if further changes are pushed + jobs: test: runs-on: custom-linux-xl steps: + - name: mount a ramdisk to working dir + run: | + sudo mount -t tmpfs -o size=32G tmpfs $GITHUB_WORKSPACE + - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 with: submodules: recursive @@ -20,6 +28,19 @@ jobs: - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 with: go-version-file: ./.go-version + cache-dependency-path: | + tools/generator-go-sdk/go.mod + tools/data-api-differ/go.mod + tools/wrapper-automation/go.mod + tools/data-api/go.mod + tools/importer-msgraph-metadata/go.mod + tools/data-api-sdk/go.mod + tools/sdk/go.mod + tools/importer-rest-api-specs/go.mod + tools/data-api-repository/go.mod + tools/version-bumper/go.mod + tools/generator-terraform/go.mod + - name: "Build and Run importer-msgraph-metadata" id: import-data diff --git a/.github/workflows/unit-test-end-to-end-resource-manager.yaml b/.github/workflows/unit-test-end-to-end-resource-manager.yaml index ef6aad2909..5958d45da8 100644 --- a/.github/workflows/unit-test-end-to-end-resource-manager.yaml +++ b/.github/workflows/unit-test-end-to-end-resource-manager.yaml @@ -10,6 +10,10 @@ on: - 'tools/generator-go-sdk/**' - 'tools/importer-rest-api-specs/**' +concurrency: + group: 'unit-test-rm-${{ github.head_ref }}' + cancel-in-progress: true # Long running, always triggers, cancel if further changes are pushed + jobs: test: runs-on: custom-linux-xl @@ -25,6 +29,19 @@ jobs: - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 with: go-version-file: ./.go-version + cache-dependency-path: | + tools/generator-go-sdk/go.mod + tools/data-api-differ/go.mod + tools/wrapper-automation/go.mod + tools/data-api/go.mod + tools/importer-msgraph-metadata/go.mod + tools/data-api-sdk/go.mod + tools/sdk/go.mod + tools/importer-rest-api-specs/go.mod + tools/data-api-repository/go.mod + tools/version-bumper/go.mod + tools/generator-terraform/go.mod + - name: "Build and Run importer-rest-api-specs" id: import-data diff --git a/.github/workflows/unit-test-generator-go-sdk.yaml b/.github/workflows/unit-test-generator-go-sdk.yaml index 6ab185904f..babccc7bf7 100644 --- a/.github/workflows/unit-test-generator-go-sdk.yaml +++ b/.github/workflows/unit-test-generator-go-sdk.yaml @@ -20,6 +20,19 @@ jobs: - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 with: go-version-file: ./.go-version + cache-dependency-path: | + tools/generator-go-sdk/go.mod + tools/data-api-differ/go.mod + tools/wrapper-automation/go.mod + tools/data-api/go.mod + tools/importer-msgraph-metadata/go.mod + tools/data-api-sdk/go.mod + tools/sdk/go.mod + tools/importer-rest-api-specs/go.mod + tools/data-api-repository/go.mod + tools/version-bumper/go.mod + tools/generator-terraform/go.mod + - name: run unit tests run: | diff --git a/.github/workflows/unit-test-generator-terraform.yaml b/.github/workflows/unit-test-generator-terraform.yaml index 50ba020ebb..3b5b50a99c 100644 --- a/.github/workflows/unit-test-generator-terraform.yaml +++ b/.github/workflows/unit-test-generator-terraform.yaml @@ -20,6 +20,19 @@ jobs: - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 with: go-version-file: ./.go-version + cache-dependency-path: | + tools/generator-go-sdk/go.mod + tools/data-api-differ/go.mod + tools/wrapper-automation/go.mod + tools/data-api/go.mod + tools/importer-msgraph-metadata/go.mod + tools/data-api-sdk/go.mod + tools/sdk/go.mod + tools/importer-rest-api-specs/go.mod + tools/data-api-repository/go.mod + tools/version-bumper/go.mod + tools/generator-terraform/go.mod + - name: run unit tests run: | diff --git a/.github/workflows/unit-test-rest-api-specs-importer.yaml b/.github/workflows/unit-test-rest-api-specs-importer.yaml index e3094b2813..f4d8b4830e 100644 --- a/.github/workflows/unit-test-rest-api-specs-importer.yaml +++ b/.github/workflows/unit-test-rest-api-specs-importer.yaml @@ -25,6 +25,19 @@ jobs: - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 with: go-version-file: ./.go-version + cache-dependency-path: | + tools/generator-go-sdk/go.mod + tools/data-api-differ/go.mod + tools/wrapper-automation/go.mod + tools/data-api/go.mod + tools/importer-msgraph-metadata/go.mod + tools/data-api-sdk/go.mod + tools/sdk/go.mod + tools/importer-rest-api-specs/go.mod + tools/data-api-repository/go.mod + tools/version-bumper/go.mod + tools/generator-terraform/go.mod + - name: run unit tests run: | diff --git a/api-definitions/data-plane/Attestation/2022-08-01/OpenIDMetadataDiscovery/Model-JsonWebKey.json b/api-definitions/data-plane/Attestation/2022-08-01/OpenIDMetadataDiscovery/Model-JsonWebKey.json index 3492e34d91..9c10650e92 100644 --- a/api-definitions/data-plane/Attestation/2022-08-01/OpenIDMetadataDiscovery/Model-JsonWebKey.json +++ b/api-definitions/data-plane/Attestation/2022-08-01/OpenIDMetadataDiscovery/Model-JsonWebKey.json @@ -1,5 +1,5 @@ { - "name": "JsonWebKey", + "name": "JSONWebKey", "fields": [ { "containsDiscriminatedTypeValue": false, diff --git a/api-definitions/data-plane/Attestation/2022-08-01/OpenIDMetadataDiscovery/Model-JsonWebKeySet.json b/api-definitions/data-plane/Attestation/2022-08-01/OpenIDMetadataDiscovery/Model-JsonWebKeySet.json index fc5a5ec417..4973b1e91a 100644 --- a/api-definitions/data-plane/Attestation/2022-08-01/OpenIDMetadataDiscovery/Model-JsonWebKeySet.json +++ b/api-definitions/data-plane/Attestation/2022-08-01/OpenIDMetadataDiscovery/Model-JsonWebKeySet.json @@ -13,7 +13,7 @@ "nestedItem": { "type": "Reference", "nullable": false, - "referenceName": "JsonWebKey", + "referenceName": "JSONWebKey", "referenceNameIsCommonType": null } }, diff --git a/api-definitions/data-plane/KeyVault/2025-07-01/Keys/Model-DeletedKeyBundle.json b/api-definitions/data-plane/KeyVault/2025-07-01/Keys/Model-DeletedKeyBundle.json index 3a888e9074..8348b18c0c 100644 --- a/api-definitions/data-plane/KeyVault/2025-07-01/Keys/Model-DeletedKeyBundle.json +++ b/api-definitions/data-plane/KeyVault/2025-07-01/Keys/Model-DeletedKeyBundle.json @@ -38,7 +38,7 @@ "objectDefinition": { "type": "Reference", "nullable": false, - "referenceName": "JsonWebKey", + "referenceName": "JSONWebKey", "referenceNameIsCommonType": null }, "optional": true, diff --git a/api-definitions/data-plane/KeyVault/2025-07-01/Keys/Model-JsonWebKey.json b/api-definitions/data-plane/KeyVault/2025-07-01/Keys/Model-JsonWebKey.json index cf91620e28..886e823bec 100644 --- a/api-definitions/data-plane/KeyVault/2025-07-01/Keys/Model-JsonWebKey.json +++ b/api-definitions/data-plane/KeyVault/2025-07-01/Keys/Model-JsonWebKey.json @@ -1,5 +1,5 @@ { - "name": "JsonWebKey", + "name": "JSONWebKey", "fields": [ { "containsDiscriminatedTypeValue": false, diff --git a/api-definitions/data-plane/KeyVault/2025-07-01/Keys/Model-KeyBundle.json b/api-definitions/data-plane/KeyVault/2025-07-01/Keys/Model-KeyBundle.json index 0c1344d97c..e1c2fef171 100644 --- a/api-definitions/data-plane/KeyVault/2025-07-01/Keys/Model-KeyBundle.json +++ b/api-definitions/data-plane/KeyVault/2025-07-01/Keys/Model-KeyBundle.json @@ -23,7 +23,7 @@ "objectDefinition": { "type": "Reference", "nullable": false, - "referenceName": "JsonWebKey", + "referenceName": "JSONWebKey", "referenceNameIsCommonType": null }, "optional": true, diff --git a/api-definitions/data-plane/KeyVault/2025-07-01/Keys/Model-KeyImportParameters.json b/api-definitions/data-plane/KeyVault/2025-07-01/Keys/Model-KeyImportParameters.json index 97afe9408d..22296d12fe 100644 --- a/api-definitions/data-plane/KeyVault/2025-07-01/Keys/Model-KeyImportParameters.json +++ b/api-definitions/data-plane/KeyVault/2025-07-01/Keys/Model-KeyImportParameters.json @@ -38,7 +38,7 @@ "objectDefinition": { "type": "Reference", "nullable": false, - "referenceName": "JsonWebKey", + "referenceName": "JSONWebKey", "referenceNameIsCommonType": null }, "optional": false, diff --git a/api-definitions/data-plane/KeyVault/7.4/DeletedKeys/Model-DeletedKeyBundle.json b/api-definitions/data-plane/KeyVault/7.4/DeletedKeys/Model-DeletedKeyBundle.json index 3a888e9074..8348b18c0c 100644 --- a/api-definitions/data-plane/KeyVault/7.4/DeletedKeys/Model-DeletedKeyBundle.json +++ b/api-definitions/data-plane/KeyVault/7.4/DeletedKeys/Model-DeletedKeyBundle.json @@ -38,7 +38,7 @@ "objectDefinition": { "type": "Reference", "nullable": false, - "referenceName": "JsonWebKey", + "referenceName": "JSONWebKey", "referenceNameIsCommonType": null }, "optional": true, diff --git a/api-definitions/data-plane/KeyVault/7.4/DeletedKeys/Model-JsonWebKey.json b/api-definitions/data-plane/KeyVault/7.4/DeletedKeys/Model-JsonWebKey.json index cf91620e28..886e823bec 100644 --- a/api-definitions/data-plane/KeyVault/7.4/DeletedKeys/Model-JsonWebKey.json +++ b/api-definitions/data-plane/KeyVault/7.4/DeletedKeys/Model-JsonWebKey.json @@ -1,5 +1,5 @@ { - "name": "JsonWebKey", + "name": "JSONWebKey", "fields": [ { "containsDiscriminatedTypeValue": false, diff --git a/api-definitions/data-plane/KeyVault/7.4/DeletedKeys/Model-KeyBundle.json b/api-definitions/data-plane/KeyVault/7.4/DeletedKeys/Model-KeyBundle.json index 0c1344d97c..e1c2fef171 100644 --- a/api-definitions/data-plane/KeyVault/7.4/DeletedKeys/Model-KeyBundle.json +++ b/api-definitions/data-plane/KeyVault/7.4/DeletedKeys/Model-KeyBundle.json @@ -23,7 +23,7 @@ "objectDefinition": { "type": "Reference", "nullable": false, - "referenceName": "JsonWebKey", + "referenceName": "JSONWebKey", "referenceNameIsCommonType": null }, "optional": true, diff --git a/api-definitions/data-plane/KeyVault/7.4/Keys/Model-DeletedKeyBundle.json b/api-definitions/data-plane/KeyVault/7.4/Keys/Model-DeletedKeyBundle.json index 3a888e9074..8348b18c0c 100644 --- a/api-definitions/data-plane/KeyVault/7.4/Keys/Model-DeletedKeyBundle.json +++ b/api-definitions/data-plane/KeyVault/7.4/Keys/Model-DeletedKeyBundle.json @@ -38,7 +38,7 @@ "objectDefinition": { "type": "Reference", "nullable": false, - "referenceName": "JsonWebKey", + "referenceName": "JSONWebKey", "referenceNameIsCommonType": null }, "optional": true, diff --git a/api-definitions/data-plane/KeyVault/7.4/Keys/Model-JsonWebKey.json b/api-definitions/data-plane/KeyVault/7.4/Keys/Model-JsonWebKey.json index cf91620e28..886e823bec 100644 --- a/api-definitions/data-plane/KeyVault/7.4/Keys/Model-JsonWebKey.json +++ b/api-definitions/data-plane/KeyVault/7.4/Keys/Model-JsonWebKey.json @@ -1,5 +1,5 @@ { - "name": "JsonWebKey", + "name": "JSONWebKey", "fields": [ { "containsDiscriminatedTypeValue": false, diff --git a/api-definitions/data-plane/KeyVault/7.4/Keys/Model-KeyBundle.json b/api-definitions/data-plane/KeyVault/7.4/Keys/Model-KeyBundle.json index 0c1344d97c..e1c2fef171 100644 --- a/api-definitions/data-plane/KeyVault/7.4/Keys/Model-KeyBundle.json +++ b/api-definitions/data-plane/KeyVault/7.4/Keys/Model-KeyBundle.json @@ -23,7 +23,7 @@ "objectDefinition": { "type": "Reference", "nullable": false, - "referenceName": "JsonWebKey", + "referenceName": "JSONWebKey", "referenceNameIsCommonType": null }, "optional": true, diff --git a/api-definitions/data-plane/KeyVault/7.4/Keys/Model-KeyImportParameters.json b/api-definitions/data-plane/KeyVault/7.4/Keys/Model-KeyImportParameters.json index 97afe9408d..22296d12fe 100644 --- a/api-definitions/data-plane/KeyVault/7.4/Keys/Model-KeyImportParameters.json +++ b/api-definitions/data-plane/KeyVault/7.4/Keys/Model-KeyImportParameters.json @@ -38,7 +38,7 @@ "objectDefinition": { "type": "Reference", "nullable": false, - "referenceName": "JsonWebKey", + "referenceName": "JSONWebKey", "referenceNameIsCommonType": null }, "optional": false, diff --git a/api-definitions/data-plane/KeyVault/7.5-preview.1/DeletedKeys/Model-DeletedKeyBundle.json b/api-definitions/data-plane/KeyVault/7.5-preview.1/DeletedKeys/Model-DeletedKeyBundle.json index 3a888e9074..8348b18c0c 100644 --- a/api-definitions/data-plane/KeyVault/7.5-preview.1/DeletedKeys/Model-DeletedKeyBundle.json +++ b/api-definitions/data-plane/KeyVault/7.5-preview.1/DeletedKeys/Model-DeletedKeyBundle.json @@ -38,7 +38,7 @@ "objectDefinition": { "type": "Reference", "nullable": false, - "referenceName": "JsonWebKey", + "referenceName": "JSONWebKey", "referenceNameIsCommonType": null }, "optional": true, diff --git a/api-definitions/data-plane/KeyVault/7.5-preview.1/DeletedKeys/Model-JsonWebKey.json b/api-definitions/data-plane/KeyVault/7.5-preview.1/DeletedKeys/Model-JsonWebKey.json index cf91620e28..886e823bec 100644 --- a/api-definitions/data-plane/KeyVault/7.5-preview.1/DeletedKeys/Model-JsonWebKey.json +++ b/api-definitions/data-plane/KeyVault/7.5-preview.1/DeletedKeys/Model-JsonWebKey.json @@ -1,5 +1,5 @@ { - "name": "JsonWebKey", + "name": "JSONWebKey", "fields": [ { "containsDiscriminatedTypeValue": false, diff --git a/api-definitions/data-plane/KeyVault/7.5-preview.1/DeletedKeys/Model-KeyBundle.json b/api-definitions/data-plane/KeyVault/7.5-preview.1/DeletedKeys/Model-KeyBundle.json index 0c1344d97c..e1c2fef171 100644 --- a/api-definitions/data-plane/KeyVault/7.5-preview.1/DeletedKeys/Model-KeyBundle.json +++ b/api-definitions/data-plane/KeyVault/7.5-preview.1/DeletedKeys/Model-KeyBundle.json @@ -23,7 +23,7 @@ "objectDefinition": { "type": "Reference", "nullable": false, - "referenceName": "JsonWebKey", + "referenceName": "JSONWebKey", "referenceNameIsCommonType": null }, "optional": true, diff --git a/api-definitions/data-plane/KeyVault/7.5-preview.1/Keys/Model-DeletedKeyBundle.json b/api-definitions/data-plane/KeyVault/7.5-preview.1/Keys/Model-DeletedKeyBundle.json index 3a888e9074..8348b18c0c 100644 --- a/api-definitions/data-plane/KeyVault/7.5-preview.1/Keys/Model-DeletedKeyBundle.json +++ b/api-definitions/data-plane/KeyVault/7.5-preview.1/Keys/Model-DeletedKeyBundle.json @@ -38,7 +38,7 @@ "objectDefinition": { "type": "Reference", "nullable": false, - "referenceName": "JsonWebKey", + "referenceName": "JSONWebKey", "referenceNameIsCommonType": null }, "optional": true, diff --git a/api-definitions/data-plane/KeyVault/7.5-preview.1/Keys/Model-JsonWebKey.json b/api-definitions/data-plane/KeyVault/7.5-preview.1/Keys/Model-JsonWebKey.json index cf91620e28..886e823bec 100644 --- a/api-definitions/data-plane/KeyVault/7.5-preview.1/Keys/Model-JsonWebKey.json +++ b/api-definitions/data-plane/KeyVault/7.5-preview.1/Keys/Model-JsonWebKey.json @@ -1,5 +1,5 @@ { - "name": "JsonWebKey", + "name": "JSONWebKey", "fields": [ { "containsDiscriminatedTypeValue": false, diff --git a/api-definitions/data-plane/KeyVault/7.5-preview.1/Keys/Model-KeyBundle.json b/api-definitions/data-plane/KeyVault/7.5-preview.1/Keys/Model-KeyBundle.json index 0c1344d97c..e1c2fef171 100644 --- a/api-definitions/data-plane/KeyVault/7.5-preview.1/Keys/Model-KeyBundle.json +++ b/api-definitions/data-plane/KeyVault/7.5-preview.1/Keys/Model-KeyBundle.json @@ -23,7 +23,7 @@ "objectDefinition": { "type": "Reference", "nullable": false, - "referenceName": "JsonWebKey", + "referenceName": "JSONWebKey", "referenceNameIsCommonType": null }, "optional": true, diff --git a/api-definitions/data-plane/KeyVault/7.5-preview.1/Keys/Model-KeyImportParameters.json b/api-definitions/data-plane/KeyVault/7.5-preview.1/Keys/Model-KeyImportParameters.json index 97afe9408d..22296d12fe 100644 --- a/api-definitions/data-plane/KeyVault/7.5-preview.1/Keys/Model-KeyImportParameters.json +++ b/api-definitions/data-plane/KeyVault/7.5-preview.1/Keys/Model-KeyImportParameters.json @@ -38,7 +38,7 @@ "objectDefinition": { "type": "Reference", "nullable": false, - "referenceName": "JsonWebKey", + "referenceName": "JSONWebKey", "referenceNameIsCommonType": null }, "optional": false, diff --git a/api-definitions/data-plane/Synapse/2019-06-01-preview/ApiVersionDefinition.json b/api-definitions/data-plane/Synapse/2019-06-01-preview/ApiVersionDefinition.json index 4d6e3c704e..fb7211d7bc 100644 --- a/api-definitions/data-plane/Synapse/2019-06-01-preview/ApiVersionDefinition.json +++ b/api-definitions/data-plane/Synapse/2019-06-01-preview/ApiVersionDefinition.json @@ -7,7 +7,6 @@ "BigDataPools", "DataFlowDebugSession", "DataFlows", - "Dataflows", "Datasets", "IntegrationRuntimes", "Library", diff --git a/api-definitions/data-plane/Synapse/2019-06-01-preview/Triggers/Model-RerunTumblingWindowTrigger.json b/api-definitions/data-plane/Synapse/2019-06-01-preview/Triggers/Model-RerunTumblingWindowTrigger.json index cf359b6da1..dc39fee657 100644 --- a/api-definitions/data-plane/Synapse/2019-06-01-preview/Triggers/Model-RerunTumblingWindowTrigger.json +++ b/api-definitions/data-plane/Synapse/2019-06-01-preview/Triggers/Model-RerunTumblingWindowTrigger.json @@ -19,6 +19,6 @@ ], "IsParent": false, "discriminatedParentModelName": "Trigger", - "discriminatedTypeValue": "RerunTumblingWindowTrigger", + "discriminatedTypeValue": "rerunTumblingWindowTrigger", "typeHintIn": "Type" } \ No newline at end of file diff --git a/api-definitions/data-plane/Synapse/2021-06-01-preview/ApiVersionDefinition.json b/api-definitions/data-plane/Synapse/2021-06-01-preview/ApiVersionDefinition.json index a5e7436cc3..6273a905b4 100644 --- a/api-definitions/data-plane/Synapse/2021-06-01-preview/ApiVersionDefinition.json +++ b/api-definitions/data-plane/Synapse/2021-06-01-preview/ApiVersionDefinition.json @@ -7,7 +7,6 @@ "BigDataPools", "DataFlowDebugSession", "DataFlows", - "Dataflows", "Datasets", "IntegrationRuntimes", "KqlScripts", diff --git a/api-definitions/data-plane/Synapse/2021-06-01-preview/Trigger/Model-RerunTumblingWindowTrigger.json b/api-definitions/data-plane/Synapse/2021-06-01-preview/Trigger/Model-RerunTumblingWindowTrigger.json index cf359b6da1..dc39fee657 100644 --- a/api-definitions/data-plane/Synapse/2021-06-01-preview/Trigger/Model-RerunTumblingWindowTrigger.json +++ b/api-definitions/data-plane/Synapse/2021-06-01-preview/Trigger/Model-RerunTumblingWindowTrigger.json @@ -19,6 +19,6 @@ ], "IsParent": false, "discriminatedParentModelName": "Trigger", - "discriminatedTypeValue": "RerunTumblingWindowTrigger", + "discriminatedTypeValue": "rerunTumblingWindowTrigger", "typeHintIn": "Type" } \ No newline at end of file diff --git a/api-definitions/data-plane/metadata.json b/api-definitions/data-plane/metadata.json index e0a400c114..38ca751983 100644 --- a/api-definitions/data-plane/metadata.json +++ b/api-definitions/data-plane/metadata.json @@ -1,5 +1,5 @@ { "dataSource": "AzureDataPlane", "sourceInformation": "Azure/azure-rest-api-specs", - "gitRevision": "a8e6c4ff7db46ccff3a666f52d78f13cc7d3905f" + "gitRevision": "96e89b58d95282fc014f19db8e0d41d4d8608838" } \ No newline at end of file diff --git a/tools/data-api-differ/go.mod b/tools/data-api-differ/go.mod index 024d3636ce..0355337ca1 100644 --- a/tools/data-api-differ/go.mod +++ b/tools/data-api-differ/go.mod @@ -3,7 +3,7 @@ module github.com/hashicorp/pandora/tools/data-api-differ go 1.25.5 require ( - github.com/hashicorp/go-azure-helpers v0.76.1 + github.com/hashicorp/go-azure-helpers v0.76.2 github.com/hashicorp/go-hclog v1.6.3 github.com/hashicorp/pandora/tools/data-api-sdk v0.0.0-00010101000000-000000000000 github.com/hashicorp/pandora/tools/sdk v0.0.0-00010101000000-000000000000 diff --git a/tools/data-api-differ/go.sum b/tools/data-api-differ/go.sum index 7e80818319..e22c446385 100644 --- a/tools/data-api-differ/go.sum +++ b/tools/data-api-differ/go.sum @@ -21,8 +21,8 @@ github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+ github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-azure-helpers v0.76.1 h1:uIUbUx+I+cZNeFr72JXdltXW9mcLxH52gdkho1qIOtc= -github.com/hashicorp/go-azure-helpers v0.76.1/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= +github.com/hashicorp/go-azure-helpers v0.76.2 h1:59isOIbH9GQky32/yReufDWEyb+k8y4wL33FKlMj6zA= +github.com/hashicorp/go-azure-helpers v0.76.2/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k= diff --git a/tools/data-api-repository/go.mod b/tools/data-api-repository/go.mod index b18d162dca..9d36ee2f3d 100644 --- a/tools/data-api-repository/go.mod +++ b/tools/data-api-repository/go.mod @@ -3,7 +3,7 @@ module github.com/hashicorp/pandora/tools/data-api-repository go 1.25.5 require ( - github.com/hashicorp/go-azure-helpers v0.76.1 + github.com/hashicorp/go-azure-helpers v0.76.2 github.com/hashicorp/go-hclog v1.6.3 github.com/hashicorp/pandora/tools/data-api-sdk v0.0.0-00010101000000-000000000000 ) diff --git a/tools/data-api-repository/go.sum b/tools/data-api-repository/go.sum index 586556f35b..9e8e070896 100644 --- a/tools/data-api-repository/go.sum +++ b/tools/data-api-repository/go.sum @@ -4,8 +4,8 @@ github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= github.com/fatih/color v1.18.0 h1:S8gINlzdQ840/4pfAwic/ZE0djQEH3wM94VfqLTZcOM= github.com/fatih/color v1.18.0/go.mod h1:4FelSpRwEGDpQ12mAdzqdOukCy4u8WUtOY6lkT/6HfU= -github.com/hashicorp/go-azure-helpers v0.76.1 h1:uIUbUx+I+cZNeFr72JXdltXW9mcLxH52gdkho1qIOtc= -github.com/hashicorp/go-azure-helpers v0.76.1/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= +github.com/hashicorp/go-azure-helpers v0.76.2 h1:59isOIbH9GQky32/yReufDWEyb+k8y4wL33FKlMj6zA= +github.com/hashicorp/go-azure-helpers v0.76.2/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k= github.com/hashicorp/go-hclog v1.6.3/go.mod h1:W4Qnvbt70Wk/zYJryRzDRU/4r0kIg0PVHBcfoyhpF5M= github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= diff --git a/tools/data-api-sdk/go.mod b/tools/data-api-sdk/go.mod index 626d693e9d..770c360f81 100644 --- a/tools/data-api-sdk/go.mod +++ b/tools/data-api-sdk/go.mod @@ -3,7 +3,7 @@ module github.com/hashicorp/pandora/tools/data-api-sdk go 1.25.5 require ( - github.com/hashicorp/go-azure-helpers v0.76.1 + github.com/hashicorp/go-azure-helpers v0.76.2 github.com/hashicorp/go-hclog v1.6.3 github.com/hashicorp/go-retryablehttp v0.7.8 ) diff --git a/tools/data-api-sdk/go.sum b/tools/data-api-sdk/go.sum index b042924664..5538dd3908 100644 --- a/tools/data-api-sdk/go.sum +++ b/tools/data-api-sdk/go.sum @@ -4,8 +4,8 @@ github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= github.com/fatih/color v1.18.0 h1:S8gINlzdQ840/4pfAwic/ZE0djQEH3wM94VfqLTZcOM= github.com/fatih/color v1.18.0/go.mod h1:4FelSpRwEGDpQ12mAdzqdOukCy4u8WUtOY6lkT/6HfU= -github.com/hashicorp/go-azure-helpers v0.76.1 h1:uIUbUx+I+cZNeFr72JXdltXW9mcLxH52gdkho1qIOtc= -github.com/hashicorp/go-azure-helpers v0.76.1/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= +github.com/hashicorp/go-azure-helpers v0.76.2 h1:59isOIbH9GQky32/yReufDWEyb+k8y4wL33FKlMj6zA= +github.com/hashicorp/go-azure-helpers v0.76.2/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k= diff --git a/tools/data-api/go.mod b/tools/data-api/go.mod index 97abb47c31..5af95ce378 100644 --- a/tools/data-api/go.mod +++ b/tools/data-api/go.mod @@ -5,7 +5,7 @@ go 1.25.5 require ( github.com/go-chi/chi/v5 v5.2.2 github.com/go-chi/render v1.0.2 - github.com/hashicorp/go-azure-helpers v0.76.1 + github.com/hashicorp/go-azure-helpers v0.76.2 github.com/hashicorp/go-hclog v1.6.3 github.com/hashicorp/pandora/tools/data-api-repository v0.0.0-00010101000000-000000000000 github.com/hashicorp/pandora/tools/data-api-sdk v0.0.0-00010101000000-000000000000 diff --git a/tools/data-api/go.sum b/tools/data-api/go.sum index 5f17774957..1006942556 100644 --- a/tools/data-api/go.sum +++ b/tools/data-api/go.sum @@ -27,8 +27,8 @@ github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+ github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-azure-helpers v0.76.1 h1:uIUbUx+I+cZNeFr72JXdltXW9mcLxH52gdkho1qIOtc= -github.com/hashicorp/go-azure-helpers v0.76.1/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= +github.com/hashicorp/go-azure-helpers v0.76.2 h1:59isOIbH9GQky32/yReufDWEyb+k8y4wL33FKlMj6zA= +github.com/hashicorp/go-azure-helpers v0.76.2/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k= diff --git a/tools/generator-go-sdk/go.mod b/tools/generator-go-sdk/go.mod index 92ed670c84..c7a5f585b3 100644 --- a/tools/generator-go-sdk/go.mod +++ b/tools/generator-go-sdk/go.mod @@ -3,7 +3,7 @@ module github.com/hashicorp/pandora/tools/generator-go-sdk go 1.25.5 require ( - github.com/hashicorp/go-azure-helpers v0.76.1 + github.com/hashicorp/go-azure-helpers v0.76.2 github.com/hashicorp/go-hclog v1.6.3 github.com/hashicorp/pandora/tools/data-api-sdk v0.0.0-00010101000000-000000000000 github.com/mitchellh/cli v1.1.5 diff --git a/tools/generator-go-sdk/go.sum b/tools/generator-go-sdk/go.sum index 7e80818319..e22c446385 100644 --- a/tools/generator-go-sdk/go.sum +++ b/tools/generator-go-sdk/go.sum @@ -21,8 +21,8 @@ github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+ github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-azure-helpers v0.76.1 h1:uIUbUx+I+cZNeFr72JXdltXW9mcLxH52gdkho1qIOtc= -github.com/hashicorp/go-azure-helpers v0.76.1/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= +github.com/hashicorp/go-azure-helpers v0.76.2 h1:59isOIbH9GQky32/yReufDWEyb+k8y4wL33FKlMj6zA= +github.com/hashicorp/go-azure-helpers v0.76.2/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k= diff --git a/tools/generator-terraform/go.mod b/tools/generator-terraform/go.mod index 5afc8020c3..1a94fa9578 100644 --- a/tools/generator-terraform/go.mod +++ b/tools/generator-terraform/go.mod @@ -3,7 +3,7 @@ module github.com/hashicorp/pandora/tools/generator-terraform go 1.25.5 require ( - github.com/hashicorp/go-azure-helpers v0.76.1 + github.com/hashicorp/go-azure-helpers v0.76.2 github.com/hashicorp/go-hclog v1.6.3 github.com/hashicorp/pandora/tools/data-api-sdk v0.0.0-00010101000000-000000000000 github.com/hashicorp/pandora/tools/sdk v0.0.0-00010101000000-000000000000 diff --git a/tools/generator-terraform/go.sum b/tools/generator-terraform/go.sum index b9de49fe13..92f8edfd58 100644 --- a/tools/generator-terraform/go.sum +++ b/tools/generator-terraform/go.sum @@ -22,8 +22,8 @@ github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+ github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-azure-helpers v0.76.1 h1:uIUbUx+I+cZNeFr72JXdltXW9mcLxH52gdkho1qIOtc= -github.com/hashicorp/go-azure-helpers v0.76.1/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= +github.com/hashicorp/go-azure-helpers v0.76.2 h1:59isOIbH9GQky32/yReufDWEyb+k8y4wL33FKlMj6zA= +github.com/hashicorp/go-azure-helpers v0.76.2/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k= diff --git a/tools/importer-msgraph-metadata/go.mod b/tools/importer-msgraph-metadata/go.mod index e6b1988e6b..6962bc527c 100644 --- a/tools/importer-msgraph-metadata/go.mod +++ b/tools/importer-msgraph-metadata/go.mod @@ -7,7 +7,7 @@ require ( github.com/gertd/go-pluralize v0.2.1 github.com/getkin/kin-openapi v0.132.0 github.com/go-git/go-git/v5 v5.13.0 - github.com/hashicorp/go-azure-helpers v0.76.1 + github.com/hashicorp/go-azure-helpers v0.76.2 github.com/hashicorp/go-hclog v1.6.3 github.com/hashicorp/pandora/tools/data-api-repository v0.0.0-00010101000000-000000000000 github.com/hashicorp/pandora/tools/data-api-sdk v0.0.0-00010101000000-000000000000 diff --git a/tools/importer-msgraph-metadata/go.sum b/tools/importer-msgraph-metadata/go.sum index 815d4e37e9..39a05d7fde 100644 --- a/tools/importer-msgraph-metadata/go.sum +++ b/tools/importer-msgraph-metadata/go.sum @@ -68,8 +68,8 @@ github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+ github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-azure-helpers v0.76.1 h1:uIUbUx+I+cZNeFr72JXdltXW9mcLxH52gdkho1qIOtc= -github.com/hashicorp/go-azure-helpers v0.76.1/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= +github.com/hashicorp/go-azure-helpers v0.76.2 h1:59isOIbH9GQky32/yReufDWEyb+k8y4wL33FKlMj6zA= +github.com/hashicorp/go-azure-helpers v0.76.2/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k= github.com/hashicorp/go-hclog v1.6.3/go.mod h1:W4Qnvbt70Wk/zYJryRzDRU/4r0kIg0PVHBcfoyhpF5M= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= diff --git a/tools/importer-rest-api-specs/go.mod b/tools/importer-rest-api-specs/go.mod index c76458983e..315bbc1bde 100644 --- a/tools/importer-rest-api-specs/go.mod +++ b/tools/importer-rest-api-specs/go.mod @@ -9,7 +9,7 @@ require ( github.com/go-openapi/analysis v0.20.1 github.com/go-openapi/loads v0.20.2 github.com/go-openapi/spec v0.20.3 - github.com/hashicorp/go-azure-helpers v0.76.1 + github.com/hashicorp/go-azure-helpers v0.76.2 github.com/hashicorp/go-hclog v1.6.3 github.com/hashicorp/hcl/v2 v2.24.0 github.com/hashicorp/pandora/tools/data-api-repository v0.0.0-00010101000000-000000000000 diff --git a/tools/importer-rest-api-specs/go.sum b/tools/importer-rest-api-specs/go.sum index b47d8f9a8f..c7f1c4e933 100644 --- a/tools/importer-rest-api-specs/go.sum +++ b/tools/importer-rest-api-specs/go.sum @@ -196,8 +196,8 @@ github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+ github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-azure-helpers v0.76.1 h1:uIUbUx+I+cZNeFr72JXdltXW9mcLxH52gdkho1qIOtc= -github.com/hashicorp/go-azure-helpers v0.76.1/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= +github.com/hashicorp/go-azure-helpers v0.76.2 h1:59isOIbH9GQky32/yReufDWEyb+k8y4wL33FKlMj6zA= +github.com/hashicorp/go-azure-helpers v0.76.2/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k= github.com/hashicorp/go-hclog v1.6.3/go.mod h1:W4Qnvbt70Wk/zYJryRzDRU/4r0kIg0PVHBcfoyhpF5M= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= diff --git a/tools/importer-rest-api-specs/internal/components/apidefinitions/parser/cleanup/normalize_api_definitions.go b/tools/importer-rest-api-specs/internal/components/apidefinitions/parser/cleanup/normalize_api_definitions.go index 95ca0ab9c2..d350e88ffc 100644 --- a/tools/importer-rest-api-specs/internal/components/apidefinitions/parser/cleanup/normalize_api_definitions.go +++ b/tools/importer-rest-api-specs/internal/components/apidefinitions/parser/cleanup/normalize_api_definitions.go @@ -45,6 +45,7 @@ func NormalizeTag(input string) string { output = strings.ReplaceAll(output, "Baremetalinfrastructure", "BareMetalInfrastructure") output = strings.ReplaceAll(output, "virtualWans", "VirtualWANs") output = strings.ReplaceAll(output, "VirtualWans", "VirtualWANs") + output = strings.ReplaceAll(output, "Dataflows", "DataFlows") // typo tag in Synapse Data Plane (all versions) return output } diff --git a/tools/importer-rest-api-specs/internal/components/apidefinitions/parser/cleanup/to_sort.go b/tools/importer-rest-api-specs/internal/components/apidefinitions/parser/cleanup/to_sort.go index 5c8a49b44b..ab773b18e3 100644 --- a/tools/importer-rest-api-specs/internal/components/apidefinitions/parser/cleanup/to_sort.go +++ b/tools/importer-rest-api-specs/internal/components/apidefinitions/parser/cleanup/to_sort.go @@ -481,6 +481,10 @@ func NormalizeCanonicalisation(input string) string { output = "VirtualWAN" } + if strings.EqualFold(output, "jsonwebkey") { + output = "JSONWebKey" + } + // intentionally case-sensitive output = strings.ReplaceAll(output, "Ip", "IP") output = strings.ReplaceAll(output, "Vmss", "VMSS") diff --git a/tools/wrapper-automation/go.mod b/tools/wrapper-automation/go.mod index 16205f3597..ed284df452 100644 --- a/tools/wrapper-automation/go.mod +++ b/tools/wrapper-automation/go.mod @@ -3,7 +3,7 @@ module github.com/hashicorp/pandora/tools/wrapper-automation go 1.25.5 require ( - github.com/hashicorp/go-azure-helpers v0.76.1 + github.com/hashicorp/go-azure-helpers v0.76.2 github.com/hashicorp/go-hclog v1.6.3 github.com/hashicorp/pandora/tools/data-api-sdk v0.0.0-00010101000000-000000000000 github.com/mitchellh/cli v1.1.5 diff --git a/tools/wrapper-automation/go.sum b/tools/wrapper-automation/go.sum index f44d54b5d7..e507fe46ec 100644 --- a/tools/wrapper-automation/go.sum +++ b/tools/wrapper-automation/go.sum @@ -29,8 +29,8 @@ github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+ github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-azure-helpers v0.76.1 h1:uIUbUx+I+cZNeFr72JXdltXW9mcLxH52gdkho1qIOtc= -github.com/hashicorp/go-azure-helpers v0.76.1/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= +github.com/hashicorp/go-azure-helpers v0.76.2 h1:59isOIbH9GQky32/yReufDWEyb+k8y4wL33FKlMj6zA= +github.com/hashicorp/go-azure-helpers v0.76.2/go.mod h1:K+woaDnRuEg2qyg8pWMLeYhIcH7QAcUGLFlBHoF/WhA= github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k=