Skip to content

Removes GraphConnectorNotificationPlugin. Closes #1155 #1157

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
195 changes: 0 additions & 195 deletions dev-proxy-plugins/Mocks/GraphConnectorNotificationPlugin.cs

This file was deleted.

34 changes: 34 additions & 0 deletions schemas/v0.28.0/apicenterminimalpermissionsplugin.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Dev Proxy ApiCenterMinimalPermissionsPlugin config schema",
"type": "object",
"properties": {
"$schema": {
"type": "string",
"description": "The JSON schema reference for validation."
},
"resourceGroupName": {
"type": "string",
"description": "Name of the resource group where the Azure API Center is located."
},
"serviceName": {
"type": "string",
"description": "Name of the Azure API Center instance that Dev Proxy should use to check if the APIs used in the app are registered."
},
"subscriptionId": {
"type": "string",
"description": "ID of the Azure subscription where the Azure API Center instance is located."
},
"workspace": {
"type": "string",
"description": "Name of the Azure API Center workspace to use. Default is 'default'.",
"default": "default"
}
},
"required": [
"resourceGroupName",
"serviceName",
"subscriptionId"
],
"additionalProperties": false
}
37 changes: 37 additions & 0 deletions schemas/v0.28.0/apicenteronboardingplugin.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Dev Proxy ApiCenterOnboardingPlugin config schema",
"type": "object",
"properties": {
"$schema": {
"type": "string",
"description": "The JSON schema reference for validation."
},
"createApicEntryForNewApis": {
"type": "boolean",
"description": "Set to true to have Dev Proxy create new API entries for APIs detected but not yet registered in API Center. When false, Dev Proxy only lists unregistered APIs. Default is true."
},
"resourceGroupName": {
"type": "string",
"description": "Name of the resource group where the Azure API Center is located."
},
"serviceName": {
"type": "string",
"description": "Name of the Azure API Center instance that Dev Proxy should use to check if the APIs used in the app are registered."
},
"subscriptionId": {
"type": "string",
"description": "ID of the Azure subscription where the Azure API Center instance is located."
},
"workspace": {
"type": "string",
"description": "Name of the Azure API Center workspace to use. Default is 'default'."
}
},
"required": [
"resourceGroupName",
"serviceName",
"subscriptionId"
],
"additionalProperties": false
}
33 changes: 33 additions & 0 deletions schemas/v0.28.0/apicenterproductionversionplugin.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Dev Proxy ApiCenterProductionVersionPlugin config schema",
"type": "object",
"properties": {
"$schema": {
"type": "string",
"description": "The JSON schema reference for validation."
},
"resourceGroupName": {
"type": "string",
"description": "Name of the resource group where the Azure API Center is located."
},
"serviceName": {
"type": "string",
"description": "Name of the Azure API Center instance that Dev Proxy should use to check if the APIs used in the app are registered."
},
"subscriptionId": {
"type": "string",
"description": "ID of the Azure subscription where the Azure API Center instance is located."
},
"workspace": {
"type": "string",
"description": "Name of the Azure API Center workspace to use. Default is 'default'."
}
},
"required": [
"resourceGroupName",
"serviceName",
"subscriptionId"
],
"additionalProperties": false
}
Loading