@@ -32,13 +32,13 @@ s = airbyte.Airbyte(
3232req = shared.DestinationCreateRequest(
3333 configuration = shared.DestinationGoogleSheets(
3434 credentials = shared.AuthenticationViaGoogleOAuth(
35- client_id = ' string ' ,
36- client_secret = ' string ' ,
37- refresh_token = ' string ' ,
35+ client_id = ' <value> ' ,
36+ client_secret = ' <value> ' ,
37+ refresh_token = ' <value> ' ,
3838 ),
3939 spreadsheet_id = ' https://docs.google.com/spreadsheets/d/1hLd9Qqti3UyLXZB2aFfUWDT7BG/edit' ,
4040 ),
41- name = ' string ' ,
41+ name = ' <value> ' ,
4242 workspace_id = ' 8360860a-d46e-48e6-af62-08e5ba5019ef' ,
4343)
4444
@@ -85,7 +85,7 @@ s = airbyte.Airbyte(
8585)
8686
8787req = operations.DeleteDestinationRequest(
88- destination_id = ' string ' ,
88+ destination_id = ' <value> ' ,
8989)
9090
9191res = s.destinations.delete_destination(req)
@@ -131,7 +131,7 @@ s = airbyte.Airbyte(
131131)
132132
133133req = operations.GetDestinationRequest(
134- destination_id = ' string ' ,
134+ destination_id = ' <value> ' ,
135135)
136136
137137res = s.destinations.get_destination(req)
@@ -221,7 +221,7 @@ s = airbyte.Airbyte(
221221)
222222
223223req = operations.PatchDestinationRequest(
224- destination_id = ' string ' ,
224+ destination_id = ' <value> ' ,
225225)
226226
227227res = s.destinations.patch_destination(req)
@@ -267,7 +267,7 @@ s = airbyte.Airbyte(
267267)
268268
269269req = operations.PutDestinationRequest(
270- destination_id = ' string ' ,
270+ destination_id = ' <value> ' ,
271271)
272272
273273res = s.destinations.put_destination(req)
0 commit comments