/// <summary> /// List of secret keys the are stored for Organization. For example: /// <code> /// github_api_key, /// some_other_key, /// a_secret_key /// </code> /// </summary> /// <param name="orgId">the organization for get secrets</param> /// <returns>the secret keys</returns> public async Task <List <string> > GetSecretsAsync(string orgId) { Arguments.CheckNonEmptyString(orgId, nameof(orgId)); var response = await _service.GetOrgsIDSecretsAsync(orgId).ConfigureAwait(false); return(response.Secrets); }
/// <summary> /// List of secret keys the are stored for Organization. For example: /// <code> /// github_api_key, /// some_other_key, /// a_secret_key /// </code> /// </summary> /// <param name="orgId">the organization for get secrets</param> /// <returns>the secret keys</returns> public async Task <List <string> > GetSecretsAsync(string orgId) { Arguments.CheckNonEmptyString(orgId, nameof(orgId)); return(await _service.GetOrgsIDSecretsAsync(orgId).ContinueWith(t => t.Result.Secrets)); }
/// <summary> /// List of secret keys the are stored for Organization. For example: /// <code> /// github_api_key, /// some_other_key, /// a_secret_key /// </code> /// </summary> /// <param name="orgId">the organization for get secrets</param> /// <returns>the secret keys</returns> public async Task <List <string> > GetSecretsAsync(string orgId) { Arguments.CheckNonEmptyString(orgId, nameof(orgId)); return((await _service.GetOrgsIDSecretsAsync(orgId)).Secrets); }