adding changeset,api-report,addressing ci check

Signed-off-by: Ruben Vallejo <rvallejo@vmware.com>
This commit is contained in:
Ruben Vallejo
2023-02-07 15:38:33 -05:00
parent 1fef8423ce
commit 804f6d16b0
7 changed files with 53 additions and 33 deletions
+10
View File
@@ -3,6 +3,7 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
import { BasicPermission } from '@backstage/plugin-permission-common';
import { Entity } from '@backstage/catalog-model';
import type { JsonObject } from '@backstage/types';
import { PodStatus } from '@kubernetes/client-node';
@@ -206,6 +207,9 @@ export interface JobsFetchResponse {
type: 'jobs';
}
// @alpha
export const kubernetesClusterPermissions: BasicPermission[];
// @public (undocumented)
export type KubernetesErrorTypes =
| 'BAD_REQUEST'
@@ -217,6 +221,12 @@ export type KubernetesErrorTypes =
// @public (undocumented)
export type KubernetesFetchError = StatusError | RawFetchError;
// @alpha
export const kubernetesProxyCreatePermission: BasicPermission;
// @alpha
export const kubernetesProxyReadPermission: BasicPermission;
// @public (undocumented)
export interface KubernetesRequestAuth {
// (undocumented)
+4 -1
View File
@@ -16,7 +16,7 @@
import { createPermission } from '@backstage/plugin-permission-common';
/** This permission is used to authorize actions that involve using the kubernetes Proxy Endpoint /proxy
/** This permission is used to authorize `read` actions that involve using the kubernetes Proxy Endpoint /proxy
* @alpha
*/
export const kubernetesProxyReadPermission = createPermission({
@@ -24,6 +24,9 @@ export const kubernetesProxyReadPermission = createPermission({
attributes: { action: 'read' },
});
/** This permission is used to authorize `create` actions that involve using the kubernetes Proxy Endpoint /proxy
* @alpha
*/
export const kubernetesProxyCreatePermission = createPermission({
name: 'kubernetes.proxy.create',
attributes: { action: 'create' },