changed action for arc cluster to use az connectedk8s proxy

This commit is contained in:
Atharva Mulmuley
2021-04-27 16:56:18 +05:30
parent e5a2133107
commit 23202c929e
760 changed files with 85163 additions and 107 deletions

24
node_modules/actions-secret-parser/index.d.ts generated vendored Normal file
View File

@ -0,0 +1,24 @@
export declare enum FormatType {
"JSON" = 0,
"XML" = 1
}
/**
* Takes content as string and format type (xml, json).
* Exposes getSecret method to get value of specific secret in object and set it as secret.
*/
export declare class SecretParser {
private dom;
private contentType;
constructor(content: string, contentType: FormatType);
/**
*
* @param key jsonpath or xpath depending on content type
* @param isSecret should the value parsed be a secret. Deafult: true
* @param variableName optional. If provided value will be exported with this variable name
* @returns a string value or empty string if key not found
*/
getSecret(key: string, isSecret?: boolean, variableName?: string): string;
private extractJsonPath;
private extractXmlPath;
private handleSecret;
}