-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathProgram.cs
123 lines (108 loc) · 3.62 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// Copyright 2024 Deepgram .NET SDK contributors. All Rights Reserved.
// Use of this source code is governed by a MIT license that can be found in the LICENSE file.
// SPDX-License-Identifier: MIT
using Deepgram.Models.Manage.v1;
namespace SampleApp
{
class Program
{
static async Task Main(string[] args)
{
// Initialize Library with default logging
// Normal logging is "Info" level
Library.Initialize();
// use the client factory with a API Key set with the "DEEPGRAM_API_KEY" environment variable
var deepgramClient = ClientFactory.CreateManageClient();
// get projects
var projectResp = await deepgramClient.GetProjects();
if (projectResp == null)
{
Console.WriteLine("ListProjects failed.");
Environment.Exit(1);
}
string myId = null;
string myName = null;
foreach (var project in projectResp.Projects)
{
myId = project.ProjectId;
myName = project.Name;
Console.WriteLine($"ListProjects() - ID: {myId}, Name: {myName}");
break;
}
// list keys
var listResp = await deepgramClient.GetKeys(myId);
if (listResp == null)
{
Console.WriteLine("\n\nNo keys found\n\n");
}
else
{
Console.WriteLine($"\n\n{listResp}\n\n");
}
// create key
var createKey = new KeySchema()
{
Comment = "MyTestKey",
Scopes = new List<string> { "member" },
};
string myKeyId = null;
var createResp = await deepgramClient.CreateKey(myId, createKey);
if (createResp == null)
{
Console.WriteLine("\n\nCreateKey failed.\n\n");
Environment.Exit(1);
}
else
{
myKeyId = createResp.ApiKeyId;
Console.WriteLine($"\n\n{createResp}\n\n");
}
// list keys
listResp = await deepgramClient.GetKeys(myId);
if (listResp == null)
{
Console.WriteLine("\n\nNo keys found\n\n");
}
else
{
Console.WriteLine($"\n\n{listResp}\n\n");
}
// get key
var getResp = await deepgramClient.GetKey(myId, myKeyId);
if (getResp == null)
{
Console.WriteLine("\n\nGetKey failed.\n\n");
Environment.Exit(1);
}
else
{
Console.WriteLine($"\n\n{getResp}\n\n");
}
// delete key
var deleteResp = await deepgramClient.DeleteKey(myId, myKeyId);
if (deleteResp == null)
{
Console.WriteLine("\n\nDeleteKey failed.\n\n");
Environment.Exit(1);
}
else
{
Console.WriteLine($"\n\n{deleteResp}\n\n");
}
// list keys
listResp = await deepgramClient.GetKeys(myId);
if (listResp == null)
{
Console.WriteLine("\n\nNo keys found\n\n");
}
else
{
Console.WriteLine($"\n\n{listResp}\n\n");
}
Console.WriteLine("\n\nPress any key to exit.");
Console.ReadKey();
// Teardown Library
Library.Terminate();
}
}
}