You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NUGET.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ var res = await sdk.Apis.GetApisAsync(req);
31
31
32
32
A parameter is configured globally. This parameter may be set on the SDK client instance itself during initialization. When configured as an option during SDK initialization, This global value will be used as the default on the operations that use it. When such operations are called, there is a place in each to override the global value, if needed.
33
33
34
-
For example, you can set `workspaceID` to `"<value>"` at SDK initialization and then you do not have to pass the same value on calls to operations like `GetWorkspaceEventsByTarget`. But if you want to do so you may, which will locally override the global setting. See the example code below for a demonstration.
34
+
For example, you can set `workspaceID` to `"<value>"` at SDK initialization and then you do not have to pass the same value on calls to operations like `GetWorkspace`. But if you want to do so you may, which will locally override the global setting. See the example code below for a demonstration.
35
35
36
36
37
37
### Available Globals
@@ -54,11 +54,9 @@ var sdk = new SDK(security: new Security() {
*[CreateFreeTrial](docs/sdks/organizations/README.md#createfreetrial) - Create a free trial for an organization
121
+
*[GetOrganization](docs/sdks/organizations/README.md#getorganization) - Get organization
121
122
*[GetOrganizationUsage](docs/sdks/organizations/README.md#getorganizationusage) - Get billing usage summary for a particular organization
122
123
*[GetOrganizations](docs/sdks/organizations/README.md#getorganizations) - Get organizations for a user
123
124
@@ -143,6 +144,10 @@ var res = await sdk.Apis.GetApisAsync(req);
143
144
*[GetValidEmbedAccessTokens](docs/sdks/embeds/README.md#getvalidembedaccesstokens) - Get all valid embed access tokens for the current workspace.
144
145
*[RevokeEmbedAccessToken](docs/sdks/embeds/README.md#revokeembedaccesstoken) - Revoke an embed access EmbedToken.
145
146
147
+
### [Workspaces](docs/sdks/workspaces/README.md)
148
+
149
+
*[GetWorkspace](docs/sdks/workspaces/README.md#getworkspace) - Get workspace
150
+
146
151
### [Events](docs/sdks/events/README.md)
147
152
148
153
*[GetWorkspaceEventsByTarget](docs/sdks/events/README.md#getworkspaceeventsbytarget) - Load recent events for a particular workspace
@@ -211,7 +216,7 @@ var res = await sdk.Apis.DeleteApiAsync(req);
211
216
212
217
A parameter is configured globally. This parameter may be set on the SDK client instance itself during initialization. When configured as an option during SDK initialization, This global value will be used as the default on the operations that use it. When such operations are called, there is a place in each to override the global value, if needed.
213
218
214
-
For example, you can set `workspaceID` to `"<value>"` at SDK initialization and then you do not have to pass the same value on calls to operations like `GetWorkspaceEventsByTarget`. But if you want to do so you may, which will locally override the global setting. See the example code below for a demonstration.
219
+
For example, you can set `workspaceID` to `"<value>"` at SDK initialization and then you do not have to pass the same value on calls to operations like `GetWorkspace`. But if you want to do so you may, which will locally override the global setting. See the example code below for a demonstration.
215
220
216
221
217
222
### Available Globals
@@ -234,11 +239,9 @@ var sdk = new SDK(security: new Security() {
0 commit comments