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
CreateConnectionResponse res = sdk.connections.createConnection(req);
63
131
64
-
if (res.connectionResponse.isPresent()) {
132
+
if (res.connectionResponse!=null) {
65
133
// handle response
66
134
}
67
135
} catch (Exception e) {
68
136
// handle exception
69
137
}
138
+
}
139
+
}
70
140
```
71
141
<!-- End SDK Example Usage -->
72
142
73
143
<!-- Start SDK Available Operations -->
74
144
## Available Resources and Operations
75
145
76
146
77
-
### connections
147
+
### [connections](docs/connections/README.md)
78
148
79
-
*`createConnection`-Create a connection
80
-
*`deleteConnection`-Delete a Connection
81
-
*`getConnection`-GetConnection details
82
-
*`listConnections`-List connections
149
+
*[createConnection](docs/connections/README.md#createconnection) - Create a connection
150
+
*[deleteConnection](docs/connections/README.md#deleteconnection) - Delete a Connection
151
+
*[getConnection](docs/connections/README.md#getconnection) - Get Connection details
152
+
*[listConnections](docs/connections/README.md#listconnections) - List connections
83
153
84
-
### destinations
154
+
### [destinations](docs/destinations/README.md)
85
155
86
-
*`createDestination`-Create a destination
87
-
*`deleteDestination`-Delete a Destination
88
-
*`getDestination`-GetDestination details
89
-
*`listDestinations`-List destinations
156
+
*[createDestination](docs/destinations/README.md#createdestination) - Create a destination
157
+
*[deleteDestination](docs/destinations/README.md#deletedestination) - Delete a Destination
158
+
*[getDestination](docs/destinations/README.md#getdestination) - Get Destination details
159
+
*[listDestinations](docs/destinations/README.md#listdestinations) - List destinations
90
160
91
-
### jobs
161
+
### [jobs](docs/jobs/README.md)
92
162
93
-
*`cancelJob`-Cancel a running Job
94
-
*`createJob`-Trigger a sync or reset job of a connection
95
-
*`getJob`-GetJob status and details
96
-
*`listJobs`-ListJobs by sync type
163
+
*[cancelJob](docs/jobs/README.md#canceljob) - Cancel a running Job
164
+
*[createJob](docs/jobs/README.md#createjob) - Trigger a sync or reset job of a connection
165
+
*[getJob](docs/jobs/README.md#getjob) - Get Job status and details
166
+
*[listJobs](docs/jobs/README.md#listjobs) - List Jobs by sync type
97
167
98
-
### sources
168
+
### [sources](docs/sources/README.md)
99
169
100
-
*`createSource`-Create a source
101
-
*`deleteSource`-Delete a Source
102
-
*`getSource`-GetSource details
103
-
*`initiateOAuth`-InitiateOAuthfor a source
104
-
*`listSources`-List sources
170
+
*[createSource](docs/sources/README.md#createsource) - Create a source
171
+
*[deleteSource](docs/sources/README.md#deletesource) - Delete a Source
172
+
*[getSource](docs/sources/README.md#getsource) - Get Source details
173
+
*[initiateOAuth](docs/sources/README.md#initiateoauth) - Initiate OAuth for a source
174
+
*[listSources](docs/sources/README.md#listsources) - List sources
105
175
106
-
### streams
176
+
### [streams](docs/streams/README.md)
107
177
108
-
*`getStreamProperties`-Get stream properties
178
+
*[getStreamProperties](docs/streams/README.md#getstreamproperties) - Get stream properties
109
179
110
-
### workspaces
180
+
### [workspaces](docs/workspaces/README.md)
111
181
112
-
*`createOrUpdateWorkspaceOAuthCredentials`-CreateOAuth override credentials for a workspace and source type.
113
-
*`createWorkspace`-Create a workspace
114
-
*`getWorkspace`-GetWorkspace details
115
-
*`listWorkspaces`-List workspaces
182
+
*[createOrUpdateWorkspaceOAuthCredentials](docs/workspaces/README.md#createorupdateworkspaceoauthcredentials) - Create OAuth override credentials for a workspace and source type.
183
+
*[createWorkspace](docs/workspaces/README.md#createworkspace) - Create a workspace
184
+
*[getWorkspace](docs/workspaces/README.md#getworkspace) - Get Workspace details
185
+
*[listWorkspaces](docs/workspaces/README.md#listworkspaces) - List workspaces
0 commit comments