Remove mockjs from dependencies (#1024)

* remove mockerJS usage mockForPattern
* add a specification which includes a 'pattern' into the examplegenerator test case set
This commit is contained in:
Scott Beddall 2024-01-29 14:42:21 -08:00 коммит произвёл GitHub
Родитель 8d1b55c745
Коммит cfd51d250a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
177 изменённых файлов: 11397 добавлений и 3205 удалений

Просмотреть файл

@ -57,21 +57,13 @@ export default class Mocker {
}
const minLength = "minLength" in paramSpec ? paramSpec.minLength : 1;
const maxLength = "maxLength" in paramSpec ? paramSpec.maxLength : minLength * 30;
// NOTE: hard to handle minLength/maxLength and regular expressions at the same time. Length limit should be set by regex.
// If the mocked value fails to meet the constraints, error info will be logged and empty string will return.
if ("pattern" in paramSpec) {
const Mock = require("mockjs");
return this.mockForPattern(
Mock,
paramSpec.pattern,
paramSpec.minLength,
paramSpec.maxLength,
paramName
);
}
const length = this.getRandomInt(minLength, maxLength);
let mockedValue = randomString(length);
if ("pattern" in paramSpec) {
return `Replace this value with a string matching RegExp ${paramSpec.pattern}`;
}
if (paramSpec.format === "uri") {
const prefix = "https://microsoft.com/a";
mockedValue = prefix + mockedValue.slice(prefix.length);
@ -80,23 +72,6 @@ export default class Mocker {
return mockedValue;
}
// Note: complex regular expression may produce wrong value,
// e.g. "^(?![0-9]+$)(?!-)[a-zA-Z0-9-]{2,49}[a-zA-Z0-9]$", this is caused by the lib mockjs
private mockForPattern(
Mock: any,
pattern: string,
_minLength: any,
_maxLength: any,
_paramName: string
) {
for (let i = 0; i < 10; i++) {
const { data } = Mock.mock({
data: new RegExp(pattern),
});
return data;
}
}
private generateInteger(paramSpec: any) {
const min = "minimum" in paramSpec ? paramSpec.minimum : 1;
const max = "maximum" in paramSpec ? paramSpec.maximum : min * 30;

4273
package-lock.json сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "oav",
"version": "3.3.1",
"version": "3.3.2",
"author": {
"name": "Microsoft Corporation",
"email": "azsdkteam@microsoft.com",
@ -33,7 +33,6 @@
"lodash": "^4.17.21",
"md5-file": "^5.0.0",
"mkdirp": "^1.0.4",
"mockjs": "^1.1.0",
"moment": "^2.29.3",
"ms-rest": "^2.5.6",
"mustache": "^4.2.0",

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -0,0 +1,19 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"nameAvailabilityRequest": {
"name": "existingaccountname",
"type": "Microsoft.AgFoodPlatform/farmBeats"
}
},
"responses": {
"200": {
"body": {
"nameAvailable": false,
"reason": "AlreadyExists",
"message": "An account named 'existingaccountname' is already in use."
}
}
}
}

Просмотреть файл

@ -0,0 +1,17 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"nameAvailabilityRequest": {
"name": "newaccountname",
"type": "Microsoft.AgFoodPlatform/farmBeats"
}
},
"responses": {
"200": {
"body": {
"nameAvailable": true
}
}
}
}

Просмотреть файл

@ -0,0 +1,67 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-dataManagerForAgricultureResourceName",
"dataConnectorName": "WeatherIBM",
"body": {
"properties": {
"credentials": {
"kind": "ApiKeyAuthCredentials",
"apiKey": {
"keyVaultUri": "https://testKeyVault.vault.azure.net/",
"keyName": "abcApiKey",
"keyVersion": "239c0475c7d44f20b0fc27d3fe90a41d"
}
}
}
}
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/ff57165d-e71f-4a0e-8e9b-3cd461dc0f38/resourceGroups/bugbash-instances-westus2/providers/Microsoft.AgFoodPlatform/farmBeats/bb-df-wus2-1/dataConnectors/WeatherIBM",
"type": "Microsoft.AgFoodPlatform/farmBeats/dataConnectors",
"properties": {
"credentials": {
"kind": "OAuthClientCredentials",
"clientId": "string",
"clientSecret": {
"keyVaultUri": "string",
"keyName": "string",
"keyVersion": "string"
}
}
}
}
},
"201": {
"body": {
"id": "/subscriptions/ff57165d-e71f-4a0e-8e9b-3cd461dc0f38/resourceGroups/bugbash-instances-westus2/providers/Microsoft.AgFoodPlatform/farmBeats/bb-df-wus2-1/dataConnectors/SatelliteSentinelHub",
"type": "Microsoft.AgFoodPlatform/farmBeats/dataConnectors",
"properties": {
"credentials": {
"kind": "OAuthClientCredentials",
"clientId": "string",
"clientSecret": {
"keyVaultUri": "string",
"keyName": "string",
"keyVersion": "string"
}
}
},
"systemData": {
"createdBy": "string",
"createdByType": "User",
"createdAt": "2020-02-01T01:01:01.1075056Z",
"lastModifiedBy": "string",
"lastModifiedByType": "User",
"lastModifiedAt": "2020-02-01T01:01:02.1075056Z"
},
"eTag": "7200b954-0000-0700-0000-603cbbc40000",
"name": "SatelliteSentinelHub"
}
}
}
}

Просмотреть файл

@ -0,0 +1,19 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-dataManagerForAgricultureResourceName",
"dataConnectorName": "SatelliteSentinelHub"
},
"responses": {
"200": {},
"204": {},
"400": {
"error": {
"code": "ConnectorConfigurationInvalid",
"message": "Connector name not supported. Supported connectors are 'SatelliteSentinelHub' and 'WeatherIBM'."
}
}
}
}

Просмотреть файл

@ -0,0 +1,38 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-dataManagerForAgricultureResourceName",
"dataConnectorName": "SatelliteSentinelHub"
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/ff57165d-e71f-4a0e-8e9b-3cd461dc0f38/resourceGroups/bugbash-instances-westus2/providers/Microsoft.AgFoodPlatform/farmBeats/bb-df-wus2-1/dataConnectors/SatelliteSentinelHub",
"type": "Microsoft.AgFoodPlatform/farmBeats/dataConnectors",
"properties": {
"credentials": {
"kind": "OAuthClientCredentials",
"clientId": "string",
"clientSecret": {
"keyVaultUri": "string",
"keyName": "string",
"keyVersion": "string"
}
}
},
"systemData": {
"createdBy": "string",
"createdByType": "User",
"createdAt": "2020-02-01T01:01:01.1075056Z",
"lastModifiedBy": "string",
"lastModifiedByType": "User",
"lastModifiedAt": "2020-02-01T01:01:02.1075056Z"
},
"eTag": "7200b954-0000-0700-0000-603cbbc40000",
"name": "SatelliteSentinelHub"
}
}
}
}

Просмотреть файл

@ -0,0 +1,67 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-dataManagerForAgricultureResourceName",
"dataConnectorName": "WeatherIBM"
},
"responses": {
"200": {
"body": {
"value": [
{
"id": "/subscriptions/ff57165d-e71f-4a0e-8e9b-3cd461dc0f38/resourceGroups/bugbash-instances-westus2/providers/Microsoft.AgFoodPlatform/farmBeats/bb-df-wus2-1/dataConnectors/SatelliteSentinelHub",
"type": "Microsoft.AgFoodPlatform/farmBeats/dataConnectors",
"properties": {
"credentials": {
"kind": "OAuthClientCredentials",
"clientId": "string",
"clientSecret": {
"keyVaultUri": "string",
"keyName": "string",
"keyVersion": "string"
}
}
},
"systemData": {
"createdBy": "string",
"createdByType": "User",
"createdAt": "2020-02-01T01:01:01.1075056Z",
"lastModifiedBy": "string",
"lastModifiedByType": "User",
"lastModifiedAt": "2020-02-01T01:01:02.1075056Z"
},
"eTag": "7200b954-0000-0700-0000-603cbbc40000",
"name": "SatelliteSentinelHub"
},
{
"id": "/subscriptions/ff57165d-e71f-4a0e-8e9b-3cd461dc0f38/resourceGroups/bugbash-instances-westus2/providers/Microsoft.AgFoodPlatform/farmBeats/bb-df-wus2-1/dataConnectors/WeatherIBM",
"type": "Microsoft.AgFoodPlatform/farmBeats/dataConnectors",
"properties": {
"credentials": {
"kind": "ApiKeyAuthCredentials",
"apiKey": {
"keyVaultUri": "string",
"keyName": "string",
"keyVersion": "string"
}
}
},
"systemData": {
"createdBy": "string",
"createdByType": "User",
"createdAt": "2020-02-01T01:01:01.1075056Z",
"lastModifiedBy": "string",
"lastModifiedByType": "User",
"lastModifiedAt": "2020-02-01T01:01:02.1075056Z"
},
"eTag": "7200b954-0000-0700-0000-603cbbc40000",
"name": "WeatherIBM"
}
],
"nextLink": "string"
}
}
}
}

Просмотреть файл

@ -0,0 +1,243 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"dataManagerForAgricultureExtensionId": "DTN.ContentServices"
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeatsExtensionDefinitions/DTN.ContentServices",
"type": "Microsoft.AgFoodPlatform/farmBeatsExtensionDefinitions",
"systemData": {
"createdAt": "2021-04-12T15:28:06Z",
"lastModifiedAt": "2021-04-12T15:30:01Z"
},
"properties": {
"targetResourceType": "FarmBeats",
"farmBeatsExtensionId": "DTN.ContentServices",
"farmBeatsExtensionName": "DTN",
"farmBeatsExtensionVersion": "1.0",
"publisherId": "dtn",
"extensionCategory": "Weather",
"extensionAuthLink": "https://www.dtn.com/dtn-content-integration/",
"extensionApiDocsLink": "https://cs-docs.dtn.com/api/weather-observations-and-forecasts-rest-api/",
"detailedInformation": [
{
"apiName": "GetDailyObservations",
"customParameters": [
"stationId",
"stationLatitude",
"stationLongitude",
"timeZone",
"sunrise",
"sunset",
"weatherCode",
"weatherDescription",
"maxTemperature",
"minTemperature",
"avgHeatIndex",
"maxHeatIndex",
"minHeatIndex",
"maxWindChill",
"minWindChill",
"maxFeelsLike",
"minFeelsLike",
"avgFeelsLike",
"maxWindSpeed",
"avgWetBulbGlobeTemp",
"maxWetBulbGlobeTemp",
"minWetBulbGlobeTemp",
"minutesOfSunshine",
"cornHeatUnit",
"evapotranspiration"
],
"platformParameters": [
"cloudCover",
"dewPoint",
"growingDegreeDay",
"precipitation",
"pressure",
"relativeHumidity",
"temperature",
"wetBulbTemperature",
"dateTime",
"windChill",
"windSpeed",
"windDirection"
],
"unitsSupported": {
"key": "units",
"values": [
"us",
"si"
]
},
"apiInputParameters": [
"stationId",
"lat",
"lon",
"days",
"units",
"precision",
"sector"
]
},
{
"apiName": "GetHourlyObservations",
"customParameters": [
"stationId",
"stationLatitude",
"stationLongitude",
"timeZone",
"weatherCode",
"weatherDescription",
"feelsLike",
"visibilityWeatherCode",
"visibilityWeatherDescription",
"minutesOfSunshine"
],
"platformParameters": [
"cloudCover",
"dewPoint",
"precipitation",
"pressure",
"relativeHumidity",
"temperature",
"wetBulbTemperature",
"dateTime",
"visibility",
"windChill",
"windSpeed",
"windDirection",
"windGust"
],
"unitsSupported": {
"key": "units",
"values": [
"us",
"si"
]
},
"apiInputParameters": [
"stationId",
"lat",
"lon",
"hours",
"units",
"precision",
"sector"
]
},
{
"apiName": "GetHourlyForecasts",
"customParameters": [
"stationId",
"stationLatitude",
"stationLongitude",
"timeZone",
"weatherCode",
"weatherDescription",
"feelsLike",
"visibilityWeatherCode",
"visibilityWeatherDescription",
"minutesOfSunshine"
],
"platformParameters": [
"cloudCover",
"dewPoint",
"precipitation",
"pressure",
"relativeHumidity",
"temperature",
"wetBulbTemperature",
"dateTime",
"visibility",
"windChill",
"windSpeed",
"windDirection",
"windGust"
],
"unitsSupported": {
"key": "units",
"values": [
"us",
"si"
]
},
"apiInputParameters": [
"stationId",
"lat",
"lon",
"days",
"units",
"precision",
"sector"
]
},
{
"apiName": "GetDailyForecasts",
"customParameters": [
"stationId",
"stationLatitude",
"stationLongitude",
"timeZone",
"sunrise",
"sunset",
"weatherCode",
"weatherDescription",
"maxTemperature",
"minTemperature",
"avgHeatIndex",
"maxHeatIndex",
"minHeatIndex",
"maxWindChill",
"minWindChill",
"maxFeelsLike",
"minFeelsLike",
"avgFeelsLike",
"maxWindSpeed",
"avgWetBulbGlobeTemp",
"maxWetBulbGlobeTemp",
"minWetBulbGlobeTemp",
"minutesOfSunshine",
"cornHeatUnit",
"evapotranspiration"
],
"platformParameters": [
"cloudCover",
"dewPoint",
"growingDegreeDay",
"precipitation",
"pressure",
"relativeHumidity",
"temperature",
"wetBulbTemperature",
"dateTime",
"windChill",
"windSpeed",
"windDirection"
],
"unitsSupported": {
"key": "units",
"values": [
"us",
"si"
]
},
"apiInputParameters": [
"stationId",
"lat",
"lon",
"days",
"units",
"precision",
"sector"
]
}
]
},
"name": "DTN.ContentServices"
}
}
}
}

Просмотреть файл

@ -0,0 +1,248 @@
{
"parameters": {
"api-version": "2023-06-01-preview"
},
"responses": {
"200": {
"headers": {},
"body": {
"value": [
{
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeatsExtensionDefinitions/DTN.ContentServices",
"type": "Microsoft.AgFoodPlatform/farmBeatsExtensionDefinitions",
"systemData": {
"createdAt": "2021-04-12T15:28:06Z",
"lastModifiedAt": "2021-04-12T15:30:01Z"
},
"properties": {
"targetResourceType": "FarmBeats",
"farmBeatsExtensionId": "DTN.ContentServices",
"farmBeatsExtensionName": "DTN",
"farmBeatsExtensionVersion": "1.0",
"publisherId": "dtn",
"extensionCategory": "Weather",
"extensionAuthLink": "https://www.dtn.com/dtn-content-integration/",
"extensionApiDocsLink": "https://cs-docs.dtn.com/api/weather-observations-and-forecasts-rest-api/",
"detailedInformation": [
{
"apiName": "GetDailyObservations",
"customParameters": [
"stationId",
"stationLatitude",
"stationLongitude",
"timeZone",
"sunrise",
"sunset",
"weatherCode",
"weatherDescription",
"maxTemperature",
"minTemperature",
"avgHeatIndex",
"maxHeatIndex",
"minHeatIndex",
"maxWindChill",
"minWindChill",
"maxFeelsLike",
"minFeelsLike",
"avgFeelsLike",
"maxWindSpeed",
"avgWetBulbGlobeTemp",
"maxWetBulbGlobeTemp",
"minWetBulbGlobeTemp",
"minutesOfSunshine",
"cornHeatUnit",
"evapotranspiration"
],
"platformParameters": [
"cloudCover",
"dewPoint",
"growingDegreeDay",
"precipitation",
"pressure",
"relativeHumidity",
"temperature",
"wetBulbTemperature",
"dateTime",
"windChill",
"windSpeed",
"windDirection"
],
"unitsSupported": {
"key": "units",
"values": [
"us",
"si"
]
},
"apiInputParameters": [
"stationId",
"lat",
"lon",
"days",
"units",
"precision",
"sector"
]
},
{
"apiName": "GetHourlyObservations",
"customParameters": [
"stationId",
"stationLatitude",
"stationLongitude",
"timeZone",
"weatherCode",
"weatherDescription",
"feelsLike",
"visibilityWeatherCode",
"visibilityWeatherDescription",
"minutesOfSunshine"
],
"platformParameters": [
"cloudCover",
"dewPoint",
"precipitation",
"pressure",
"relativeHumidity",
"temperature",
"wetBulbTemperature",
"dateTime",
"visibility",
"windChill",
"windSpeed",
"windDirection",
"windGust"
],
"unitsSupported": {
"key": "units",
"values": [
"us",
"si"
]
},
"apiInputParameters": [
"stationId",
"lat",
"lon",
"hours",
"units",
"precision",
"sector"
]
},
{
"apiName": "GetHourlyForecasts",
"customParameters": [
"stationId",
"stationLatitude",
"stationLongitude",
"timeZone",
"weatherCode",
"weatherDescription",
"feelsLike",
"visibilityWeatherCode",
"visibilityWeatherDescription",
"minutesOfSunshine"
],
"platformParameters": [
"cloudCover",
"dewPoint",
"precipitation",
"pressure",
"relativeHumidity",
"temperature",
"wetBulbTemperature",
"dateTime",
"visibility",
"windChill",
"windSpeed",
"windDirection",
"windGust"
],
"unitsSupported": {
"key": "units",
"values": [
"us",
"si"
]
},
"apiInputParameters": [
"stationId",
"lat",
"lon",
"days",
"units",
"precision",
"sector"
]
},
{
"apiName": "GetDailyForecasts",
"customParameters": [
"stationId",
"stationLatitude",
"stationLongitude",
"timeZone",
"sunrise",
"sunset",
"weatherCode",
"weatherDescription",
"maxTemperature",
"minTemperature",
"avgHeatIndex",
"maxHeatIndex",
"minHeatIndex",
"maxWindChill",
"minWindChill",
"maxFeelsLike",
"minFeelsLike",
"avgFeelsLike",
"maxWindSpeed",
"avgWetBulbGlobeTemp",
"maxWetBulbGlobeTemp",
"minWetBulbGlobeTemp",
"minutesOfSunshine",
"cornHeatUnit",
"evapotranspiration"
],
"platformParameters": [
"cloudCover",
"dewPoint",
"growingDegreeDay",
"precipitation",
"pressure",
"relativeHumidity",
"temperature",
"wetBulbTemperature",
"dateTime",
"windChill",
"windSpeed",
"windDirection"
],
"unitsSupported": {
"key": "units",
"values": [
"us",
"si"
]
},
"apiInputParameters": [
"stationId",
"lat",
"lon",
"days",
"units",
"precision",
"sector"
]
}
]
},
"name": "DTN.ContentServices"
}
],
"nextLink": "string"
}
}
}
}

Просмотреть файл

@ -0,0 +1,65 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-farmbeatsResourceName",
"request": {
"location": "eastus2",
"tags": {
"key1": "value1",
"key2": "value2"
}
}
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeats/examples-farmbeatsResourceName",
"name": "examples-farmbeatsResourceName",
"type": "Microsoft.AgFoodPlatform/farmBeats",
"location": "eastus2",
"tags": {
"key1": "value1",
"key2": "value2"
},
"systemData": {
"createdBy": "string",
"createdByType": "User",
"createdAt": "2020-02-01T01:01:01.1075056Z",
"lastModifiedBy": "string",
"lastModifiedByType": "User",
"lastModifiedAt": "2020-02-01T01:01:01.1075056Z"
},
"properties": {
"instanceUri": "https://examples-farmbeatsResourceName.eastus2.farmbeats.azure.net",
"provisioningState": "Succeeded"
}
}
},
"201": {
"body": {
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeats/examples-farmbeatsResourceName",
"name": "examples-farmbeatsResourceName",
"type": "Microsoft.AgFoodPlatform/farmBeats",
"location": "eastus2",
"tags": {
"key1": "value1",
"key2": "value2"
},
"systemData": {
"createdBy": "string",
"createdByType": "User",
"createdAt": "2020-02-01T01:01:01.1075056Z",
"lastModifiedBy": "string",
"lastModifiedByType": "User",
"lastModifiedAt": "2020-02-01T01:01:01.1075056Z"
},
"properties": {
"instanceUri": "https://examples-farmbeatsResourceName.eastus2.farmbeats.azure.net",
"provisioningState": "Failed"
}
}
}
}
}

Просмотреть файл

@ -0,0 +1,12 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-dataManagerForAgricultureResourceName"
},
"responses": {
"200": {},
"204": {}
}
}

Просмотреть файл

@ -0,0 +1,34 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-farmBeatsResourceName"
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeats/examples-farmbeatsResourceName",
"name": "examples-farmBeatsResourceName",
"type": "Microsoft.AgFoodPlatform/farmBeats",
"location": "eastus2",
"tags": {
"key1": "value1",
"key2": "value2"
},
"systemData": {
"createdBy": "string",
"createdByType": "User",
"createdAt": "2020-02-01T01:01:01.1075056Z",
"lastModifiedBy": "string",
"lastModifiedByType": "User",
"lastModifiedAt": "2020-02-01T01:01:01.1075056Z"
},
"properties": {
"instanceUri": "https://examples-farmbeatsResourceName.eastus2.farmbeats.azure.net",
"provisioningState": "Succeeded"
}
}
}
}
}

Просмотреть файл

@ -0,0 +1,38 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg"
},
"responses": {
"200": {
"headers": {},
"body": {
"value": [
{
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeats/examples-farmbeatsResourceName",
"name": "examples-farmBeatsResourceName",
"type": "Microsoft.AgFoodPlatform/farmBeats",
"location": "eastus2",
"tags": {
"key1": "value1",
"key2": "value2"
},
"systemData": {
"createdBy": "string",
"createdByType": "User",
"createdAt": "2020-02-01T01:01:01.1075056Z",
"lastModifiedBy": "string",
"lastModifiedByType": "User",
"lastModifiedAt": "2020-02-01T01:01:01.1075056Z"
},
"properties": {
"instanceUri": "https://examples-farmbeatsResourceName.eastus2.farmbeats.azure.net",
"provisioningState": "Succeeded"
}
}
]
}
}
}
}

Просмотреть файл

@ -0,0 +1,37 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555"
},
"responses": {
"200": {
"headers": {},
"body": {
"value": [
{
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeats/examples-farmbeatsResourceName",
"name": "examples-farmBeatsResourceName",
"type": "Microsoft.AgFoodPlatform/farmBeats",
"location": "eastus2",
"tags": {
"key1": "value1",
"key2": "value2"
},
"systemData": {
"createdBy": "string",
"createdByType": "User",
"createdAt": "2020-02-01T01:01:01.1075056Z",
"lastModifiedBy": "string",
"lastModifiedByType": "User",
"lastModifiedAt": "2020-02-01T01:01:01.1075056Z"
},
"properties": {
"instanceUri": "https://examples-farmbeatsResourceName.eastus2.farmbeats.azure.net",
"provisioningState": "Succeeded"
}
}
]
}
}
}
}

Просмотреть файл

@ -0,0 +1,67 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-farmBeatsResourceName",
"request": {
"tags": {
"key1": "value1",
"key2": "value2"
}
}
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeats/examples-farmbeatsResourceName",
"name": "examples-farmBeatsResourceName",
"type": "Microsoft.AgFoodPlatform/farmBeats",
"location": "eastus2",
"tags": {
"key1": "value1",
"key2": "value2"
},
"systemData": {
"createdBy": "string",
"createdByType": "User",
"createdAt": "2020-02-01T01:01:01.1075056Z",
"lastModifiedBy": "string",
"lastModifiedByType": "User",
"lastModifiedAt": "2020-02-01T01:01:01.1075056Z"
},
"properties": {
"instanceUri": "https://examples-farmbeatsResourceName.eastus2.farmbeats.azure.net",
"provisioningState": "Succeeded"
}
}
},
"202": {
"headers": {
"location": "http://azure.async.operation/status"
},
"body": {
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeats/examples-farmbeatsResourceName",
"name": "examples-farmBeatsResourceName",
"type": "Microsoft.AgFoodPlatform/farmBeats",
"location": "eastus2",
"tags": {
"key1": "value1",
"key2": "value2"
},
"systemData": {
"createdBy": "string",
"createdByType": "User",
"createdAt": "2020-02-01T01:01:01.1075056Z",
"lastModifiedBy": "string",
"lastModifiedByType": "User",
"lastModifiedAt": "2020-02-01T01:01:01.1075056Z"
},
"properties": {
"instanceUri": "https://examples-farmbeatsResourceName.eastus2.farmbeats.azure.net",
"provisioningState": "Succeeded"
}
}
}
}
}

Просмотреть файл

@ -0,0 +1,46 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-dataManagerForAgricultureResourceName",
"extensionId": "provider.extension",
"body": {
"extensionVersion": "1.0",
"apiProperties": {
"examples-api": {
"apiFreshnessTimeInMinutes": 3600
}
}
}
},
"responses": {
"201": {
"body": {
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeats/examples-dataManagerForAgricultureResourceName/extensions/provider.extension",
"name": "provider.extension",
"type": "Microsoft.AgFoodPlatform/farmBeats/extensions",
"systemData": {
"createdBy": "string",
"createdByType": "User",
"createdAt": "2020-02-01T01:01:01.1075056Z",
"lastModifiedBy": "string",
"lastModifiedByType": "User",
"lastModifiedAt": "2020-02-01T01:01:02.1075056Z"
},
"eTag": "7200b954-0000-0700-0000-603cbbc40000",
"properties": {
"extensionCategory": "Weather",
"installedExtensionVersion": "1.0",
"extensionAuthLink": "https://www.provider.com/extension/",
"extensionApiDocsLink": "https://docs.provider.com/documentation/extension",
"additionalApiProperties": {
"examples-api": {
"apiFreshnessTimeInMinutes": 3600
}
}
}
}
}
}
}

Просмотреть файл

@ -0,0 +1,13 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-farmbeatsResourceName",
"extensionId": "provider.extension"
},
"responses": {
"200": {},
"204": {}
}
}

Просмотреть файл

@ -0,0 +1,38 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-farmbeatsResourceName",
"extensionId": "provider.extension"
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeats/examples-farmbeatsResourceName/extensions/provider.extension",
"name": "provider.extension",
"type": "Microsoft.AgFoodPlatform/farmBeats/extensions",
"systemData": {
"createdBy": "string",
"createdByType": "User",
"createdAt": "2020-02-01T01:01:01.1075056Z",
"lastModifiedBy": "string",
"lastModifiedByType": "User",
"lastModifiedAt": "2020-02-01T01:01:01.1075056Z"
},
"eTag": "7200b954-0000-0700-0000-603cbbc40000",
"properties": {
"extensionCategory": "Weather",
"installedExtensionVersion": "1.0",
"extensionAuthLink": "https://www.provider.com/extension/",
"extensionApiDocsLink": "https://docs.provider.com/documentation/extension",
"additionalApiProperties": {
"examples-api": {
"apiFreshnessTimeInMinutes": 3600
}
}
}
}
}
}
}

Просмотреть файл

@ -0,0 +1,37 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-farmbeatsResourceName"
},
"responses": {
"200": {
"headers": {},
"body": {
"value": [
{
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeats/examples-farmbeatsResourceName/extensions/provider.extension",
"name": "provider.extension",
"type": "Microsoft.AgFoodPlatform/farmBeats/extensions",
"systemData": {
"createdBy": "string",
"createdByType": "User",
"createdAt": "2020-02-01T01:01:01.1075056Z",
"lastModifiedBy": "string",
"lastModifiedByType": "User",
"lastModifiedAt": "2020-02-01T01:01:01.1075056Z"
},
"eTag": "7200b954-0000-0700-0000-603cbbc40000",
"properties": {
"extensionCategory": "Weather",
"installedExtensionVersion": "1.0",
"extensionAuthLink": "https://www.provider.com/extension/",
"extensionApiDocsLink": "https://docs.provider.com/documentation/extension"
}
}
]
}
}
}
}

Просмотреть файл

@ -0,0 +1,19 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"locations": "westus",
"operationResultsId": "resource-provisioning-id-farmBeatsResourceName"
},
"responses": {
"200": {
"body": {
"status": "Failed",
"error": {
"code": "BadArgument",
"message": "The provided database 'foo' has an invalid username."
}
}
}
}
}

Просмотреть файл

@ -0,0 +1,94 @@
{
"parameters": {
"api-version": "2023-06-01-preview"
},
"responses": {
"200": {
"body": {
"value": [
{
"name": "Microsoft.AgFoodPlatform/farmBeats/read",
"isDataAction": false,
"display": {
"provider": "Microsoft AgFoodPlatform",
"resource": "AgFoodPlatform FarmBeats",
"operation": "Get or List AgFoodPlatform FarmBeats resource(s).",
"description": "Gets or Lists existing AgFoodPlatform FarmBeats resource(s)."
}
},
{
"name": "Microsoft.AgFoodPlatform/farmBeats/write",
"isDataAction": false,
"display": {
"provider": "Microsoft AgFoodPlatform",
"resource": "AgFoodPlatform FarmBeats",
"operation": "Create or Update AgFoodPlatform FarmBeats.",
"description": "Creates or Updates AgFoodPlatform FarmBeats."
}
},
{
"name": "Microsoft.AgFoodPlatform/farmBeats/delete",
"isDataAction": false,
"display": {
"provider": "Microsoft AgFoodPlatform",
"resource": "AgFoodPlatform FarmBeats",
"operation": "Delete AgFoodPlatform FarmBeats resource.",
"description": "Deletes an existing AgFoodPlatform FarmBeats resource."
}
},
{
"name": "Microsoft.AgFoodPlatform/locations/checkNameAvailability/action",
"isDataAction": false,
"display": {
"provider": "Microsoft AgFoodPlatform",
"resource": "Locations",
"operation": "Check Name Availability",
"description": "Checks that resource name is valid and is not in use."
}
},
{
"name": "Microsoft.AgFoodPlatform/operations/read",
"isDataAction": false,
"display": {
"provider": "Microsoft AgFoodPlatform",
"resource": "List all operations in Microsoft AgFoodPlatform resource provider.",
"operation": "List all operations.",
"description": "List all operations in Microsoft AgFoodPlatform resource provider."
}
},
{
"name": "Microsoft.AgFoodPlatform/farmBeats/extensions/read",
"isDataAction": false,
"display": {
"provider": "Microsoft AgFoodPlatform",
"resource": "AgFoodPlatform Extensions",
"operation": "Get or List AgFoodPlatform Extensions resource(s).",
"description": "Gets or Lists existing AgFoodPlatform Extensions resource(s)."
}
},
{
"name": "Microsoft.AgFoodPlatform/farmBeats/extensions/write",
"isDataAction": false,
"display": {
"provider": "Microsoft AgFoodPlatform",
"resource": "AgFoodPlatform Extensions",
"operation": "Create or Update AgFoodPlatform Extensions.",
"description": "Creates or Updates AgFoodPlatform Extensions."
}
},
{
"name": "Microsoft.AgFoodPlatform/farmBeats/extensions/delete",
"isDataAction": false,
"display": {
"provider": "Microsoft AgFoodPlatform",
"resource": "AgFoodPlatform Extensions",
"operation": "Delete AgFoodPlatform Extensions resource.",
"description": "Deletes an existing AgFoodPlatform Extensions resource."
}
}
],
"nextLink": "https://management.azure.com/providers/Microsoft.AgFoodPlatform/operations"
}
}
}
}

Просмотреть файл

@ -0,0 +1,57 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-farmbeatsResourceName",
"privateEndpointConnectionName": "privateEndpointConnectionName",
"request": {
"properties": {
"privateLinkServiceConnectionState": {
"status": "Approved",
"description": "Approved by johndoe@contoso.com"
}
}
}
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeats/examples-farmbeatsResourceName/privateEndpointConnections/privateEndpointConnectionName",
"name": "privateEndpointConnectionName",
"type": "Microsoft.AgFoodPlatform/farmBeats/privateEndpointConnections",
"properties": {
"privateEndpoint": {
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/rg1Network/providers/Microsoft.Network/privateEndpoints/privateEndpointName"
},
"privateLinkServiceConnectionState": {
"status": "Approved",
"description": "Approved by johndoe@contoso.com",
"actionsRequired": "None"
},
"provisioningState": "Succeeded"
}
}
},
"400": {
"body": {
"error": {
"code": "ModelValidationFailed",
"message": "Request input validation failed.",
"details": [
{
"code": "ModelValidationFailed",
"message": "The Payload field is required.",
"target": "Payload"
},
{
"code": "ModelValidationFailed",
"message": "Error converting value \"InvalidStatus\" to type 'PrivateEndpointState'. Path 'properties.privateLinkServiceConnectionState.status', line 1, position 624. Refer path description for more information.",
"target": "Payload.properties.privateLinkServiceConnectionState.status"
}
]
}
}
}
}
}

Просмотреть файл

@ -0,0 +1,18 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-farmbeatsResourceName",
"privateEndpointConnectionName": "privateEndpointConnectionName"
},
"responses": {
"200": {},
"202": {
"headers": {
"Location": "http://azure.async.operation/status"
}
},
"204": {}
}
}

Просмотреть файл

@ -0,0 +1,37 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-farmbeatsResourceName",
"privateEndpointConnectionName": "privateEndpointConnectionName"
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeats/examples-farmbeatsResourceName/privateEndpointConnections/privateEndpointConnectionName",
"name": "privateEndpointConnectionName",
"type": "Microsoft.AgFoodPlatform/farmBeats/privateEndpointConnections",
"properties": {
"privateEndpoint": {
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/rg1Network/providers/Microsoft.Network/privateEndpoints/privateEndpointName"
},
"privateLinkServiceConnectionState": {
"status": "Approved",
"description": "Approved by johndoe@contoso.com",
"actionsRequired": "None"
},
"provisioningState": "Succeeded"
}
}
},
"404": {
"body": {
"error": {
"code": "PrivateEndpointConnectionNotFound",
"message": "Private endpoint connection resource 'privateEndpointConnectionName' for subscriptionId '11111111-2222-3333-4444-555555555555', resource group name 'examples-rg', resource type 'farmBeats' and resource name 'examples-farmbeatsResourceName' not found."
}
}
}
}
}

Просмотреть файл

@ -0,0 +1,48 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-farmbeatsResourceName"
},
"responses": {
"200": {
"body": {
"value": [
{
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeats/examples-farmbeatsResourceName/privateEndpointConnections/privateEndpointConnectionName",
"name": "privateEndpointConnectionName",
"type": "Microsoft.AgFoodPlatform/farmBeats/privateEndpointConnections",
"properties": {
"privateEndpoint": {
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/rg1Network/providers/Microsoft.Network/privateEndpoints/privateEndpointName"
},
"privateLinkServiceConnectionState": {
"status": "Approved",
"description": "Approved by johndoe@contoso.com",
"actionsRequired": "None"
},
"provisioningState": "Succeeded"
}
},
{
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeats/examples-farmbeatsResourceName/privateEndpointConnections/privateEndpointConnectionName2",
"name": "privateEndpointConnectionName2",
"type": "Microsoft.AgFoodPlatform/farmBeats/privateEndpointConnections",
"properties": {
"privateEndpoint": {
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/rg1Network/providers/Microsoft.Network/privateEndpoints/privateEndpointName2"
},
"privateLinkServiceConnectionState": {
"status": "Approved",
"description": "Approved by johndoe@contoso.com",
"actionsRequired": "None"
},
"provisioningState": "Succeeded"
}
}
]
}
}
}
}

Просмотреть файл

@ -0,0 +1,35 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-farmbeatsResourceName",
"subResourceName": "farmbeats"
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeats/examples-farmbeatsResourceName",
"name": "farmbeats",
"type": "Microsoft.AgFoodPlatform/farmBeats/privateLinkResources",
"properties": {
"groupId": "farmbeats",
"requiredMembers": [
"farmbeats"
],
"requiredZoneNames": [
"privatelink.farmbeats.azure.net"
]
}
}
},
"404": {
"body": {
"error": {
"code": "ResourceNotFound",
"message": "Resource with subscriptionId '11111111-2222-3333-4444-555555555555', resource group 'examples-rg' and resourcename 'examples-farmbeatsResourceName' not found."
}
}
}
}
}

Просмотреть файл

@ -0,0 +1,30 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-farmbeatsResourceName"
},
"responses": {
"200": {
"body": {
"value": [
{
"id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/providers/Microsoft.AgFoodPlatform/farmBeats/examples-farmbeatsResourceName",
"name": "farmbeats",
"type": "Microsoft.AgFoodPlatform/farmBeats/privateLinkResources",
"properties": {
"groupId": "farmbeats",
"requiredMembers": [
"farmbeats"
],
"requiredZoneNames": [
"privatelink.farmbeats.azure.net"
]
}
}
]
}
}
}
}

Просмотреть файл

@ -0,0 +1,774 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"dataManagerForAgricultureSolutionId": "bayerAgPowered.gdu"
},
"responses": {
"200": {
"headers": {},
"body": {
"id": "/providers/Microsoft.AgFoodPlatform/farmBeatsSolutionDefinitions/bayerAgPowered.gdu",
"type": "Microsoft.AgFoodPlatform/farmBeatsSolutionDefinitions",
"systemData": {
"createdAt": "2022-07-25T10:15:15Z",
"lastModifiedAt": "2022-07-25T10:15:15Z"
},
"properties": {
"partnerId": "abc",
"partnerTenantId": "556b0c04-d33e-48d0-9f6f-f893c8c77e00",
"marketplaceOfferDetails": {
"saasOfferId": "saasOfferId",
"publisherId": "publisherId"
},
"dataAccessScopes": [
"Weather",
"Scenes"
],
"openApiSpecsDictionary": {
"v1": {
"paths": {
"/v1/resources/{resourceId}": {
"get": {
"tags": [
"Weather"
],
"description": "Get weather ingestion job.",
"operationId": "Weather_GetDataIngestionJobDetails",
"produces": [
"application/json"
],
"parameters": [
{
"in": "path",
"name": "resourceId",
"description": "Id of the job.",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "api-version",
"description": "The requested API version",
"required": true,
"type": "string",
"default": "2021-07-31-preview"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"description": "Schema of weather ingestion job.",
"required": [
"boundaryId",
"extensionApiInput",
"extensionApiName",
"extensionId",
"farmerId"
],
"type": "object",
"properties": {
"boundaryId": {
"description": "The id of the boundary object for which weather data is being fetched.",
"type": "string"
},
"farmerId": {
"description": "The id of the farmer object for which weather data is being fetched.",
"type": "string"
},
"extensionId": {
"description": "Id of the extension to be used for the providerInput. eg. DTN.ClearAg.",
"maxLength": 100,
"minLength": 2,
"pattern": "^[a-zA-Z]{3,50}[.][a-zA-Z]{3,100}$",
"type": "string"
},
"extensionApiName": {
"description": "Extension api name to which request is to be made.",
"maxLength": 100,
"minLength": 2,
"type": "string"
},
"extensionApiInput": {
"description": "Extension api input dictionary which would be used to feed request query/body/parameter information.",
"type": "object",
"additionalProperties": {
"type": "object"
}
},
"extensionDataProviderAppId": {
"description": "App id of the weather data provider.",
"maxLength": 200,
"minLength": 2,
"type": "string"
},
"extensionDataProviderApiKey": {
"description": "Api key of the weather data provider.",
"maxLength": 200,
"minLength": 2,
"type": "string"
},
"id": {
"description": "Unique job id.",
"type": "string",
"readOnly": true
},
"status": {
"description": "Status of the job.\r\nPossible values: 'Waiting', 'Running', 'Succeeded', 'Failed', 'Cancelled'.",
"type": "string",
"readOnly": true
},
"durationInSeconds": {
"format": "double",
"description": "Duration of the job in seconds.",
"type": "number",
"readOnly": true
},
"message": {
"description": "Status message to capture more details of the job.",
"type": "string",
"readOnly": true
},
"createdDateTime": {
"format": "date-time",
"description": "Job created at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"lastActionDateTime": {
"format": "date-time",
"description": "Job was last acted upon at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"startTime": {
"format": "date-time",
"description": "Job start time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"endTime": {
"format": "date-time",
"description": "Job end time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"name": {
"description": "Name to identify resource.",
"maxLength": 100,
"minLength": 0,
"type": "string"
},
"description": {
"description": "Textual description of the resource.",
"maxLength": 500,
"minLength": 0,
"type": "string"
},
"properties": {
"description": "A collection of key value pairs that belongs to the resource.\r\nEach pair must not have a key greater than 50 characters\r\nand must not have a value greater than 150 characters.\r\nNote: A maximum of 25 key value pairs can be provided for a resource and only string,\r\nnumeral and datetime (yyyy-MM-ddTHH:mm:ssZ) values are supported.",
"type": "object",
"additionalProperties": {
"type": "object"
},
"example": {
"key1": "value1",
"key2": 123.45
}
}
},
"additionalProperties": {}
}
},
"default": {
"description": "Error",
"schema": {
"description": "An error response from the Azure AgPlatform service.\r\n<see href=\"https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses\">ErrorResponse reference document.</see>.",
"type": "object",
"properties": {
"error": {
"description": "An error from the Azure AgPlatform service.",
"type": "object",
"properties": {
"code": {
"description": "Server-defined set of error codes.",
"type": "string"
},
"message": {
"description": "Human-readable representation of the error.",
"type": "string"
},
"target": {
"description": "Target of the error.",
"type": "string"
},
"details": {
"description": "Array of details about specific errors that led to this reported error.",
"type": "array"
}
}
},
"traceId": {
"description": "Unique trace Id.",
"type": "string"
}
}
}
}
}
},
"put": {
"tags": [
"Weather"
],
"description": "Create a weather data ingestion job.",
"operationId": "Weather_CreateDataIngestionJob",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "path",
"name": "resourceId",
"description": "Job id supplied by user.",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "api-version",
"description": "The requested API version",
"required": true,
"type": "string",
"default": "2021-07-31-preview"
},
{
"in": "body",
"name": "body",
"description": "Job parameters supplied by user.",
"schema": {
"description": "Schema of weather ingestion job.",
"required": [
"boundaryId",
"extensionApiInput",
"extensionApiName",
"extensionId",
"farmerId"
],
"type": "object",
"properties": {
"boundaryId": {
"description": "The id of the boundary object for which weather data is being fetched.",
"type": "string"
},
"farmerId": {
"description": "The id of the farmer object for which weather data is being fetched.",
"type": "string"
},
"extensionId": {
"description": "Id of the extension to be used for the providerInput. eg. DTN.ClearAg.",
"maxLength": 100,
"minLength": 2,
"pattern": "^[a-zA-Z]{3,50}[.][a-zA-Z]{3,100}$",
"type": "string"
},
"extensionApiName": {
"description": "Extension api name to which request is to be made.",
"maxLength": 100,
"minLength": 2,
"type": "string"
},
"extensionApiInput": {
"description": "Extension api input dictionary which would be used to feed request query/body/parameter information.",
"type": "object",
"additionalProperties": {
"type": "object"
}
},
"extensionDataProviderAppId": {
"description": "App id of the weather data provider.",
"maxLength": 200,
"minLength": 2,
"type": "string"
},
"extensionDataProviderApiKey": {
"description": "Api key of the weather data provider.",
"maxLength": 200,
"minLength": 2,
"type": "string"
},
"id": {
"description": "Unique job id.",
"type": "string",
"readOnly": true
},
"status": {
"description": "Status of the job.\r\nPossible values: 'Waiting', 'Running', 'Succeeded', 'Failed', 'Cancelled'.",
"type": "string",
"readOnly": true
},
"durationInSeconds": {
"format": "double",
"description": "Duration of the job in seconds.",
"type": "number",
"readOnly": true
},
"message": {
"description": "Status message to capture more details of the job.",
"type": "string",
"readOnly": true
},
"createdDateTime": {
"format": "date-time",
"description": "Job created at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"lastActionDateTime": {
"format": "date-time",
"description": "Job was last acted upon at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"startTime": {
"format": "date-time",
"description": "Job start time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"endTime": {
"format": "date-time",
"description": "Job end time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"name": {
"description": "Name to identify resource.",
"maxLength": 100,
"minLength": 0,
"type": "string"
},
"description": {
"description": "Textual description of the resource.",
"maxLength": 500,
"minLength": 0,
"type": "string"
},
"properties": {
"description": "A collection of key value pairs that belongs to the resource.\r\nEach pair must not have a key greater than 50 characters\r\nand must not have a value greater than 150 characters.\r\nNote: A maximum of 25 key value pairs can be provided for a resource and only string,\r\nnumeral and datetime (yyyy-MM-ddTHH:mm:ssZ) values are supported.",
"type": "object",
"additionalProperties": {
"type": "object"
},
"example": {
"key1": "value1",
"key2": 123.45
}
}
},
"additionalProperties": {}
}
}
],
"responses": {
"202": {
"description": "Success",
"schema": {
"description": "Schema of weather ingestion job.",
"required": [
"boundaryId",
"extensionApiInput",
"extensionApiName",
"extensionId",
"farmerId"
],
"type": "object",
"properties": {
"boundaryId": {
"description": "The id of the boundary object for which weather data is being fetched.",
"type": "string"
},
"farmerId": {
"description": "The id of the farmer object for which weather data is being fetched.",
"type": "string"
},
"extensionId": {
"description": "Id of the extension to be used for the providerInput. eg. DTN.ClearAg.",
"maxLength": 100,
"minLength": 2,
"pattern": "^[a-zA-Z]{3,50}[.][a-zA-Z]{3,100}$",
"type": "string"
},
"extensionApiName": {
"description": "Extension api name to which request is to be made.",
"maxLength": 100,
"minLength": 2,
"type": "string"
},
"extensionApiInput": {
"description": "Extension api input dictionary which would be used to feed request query/body/parameter information.",
"type": "object",
"additionalProperties": {
"type": "object"
}
},
"extensionDataProviderAppId": {
"description": "App id of the weather data provider.",
"maxLength": 200,
"minLength": 2,
"type": "string"
},
"extensionDataProviderApiKey": {
"description": "Api key of the weather data provider.",
"maxLength": 200,
"minLength": 2,
"type": "string"
},
"id": {
"description": "Unique job id.",
"type": "string",
"readOnly": true
},
"status": {
"description": "Status of the job.\r\nPossible values: 'Waiting', 'Running', 'Succeeded', 'Failed', 'Cancelled'.",
"type": "string",
"readOnly": true
},
"durationInSeconds": {
"format": "double",
"description": "Duration of the job in seconds.",
"type": "number",
"readOnly": true
},
"message": {
"description": "Status message to capture more details of the job.",
"type": "string",
"readOnly": true
},
"createdDateTime": {
"format": "date-time",
"description": "Job created at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"lastActionDateTime": {
"format": "date-time",
"description": "Job was last acted upon at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"startTime": {
"format": "date-time",
"description": "Job start time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"endTime": {
"format": "date-time",
"description": "Job end time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"name": {
"description": "Name to identify resource.",
"maxLength": 100,
"minLength": 0,
"type": "string"
},
"description": {
"description": "Textual description of the resource.",
"maxLength": 500,
"minLength": 0,
"type": "string"
},
"properties": {
"description": "A collection of key value pairs that belongs to the resource.\r\nEach pair must not have a key greater than 50 characters\r\nand must not have a value greater than 150 characters.\r\nNote: A maximum of 25 key value pairs can be provided for a resource and only string,\r\nnumeral and datetime (yyyy-MM-ddTHH:mm:ssZ) values are supported.",
"type": "object",
"additionalProperties": {
"type": "object"
},
"example": {
"key1": "value1",
"key2": 123.45
}
}
},
"additionalProperties": {}
}
},
"default": {
"description": "Error",
"schema": {
"description": "An error response from the Azure AgPlatform service.\r\n<see href=\"https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses\">ErrorResponse reference document.</see>.",
"type": "object",
"properties": {
"error": {
"description": "An error from the Azure AgPlatform service.",
"type": "object",
"properties": {
"code": {
"description": "Server-defined set of error codes.",
"type": "string"
},
"message": {
"description": "Human-readable representation of the error.",
"type": "string"
},
"target": {
"description": "Target of the error.",
"type": "string"
},
"details": {
"description": "Array of details about specific errors that led to this reported error.",
"type": "array"
}
}
},
"traceId": {
"description": "Unique trace Id.",
"type": "string"
}
}
}
}
},
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "location"
}
}
}
},
"basePath": "/",
"definitions": {
"WeatherDataIngestionJob": {
"description": "Schema of weather ingestion job.",
"required": [
"boundaryId",
"extensionApiInput",
"extensionApiName",
"extensionId",
"farmerId"
],
"type": "object",
"properties": {
"boundaryId": {
"description": "The id of the boundary object for which weather data is being fetched.",
"type": "string"
},
"farmerId": {
"description": "The id of the farmer object for which weather data is being fetched.",
"type": "string"
},
"extensionId": {
"description": "Id of the extension to be used for the providerInput. eg. DTN.ClearAg.",
"maxLength": 100,
"minLength": 2,
"pattern": "^[a-zA-Z]{3,50}[.][a-zA-Z]{3,100}$",
"type": "string"
},
"extensionApiName": {
"description": "Extension api name to which request is to be made.",
"maxLength": 100,
"minLength": 2,
"type": "string"
},
"extensionApiInput": {
"description": "Extension api input dictionary which would be used to feed request query/body/parameter information.",
"type": "object",
"additionalProperties": {
"type": "object"
}
},
"extensionDataProviderAppId": {
"description": "App id of the weather data provider.",
"maxLength": 200,
"minLength": 2,
"type": "string"
},
"extensionDataProviderApiKey": {
"description": "Api key of the weather data provider.",
"maxLength": 200,
"minLength": 2,
"type": "string"
},
"id": {
"description": "Unique job id.",
"type": "string",
"readOnly": true
},
"status": {
"description": "Status of the job.\r\nPossible values: 'Waiting', 'Running', 'Succeeded', 'Failed', 'Cancelled'.",
"type": "string",
"readOnly": true
},
"durationInSeconds": {
"format": "double",
"description": "Duration of the job in seconds.",
"type": "number",
"readOnly": true
},
"message": {
"description": "Status message to capture more details of the job.",
"type": "string",
"readOnly": true
},
"createdDateTime": {
"format": "date-time",
"description": "Job created at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"lastActionDateTime": {
"format": "date-time",
"description": "Job was last acted upon at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"startTime": {
"format": "date-time",
"description": "Job start time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"endTime": {
"format": "date-time",
"description": "Job end time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"name": {
"description": "Name to identify resource.",
"maxLength": 100,
"minLength": 0,
"type": "string"
},
"description": {
"description": "Textual description of the resource.",
"maxLength": 500,
"minLength": 0,
"type": "string"
},
"properties": {
"description": "A collection of key value pairs that belongs to the resource.\r\nEach pair must not have a key greater than 50 characters\r\nand must not have a value greater than 150 characters.\r\nNote: A maximum of 25 key value pairs can be provided for a resource and only string,\r\nnumeral and datetime (yyyy-MM-ddTHH:mm:ssZ) values are supported.",
"type": "object",
"additionalProperties": {
"type": "object"
},
"example": {
"key1": "value1",
"key2": 123.45
}
}
},
"additionalProperties": {}
},
"ErrorResponse": {
"description": "An error response from the Azure AgPlatform service.\r\n<see href=\"https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses\">ErrorResponse reference document.</see>.",
"type": "object",
"properties": {
"error": {
"description": "An error from the Azure AgPlatform service.",
"type": "object",
"properties": {
"code": {
"description": "Server-defined set of error codes.",
"type": "string"
},
"message": {
"description": "Human-readable representation of the error.",
"type": "string"
},
"target": {
"description": "Target of the error.",
"type": "string"
},
"details": {
"description": "Array of details about specific errors that led to this reported error.",
"type": "array"
}
}
},
"traceId": {
"description": "Unique trace Id.",
"type": "string"
}
}
},
"InnerError": {
"description": "Inner error containing list of errors.\r\n<see href=\"https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#innererror--object\">InnerError reference document</see>.",
"type": "object",
"properties": {
"code": {
"description": "Specific error code than was provided by the\r\ncontaining error.",
"type": "string"
}
},
"additionalProperties": {
"type": "object"
}
},
"Error": {
"description": "An error from the Azure AgPlatform service.",
"type": "object",
"properties": {
"code": {
"description": "Server-defined set of error codes.",
"type": "string"
},
"message": {
"description": "Human-readable representation of the error.",
"type": "string"
},
"target": {
"description": "Target of the error.",
"type": "string"
},
"details": {
"description": "Array of details about specific errors that led to this reported error.",
"type": "array"
}
}
}
},
"externalDocs": {
"description": "Find out more about Swagger",
"url": "http://swagger.io"
},
"host": "addon.azurewebsites.net",
"info": {
"contact": {
"email": "apiteam@swagger.io"
},
"description": "This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.",
"license": {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
},
"termsOfService": "http://swagger.io/terms/",
"title": "Swagger Petstore",
"version": "1.0.6"
},
"schemes": [
"https"
],
"swagger": "2.0"
}
},
"accessFBApplicationId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"accessFBApplicationName": "solution provider 1",
"saaSApplicationId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"actionIds": [
"actionId1"
],
"roleId": "role1",
"roleName": "roleName1"
},
"name": "bayerAgPowered.gdu"
}
}
}
}

Просмотреть файл

@ -0,0 +1,776 @@
{
"parameters": {
"api-version": "2023-06-01-preview"
},
"responses": {
"200": {
"headers": {},
"body": {
"value": [
{
"id": "/providers/Microsoft.AgFoodPlatform/farmBeatsSolutionDefinitions/bayerAgPowered.gdu",
"type": "Microsoft.AgFoodPlatform/farmBeatsSolutionDefinitions",
"systemData": {
"createdAt": "2022-07-25T10:15:15Z",
"lastModifiedAt": "2022-07-25T10:15:15Z"
},
"properties": {
"partnerId": "abc",
"partnerTenantId": "556b0c04-d33e-48d0-9f6f-f893c8c77e00",
"dataAccessScopes": [
"string"
],
"marketplaceOfferDetails": {
"saasOfferId": "saasOfferId",
"publisherId": "publisherId"
},
"openApiSpecsDictionary": {
"v1": {
"paths": {
"/v1/resources/{resourceId}": {
"get": {
"tags": [
"Weather"
],
"description": "Get weather ingestion job.",
"operationId": "Weather_GetDataIngestionJobDetails",
"produces": [
"application/json"
],
"parameters": [
{
"in": "path",
"name": "resourceId",
"description": "Id of the job.",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "api-version",
"description": "The requested API version",
"required": true,
"type": "string",
"default": "2021-07-31-preview"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"description": "Schema of weather ingestion job.",
"required": [
"boundaryId",
"extensionApiInput",
"extensionApiName",
"extensionId",
"farmerId"
],
"type": "object",
"properties": {
"boundaryId": {
"description": "The id of the boundary object for which weather data is being fetched.",
"type": "string"
},
"farmerId": {
"description": "The id of the farmer object for which weather data is being fetched.",
"type": "string"
},
"extensionId": {
"description": "Id of the extension to be used for the providerInput. eg. DTN.ClearAg.",
"maxLength": 100,
"minLength": 2,
"pattern": "^[a-zA-Z]{3,50}[.][a-zA-Z]{3,100}$",
"type": "string"
},
"extensionApiName": {
"description": "Extension api name to which request is to be made.",
"maxLength": 100,
"minLength": 2,
"type": "string"
},
"extensionApiInput": {
"description": "Extension api input dictionary which would be used to feed request query/body/parameter information.",
"type": "object",
"additionalProperties": {
"type": "object"
}
},
"extensionDataProviderAppId": {
"description": "App id of the weather data provider.",
"maxLength": 200,
"minLength": 2,
"type": "string"
},
"extensionDataProviderApiKey": {
"description": "Api key of the weather data provider.",
"maxLength": 200,
"minLength": 2,
"type": "string"
},
"id": {
"description": "Unique job id.",
"type": "string",
"readOnly": true
},
"status": {
"description": "Status of the job.\r\nPossible values: 'Waiting', 'Running', 'Succeeded', 'Failed', 'Cancelled'.",
"type": "string",
"readOnly": true
},
"durationInSeconds": {
"format": "double",
"description": "Duration of the job in seconds.",
"type": "number",
"readOnly": true
},
"message": {
"description": "Status message to capture more details of the job.",
"type": "string",
"readOnly": true
},
"createdDateTime": {
"format": "date-time",
"description": "Job created at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"lastActionDateTime": {
"format": "date-time",
"description": "Job was last acted upon at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"startTime": {
"format": "date-time",
"description": "Job start time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"endTime": {
"format": "date-time",
"description": "Job end time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"name": {
"description": "Name to identify resource.",
"maxLength": 100,
"minLength": 0,
"type": "string"
},
"description": {
"description": "Textual description of the resource.",
"maxLength": 500,
"minLength": 0,
"type": "string"
},
"properties": {
"description": "A collection of key value pairs that belongs to the resource.\r\nEach pair must not have a key greater than 50 characters\r\nand must not have a value greater than 150 characters.\r\nNote: A maximum of 25 key value pairs can be provided for a resource and only string,\r\nnumeral and datetime (yyyy-MM-ddTHH:mm:ssZ) values are supported.",
"type": "object",
"additionalProperties": {
"type": "object"
},
"example": {
"key1": "value1",
"key2": 123.45
}
}
},
"additionalProperties": {}
}
},
"default": {
"description": "Error",
"schema": {
"description": "An error response from the Azure AgPlatform service.\r\n<see href=\"https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses\">ErrorResponse reference document.</see>.",
"type": "object",
"properties": {
"error": {
"description": "An error from the Azure AgPlatform service.",
"type": "object",
"properties": {
"code": {
"description": "Server-defined set of error codes.",
"type": "string"
},
"message": {
"description": "Human-readable representation of the error.",
"type": "string"
},
"target": {
"description": "Target of the error.",
"type": "string"
},
"details": {
"description": "Array of details about specific errors that led to this reported error.",
"type": "array"
}
}
},
"traceId": {
"description": "Unique trace Id.",
"type": "string"
}
}
}
}
}
},
"put": {
"tags": [
"Weather"
],
"description": "Create a weather data ingestion job.",
"operationId": "Weather_CreateDataIngestionJob",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "path",
"name": "resourceId",
"description": "Job id supplied by user.",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "api-version",
"description": "The requested API version",
"required": true,
"type": "string",
"default": "2021-07-31-preview"
},
{
"in": "body",
"name": "body",
"description": "Job parameters supplied by user.",
"schema": {
"description": "Schema of weather ingestion job.",
"required": [
"boundaryId",
"extensionApiInput",
"extensionApiName",
"extensionId",
"farmerId"
],
"type": "object",
"properties": {
"boundaryId": {
"description": "The id of the boundary object for which weather data is being fetched.",
"type": "string"
},
"farmerId": {
"description": "The id of the farmer object for which weather data is being fetched.",
"type": "string"
},
"extensionId": {
"description": "Id of the extension to be used for the providerInput. eg. DTN.ClearAg.",
"maxLength": 100,
"minLength": 2,
"pattern": "^[a-zA-Z]{3,50}[.][a-zA-Z]{3,100}$",
"type": "string"
},
"extensionApiName": {
"description": "Extension api name to which request is to be made.",
"maxLength": 100,
"minLength": 2,
"type": "string"
},
"extensionApiInput": {
"description": "Extension api input dictionary which would be used to feed request query/body/parameter information.",
"type": "object",
"additionalProperties": {
"type": "object"
}
},
"extensionDataProviderAppId": {
"description": "App id of the weather data provider.",
"maxLength": 200,
"minLength": 2,
"type": "string"
},
"extensionDataProviderApiKey": {
"description": "Api key of the weather data provider.",
"maxLength": 200,
"minLength": 2,
"type": "string"
},
"id": {
"description": "Unique job id.",
"type": "string",
"readOnly": true
},
"status": {
"description": "Status of the job.\r\nPossible values: 'Waiting', 'Running', 'Succeeded', 'Failed', 'Cancelled'.",
"type": "string",
"readOnly": true
},
"durationInSeconds": {
"format": "double",
"description": "Duration of the job in seconds.",
"type": "number",
"readOnly": true
},
"message": {
"description": "Status message to capture more details of the job.",
"type": "string",
"readOnly": true
},
"createdDateTime": {
"format": "date-time",
"description": "Job created at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"lastActionDateTime": {
"format": "date-time",
"description": "Job was last acted upon at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"startTime": {
"format": "date-time",
"description": "Job start time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"endTime": {
"format": "date-time",
"description": "Job end time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"name": {
"description": "Name to identify resource.",
"maxLength": 100,
"minLength": 0,
"type": "string"
},
"description": {
"description": "Textual description of the resource.",
"maxLength": 500,
"minLength": 0,
"type": "string"
},
"properties": {
"description": "A collection of key value pairs that belongs to the resource.\r\nEach pair must not have a key greater than 50 characters\r\nand must not have a value greater than 150 characters.\r\nNote: A maximum of 25 key value pairs can be provided for a resource and only string,\r\nnumeral and datetime (yyyy-MM-ddTHH:mm:ssZ) values are supported.",
"type": "object",
"additionalProperties": {
"type": "object"
},
"example": {
"key1": "value1",
"key2": 123.45
}
}
},
"additionalProperties": {}
}
}
],
"responses": {
"202": {
"description": "Success",
"schema": {
"description": "Schema of weather ingestion job.",
"required": [
"boundaryId",
"extensionApiInput",
"extensionApiName",
"extensionId",
"farmerId"
],
"type": "object",
"properties": {
"boundaryId": {
"description": "The id of the boundary object for which weather data is being fetched.",
"type": "string"
},
"farmerId": {
"description": "The id of the farmer object for which weather data is being fetched.",
"type": "string"
},
"extensionId": {
"description": "Id of the extension to be used for the providerInput. eg. DTN.ClearAg.",
"maxLength": 100,
"minLength": 2,
"pattern": "^[a-zA-Z]{3,50}[.][a-zA-Z]{3,100}$",
"type": "string"
},
"extensionApiName": {
"description": "Extension api name to which request is to be made.",
"maxLength": 100,
"minLength": 2,
"type": "string"
},
"extensionApiInput": {
"description": "Extension api input dictionary which would be used to feed request query/body/parameter information.",
"type": "object",
"additionalProperties": {
"type": "object"
}
},
"extensionDataProviderAppId": {
"description": "App id of the weather data provider.",
"maxLength": 200,
"minLength": 2,
"type": "string"
},
"extensionDataProviderApiKey": {
"description": "Api key of the weather data provider.",
"maxLength": 200,
"minLength": 2,
"type": "string"
},
"id": {
"description": "Unique job id.",
"type": "string",
"readOnly": true
},
"status": {
"description": "Status of the job.\r\nPossible values: 'Waiting', 'Running', 'Succeeded', 'Failed', 'Cancelled'.",
"type": "string",
"readOnly": true
},
"durationInSeconds": {
"format": "double",
"description": "Duration of the job in seconds.",
"type": "number",
"readOnly": true
},
"message": {
"description": "Status message to capture more details of the job.",
"type": "string",
"readOnly": true
},
"createdDateTime": {
"format": "date-time",
"description": "Job created at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"lastActionDateTime": {
"format": "date-time",
"description": "Job was last acted upon at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"startTime": {
"format": "date-time",
"description": "Job start time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"endTime": {
"format": "date-time",
"description": "Job end time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"name": {
"description": "Name to identify resource.",
"maxLength": 100,
"minLength": 0,
"type": "string"
},
"description": {
"description": "Textual description of the resource.",
"maxLength": 500,
"minLength": 0,
"type": "string"
},
"properties": {
"description": "A collection of key value pairs that belongs to the resource.\r\nEach pair must not have a key greater than 50 characters\r\nand must not have a value greater than 150 characters.\r\nNote: A maximum of 25 key value pairs can be provided for a resource and only string,\r\nnumeral and datetime (yyyy-MM-ddTHH:mm:ssZ) values are supported.",
"type": "object",
"additionalProperties": {
"type": "object"
},
"example": {
"key1": "value1",
"key2": 123.45
}
}
},
"additionalProperties": {}
}
},
"default": {
"description": "Error",
"schema": {
"description": "An error response from the Azure AgPlatform service.\r\n<see href=\"https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses\">ErrorResponse reference document.</see>.",
"type": "object",
"properties": {
"error": {
"description": "An error from the Azure AgPlatform service.",
"type": "object",
"properties": {
"code": {
"description": "Server-defined set of error codes.",
"type": "string"
},
"message": {
"description": "Human-readable representation of the error.",
"type": "string"
},
"target": {
"description": "Target of the error.",
"type": "string"
},
"details": {
"description": "Array of details about specific errors that led to this reported error.",
"type": "array"
}
}
},
"traceId": {
"description": "Unique trace Id.",
"type": "string"
}
}
}
}
},
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "location"
}
}
}
},
"basePath": "/",
"definitions": {
"WeatherDataIngestionJob": {
"description": "Schema of weather ingestion job.",
"required": [
"boundaryId",
"extensionApiInput",
"extensionApiName",
"extensionId",
"farmerId"
],
"type": "object",
"properties": {
"boundaryId": {
"description": "The id of the boundary object for which weather data is being fetched.",
"type": "string"
},
"farmerId": {
"description": "The id of the farmer object for which weather data is being fetched.",
"type": "string"
},
"extensionId": {
"description": "Id of the extension to be used for the providerInput. eg. DTN.ClearAg.",
"maxLength": 100,
"minLength": 2,
"pattern": "^[a-zA-Z]{3,50}[.][a-zA-Z]{3,100}$",
"type": "string"
},
"extensionApiName": {
"description": "Extension api name to which request is to be made.",
"maxLength": 100,
"minLength": 2,
"type": "string"
},
"extensionApiInput": {
"description": "Extension api input dictionary which would be used to feed request query/body/parameter information.",
"type": "object",
"additionalProperties": {
"type": "object"
}
},
"extensionDataProviderAppId": {
"description": "App id of the weather data provider.",
"maxLength": 200,
"minLength": 2,
"type": "string"
},
"extensionDataProviderApiKey": {
"description": "Api key of the weather data provider.",
"maxLength": 200,
"minLength": 2,
"type": "string"
},
"id": {
"description": "Unique job id.",
"type": "string",
"readOnly": true
},
"status": {
"description": "Status of the job.\r\nPossible values: 'Waiting', 'Running', 'Succeeded', 'Failed', 'Cancelled'.",
"type": "string",
"readOnly": true
},
"durationInSeconds": {
"format": "double",
"description": "Duration of the job in seconds.",
"type": "number",
"readOnly": true
},
"message": {
"description": "Status message to capture more details of the job.",
"type": "string",
"readOnly": true
},
"createdDateTime": {
"format": "date-time",
"description": "Job created at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"lastActionDateTime": {
"format": "date-time",
"description": "Job was last acted upon at dateTime. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"startTime": {
"format": "date-time",
"description": "Job start time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"endTime": {
"format": "date-time",
"description": "Job end time when available. Sample format: yyyy-MM-ddTHH:mm:ssZ.",
"type": "string",
"readOnly": true
},
"name": {
"description": "Name to identify resource.",
"maxLength": 100,
"minLength": 0,
"type": "string"
},
"description": {
"description": "Textual description of the resource.",
"maxLength": 500,
"minLength": 0,
"type": "string"
},
"properties": {
"description": "A collection of key value pairs that belongs to the resource.\r\nEach pair must not have a key greater than 50 characters\r\nand must not have a value greater than 150 characters.\r\nNote: A maximum of 25 key value pairs can be provided for a resource and only string,\r\nnumeral and datetime (yyyy-MM-ddTHH:mm:ssZ) values are supported.",
"type": "object",
"additionalProperties": {
"type": "object"
},
"example": {
"key1": "value1",
"key2": 123.45
}
}
},
"additionalProperties": {}
},
"ErrorResponse": {
"description": "An error response from the Azure AgPlatform service.\r\n<see href=\"https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses\">ErrorResponse reference document.</see>.",
"type": "object",
"properties": {
"error": {
"description": "An error from the Azure AgPlatform service.",
"type": "object",
"properties": {
"code": {
"description": "Server-defined set of error codes.",
"type": "string"
},
"message": {
"description": "Human-readable representation of the error.",
"type": "string"
},
"target": {
"description": "Target of the error.",
"type": "string"
},
"details": {
"description": "Array of details about specific errors that led to this reported error.",
"type": "array"
}
}
},
"traceId": {
"description": "Unique trace Id.",
"type": "string"
}
}
},
"InnerError": {
"description": "Inner error containing list of errors.\r\n<see href=\"https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#innererror--object\">InnerError reference document</see>.",
"type": "object",
"properties": {
"code": {
"description": "Specific error code than was provided by the\r\ncontaining error.",
"type": "string"
}
},
"additionalProperties": {
"type": "object"
}
},
"Error": {
"description": "An error from the Azure AgPlatform service.",
"type": "object",
"properties": {
"code": {
"description": "Server-defined set of error codes.",
"type": "string"
},
"message": {
"description": "Human-readable representation of the error.",
"type": "string"
},
"target": {
"description": "Target of the error.",
"type": "string"
},
"details": {
"description": "Array of details about specific errors that led to this reported error.",
"type": "array"
}
}
}
},
"externalDocs": {
"description": "Find out more about Swagger",
"url": "http://swagger.io"
},
"host": "addon.azurewebsites.net",
"info": {
"contact": {
"email": "apiteam@swagger.io"
},
"description": "This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.",
"license": {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
},
"termsOfService": "http://swagger.io/terms/",
"title": "Swagger Petstore",
"version": "1.0.6"
},
"schemes": [
"https"
],
"swagger": "2.0"
}
},
"accessFBApplicationId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"accessFBApplicationName": "solution provider 1",
"saaSApplicationId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"actionIds": [
"actionId1"
],
"roleId": "role1",
"roleName": "roleName1"
},
"name": "bayerAgPowered.gdu"
}
]
}
}
}
}

Просмотреть файл

@ -0,0 +1,78 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"solutionId": "abc.partner",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-farmbeatsResourceName",
"body": {
"properties": {
"saasSubscriptionId": "123",
"saasSubscriptionName": "name",
"marketplacePublisherId": "publisherId",
"planId": "planId",
"offerId": "offerId",
"termId": "termId",
"roleAssignmentId": "11111111-2222-3333-4444-555555555555"
}
}
},
"responses": {
"201": {
"headers": {},
"body": {
"id": "/subscriptions/ff57165d-e71f-4a0e-8e9b-3cd461dc0f38/resourceGroups/bugbash-instances-westus2/providers/Microsoft.AgFoodPlatform/farmBeats/bb-df-wus2-1/solutions/string",
"type": "Microsoft.AgFoodPlatform/farmBeats/solutions",
"systemData": {
"createdBy": "billtest486451@live.com",
"createdByType": "User",
"createdAt": "2022-09-29T10:26:29Z",
"lastModifiedBy": "billtest486451@live.com",
"lastModifiedByType": "User",
"lastModifiedAt": "2022-09-29T10:26:38Z"
},
"properties": {
"solutionId": "abc.intbugbashfour",
"partnerId": "abc",
"saasSubscriptionId": "123",
"saasSubscriptionName": "name",
"marketplacePublisherId": "publisherId",
"planId": "planId",
"offerId": "offerId",
"termId": "termId",
"roleAssignmentId": "11111111-2222-3333-4444-555555555555"
},
"eTag": "19002383-0000-0700-0000-633572de0000",
"name": "string"
}
},
"200": {
"headers": {},
"body": {
"id": "/subscriptions/ff57165d-e71f-4a0e-8e9b-3cd461dc0f38/resourceGroups/bugbash-instances-westus2/providers/Microsoft.AgFoodPlatform/farmBeats/bb-df-wus2-1/solutions/string",
"type": "Microsoft.AgFoodPlatform/farmBeats/solutions",
"systemData": {
"createdBy": "billtest486451@live.com",
"createdByType": "User",
"createdAt": "2022-09-29T10:26:29Z",
"lastModifiedBy": "billtest486451@live.com",
"lastModifiedByType": "User",
"lastModifiedAt": "2022-09-29T10:26:38Z"
},
"properties": {
"solutionId": "abc.intbugbashfour",
"partnerId": "abc",
"saasSubscriptionId": "123",
"saasSubscriptionName": "name",
"marketplacePublisherId": "publisherId",
"planId": "planId",
"offerId": "offerId",
"termId": "termId",
"roleAssignmentId": "11111111-2222-3333-4444-555555555555"
},
"eTag": "19002383-0000-0700-0000-633572de0000",
"name": "string"
}
}
}
}

Просмотреть файл

@ -0,0 +1,76 @@
{
"title": "Solutions_CreateOrUpdate - generated by [MaximumSet] rule",
"operationId": "Solutions_CreateOrUpdate",
"parameters": {
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "rgagfood",
"dataManagerForAgricultureResourceName": "examples-farmbeatsResourceName",
"solutionId": "Replace this value with a string matching RegExp ^[a-zA-Z]{3,50}[.][a-zA-Z]{3,100}$",
"api-version": "2023-06-01-preview",
"requestBody": {
"properties": {
"saasSubscriptionId": "123",
"saasSubscriptionName": "name",
"marketplacePublisherId": "publisherId",
"planId": "planId",
"offerId": "offerId",
"termId": "termId",
"roleAssignmentId": "11111111-2222-3333-4444-555555555555"
}
}
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/ff57165d-e71f-4a0e-8e9b-3cd461dc0f38/resourceGroups/bugbash-instances-westus2/providers/Microsoft.AgFoodPlatform/farmBeats/bb-df-wus2-1/solutions/string",
"type": "Microsoft.AgFoodPlatform/farmBeats/solutions",
"systemData": {
"createdBy": "billtest486451@live.com",
"createdByType": "User",
"createdAt": "2022-09-29T10:26:29Z",
"lastModifiedBy": "billtest486451@live.com",
"lastModifiedByType": "User",
"lastModifiedAt": "2022-09-29T10:26:38Z"
},
"properties": {
"partnerId": "abc",
"saasSubscriptionId": "123",
"saasSubscriptionName": "name",
"marketplacePublisherId": "publisherId",
"planId": "planId",
"offerId": "offerId",
"termId": "termId",
"roleAssignmentId": "11111111-2222-3333-4444-555555555555"
},
"eTag": "19002383-0000-0700-0000-633572de0000",
"name": "string"
}
},
"201": {
"body": {
"id": "/subscriptions/ff57165d-e71f-4a0e-8e9b-3cd461dc0f38/resourceGroups/bugbash-instances-westus2/providers/Microsoft.AgFoodPlatform/farmBeats/bb-df-wus2-1/solutions/string",
"type": "Microsoft.AgFoodPlatform/farmBeats/solutions",
"systemData": {
"createdBy": "billtest486451@live.com",
"createdByType": "User",
"createdAt": "2022-09-29T10:26:29Z",
"lastModifiedBy": "billtest486451@live.com",
"lastModifiedByType": "User",
"lastModifiedAt": "2022-09-29T10:26:38Z"
},
"properties": {
"partnerId": "abc",
"saasSubscriptionId": "123",
"saasSubscriptionName": "name",
"marketplacePublisherId": "publisherId",
"planId": "planId",
"offerId": "offerId",
"termId": "termId",
"roleAssignmentId": "11111111-2222-3333-4444-555555555555"
},
"eTag": "19002383-0000-0700-0000-633572de0000",
"name": "string"
}
}
}
}

Просмотреть файл

@ -0,0 +1,13 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-farmbeatsResourceName",
"solutionId": "provider.solution"
},
"responses": {
"200": {},
"204": {}
}
}

Просмотреть файл

@ -0,0 +1,15 @@
{
"title": "Solutions_Delete - generated by [MaximumSet] rule",
"operationId": "Solutions_Delete",
"parameters": {
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "rgagfood",
"dataManagerForAgricultureResourceName": "examples-farmbeatsResourceName",
"solutionId": "Replace this value with a string matching RegExp ^[a-zA-Z]{3,50}[.][a-zA-Z]{3,100}$",
"api-version": "2023-06-01-preview"
},
"responses": {
"200": {},
"204": {}
}
}

Просмотреть файл

@ -0,0 +1,39 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-farmbeatsResourceName",
"solutionId": "provider.solution"
},
"responses": {
"200": {
"headers": {},
"body": {
"id": "/subscriptions/ff57165d-e71f-4a0e-8e9b-3cd461dc0f38/resourceGroups/bugbash-instances-westus2/providers/Microsoft.AgFoodPlatform/farmBeats/bb-df-wus2-1/solutions/string",
"type": "Microsoft.AgFoodPlatform/farmBeats/solutions",
"systemData": {
"createdBy": "billtest486451@live.com",
"createdByType": "User",
"createdAt": "2022-09-29T10:26:29Z",
"lastModifiedBy": "billtest486451@live.com",
"lastModifiedByType": "User",
"lastModifiedAt": "2022-09-29T10:26:38Z"
},
"properties": {
"solutionId": "abc.intbugbashfour",
"partnerId": "abc",
"saasSubscriptionId": "123",
"saasSubscriptionName": "name",
"marketplacePublisherId": "publisherId",
"planId": "planId",
"offerId": "offerId",
"termId": "termId",
"roleAssignmentId": "11111111-2222-3333-4444-555555555555"
},
"eTag": "19002383-0000-0700-0000-633572de0000",
"name": "string"
}
}
}
}

Просмотреть файл

@ -0,0 +1,39 @@
{
"title": "Solutions_Get - generated by [MaximumSet] rule",
"operationId": "Solutions_Get",
"parameters": {
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "rgagfood",
"dataManagerForAgricultureResourceName": "examples-farmbeatsResourceName",
"solutionId": "Replace this value with a string matching RegExp ^[a-zA-Z]{3,50}[.][a-zA-Z]{3,100}$",
"api-version": "2023-06-01-preview"
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/ff57165d-e71f-4a0e-8e9b-3cd461dc0f38/resourceGroups/bugbash-instances-westus2/providers/Microsoft.AgFoodPlatform/farmBeats/bb-df-wus2-1/solutions/string",
"type": "Microsoft.AgFoodPlatform/farmBeats/solutions",
"systemData": {
"createdBy": "billtest486451@live.com",
"createdByType": "User",
"createdAt": "2022-09-29T10:26:29Z",
"lastModifiedBy": "billtest486451@live.com",
"lastModifiedByType": "User",
"lastModifiedAt": "2022-09-29T10:26:38Z"
},
"properties": {
"partnerId": "abc",
"saasSubscriptionId": "123",
"saasSubscriptionName": "name",
"marketplacePublisherId": "publisherId",
"planId": "planId",
"offerId": "offerId",
"termId": "termId",
"roleAssignmentId": "11111111-2222-3333-4444-555555555555"
},
"eTag": "19002383-0000-0700-0000-633572de0000",
"name": "string"
}
}
}
}

Просмотреть файл

@ -0,0 +1,42 @@
{
"parameters": {
"api-version": "2023-06-01-preview",
"subscriptionId": "11111111-2222-3333-4444-555555555555",
"resourceGroupName": "examples-rg",
"dataManagerForAgricultureResourceName": "examples-farmbeatsResourceName"
},
"responses": {
"200": {
"headers": {},
"body": {
"value": [
{
"id": "/subscriptions/ff57165d-e71f-4a0e-8e9b-3cd461dc0f38/resourceGroups/bugbash-instances-westus2/providers/Microsoft.AgFoodPlatform/farmBeats/bb-df-wus2-1/solutions/string",
"type": "Microsoft.AgFoodPlatform/farmBeats/solutions",
"systemData": {
"createdBy": "billtest486451@live.com",
"createdByType": "User",
"createdAt": "2022-09-29T10:26:29Z",
"lastModifiedBy": "billtest486451@live.com",
"lastModifiedByType": "User",
"lastModifiedAt": "2022-09-29T10:26:38Z"
},
"properties": {
"solutionId": "abc.intbugbashfour",
"partnerId": "abc",
"saasSubscriptionId": "123",
"saasSubscriptionName": "name",
"marketplacePublisherId": "publisherId",
"planId": "planId",
"offerId": "offerId",
"termId": "termId",
"roleAssignmentId": "11111111-2222-3333-4444-555555555555"
},
"eTag": "19002383-0000-0700-0000-633572de0000",
"name": "string"
}
]
}
}
}
}

Просмотреть файл

@ -0,0 +1,162 @@
# agfood
> see https://aka.ms/autorest
This is the AutoRest configuration file for agfood.
## Getting Started
To build the SDKs for My API, simply install AutoRest via `npm` (`npm install -g autorest`) and then run:
> `autorest readme.md`
To see additional help and options, run:
> `autorest --help`
For other options on installation see [Installing AutoRest](https://aka.ms/autorest/install) on the AutoRest github page.
---
## Configuration
### Basic Information
These are the global settings for the agrifood.
```yaml
openapi-type: arm
tag: package-preview-2023-06
```
### Tag: package-preview-2023-06
These settings apply only when `--tag=package-preview-2023-06` is specified on the command line.
```yaml $(tag) == 'package-preview-2023-06'
input-file:
- Microsoft.AgFoodPlatform/preview/2023-06-01-preview/agfood.json
```
### Tag: package-preview-2021-09
These settings apply only when `--tag=package-preview-2021-09` is specified on the command line.
```yaml $(tag) == 'package-preview-2021-09'
input-file:
- Microsoft.AgFoodPlatform/preview/2021-09-01-preview/agfood.json
```
### Tag: package-2020-05-12-preview
These settings apply only when `--tag=package-2020-05-12-preview` is specified on the command line.
```yaml $(tag) == 'package-2020-05-12-preview'
input-file:
- Microsoft.AgFoodPlatform/preview/2020-05-12-preview/agfood.json
```
---
# Code Generation
## Swagger to SDK
This section describes what SDK should be generated by the automatic system.
This is not used by Autorest itself.
```yaml $(swagger-to-sdk)
swagger-to-sdk:
- repo: azure-sdk-for-python-track2
- repo: azure-sdk-for-go
- repo: azure-sdk-for-js
- repo: azure-sdk-for-java
- repo: azure-powershell
```
## Go
See configuration in [readme.go.md](./readme.go.md)
## Python
See configuration in [readme.python.md](./readme.python.md)
## TypeScript
See configuration in [readme.typescript.md](./readme.typescript.md)
## CSharp
See configuration in [readme.csharp.md](./readme.csharp.md)
## Suppression
```yaml
directive:
- from: agfood.json
suppress: LRO_RESPONSE_HEADER
reason: Ignoring for testcase
- from: agfood.json
suppress: INVALID_FORMAT
reason: Ignoring for testcase
- from: agfood.json
suppress: R3010 # TrackedResourceListByImmediateParent
where:
- $.definitions
reason: Have an api already.
- from: agfood.json
suppress: R3006 # BodyTopLevelProperties
where: $.definitions.FarmBeats.properties
reason: Currently systemData is not allowed.
- from: agfood.json
suppress: R3006 # BodyTopLevelProperties
where: $.definitions.Extension.properties
reason: Currently systemData is not allowed.
- from: agfood.json
suppress: R3006 # BodyTopLevelProperties
where: $.definitions.FarmBeatsExtension.properties
reason: Currently systemData is not allowed.
- from: agfood.json
suppress: R2003 # ValidFormats
where: $.definitions.FarmBeatsProperties.properties.instanceUri.format
reason: Currently systemData is not allowed.
- from: agfood.json
suppress: R3018 # EnumInsteadOfBoolean
where:
- $.definitions.Operation.properties.isDataAction
- $.definitions.CheckNameAvailabilityResult.properties.nameAvailable
reason: Booleans are used to indicate binary states of the property, enum is not appropriate.
- from: agfood.json
suppress: RequiredReadOnlySystemData
reason: We do not yet support system data
- from: agfood.json
suppress: R4009 #RequiredReadOnlySystemData
reason: Currently systemData is not allowed
- from: agfood.json
suppress: R4000 # DescriptionAndTitleMissing
where:
- $.definitions.FarmBeatsExtension.properties.systemData
- $.definitions.FarmBeatsExtension.properties.properties
- $.definitions.DetailedInformation.properties.unitsSupported
- $.definitions.SensorIntegration.properties.provisioningInfo
- $.definitions.FarmBeatsProperties.properties.publicNetworkAccess
- $.definitions.FarmBeatsProperties.properties.sensorIntegration
- $.definitions.FarmBeatsProperties.properties.publicNetworkAccess
- $.definitions.FarmBeatsProperties.properties.privateEndpointConnections
- $.definitions.FarmBeatsUpdateProperties.properties.sensorIntegration
- $.definitions.FarmBeatsUpdateProperties.properties.publicNetworkAccess
- $.definitions.Error.properties.innererror
- $.definitions.ErrorResponse.properties.error
- $.definitions.Extension.properties.properties
- $.definitions.Extension.properties.systemData
- $.definitions.FarmBeats.properties.properties
- $.definitions.FarmBeats.properties.systemData
- $.definitions.InnerError.properties.innererror
- $.definitions.Operation.properties.display
reason: Model has description added in it's schema.
- from: types.json
suppress: R4000 # DescriptionAndTitleMissing
where: $.definitions.Resource
reason: Common type models are inherited.
```

Просмотреть файл

@ -0,0 +1,71 @@
{
"swagger": "2.0",
"info": {
"version": "4.0",
"title": "Common types"
},
"paths": {},
"definitions": {
"encryption": {
"type": "object",
"description": "(Optional) Discouraged to include in resource definition. Only needed where it is possible to disable platform (AKA infrastructure) encryption. Azure SQL TDE is an example of this. Values are enabled and disabled.",
"properties": {
"infrastructureEncryption": {
"type": "string",
"enum": [
"enabled",
"disabled"
],
"x-ms-enum": {
"name": "InfrastructureEncryption",
"modelAsString": true
},
"description": "Values are enabled and disabled."
},
"customerManagedKeyEncryption": {
"description": "All Customer-managed key encryption properties for the resource.",
"$ref": "#/definitions/customerManagedKeyEncryption"
}
}
},
"customerManagedKeyEncryption": {
"type": "object",
"description": "All Customer-managed key encryption properties for the resource.",
"properties": {
"keyEncryptionKeyIdentity": {
"type": "object",
"description": "All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.",
"properties": {
"identityType": {
"type": "string",
"enum": [
"systemAssignedIdentity",
"userAssignedIdentity",
"delegatedResourceIdentity"
],
"x-ms-enum": {
"name": "IdentityType",
"modelAsString": true
},
"description": "Values can be systemAssignedIdentity or userAssignedIdentity"
},
"userAssignedIdentityResourceId": {
"type": "string",
"format": "arm-id",
"description": "user assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity and delegatedResourceIdentity."
},
"delegatedIdentityClientId": {
"type": "string",
"format": "uuid",
"description": "delegated identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity and userAssignedIdentity - internal use only."
}
}
},
"keyEncryptionKeyUrl": {
"type": "string",
"description": "key encryption key Url, versioned or non-versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek."
}
}
}
}
}

Просмотреть файл

@ -0,0 +1,113 @@
{
"swagger": "2.0",
"info": {
"version": "4.0",
"title": "Common types"
},
"paths": {},
"definitions": {
"UserAssignedIdentities": {
"title": "User-Assigned Identities",
"description": "The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/UserAssignedIdentity"
}
},
"UserAssignedIdentity": {
"type": "object",
"description": "User assigned identity properties",
"properties": {
"principalId": {
"description": "The principal ID of the assigned identity.",
"format": "uuid",
"type": "string",
"readOnly": true
},
"clientId": {
"description": "The client ID of the assigned identity.",
"format": "uuid",
"type": "string",
"readOnly": true
}
}
},
"ManagedServiceIdentityType": {
"description": "Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).",
"enum": [
"None",
"SystemAssigned",
"UserAssigned",
"SystemAssigned, UserAssigned"
],
"type": "string",
"x-ms-enum": {
"name": "ManagedServiceIdentityType",
"modelAsString": true
}
},
"ManagedServiceIdentity": {
"description": "Managed service identity (system assigned and/or user assigned identities)",
"type": "object",
"properties": {
"principalId": {
"readOnly": true,
"format": "uuid",
"type": "string",
"description": "The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity."
},
"tenantId": {
"readOnly": true,
"format": "uuid",
"type": "string",
"description": "The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity."
},
"type": {
"$ref": "#/definitions/ManagedServiceIdentityType"
},
"userAssignedIdentities": {
"$ref": "#/definitions/UserAssignedIdentities"
}
},
"required": [
"type"
]
},
"SystemAssignedServiceIdentityType": {
"description": "Type of managed service identity (either system assigned, or none).",
"enum": [
"None",
"SystemAssigned"
],
"type": "string",
"x-ms-enum": {
"name": "SystemAssignedServiceIdentityType",
"modelAsString": true
}
},
"SystemAssignedServiceIdentity": {
"description": "Managed service identity (either system assigned, or none)",
"type": "object",
"properties": {
"principalId": {
"readOnly": true,
"format": "uuid",
"type": "string",
"description": "The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity."
},
"tenantId": {
"readOnly": true,
"format": "uuid",
"type": "string",
"description": "The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity."
},
"type": {
"$ref": "#/definitions/SystemAssignedServiceIdentityType"
}
},
"required": [
"type"
]
}
}
}

Просмотреть файл

@ -0,0 +1,54 @@
{
"swagger": "2.0",
"info": {
"version": "4.0",
"title": "Common types"
},
"paths": {},
"definitions": {
"ManagedServiceIdentityWithDelegation": {
"description": "Managed service identity (system assigned and/or user assigned identities and/or delegated identities) - internal use only.",
"type": "object",
"allOf": [
{
"$ref": "managedidentity.json#/definitions/ManagedServiceIdentity"
}
],
"properties": {
"delegatedResources": {
"$ref": "#/definitions/DelegatedResources"
}
}
},
"DelegatedResources": {
"description": "The set of delegated resources. The delegated resources dictionary keys will be source resource internal ids - internal use only.",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/DelegatedResource"
}
},
"DelegatedResource": {
"type": "object",
"description": "Delegated resource properties - internal use only.",
"properties": {
"resourceId": {
"description": "The ARM resource id of the delegated resource - internal use only.",
"type": "string"
},
"tenantId": {
"description": "The tenant id of the delegated resource - internal use only.",
"format": "uuid",
"type": "string"
},
"referralResource": {
"description": "The delegation id of the referral delegation (optional) - internal use only.",
"type": "string"
},
"location": {
"description": "The source resource location - internal use only.",
"type": "string"
}
}
}
}
}

Просмотреть файл

@ -0,0 +1,190 @@
{
"swagger": "2.0",
"info": {
"version": "4.0",
"title": "Common types"
},
"paths": {},
"definitions": {
"PrivateEndpoint": {
"type": "object",
"properties": {
"id": {
"readOnly": true,
"type": "string",
"description": "The ARM identifier for private endpoint."
}
},
"description": "The private endpoint resource."
},
"PrivateEndpointConnection": {
"type": "object",
"properties": {
"properties": {
"$ref": "#/definitions/PrivateEndpointConnectionProperties",
"x-ms-client-flatten": true,
"description": "Resource properties."
}
},
"allOf": [
{
"$ref": "../v4/types.json#/definitions/Resource"
}
],
"description": "The private endpoint connection resource."
},
"PrivateEndpointConnectionProperties": {
"type": "object",
"properties": {
"groupIds": {
"description": "The group ids for the private endpoint resource.",
"type": "array",
"items": {
"type": "string"
},
"readOnly": true
},
"privateEndpoint": {
"$ref": "#/definitions/PrivateEndpoint",
"description": "The private endpoint resource."
},
"privateLinkServiceConnectionState": {
"$ref": "#/definitions/PrivateLinkServiceConnectionState",
"description": "A collection of information about the state of the connection between service consumer and provider."
},
"provisioningState": {
"$ref": "#/definitions/PrivateEndpointConnectionProvisioningState",
"description": "The provisioning state of the private endpoint connection resource."
}
},
"required": [
"privateLinkServiceConnectionState"
],
"description": "Properties of the private endpoint connection."
},
"PrivateLinkServiceConnectionState": {
"type": "object",
"properties": {
"status": {
"$ref": "#/definitions/PrivateEndpointServiceConnectionStatus",
"description": "Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service."
},
"description": {
"type": "string",
"description": "The reason for approval/rejection of the connection."
},
"actionsRequired": {
"type": "string",
"description": "A message indicating if changes on the service provider require any updates on the consumer."
}
},
"description": "A collection of information about the state of the connection between service consumer and provider."
},
"PrivateEndpointServiceConnectionStatus": {
"type": "string",
"description": "The private endpoint connection status.",
"enum": [
"Pending",
"Approved",
"Rejected"
],
"x-ms-enum": {
"name": "PrivateEndpointServiceConnectionStatus",
"modelAsString": true
}
},
"PrivateEndpointConnectionProvisioningState": {
"type": "string",
"readOnly": true,
"description": "The current provisioning state.",
"enum": [
"Succeeded",
"Creating",
"Deleting",
"Failed"
],
"x-ms-enum": {
"name": "PrivateEndpointConnectionProvisioningState",
"modelAsString": true
}
},
"PrivateLinkResource": {
"type": "object",
"properties": {
"properties": {
"$ref": "#/definitions/PrivateLinkResourceProperties",
"description": "Resource properties.",
"x-ms-client-flatten": true
}
},
"allOf": [
{
"$ref": "../v4/types.json#/definitions/Resource"
}
],
"description": "A private link resource."
},
"PrivateLinkResourceProperties": {
"type": "object",
"properties": {
"groupId": {
"description": "The private link resource group id.",
"type": "string",
"readOnly": true
},
"requiredMembers": {
"description": "The private link resource required member names.",
"type": "array",
"items": {
"type": "string"
},
"readOnly": true
},
"requiredZoneNames": {
"type": "array",
"items": {
"type": "string"
},
"description": "The private link resource private link DNS zone name."
}
},
"description": "Properties of a private link resource."
},
"PrivateEndpointConnectionListResult": {
"type": "object",
"properties": {
"value": {
"type": "array",
"description": "Array of private endpoint connections.",
"items": {
"$ref": "#/definitions/PrivateEndpointConnection"
}
}
},
"description": "List of private endpoint connections associated with the specified resource."
},
"PrivateLinkResourceListResult": {
"type": "object",
"properties": {
"value": {
"type": "array",
"description": "Array of private link resources",
"items": {
"$ref": "#/definitions/PrivateLinkResource"
}
}
},
"description": "A list of private link resources."
}
},
"parameters": {
"PrivateEndpointConnectionName": {
"name": "privateEndpointConnectionName",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the private endpoint connection associated with the Azure resource.",
"x-ms-parameter-location": "method"
}
}
}

Просмотреть файл

@ -0,0 +1,717 @@
{
"swagger": "2.0",
"info": {
"version": "4.0",
"title": "Common types"
},
"paths": {},
"definitions": {
"Resource": {
"title": "Resource",
"description": "Common fields that are returned in the response for all Azure Resource Manager resources",
"type": "object",
"properties": {
"id": {
"readOnly": true,
"type": "string",
"format": "arm-id",
"description": "Fully qualified resource ID for the resource. E.g. \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}\""
},
"name": {
"readOnly": true,
"type": "string",
"description": "The name of the resource"
},
"type": {
"readOnly": true,
"type": "string",
"description": "The type of the resource. E.g. \"Microsoft.Compute/virtualMachines\" or \"Microsoft.Storage/storageAccounts\""
},
"systemData": {
"readOnly": true,
"type": "object",
"description": "Azure Resource Manager metadata containing createdBy and modifiedBy information.",
"$ref": "#/definitions/systemData"
}
},
"x-ms-azure-resource": true
},
"AzureEntityResource": {
"x-ms-client-name": "AzureEntityResource",
"title": "Entity Resource",
"description": "The resource model definition for an Azure Resource Manager resource with an etag.",
"type": "object",
"properties": {
"etag": {
"type": "string",
"readOnly": true,
"description": "Resource Etag."
}
},
"allOf": [
{
"$ref": "#/definitions/Resource"
}
]
},
"TrackedResource": {
"title": "Tracked Resource",
"description": "The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location'",
"type": "object",
"properties": {
"tags": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"x-ms-mutability": [
"read",
"create",
"update"
],
"description": "Resource tags."
},
"location": {
"type": "string",
"x-ms-mutability": [
"read",
"create"
],
"description": "The geo-location where the resource lives"
}
},
"required": [
"location"
],
"allOf": [
{
"$ref": "#/definitions/Resource"
}
]
},
"ProxyResource": {
"title": "Proxy Resource",
"description": "The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Resource"
}
]
},
"ResourceModelWithAllowedPropertySet": {
"description": "The resource model definition containing the full set of allowed properties for a resource. Except properties bag, there cannot be a top level property outside of this set.",
"type": "object",
"properties": {
"managedBy": {
"type": "string",
"x-ms-mutability": [
"read",
"create",
"update"
],
"description": "The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource."
},
"kind": {
"type": "string",
"x-ms-mutability": [
"read",
"create"
],
"description": "Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.",
"pattern": "^[-\\w\\._,\\(\\)]+$"
},
"etag": {
"readOnly": true,
"type": "string",
"description": "The etag field is *not* required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields. "
},
"identity": {
"allOf": [
{
"$ref": "#/definitions/Identity"
}
]
},
"sku": {
"allOf": [
{
"$ref": "#/definitions/Sku"
}
]
},
"plan": {
"allOf": [
{
"$ref": "#/definitions/Plan"
}
]
}
},
"allOf": [
{
"$ref": "#/definitions/TrackedResource"
}
],
"x-ms-azure-resource": true
},
"SkuTier": {
"type": "string",
"enum": [
"Free",
"Basic",
"Standard",
"Premium"
],
"x-ms-enum": {
"name": "SkuTier",
"modelAsString": false
},
"description": "This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT."
},
"Sku": {
"description": "The resource model definition representing SKU",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the SKU. E.g. P3. It is typically a letter+number code"
},
"tier": {
"$ref": "#/definitions/SkuTier"
},
"size": {
"type": "string",
"description": "The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. "
},
"family": {
"type": "string",
"description": "If the service has different generations of hardware, for the same SKU, then that can be captured here."
},
"capacity": {
"type": "integer",
"format": "int32",
"description": "If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted."
}
},
"required": [
"name"
]
},
"Identity": {
"description": "Identity for the resource.",
"type": "object",
"properties": {
"principalId": {
"readOnly": true,
"type": "string",
"format": "uuid",
"description": "The principal ID of resource identity. The value must be an UUID."
},
"tenantId": {
"readOnly": true,
"type": "string",
"format": "uuid",
"description": "The tenant ID of resource. The value must be an UUID."
},
"type": {
"type": "string",
"description": "The identity type.",
"enum": [
"SystemAssigned"
],
"x-ms-enum": {
"name": "ResourceIdentityType",
"modelAsString": false
}
}
}
},
"Plan": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "A user defined name of the 3rd Party Artifact that is being procured."
},
"publisher": {
"type": "string",
"description": "The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic"
},
"product": {
"type": "string",
"description": "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. "
},
"promotionCode": {
"type": "string",
"description": "A publisher provided promotion code as provisioned in Data Market for the said product/artifact."
},
"version": {
"type": "string",
"description": "The version of the desired product/artifact."
}
},
"description": "Plan for the resource.",
"required": [
"name",
"publisher",
"product"
]
},
"ErrorDetail": {
"description": "The error detail.",
"type": "object",
"properties": {
"code": {
"readOnly": true,
"type": "string",
"description": "The error code."
},
"message": {
"readOnly": true,
"type": "string",
"description": "The error message."
},
"target": {
"readOnly": true,
"type": "string",
"description": "The error target."
},
"details": {
"readOnly": true,
"type": "array",
"items": {
"$ref": "#/definitions/ErrorDetail"
},
"x-ms-identifiers": [
"message",
"target"
],
"description": "The error details."
},
"additionalInfo": {
"readOnly": true,
"type": "array",
"items": {
"$ref": "#/definitions/ErrorAdditionalInfo"
},
"x-ms-identifiers": [],
"description": "The error additional info."
}
}
},
"ErrorResponse": {
"title": "Error response",
"description": "Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).",
"type": "object",
"properties": {
"error": {
"description": "The error object.",
"$ref": "#/definitions/ErrorDetail"
}
}
},
"ErrorAdditionalInfo": {
"type": "object",
"properties": {
"type": {
"readOnly": true,
"type": "string",
"description": "The additional info type."
},
"info": {
"readOnly": true,
"type": "object",
"description": "The additional info."
}
},
"description": "The resource management error additional info."
},
"Operation": {
"title": "REST API Operation",
"description": "Details of a REST API operation, returned from the Resource Provider Operations API",
"type": "object",
"properties": {
"name": {
"description": "The name of the operation, as per Resource-Based Access Control (RBAC). Examples: \"Microsoft.Compute/virtualMachines/write\", \"Microsoft.Compute/virtualMachines/capture/action\"",
"type": "string",
"readOnly": true
},
"isDataAction": {
"description": "Whether the operation applies to data-plane. This is \"true\" for data-plane operations and \"false\" for ARM/control-plane operations.",
"type": "boolean",
"readOnly": true
},
"display": {
"description": "Localized display information for this particular operation.",
"type": "object",
"properties": {
"provider": {
"description": "The localized friendly form of the resource provider name, e.g. \"Microsoft Monitoring Insights\" or \"Microsoft Compute\".",
"type": "string",
"readOnly": true
},
"resource": {
"description": "The localized friendly name of the resource type related to this operation. E.g. \"Virtual Machines\" or \"Job Schedule Collections\".",
"type": "string",
"readOnly": true
},
"operation": {
"description": "The concise, localized friendly name for the operation; suitable for dropdowns. E.g. \"Create or Update Virtual Machine\", \"Restart Virtual Machine\".",
"type": "string",
"readOnly": true
},
"description": {
"description": "The short, localized friendly description of the operation; suitable for tool tips and detailed views.",
"type": "string",
"readOnly": true
}
}
},
"origin": {
"description": "The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is \"user,system\"",
"type": "string",
"readOnly": true,
"enum": [
"user",
"system",
"user,system"
],
"x-ms-enum": {
"name": "Origin",
"modelAsString": true
}
},
"actionType": {
"description": "Enum. Indicates the action type. \"Internal\" refers to actions that are for internal only APIs.",
"type": "string",
"readOnly": true,
"enum": [
"Internal"
],
"x-ms-enum": {
"name": "ActionType",
"modelAsString": true
}
}
}
},
"OperationListResult": {
"description": "A list of REST API operations supported by an Azure Resource Provider. It contains an URL link to get the next set of results.",
"type": "object",
"properties": {
"value": {
"type": "array",
"items": {
"$ref": "#/definitions/Operation"
},
"x-ms-identifiers": [
"name"
],
"description": "List of operations supported by the resource provider",
"readOnly": true
},
"nextLink": {
"type": "string",
"format": "uri",
"description": "URL to get the next set of operation list results (if there are any).",
"readOnly": true
}
}
},
"OperationStatusResult": {
"description": "The current status of an async operation.",
"type": "object",
"required": [
"status"
],
"properties": {
"id": {
"description": "Fully qualified ID for the async operation.",
"type": "string"
},
"name": {
"description": "Name of the async operation.",
"type": "string"
},
"status": {
"description": "Operation status.",
"type": "string"
},
"percentComplete": {
"description": "Percent of the operation that is complete.",
"type": "number",
"minimum": 0,
"maximum": 100
},
"startTime": {
"description": "The start time of the operation.",
"type": "string",
"format": "date-time"
},
"endTime": {
"description": "The end time of the operation.",
"type": "string",
"format": "date-time"
},
"operations": {
"description": "The operations list.",
"type": "array",
"items": {
"$ref": "#/definitions/OperationStatusResult"
}
},
"error": {
"description": "If present, details of the operation error.",
"$ref": "#/definitions/ErrorDetail"
}
}
},
"locationData": {
"description": "Metadata pertaining to the geographic location of the resource.",
"type": "object",
"properties": {
"name": {
"type": "string",
"maxLength": 256,
"description": "A canonical name for the geographic or physical location."
},
"city": {
"type": "string",
"description": "The city or locality where the resource is located."
},
"district": {
"type": "string",
"description": "The district, state, or province where the resource is located."
},
"countryOrRegion": {
"type": "string",
"description": "The country or region where the resource is located"
}
},
"required": [
"name"
]
},
"systemData": {
"description": "Metadata pertaining to creation and last modification of the resource.",
"type": "object",
"readOnly": true,
"properties": {
"createdBy": {
"type": "string",
"description": "The identity that created the resource."
},
"createdByType": {
"type": "string",
"description": "The type of identity that created the resource.",
"enum": [
"User",
"Application",
"ManagedIdentity",
"Key"
],
"x-ms-enum": {
"name": "createdByType",
"modelAsString": true
}
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "The timestamp of resource creation (UTC)."
},
"lastModifiedBy": {
"type": "string",
"description": "The identity that last modified the resource."
},
"lastModifiedByType": {
"type": "string",
"description": "The type of identity that last modified the resource.",
"enum": [
"User",
"Application",
"ManagedIdentity",
"Key"
],
"x-ms-enum": {
"name": "createdByType",
"modelAsString": true
}
},
"lastModifiedAt": {
"type": "string",
"format": "date-time",
"description": "The timestamp of resource last modification (UTC)"
}
}
},
"encryptionProperties": {
"description": "Configuration of key for data encryption",
"type": "object",
"properties": {
"status": {
"description": "Indicates whether or not the encryption is enabled for container registry.",
"enum": [
"enabled",
"disabled"
],
"type": "string",
"x-ms-enum": {
"name": "EncryptionStatus",
"modelAsString": true
}
},
"keyVaultProperties": {
"$ref": "#/definitions/KeyVaultProperties",
"description": "Key vault properties."
}
}
},
"KeyVaultProperties": {
"type": "object",
"properties": {
"keyIdentifier": {
"description": "Key vault uri to access the encryption key.",
"type": "string"
},
"identity": {
"description": "The client ID of the identity which will be used to access key vault.",
"type": "string"
}
}
},
"CheckNameAvailabilityRequest": {
"description": "The check availability request body.",
"type": "object",
"properties": {
"name": {
"description": "The name of the resource for which availability needs to be checked.",
"type": "string"
},
"type": {
"description": "The resource type.",
"type": "string"
}
}
},
"CheckNameAvailabilityResponse": {
"description": "The check availability result.",
"type": "object",
"properties": {
"nameAvailable": {
"description": "Indicates if the resource name is available.",
"type": "boolean"
},
"reason": {
"description": "The reason why the given name is not available.",
"type": "string",
"enum": [
"Invalid",
"AlreadyExists"
],
"x-ms-enum": {
"name": "CheckNameAvailabilityReason",
"modelAsString": true
}
},
"message": {
"description": "Detailed reason why the given name is available.",
"type": "string"
}
}
}
},
"parameters": {
"SubscriptionIdParameter": {
"name": "subscriptionId",
"in": "path",
"required": true,
"type": "string",
"format": "uuid",
"description": "The ID of the target subscription. The value must be an UUID."
},
"ApiVersionParameter": {
"name": "api-version",
"in": "query",
"required": true,
"type": "string",
"description": "The API version to use for this operation.",
"minLength": 1
},
"ResourceGroupNameParameter": {
"name": "resourceGroupName",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the resource group. The name is case insensitive.",
"minLength": 1,
"maxLength": 90,
"x-ms-parameter-location": "method"
},
"ManagementGroupNameParameter": {
"name": "managementGroupName",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the management group. The name is case insensitive.",
"minLength": 1,
"maxLength": 90,
"x-ms-parameter-location": "method"
},
"ScopeParameter": {
"name": "scope",
"in": "path",
"required": true,
"type": "string",
"description": "The scope at which the operation is performed.",
"minLength": 1,
"maxLength": 90,
"x-ms-parameter-location": "method",
"x-ms-skip-url-encoding": true
},
"TenantIdParameter": {
"name": "tenantId",
"in": "path",
"description": "The Azure tenant ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000)",
"required": true,
"type": "string",
"format": "uuid",
"x-ms-parameter-location": "method"
},
"OperationIdParameter": {
"name": "operationId",
"in": "path",
"required": true,
"type": "string",
"description": "The ID of an ongoing async operation.",
"minLength": 1,
"x-ms-parameter-location": "method"
},
"LocationParameter": {
"name": "location",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the Azure region.",
"minLength": 1,
"x-ms-parameter-location": "method"
},
"If-Match": {
"name": "ifMatch",
"in": "header",
"required": true,
"type": "string",
"description": "The If-Match header that makes a request conditional.",
"x-ms-parameter-location": "method"
},
"If-None-Match": {
"name": "ifNoneMatch",
"in": "header",
"required": true,
"type": "string",
"description": "The If-None-Match header that makes a request conditional.",
"x-ms-parameter-location": "method"
}
}
}

Просмотреть файл

@ -4,8 +4,8 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "npzhwdjshxfmnfrgdejkjg",
"domainTopicName": "jqfelaogralppmiynjlgicwbaa",
"domainName": "gwkhmaaliulphadcvpjavjqnmeow",
"domainTopicName": "asjpv",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -4,8 +4,8 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "gjqgakynchse",
"domainTopicName": "latqkhxxcvpcaqqbxukunwpqophd",
"domainName": "iodljwmpvakce",
"domainTopicName": "zcjvlvhrdjqtqoimeq",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -4,8 +4,8 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "mzzbvot",
"domainTopicName": "qotucizpfzxtvebrdpvz",
"domainName": "bpuurjyrmmvjgdkhk",
"domainTopicName": "qpgvxsrh",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -4,8 +4,8 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "ujpvybctezztgfzuhllwtsgrkfdgy",
"domainTopicName": "qowvuzgzybstyhqrppxcupgrc",
"domainName": "kfqwmlebsqntdtdybtbqotwtnnlvo",
"domainTopicName": "yxxgwaulyttxrfn",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -4,8 +4,8 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "jcg",
"domainTopicName": "hienpsyxfupr",
"domainName": "ytvnmzefpuazaurgszj",
"domainTopicName": "mech",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -4,10 +4,10 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "vyivftbjlzzsx",
"domainName": "cgqgnbuywyf",
"api-version": "2020-06-01",
"$filter": "cndxltnbvovmbnwhpx",
"$top": 23
"$filter": "qswocf",
"$top": 30
},
"responses": {
"200": {
@ -30,7 +30,7 @@
"type": "Microsoft.EventGrid/domains/topics"
}
],
"nextLink": "mwij"
"nextLink": "ytsvxheejixghlq"
}
}
}

Просмотреть файл

@ -4,7 +4,7 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "j",
"domainName": "kwidhgzjgfrtcbkneysacuj",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -4,7 +4,7 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "npxfuqbaujyrmtni",
"domainName": "bkdtcrhyufheul",
"domainInfo": {
"location": "westus2",
"tags": {},
@ -27,12 +27,12 @@
"id": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.Network/privateEndpoints/bmtpe5"
},
"groupIds": [
"bwmmnipnuwxzizifqyj"
"egkunsjumrmebsehnmhskrthaquly"
],
"privateLinkServiceConnectionState": {
"status": "Pending",
"description": "ckyopmubtpsguw",
"actionsRequired": "jpgbdhvzozadernuwxlv"
"description": "mrphqeraeqrrbd",
"actionsRequired": "uyunjjoxnujgwkmttrsg"
},
"provisioningState": "Creating"
}
@ -42,25 +42,25 @@
"inputSchemaMapping": {
"properties": {
"id": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"topic": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"eventTime": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"eventType": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
},
"subject": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
},
"dataVersion": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
}
},
"inputSchemaMappingType": "Json"
@ -96,18 +96,18 @@
"id": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.Network/privateEndpoints/bmtpe5"
},
"groupIds": [
"bwmmnipnuwxzizifqyj"
"egkunsjumrmebsehnmhskrthaquly"
],
"privateLinkServiceConnectionState": {
"status": "Pending",
"description": "ckyopmubtpsguw",
"actionsRequired": "jpgbdhvzozadernuwxlv"
"description": "mrphqeraeqrrbd",
"actionsRequired": "uyunjjoxnujgwkmttrsg"
},
"provisioningState": "Creating"
},
"id": "rhszdfftga",
"name": "ccbc",
"type": "qxetina"
"id": "pyhmwq",
"name": "dsruunaacrewv",
"type": "naxqrkhejplkx"
}
],
"provisioningState": "Succeeded",
@ -116,30 +116,30 @@
"inputSchemaMapping": {
"properties": {
"id": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"topic": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"eventTime": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"eventType": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
},
"subject": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
},
"dataVersion": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
}
},
"inputSchemaMappingType": "Json"
},
"metricResourceId": "qtmpjtqcn"
"metricResourceId": "ulcweuvytjktvgihoeixr"
},
"id": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/domains/exampledomain2",
"name": "exampledomain2",

Просмотреть файл

@ -4,7 +4,7 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "ydodzfyxb",
"domainName": "zapuxjqccxbtlhmcsgupqpuxg",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -4,7 +4,7 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "uklumxkycckqzwzubhiju",
"domainName": "tpt",
"api-version": "2020-06-01"
},
"responses": {
@ -31,18 +31,18 @@
"id": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.Network/privateEndpoints/bmtpe5"
},
"groupIds": [
"bwmmnipnuwxzizifqyj"
"egkunsjumrmebsehnmhskrthaquly"
],
"privateLinkServiceConnectionState": {
"status": "Pending",
"description": "ckyopmubtpsguw",
"actionsRequired": "jpgbdhvzozadernuwxlv"
"description": "mrphqeraeqrrbd",
"actionsRequired": "uyunjjoxnujgwkmttrsg"
},
"provisioningState": "Creating"
},
"id": "rhszdfftga",
"name": "ccbc",
"type": "qxetina"
"id": "pyhmwq",
"name": "dsruunaacrewv",
"type": "naxqrkhejplkx"
}
],
"provisioningState": "Succeeded",
@ -51,30 +51,30 @@
"inputSchemaMapping": {
"properties": {
"id": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"topic": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"eventTime": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"eventType": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
},
"subject": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
},
"dataVersion": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
}
},
"inputSchemaMappingType": "Json"
},
"metricResourceId": "qtmpjtqcn"
"metricResourceId": "ulcweuvytjktvgihoeixr"
},
"id": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/domains/exampledomain2",
"name": "exampledomain2",

Просмотреть файл

@ -5,8 +5,8 @@
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"api-version": "2020-06-01",
"$filter": "cndxltnbvovmbnwhpx",
"$top": 23
"$filter": "qswocf",
"$top": 30
},
"responses": {
"200": {
@ -23,52 +23,52 @@
"id": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.Network/privateEndpoints/bmtpe5"
},
"groupIds": [
"bwmmnipnuwxzizifqyj"
"egkunsjumrmebsehnmhskrthaquly"
],
"privateLinkServiceConnectionState": {
"status": "Pending",
"description": "ckyopmubtpsguw",
"actionsRequired": "jpgbdhvzozadernuwxlv"
"description": "mrphqeraeqrrbd",
"actionsRequired": "uyunjjoxnujgwkmttrsg"
},
"provisioningState": "Creating"
},
"id": "rhszdfftga",
"name": "ccbc",
"type": "qxetina"
"id": "pyhmwq",
"name": "dsruunaacrewv",
"type": "naxqrkhejplkx"
}
],
"inputSchema": "EventGridSchema",
"inputSchemaMapping": {
"properties": {
"id": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"topic": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"eventTime": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"eventType": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
},
"subject": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
},
"dataVersion": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
}
},
"inputSchemaMappingType": "Json"
},
"metricResourceId": "dmifygywovubwigwbwdsmvj",
"metricResourceId": "qmozhszefpvzqemrvcaidpkpyeat",
"publicNetworkAccess": "Enabled",
"inboundIpRules": [
{
"ipMask": "zskyhtjzvowgqwqcytxlv",
"ipMask": "ygdabzwcofoed",
"action": "Allow"
}
]
@ -90,52 +90,52 @@
"id": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.Network/privateEndpoints/bmtpe5"
},
"groupIds": [
"bwmmnipnuwxzizifqyj"
"egkunsjumrmebsehnmhskrthaquly"
],
"privateLinkServiceConnectionState": {
"status": "Pending",
"description": "ckyopmubtpsguw",
"actionsRequired": "jpgbdhvzozadernuwxlv"
"description": "mrphqeraeqrrbd",
"actionsRequired": "uyunjjoxnujgwkmttrsg"
},
"provisioningState": "Creating"
},
"id": "rhszdfftga",
"name": "ccbc",
"type": "qxetina"
"id": "pyhmwq",
"name": "dsruunaacrewv",
"type": "naxqrkhejplkx"
}
],
"inputSchema": "EventGridSchema",
"inputSchemaMapping": {
"properties": {
"id": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"topic": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"eventTime": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"eventType": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
},
"subject": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
},
"dataVersion": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
}
},
"inputSchemaMappingType": "Json"
},
"metricResourceId": "dmcgm",
"metricResourceId": "mtesonmgnmyaj",
"publicNetworkAccess": "Enabled",
"inboundIpRules": [
{
"ipMask": "zskyhtjzvowgqwqcytxlv",
"ipMask": "ygdabzwcofoed",
"action": "Allow"
}
]
@ -147,7 +147,7 @@
"type": "Microsoft.EventGrid/domains"
}
],
"nextLink": "gplijycpuifsan"
"nextLink": "ockcgiqf"
}
}
}

Просмотреть файл

@ -4,8 +4,8 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"api-version": "2020-06-01",
"$filter": "cndxltnbvovmbnwhpx",
"$top": 23
"$filter": "qswocf",
"$top": 30
},
"responses": {
"200": {
@ -22,52 +22,52 @@
"id": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.Network/privateEndpoints/bmtpe5"
},
"groupIds": [
"bwmmnipnuwxzizifqyj"
"egkunsjumrmebsehnmhskrthaquly"
],
"privateLinkServiceConnectionState": {
"status": "Pending",
"description": "ckyopmubtpsguw",
"actionsRequired": "jpgbdhvzozadernuwxlv"
"description": "mrphqeraeqrrbd",
"actionsRequired": "uyunjjoxnujgwkmttrsg"
},
"provisioningState": "Creating"
},
"id": "rhszdfftga",
"name": "ccbc",
"type": "qxetina"
"id": "pyhmwq",
"name": "dsruunaacrewv",
"type": "naxqrkhejplkx"
}
],
"inputSchema": "EventGridSchema",
"inputSchemaMapping": {
"properties": {
"id": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"topic": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"eventTime": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"eventType": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
},
"subject": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
},
"dataVersion": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
}
},
"inputSchemaMappingType": "Json"
},
"metricResourceId": "dmifygywovubwigwbwdsmvj",
"metricResourceId": "qmozhszefpvzqemrvcaidpkpyeat",
"publicNetworkAccess": "Enabled",
"inboundIpRules": [
{
"ipMask": "zskyhtjzvowgqwqcytxlv",
"ipMask": "ygdabzwcofoed",
"action": "Allow"
}
]
@ -89,52 +89,52 @@
"id": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.Network/privateEndpoints/bmtpe5"
},
"groupIds": [
"bwmmnipnuwxzizifqyj"
"egkunsjumrmebsehnmhskrthaquly"
],
"privateLinkServiceConnectionState": {
"status": "Pending",
"description": "ckyopmubtpsguw",
"actionsRequired": "jpgbdhvzozadernuwxlv"
"description": "mrphqeraeqrrbd",
"actionsRequired": "uyunjjoxnujgwkmttrsg"
},
"provisioningState": "Creating"
},
"id": "rhszdfftga",
"name": "ccbc",
"type": "qxetina"
"id": "pyhmwq",
"name": "dsruunaacrewv",
"type": "naxqrkhejplkx"
}
],
"inputSchema": "EventGridSchema",
"inputSchemaMapping": {
"properties": {
"id": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"topic": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"eventTime": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"eventType": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
},
"subject": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
},
"dataVersion": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
}
},
"inputSchemaMappingType": "Json"
},
"metricResourceId": "dmcgm",
"metricResourceId": "mtesonmgnmyaj",
"publicNetworkAccess": "Enabled",
"inboundIpRules": [
{
"ipMask": "zskyhtjzvowgqwqcytxlv",
"ipMask": "ygdabzwcofoed",
"action": "Allow"
}
]
@ -146,7 +146,7 @@
"type": "Microsoft.EventGrid/domains"
}
],
"nextLink": "gplijycpuifsan"
"nextLink": "ockcgiqf"
}
}
}

Просмотреть файл

@ -4,7 +4,7 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "ujfcxfabgkjmwyydidguapplqmr",
"domainName": "lspzsykakbrxfpefaqfy",
"api-version": "2020-06-01"
},
"responses": {
@ -12,7 +12,7 @@
"body": {
"key1": "<key1>",
"key2": "<key2>",
"urlFormatKey": "https://microsoft.com/a"
"urlFormatKey": "https://microsoft.com/ai"
}
}
}

Просмотреть файл

@ -4,7 +4,7 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "kvwjvrcjpudu",
"domainName": "jtpqarxfgyiow",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -4,7 +4,7 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "jpjbmescuwychlankjftpomiamsdkx",
"domainName": "khjibqwcojyroaa",
"regenerateKeyRequest": {
"keyName": "key1"
},
@ -15,7 +15,7 @@
"body": {
"key1": "<key1>",
"key2": "<key2>",
"urlFormatKey": "https://microsoft.com/a"
"urlFormatKey": "https://microsoft.com/ai"
}
}
}

Просмотреть файл

@ -4,7 +4,7 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "nnojwa",
"domainName": "iuwhfphjjpgmihftxeqwom",
"regenerateKeyRequest": {
"keyName": "key1"
},

Просмотреть файл

@ -4,7 +4,7 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "c",
"domainName": "ypghrxlbi",
"domainUpdateParameters": {
"tags": {},
"properties": {
@ -51,18 +51,18 @@
"id": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.Network/privateEndpoints/bmtpe5"
},
"groupIds": [
"bwmmnipnuwxzizifqyj"
"egkunsjumrmebsehnmhskrthaquly"
],
"privateLinkServiceConnectionState": {
"status": "Pending",
"description": "ckyopmubtpsguw",
"actionsRequired": "jpgbdhvzozadernuwxlv"
"description": "mrphqeraeqrrbd",
"actionsRequired": "uyunjjoxnujgwkmttrsg"
},
"provisioningState": "Creating"
},
"id": "rhszdfftga",
"name": "ccbc",
"type": "qxetina"
"id": "pyhmwq",
"name": "dsruunaacrewv",
"type": "naxqrkhejplkx"
}
],
"provisioningState": "Succeeded",
@ -71,30 +71,30 @@
"inputSchemaMapping": {
"properties": {
"id": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"topic": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"eventTime": {
"sourceField": "nphcykydcgnniz"
"sourceField": "uwjxmdkwnjcnsahguodyeq"
},
"eventType": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
},
"subject": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
},
"dataVersion": {
"sourceField": "pxsmaln",
"defaultValue": "j"
"sourceField": "ezyvfkqyqfmnvfkxavjjyvcgkuvrxj",
"defaultValue": "cvgoovwmsinwmxnyfbzd"
}
},
"inputSchemaMappingType": "Json"
},
"metricResourceId": "qtmpjtqcn"
"metricResourceId": "ulcweuvytjktvgihoeixr"
},
"id": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/domains/exampledomain2",
"name": "exampledomain2",

Просмотреть файл

@ -4,7 +4,7 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "jlrjyt",
"domainName": "uhgwotxdzx",
"domainUpdateParameters": {},
"api-version": "2020-06-01"
},

Просмотреть файл

@ -2,8 +2,8 @@
"title": "EventSubscriptions_CreateOrUpdateForSubscription - generated by [MaximumSet] rule",
"operationId": "EventSubscriptions_CreateOrUpdate",
"parameters": {
"scope": "tzwpzwbdfuqusciidoctmbqqlswv",
"eventSubscriptionName": "gnjsthzggqvvptkyvabfpdlpoddzl",
"scope": "foqhi",
"eventSubscriptionName": "infsnpbnfu",
"eventSubscriptionInfo": {
"properties": {
"destination": {
@ -14,15 +14,15 @@
"subjectBeginsWith": "ExamplePrefix",
"subjectEndsWith": "ExampleSuffix",
"includedEventTypes": [
"fmmclskevoksp"
"zwmrcmrbxkuxrmjzqlhxzmwauggyon"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
@ -30,16 +30,16 @@
"label1",
"label2"
],
"expirationTimeUtc": "2023-11-15T01:32:03.362Z",
"expirationTimeUtc": "2024-01-29T21:42:06.661Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -62,15 +62,15 @@
"subjectBeginsWith": "ExamplePrefix",
"subjectEndsWith": "ExampleSuffix",
"includedEventTypes": [
"fmmclskevoksp"
"zwmrcmrbxkuxrmjzqlhxzmwauggyon"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
@ -80,16 +80,16 @@
"label1",
"label2"
],
"expirationTimeUtc": "2023-11-15T01:32:03.362Z",
"expirationTimeUtc": "2024-01-29T21:42:06.661Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}

Просмотреть файл

@ -2,8 +2,8 @@
"title": "EventSubscriptions_CreateOrUpdateForSubscription - generated by [MinimumSet] rule",
"operationId": "EventSubscriptions_CreateOrUpdate",
"parameters": {
"scope": "tnfiaxiir",
"eventSubscriptionName": "lfzqqvmabinlxanooj",
"scope": "bfr",
"eventSubscriptionName": "tnjytkljtna",
"eventSubscriptionInfo": {},
"api-version": "2020-06-01"
},

Просмотреть файл

@ -2,8 +2,8 @@
"title": "EventSubscriptions_DeleteForSubscription - generated by [MaximumSet] rule",
"operationId": "EventSubscriptions_Delete",
"parameters": {
"scope": "igkjjspiqs",
"eventSubscriptionName": "maadhsvfcttxysjdtarcpbwgkjcroc",
"scope": "scvxblwxk",
"eventSubscriptionName": "cvqpdhwrsyaw",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -2,8 +2,8 @@
"title": "EventSubscriptions_GetFullUrlForSubscription - generated by [MaximumSet] rule",
"operationId": "EventSubscriptions_GetFullUrl",
"parameters": {
"scope": "tbocjfjafbcdu",
"eventSubscriptionName": "idwrxmkylzrxlhimundaidj",
"scope": "hd",
"eventSubscriptionName": "xyqgvzcgkebjmqohrnlzmjmwizmcjs",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -2,8 +2,8 @@
"title": "EventSubscriptions_GetFullUrlForSubscription - generated by [MinimumSet] rule",
"operationId": "EventSubscriptions_GetFullUrl",
"parameters": {
"scope": "bhnojy",
"eventSubscriptionName": "srfmohckucyebivamyayrwm",
"scope": "hjhff",
"eventSubscriptionName": "cauzjcamizaycidofrj",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -2,8 +2,8 @@
"title": "EventSubscriptions_GetForSubscription - generated by [MaximumSet] rule",
"operationId": "EventSubscriptions_Get",
"parameters": {
"scope": "emcoqyckzpxfrzwwgyhgcd",
"eventSubscriptionName": "jslkklmlerebqnyg",
"scope": "mfrdydvdoftoohgn",
"eventSubscriptionName": "ludkffupqmqagwr",
"api-version": "2020-06-01"
},
"responses": {
@ -18,15 +18,15 @@
"subjectBeginsWith": "ExamplePrefix",
"subjectEndsWith": "ExampleSuffix",
"includedEventTypes": [
"fmmclskevoksp"
"zwmrcmrbxkuxrmjzqlhxzmwauggyon"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
@ -36,16 +36,16 @@
"label1",
"label2"
],
"expirationTimeUtc": "2023-11-15T01:32:03.362Z",
"expirationTimeUtc": "2024-01-29T21:42:06.661Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}

Просмотреть файл

@ -2,8 +2,8 @@
"title": "EventSubscriptions_GetForSubscription - generated by [MinimumSet] rule",
"operationId": "EventSubscriptions_Get",
"parameters": {
"scope": "iuzpjnzzcqbbf",
"eventSubscriptionName": "mznnhnvpayhsm",
"scope": "xsgwpecswnvoxaikxtceqyssomlc",
"eventSubscriptionName": "aredkzwdoizzajsdsvoeszcldxkb",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -4,11 +4,11 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "mdtzqwwejzvezusbekwoooctjt",
"topicName": "fscsbfltiksvkqg",
"domainName": "eqmfdmhkpphyrre",
"topicName": "ftd",
"api-version": "2020-06-01",
"$filter": "cndxltnbvovmbnwhpx",
"$top": 23
"$filter": "qswocf",
"$top": 30
},
"responses": {
"200": {
@ -21,36 +21,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "mkhpkxjauukv",
"subjectEndsWith": "hevwikusrrldros",
"subjectBeginsWith": "lpmkrbbeeawip",
"subjectEndsWith": "hazlsmzfihuttcyzpceflrgjnrbnxn",
"includedEventTypes": [
"eomatpurqnwmxek"
"zpxf"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"qrvdhtvqvxbyuaylgae"
"hypgjhofhbhqmmmlfzdimwytalia"
],
"expirationTimeUtc": "2023-11-15T01:32:03.372Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -66,36 +66,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "qphioyscspdvotwmubdwkjqdix",
"subjectEndsWith": "huja",
"subjectBeginsWith": "jcdybtpphztfhemryacoxamsyxvyj",
"subjectEndsWith": "qybjzfxmgficyrcgdghralys",
"includedEventTypes": [
"conbtmupooy"
"eaesdpbahjhk"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"r"
"k"
],
"expirationTimeUtc": "2023-11-15T01:32:03.373Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -105,7 +105,7 @@
"type": "Microsoft.EventGrid/eventSubscriptions"
}
],
"nextLink": "ptyov"
"nextLink": "vzhxjokxtffckkvajpfvkthoebtqe"
}
}
}

Просмотреть файл

@ -4,8 +4,8 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"domainName": "aapzfxqavbzyfgldhdkifdz",
"topicName": "ye",
"domainName": "bvzhqpoluqnjwhnona",
"topicName": "gieqwjaiwghlhpsrzqnctaujz",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -4,12 +4,12 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"providerNamespace": "liekmzlhlzzjtfladqnr",
"resourceTypeName": "zwrsngwboiiimpob",
"resourceName": "evohvvbwkumqrrmo",
"providerNamespace": "uomxw",
"resourceTypeName": "epfqtewijow",
"resourceName": "lgqeyv",
"api-version": "2020-06-01",
"$filter": "cndxltnbvovmbnwhpx",
"$top": 23
"$filter": "qswocf",
"$top": 30
},
"responses": {
"200": {
@ -22,36 +22,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "mkhpkxjauukv",
"subjectEndsWith": "hevwikusrrldros",
"subjectBeginsWith": "lpmkrbbeeawip",
"subjectEndsWith": "hazlsmzfihuttcyzpceflrgjnrbnxn",
"includedEventTypes": [
"eomatpurqnwmxek"
"zpxf"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"qrvdhtvqvxbyuaylgae"
"hypgjhofhbhqmmmlfzdimwytalia"
],
"expirationTimeUtc": "2023-11-15T01:32:03.372Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -67,36 +67,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "qphioyscspdvotwmubdwkjqdix",
"subjectEndsWith": "huja",
"subjectBeginsWith": "jcdybtpphztfhemryacoxamsyxvyj",
"subjectEndsWith": "qybjzfxmgficyrcgdghralys",
"includedEventTypes": [
"conbtmupooy"
"eaesdpbahjhk"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"r"
"k"
],
"expirationTimeUtc": "2023-11-15T01:32:03.373Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -106,7 +106,7 @@
"type": "Microsoft.EventGrid/eventSubscriptions"
}
],
"nextLink": "ptyov"
"nextLink": "vzhxjokxtffckkvajpfvkthoebtqe"
}
}
}

Просмотреть файл

@ -4,9 +4,9 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"providerNamespace": "djpakbvaphajnrlhqapxgqrfezxolv",
"resourceTypeName": "apenjbgaeseujxcmgkpbywvqu",
"resourceName": "wyfxtk",
"providerNamespace": "egacdzwhraw",
"resourceTypeName": "fegjcfvvqblxcl",
"resourceName": "gjrxypqbmfovqd",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -4,10 +4,10 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"topicTypeName": "uigmxepzqdijkbrpwitovkfcm",
"topicTypeName": "kpmosbfsy",
"api-version": "2020-06-01",
"$filter": "cndxltnbvovmbnwhpx",
"$top": 23
"$filter": "qswocf",
"$top": 30
},
"responses": {
"200": {
@ -20,36 +20,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "mkhpkxjauukv",
"subjectEndsWith": "hevwikusrrldros",
"subjectBeginsWith": "lpmkrbbeeawip",
"subjectEndsWith": "hazlsmzfihuttcyzpceflrgjnrbnxn",
"includedEventTypes": [
"eomatpurqnwmxek"
"zpxf"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"qrvdhtvqvxbyuaylgae"
"hypgjhofhbhqmmmlfzdimwytalia"
],
"expirationTimeUtc": "2023-11-15T01:32:03.372Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -65,36 +65,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "qphioyscspdvotwmubdwkjqdix",
"subjectEndsWith": "huja",
"subjectBeginsWith": "jcdybtpphztfhemryacoxamsyxvyj",
"subjectEndsWith": "qybjzfxmgficyrcgdghralys",
"includedEventTypes": [
"conbtmupooy"
"eaesdpbahjhk"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"r"
"k"
],
"expirationTimeUtc": "2023-11-15T01:32:03.373Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -104,7 +104,7 @@
"type": "Microsoft.EventGrid/eventSubscriptions"
}
],
"nextLink": "ptyov"
"nextLink": "vzhxjokxtffckkvajpfvkthoebtqe"
}
}
}

Просмотреть файл

@ -4,7 +4,7 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"topicTypeName": "kyosqderkzitbngum",
"topicTypeName": "oqdtlyxgzjvromh",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -5,8 +5,8 @@
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"api-version": "2020-06-01",
"$filter": "cndxltnbvovmbnwhpx",
"$top": 23
"$filter": "qswocf",
"$top": 30
},
"responses": {
"200": {
@ -19,36 +19,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "mkhpkxjauukv",
"subjectEndsWith": "hevwikusrrldros",
"subjectBeginsWith": "lpmkrbbeeawip",
"subjectEndsWith": "hazlsmzfihuttcyzpceflrgjnrbnxn",
"includedEventTypes": [
"eomatpurqnwmxek"
"zpxf"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"qrvdhtvqvxbyuaylgae"
"hypgjhofhbhqmmmlfzdimwytalia"
],
"expirationTimeUtc": "2023-11-15T01:32:03.372Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -64,36 +64,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "qphioyscspdvotwmubdwkjqdix",
"subjectEndsWith": "huja",
"subjectBeginsWith": "jcdybtpphztfhemryacoxamsyxvyj",
"subjectEndsWith": "qybjzfxmgficyrcgdghralys",
"includedEventTypes": [
"conbtmupooy"
"eaesdpbahjhk"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"r"
"k"
],
"expirationTimeUtc": "2023-11-15T01:32:03.373Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -103,7 +103,7 @@
"type": "Microsoft.EventGrid/eventSubscriptions"
}
],
"nextLink": "ptyov"
"nextLink": "vzhxjokxtffckkvajpfvkthoebtqe"
}
}
}

Просмотреть файл

@ -3,10 +3,10 @@
"operationId": "EventSubscriptions_ListGlobalBySubscriptionForTopicType",
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"topicTypeName": "wvjnplaodvjvdslxeysdppnhoa",
"topicTypeName": "otujxh",
"api-version": "2020-06-01",
"$filter": "cndxltnbvovmbnwhpx",
"$top": 23
"$filter": "qswocf",
"$top": 30
},
"responses": {
"200": {
@ -19,36 +19,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "mkhpkxjauukv",
"subjectEndsWith": "hevwikusrrldros",
"subjectBeginsWith": "lpmkrbbeeawip",
"subjectEndsWith": "hazlsmzfihuttcyzpceflrgjnrbnxn",
"includedEventTypes": [
"eomatpurqnwmxek"
"zpxf"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"qrvdhtvqvxbyuaylgae"
"hypgjhofhbhqmmmlfzdimwytalia"
],
"expirationTimeUtc": "2023-11-15T01:32:03.372Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -64,36 +64,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "qphioyscspdvotwmubdwkjqdix",
"subjectEndsWith": "huja",
"subjectBeginsWith": "jcdybtpphztfhemryacoxamsyxvyj",
"subjectEndsWith": "qybjzfxmgficyrcgdghralys",
"includedEventTypes": [
"conbtmupooy"
"eaesdpbahjhk"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"r"
"k"
],
"expirationTimeUtc": "2023-11-15T01:32:03.373Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -103,7 +103,7 @@
"type": "Microsoft.EventGrid/eventSubscriptions"
}
],
"nextLink": "ptyov"
"nextLink": "vzhxjokxtffckkvajpfvkthoebtqe"
}
}
}

Просмотреть файл

@ -3,7 +3,7 @@
"operationId": "EventSubscriptions_ListGlobalBySubscriptionForTopicType",
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"topicTypeName": "vumncwgbrazz",
"topicTypeName": "pltmduarhkrkjdeuynlmhvbl",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -4,8 +4,8 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"api-version": "2020-06-01",
"$filter": "cndxltnbvovmbnwhpx",
"$top": 23
"$filter": "qswocf",
"$top": 30
},
"responses": {
"200": {
@ -18,36 +18,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "mkhpkxjauukv",
"subjectEndsWith": "hevwikusrrldros",
"subjectBeginsWith": "lpmkrbbeeawip",
"subjectEndsWith": "hazlsmzfihuttcyzpceflrgjnrbnxn",
"includedEventTypes": [
"eomatpurqnwmxek"
"zpxf"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"qrvdhtvqvxbyuaylgae"
"hypgjhofhbhqmmmlfzdimwytalia"
],
"expirationTimeUtc": "2023-11-15T01:32:03.372Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -63,36 +63,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "qphioyscspdvotwmubdwkjqdix",
"subjectEndsWith": "huja",
"subjectBeginsWith": "jcdybtpphztfhemryacoxamsyxvyj",
"subjectEndsWith": "qybjzfxmgficyrcgdghralys",
"includedEventTypes": [
"conbtmupooy"
"eaesdpbahjhk"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"r"
"k"
],
"expirationTimeUtc": "2023-11-15T01:32:03.373Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -102,7 +102,7 @@
"type": "Microsoft.EventGrid/eventSubscriptions"
}
],
"nextLink": "ptyov"
"nextLink": "vzhxjokxtffckkvajpfvkthoebtqe"
}
}
}

Просмотреть файл

@ -4,11 +4,11 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"location": "jfyvh",
"topicTypeName": "ibbwpshamrfysjgfpyd",
"location": "krtrakunnhmmmxeurizvxq",
"topicTypeName": "royogsqpsjafezuqbjyj",
"api-version": "2020-06-01",
"$filter": "cndxltnbvovmbnwhpx",
"$top": 23
"$filter": "qswocf",
"$top": 30
},
"responses": {
"200": {
@ -21,36 +21,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "mkhpkxjauukv",
"subjectEndsWith": "hevwikusrrldros",
"subjectBeginsWith": "lpmkrbbeeawip",
"subjectEndsWith": "hazlsmzfihuttcyzpceflrgjnrbnxn",
"includedEventTypes": [
"eomatpurqnwmxek"
"zpxf"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"qrvdhtvqvxbyuaylgae"
"hypgjhofhbhqmmmlfzdimwytalia"
],
"expirationTimeUtc": "2023-11-15T01:32:03.372Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -66,36 +66,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "qphioyscspdvotwmubdwkjqdix",
"subjectEndsWith": "huja",
"subjectBeginsWith": "jcdybtpphztfhemryacoxamsyxvyj",
"subjectEndsWith": "qybjzfxmgficyrcgdghralys",
"includedEventTypes": [
"conbtmupooy"
"eaesdpbahjhk"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"r"
"k"
],
"expirationTimeUtc": "2023-11-15T01:32:03.373Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -105,7 +105,7 @@
"type": "Microsoft.EventGrid/eventSubscriptions"
}
],
"nextLink": "ptyov"
"nextLink": "vzhxjokxtffckkvajpfvkthoebtqe"
}
}
}

Просмотреть файл

@ -4,8 +4,8 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"location": "izqaanodlknrluf",
"topicTypeName": "kddurqjqqbjt",
"location": "yitoupf",
"topicTypeName": "nsagqbnsxzkrpuds",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -4,10 +4,10 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"location": "ksyksnks",
"location": "spdcamzfhkxlbht",
"api-version": "2020-06-01",
"$filter": "cndxltnbvovmbnwhpx",
"$top": 23
"$filter": "qswocf",
"$top": 30
},
"responses": {
"200": {
@ -20,36 +20,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "mkhpkxjauukv",
"subjectEndsWith": "hevwikusrrldros",
"subjectBeginsWith": "lpmkrbbeeawip",
"subjectEndsWith": "hazlsmzfihuttcyzpceflrgjnrbnxn",
"includedEventTypes": [
"eomatpurqnwmxek"
"zpxf"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"qrvdhtvqvxbyuaylgae"
"hypgjhofhbhqmmmlfzdimwytalia"
],
"expirationTimeUtc": "2023-11-15T01:32:03.372Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -65,36 +65,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "qphioyscspdvotwmubdwkjqdix",
"subjectEndsWith": "huja",
"subjectBeginsWith": "jcdybtpphztfhemryacoxamsyxvyj",
"subjectEndsWith": "qybjzfxmgficyrcgdghralys",
"includedEventTypes": [
"conbtmupooy"
"eaesdpbahjhk"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"r"
"k"
],
"expirationTimeUtc": "2023-11-15T01:32:03.373Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -104,7 +104,7 @@
"type": "Microsoft.EventGrid/eventSubscriptions"
}
],
"nextLink": "ptyov"
"nextLink": "vzhxjokxtffckkvajpfvkthoebtqe"
}
}
}

Просмотреть файл

@ -4,7 +4,7 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"location": "oycp",
"location": "peyqfzgzxdaux",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -3,11 +3,11 @@
"operationId": "EventSubscriptions_ListRegionalBySubscriptionForTopicType",
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"location": "zmb",
"topicTypeName": "vegehduvgtjsrwajoaieenwxdpbrif",
"location": "ldwebftvohpvyulrwknsvj",
"topicTypeName": "jvgucomatymzykvaqnblnzpy",
"api-version": "2020-06-01",
"$filter": "cndxltnbvovmbnwhpx",
"$top": 23
"$filter": "qswocf",
"$top": 30
},
"responses": {
"200": {
@ -20,36 +20,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "mkhpkxjauukv",
"subjectEndsWith": "hevwikusrrldros",
"subjectBeginsWith": "lpmkrbbeeawip",
"subjectEndsWith": "hazlsmzfihuttcyzpceflrgjnrbnxn",
"includedEventTypes": [
"eomatpurqnwmxek"
"zpxf"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"qrvdhtvqvxbyuaylgae"
"hypgjhofhbhqmmmlfzdimwytalia"
],
"expirationTimeUtc": "2023-11-15T01:32:03.372Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -65,36 +65,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "qphioyscspdvotwmubdwkjqdix",
"subjectEndsWith": "huja",
"subjectBeginsWith": "jcdybtpphztfhemryacoxamsyxvyj",
"subjectEndsWith": "qybjzfxmgficyrcgdghralys",
"includedEventTypes": [
"conbtmupooy"
"eaesdpbahjhk"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"r"
"k"
],
"expirationTimeUtc": "2023-11-15T01:32:03.373Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -104,7 +104,7 @@
"type": "Microsoft.EventGrid/eventSubscriptions"
}
],
"nextLink": "ptyov"
"nextLink": "vzhxjokxtffckkvajpfvkthoebtqe"
}
}
}

Просмотреть файл

@ -3,8 +3,8 @@
"operationId": "EventSubscriptions_ListRegionalBySubscriptionForTopicType",
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"location": "optasf",
"topicTypeName": "pktmpsoiencxvdbybbqlbzmfzzso",
"location": "bcd",
"topicTypeName": "orwegfbldcqnjbydsmxncyac",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -3,10 +3,10 @@
"operationId": "EventSubscriptions_ListRegionalBySubscription",
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"location": "kyykwenvzhuiccbvguqdhknd",
"location": "ownuuzwhsgvbxwr",
"api-version": "2020-06-01",
"$filter": "cndxltnbvovmbnwhpx",
"$top": 23
"$filter": "qswocf",
"$top": 30
},
"responses": {
"200": {
@ -19,36 +19,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "mkhpkxjauukv",
"subjectEndsWith": "hevwikusrrldros",
"subjectBeginsWith": "lpmkrbbeeawip",
"subjectEndsWith": "hazlsmzfihuttcyzpceflrgjnrbnxn",
"includedEventTypes": [
"eomatpurqnwmxek"
"zpxf"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"qrvdhtvqvxbyuaylgae"
"hypgjhofhbhqmmmlfzdimwytalia"
],
"expirationTimeUtc": "2023-11-15T01:32:03.372Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -64,36 +64,36 @@
},
"filter": {
"isSubjectCaseSensitive": true,
"subjectBeginsWith": "qphioyscspdvotwmubdwkjqdix",
"subjectEndsWith": "huja",
"subjectBeginsWith": "jcdybtpphztfhemryacoxamsyxvyj",
"subjectEndsWith": "qybjzfxmgficyrcgdghralys",
"includedEventTypes": [
"conbtmupooy"
"eaesdpbahjhk"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
"provisioningState": "Succeeded",
"topic": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg",
"labels": [
"r"
"k"
],
"expirationTimeUtc": "2023-11-15T01:32:03.373Z",
"expirationTimeUtc": "2024-01-29T21:42:06.666Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -103,7 +103,7 @@
"type": "Microsoft.EventGrid/eventSubscriptions"
}
],
"nextLink": "ptyov"
"nextLink": "vzhxjokxtffckkvajpfvkthoebtqe"
}
}
}

Просмотреть файл

@ -3,7 +3,7 @@
"operationId": "EventSubscriptions_ListRegionalBySubscription",
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"location": "iiwciscvhiaifpcfz",
"location": "kypthofunlm",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -2,8 +2,8 @@
"title": "EventSubscriptions_UpdateForSubscription - generated by [MaximumSet] rule",
"operationId": "EventSubscriptions_Update",
"parameters": {
"scope": "mmsahkcfdwkygguhyamwlkqyejy",
"eventSubscriptionName": "jvuixjwmyw",
"scope": "qvyzzqtzgrkldbjsyujufn",
"eventSubscriptionName": "w",
"eventSubscriptionUpdateParameters": {
"destination": {
"endpointType": "WebHook"
@ -13,15 +13,15 @@
"subjectBeginsWith": "existingPrefix",
"subjectEndsWith": "newSuffix",
"includedEventTypes": [
"btfnkc"
"bthdceudwnivzezifaja"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
@ -29,16 +29,16 @@
"label1",
"label2"
],
"expirationTimeUtc": "2023-11-15T01:32:03.369Z",
"expirationTimeUtc": "2024-01-29T21:42:06.665Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}
@ -60,15 +60,15 @@
"subjectBeginsWith": "ExamplePrefix",
"subjectEndsWith": "ExampleSuffix",
"includedEventTypes": [
"btfnkc"
"bthdceudwnivzezifaja"
],
"advancedFilters": [
{
"values": [
11
17
],
"operatorType": "NumberIn",
"key": "pdqxfssbbevfqpxlooilghbmrvvqk"
"key": "bqbfvjrzxplrwbswlqlslripgauys"
}
]
},
@ -78,16 +78,16 @@
"label1",
"label2"
],
"expirationTimeUtc": "2023-11-15T01:32:03.362Z",
"expirationTimeUtc": "2024-01-29T21:42:06.661Z",
"eventDeliverySchema": "EventGridSchema",
"retryPolicy": {
"maxDeliveryAttempts": 19,
"eventTimeToLiveInMinutes": 21
"maxDeliveryAttempts": 26,
"eventTimeToLiveInMinutes": 6
},
"deadLetterDestination": {
"properties": {
"resourceId": "vorbtfnlepolxtyrlvcmopnoyhbcv",
"blobContainerName": "yvizoknevcezfvgl"
"resourceId": "pnfosjdbdwngufpymkxrqwnkp",
"blobContainerName": "wfhnqssvnhinuanbchwvva"
},
"endpointType": "StorageBlob"
}

Просмотреть файл

@ -2,8 +2,8 @@
"title": "EventSubscriptions_UpdateForSubscription - generated by [MinimumSet] rule",
"operationId": "EventSubscriptions_Update",
"parameters": {
"scope": "wetoooj",
"eventSubscriptionName": "jlgsgbahysafmzhnvwes",
"scope": "ymdxsfsnyvnazwsx",
"eventSubscriptionName": "xekzlrwardsohfecasnfqtuerqlyot",
"eventSubscriptionUpdateParameters": {},
"api-version": "2020-06-01"
},

Просмотреть файл

@ -14,7 +14,7 @@
"provider": "Microsoft Event Grid",
"resource": "EventGrid Resource Provider",
"operation": "Registers the EventGrid Resource Provider",
"description": "rxxxkyg"
"description": "lospftjonapoadgusjtiqfdztklil"
},
"origin": "UserAndSystem",
"properties": {}
@ -25,7 +25,7 @@
"provider": "Microsoft Event Grid",
"resource": "eventSubscriptions",
"operation": "Write EventSubscription",
"description": "qqrfmhjpdcpi"
"description": "sqfpxd"
},
"origin": "UserAndSystem",
"properties": {}
@ -36,7 +36,7 @@
"provider": "Microsoft Event Grid",
"resource": "eventSubscriptions",
"operation": "Read EventSubscription",
"description": "rnmyxkhgdao"
"description": "asjixvfgzoxvvuscn"
},
"origin": "UserAndSystem",
"properties": {}
@ -47,7 +47,7 @@
"provider": "Microsoft Event Grid",
"resource": "eventSubscriptions",
"operation": "Delete EventSubscription",
"description": "ujsagme"
"description": "frptmczvhb"
},
"origin": "UserAndSystem",
"properties": {}
@ -58,7 +58,7 @@
"provider": "Microsoft Event Grid",
"resource": "topics",
"operation": "Write Topic",
"description": "naufzdxpptpfkpbr"
"description": "aslydnpszhemfifypjk"
},
"origin": "UserAndSystem",
"properties": {}
@ -69,7 +69,7 @@
"provider": "Microsoft Event Grid",
"resource": "topics",
"operation": "Read Topic",
"description": "neuqnxbosrjgqvmtubrjihexdui"
"description": "uksr"
},
"origin": "UserAndSystem",
"properties": {}
@ -80,7 +80,7 @@
"provider": "Microsoft Event Grid",
"resource": "topics",
"operation": "Delete Topic",
"description": "snvmxwukhgvmuu"
"description": "i"
},
"origin": "UserAndSystem",
"properties": {}

Просмотреть файл

@ -5,8 +5,8 @@
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"parentType": "topics",
"parentName": "gkufynutiacyqchqccrosals",
"privateEndpointConnectionName": "srpfaikqpdbxzkkgouydegt",
"parentName": "krvbitmofzj",
"privateEndpointConnectionName": "lktirhvwx",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -5,8 +5,8 @@
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"parentType": "topics",
"parentName": "zxmkvfspvdeatrhxoowuhaymxo",
"privateEndpointConnectionName": "qzvfqezrtwezf",
"parentName": "lodwtigpbl",
"privateEndpointConnectionName": "ddwuvqhdzesqpksj",
"api-version": "2020-06-01"
},
"responses": {
@ -16,7 +16,7 @@
"privateLinkServiceConnectionState": {
"status": "Approved",
"actionsRequired": "None",
"description": "lemmrbihomajiyxsjvaqua"
"description": "krmtyubaquasbn"
},
"privateEndpoint": {
"id": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.Network/privateEndpoints/bmtpe5"

Просмотреть файл

@ -5,8 +5,8 @@
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"parentType": "topics",
"parentName": "vtdj",
"privateEndpointConnectionName": "ihgwtuyhmqywkytjagy",
"parentName": "fxyycocolncpojbpurjxxoa",
"privateEndpointConnectionName": "bi",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -5,10 +5,10 @@
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"parentType": "topics",
"parentName": "dyimudk",
"parentName": "tlazzqfveijrfdbohrmkltmsdpbm",
"api-version": "2020-06-01",
"$filter": "cndxltnbvovmbnwhpx",
"$top": 23
"$filter": "qswocf",
"$top": 30
},
"responses": {
"200": {
@ -25,7 +25,7 @@
"privateLinkServiceConnectionState": {
"status": "Pending",
"actionsRequired": "None",
"description": "grtmqadmfhmptxcwudbeatzhalirid"
"description": "v"
},
"provisioningState": "Succeeded"
},
@ -34,7 +34,7 @@
"type": "Microsoft.EventGrid/topics/privateEndpointConnections"
}
],
"nextLink": "zjfowrpp"
"nextLink": "fypmzgour"
}
}
}

Просмотреть файл

@ -5,7 +5,7 @@
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"parentType": "topics",
"parentName": "jxwvwqqvkwzaayxvjbbybzpf",
"parentName": "wdqvhgov",
"api-version": "2020-06-01"
},
"responses": {

Просмотреть файл

@ -5,14 +5,14 @@
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"parentType": "topics",
"parentName": "pfnthevvt",
"privateEndpointConnectionName": "hmrwqxsbndhgdgie",
"parentName": "alnsl",
"privateEndpointConnectionName": "idokfagppikezzkfcchcgnj",
"privateEndpointConnection": {
"properties": {
"privateLinkServiceConnectionState": {
"status": "Approved",
"actionsRequired": "None",
"description": "lemmrbihomajiyxsjvaqua"
"description": "krmtyubaquasbn"
},
"privateEndpoint": {
"id": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.Network/privateEndpoints/bmtpe5"
@ -32,7 +32,7 @@
"privateLinkServiceConnectionState": {
"status": "Approved",
"actionsRequired": "None",
"description": "lemmrbihomajiyxsjvaqua"
"description": "krmtyubaquasbn"
},
"privateEndpoint": {
"id": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.Network/privateEndpoints/bmtpe5"
@ -56,7 +56,7 @@
"privateLinkServiceConnectionState": {
"status": "Approved",
"actionsRequired": "None",
"description": "lemmrbihomajiyxsjvaqua"
"description": "krmtyubaquasbn"
},
"privateEndpoint": {
"id": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.Network/privateEndpoints/bmtpe5"

Просмотреть файл

@ -5,8 +5,8 @@
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"parentType": "topics",
"parentName": "gsrntuaai",
"privateEndpointConnectionName": "flhwqzbpeucjeghklocoozrqugq",
"parentName": "oflkn",
"privateEndpointConnectionName": "nygy",
"privateEndpointConnection": {},
"api-version": "2020-06-01"
},

Просмотреть файл

@ -4,9 +4,9 @@
"parameters": {
"subscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"resourceGroupName": "rgEventGrid",
"parentType": "yedr",
"parentName": "tdhogjebghsjdbdfa",
"privateLinkResourceName": "ihbafpkij",
"parentType": "xlzuhqcswdnwnctwlbirbmjxtcund",
"parentName": "w",
"privateLinkResourceName": "hyiewmzzzbwxizgebiobovq",
"api-version": "2020-06-01"
},
"responses": {

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше