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
*[GetOrganizations](docs/sdks/organizations/README.md#getorganizations) - Get organizations for a user
93
+
89
94
### [Embeds](docs/sdks/embeds/README.md)
90
95
91
96
*[GetEmbedAccessToken](docs/sdks/embeds/README.md#getembedaccesstoken) - Get an embed access token for the current workspace.
@@ -94,6 +99,8 @@ var res = await sdk.Apis.GetApisAsync(req);
94
99
95
100
### [Events](docs/sdks/events/README.md)
96
101
102
+
*[GetWorkspaceEvents](docs/sdks/events/README.md#getworkspaceevents) - Load recent events for a particular workspace
103
+
*[GetWorkspaceTargets](docs/sdks/events/README.md#getworkspacetargets) - Load targets for a particular workspace
97
104
*[PostWorkspaceEvents](docs/sdks/events/README.md#postworkspaceevents) - Post events for a specific workspace
98
105
<!-- End Available Resources and Operations [operations] -->
99
106
@@ -124,13 +131,14 @@ The default server can also be overridden globally by passing a URL to the `serv
124
131
125
132
### Per-Client Security Schemes
126
133
127
-
This SDK supports the following security scheme globally:
134
+
This SDK supports the following security schemes globally:
128
135
129
-
| Name | Type | Scheme |
130
-
| -------- | -------- | -------- |
131
-
|`APIKey`| apiKey | API key |
136
+
| Name | Type | Scheme |
137
+
| ----------- | ----------- | ----------- |
138
+
|`APIKey`| apiKey | API key |
139
+
|`Bearer`| http | HTTP Bearer |
132
140
133
-
You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. For example:
141
+
You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example:
134
142
```csharp
135
143
usingSpeakeasySDK;
136
144
usingSpeakeasySDK.Models.Shared;
@@ -160,7 +168,7 @@ var res = await sdk.Apis.DeleteApiAsync(req);
160
168
161
169
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.
162
170
163
-
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 `PostWorkspaceEvents`. But if you want to do so you may, which will locally override the global setting. See the example code below for a demonstration.
171
+
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 `GetWorkspaceEvents`. But if you want to do so you may, which will locally override the global setting. See the example code below for a demonstration.
164
172
165
173
166
174
### Available Globals
@@ -178,31 +186,16 @@ The following global parameter is available.
0 commit comments