@backstage/plugin-catalog-backend-module-azure 0.3.9 → 0.3.10-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/config.d.ts +34 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-azure
|
|
2
2
|
|
|
3
|
+
## 0.3.10-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 84443f1: Adds config definitions for Azure Blob Storage.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/integration@1.18.1-next.0
|
|
10
|
+
- @backstage/backend-plugin-api@1.4.3
|
|
11
|
+
- @backstage/config@1.3.3
|
|
12
|
+
- @backstage/plugin-catalog-common@1.1.5
|
|
13
|
+
- @backstage/plugin-catalog-node@1.19.0
|
|
14
|
+
|
|
3
15
|
## 0.3.9
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -55,6 +55,40 @@ export interface Config {
|
|
|
55
55
|
schedule?: SchedulerServiceTaskScheduleDefinitionConfig;
|
|
56
56
|
};
|
|
57
57
|
};
|
|
58
|
+
/**
|
|
59
|
+
* AzureBlobEntityProvider configuration
|
|
60
|
+
*/
|
|
61
|
+
azureBlob?:
|
|
62
|
+
| {
|
|
63
|
+
[name: string]: {
|
|
64
|
+
/**
|
|
65
|
+
* (Required) The Azure Blob Storage container name.
|
|
66
|
+
*/
|
|
67
|
+
containerName: string;
|
|
68
|
+
/**
|
|
69
|
+
* (Required) The Azure Storage account name.
|
|
70
|
+
*/
|
|
71
|
+
accountName: string;
|
|
72
|
+
/**
|
|
73
|
+
* (Optional) TaskScheduleDefinition for the refresh.
|
|
74
|
+
*/
|
|
75
|
+
schedule?: SchedulerServiceTaskScheduleDefinitionConfig;
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
| {
|
|
79
|
+
/**
|
|
80
|
+
* (Required) The Azure Blob Storage container name.
|
|
81
|
+
*/
|
|
82
|
+
containerName: string;
|
|
83
|
+
/**
|
|
84
|
+
* (Required) The Azure Storage account name.
|
|
85
|
+
*/
|
|
86
|
+
accountName: string;
|
|
87
|
+
/**
|
|
88
|
+
* (Optional) TaskScheduleDefinition for the refresh.
|
|
89
|
+
*/
|
|
90
|
+
schedule?: SchedulerServiceTaskScheduleDefinitionConfig;
|
|
91
|
+
};
|
|
58
92
|
};
|
|
59
93
|
};
|
|
60
94
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-azure",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.10-next.0",
|
|
4
4
|
"description": "A Backstage catalog backend module that helps integrate towards Azure",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -67,16 +67,16 @@
|
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"@azure/identity": "^4.0.0",
|
|
69
69
|
"@azure/storage-blob": "^12.5.0",
|
|
70
|
-
"@backstage/backend-plugin-api": "
|
|
71
|
-
"@backstage/config": "
|
|
72
|
-
"@backstage/integration": "
|
|
73
|
-
"@backstage/plugin-catalog-common": "
|
|
74
|
-
"@backstage/plugin-catalog-node": "
|
|
70
|
+
"@backstage/backend-plugin-api": "1.4.3",
|
|
71
|
+
"@backstage/config": "1.3.3",
|
|
72
|
+
"@backstage/integration": "1.18.1-next.0",
|
|
73
|
+
"@backstage/plugin-catalog-common": "1.1.5",
|
|
74
|
+
"@backstage/plugin-catalog-node": "1.19.0",
|
|
75
75
|
"uuid": "^11.0.0"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
|
-
"@backstage/backend-test-utils": "
|
|
79
|
-
"@backstage/cli": "
|
|
78
|
+
"@backstage/backend-test-utils": "1.9.1-next.0",
|
|
79
|
+
"@backstage/cli": "0.34.4-next.0",
|
|
80
80
|
"luxon": "^3.0.0",
|
|
81
81
|
"msw": "^1.0.0"
|
|
82
82
|
},
|