aws-sdk-devopsagent 1.7.0 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-devopsagent/client.rb +719 -25
- data/lib/aws-sdk-devopsagent/client_api.rb +570 -26
- data/lib/aws-sdk-devopsagent/types.rb +989 -35
- data/lib/aws-sdk-devopsagent.rb +1 -1
- data/sig/client.rbs +202 -5
- data/sig/params.rbs +17 -0
- data/sig/types.rbs +273 -3
- metadata +1 -1
data/lib/aws-sdk-devopsagent.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -110,6 +110,40 @@ module Aws
|
|
|
110
110
|
) -> _CreateAgentSpaceResponseSuccess
|
|
111
111
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAgentSpaceResponseSuccess
|
|
112
112
|
|
|
113
|
+
interface _CreateAssetResponseSuccess
|
|
114
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAssetResponse]
|
|
115
|
+
def asset: () -> Types::Asset
|
|
116
|
+
end
|
|
117
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#create_asset-instance_method
|
|
118
|
+
def create_asset: (
|
|
119
|
+
agent_space_id: ::String,
|
|
120
|
+
asset_type: ::String,
|
|
121
|
+
?metadata: {
|
|
122
|
+
},
|
|
123
|
+
content: Params::asset_content,
|
|
124
|
+
?client_token: ::String
|
|
125
|
+
) -> _CreateAssetResponseSuccess
|
|
126
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAssetResponseSuccess
|
|
127
|
+
|
|
128
|
+
interface _CreateAssetFileResponseSuccess
|
|
129
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAssetFileResponse]
|
|
130
|
+
def file: () -> Types::AssetFile
|
|
131
|
+
end
|
|
132
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#create_asset_file-instance_method
|
|
133
|
+
def create_asset_file: (
|
|
134
|
+
agent_space_id: ::String,
|
|
135
|
+
asset_id: ::String,
|
|
136
|
+
path: ::String,
|
|
137
|
+
content: {
|
|
138
|
+
bytes: ::String?,
|
|
139
|
+
text: ::String?
|
|
140
|
+
},
|
|
141
|
+
?metadata: {
|
|
142
|
+
},
|
|
143
|
+
?client_token: ::String
|
|
144
|
+
) -> _CreateAssetFileResponseSuccess
|
|
145
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAssetFileResponseSuccess
|
|
146
|
+
|
|
113
147
|
interface _CreateBacklogTaskResponseSuccess
|
|
114
148
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateBacklogTaskResponse]
|
|
115
149
|
def task: () -> Types::Task
|
|
@@ -155,6 +189,8 @@ module Aws
|
|
|
155
189
|
def resource_configuration_id: () -> ::String
|
|
156
190
|
def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
|
|
157
191
|
def certificate_expiry_time: () -> ::Time
|
|
192
|
+
def dns_resolution: () -> ("PUBLIC" | "IN_VPC")
|
|
193
|
+
def failure_message: () -> ::String
|
|
158
194
|
def tags: () -> ::Hash[::String, ::String]
|
|
159
195
|
end
|
|
160
196
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#create_private_connection-instance_method
|
|
@@ -169,7 +205,8 @@ module Aws
|
|
|
169
205
|
ip_address_type: ("IPV4" | "IPV6" | "DUAL_STACK")?,
|
|
170
206
|
ipv4_addresses_per_eni: ::Integer?,
|
|
171
207
|
port_ranges: Array[::String]?,
|
|
172
|
-
certificate: ::String
|
|
208
|
+
certificate: ::String?,
|
|
209
|
+
dns_resolution: ("PUBLIC" | "IN_VPC")?
|
|
173
210
|
}?,
|
|
174
211
|
self_managed: {
|
|
175
212
|
resource_configuration_id: ::String,
|
|
@@ -189,6 +226,27 @@ module Aws
|
|
|
189
226
|
) -> _DeleteAgentSpaceResponseSuccess
|
|
190
227
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAgentSpaceResponseSuccess
|
|
191
228
|
|
|
229
|
+
interface _DeleteAssetResponseSuccess
|
|
230
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAssetResponse]
|
|
231
|
+
end
|
|
232
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#delete_asset-instance_method
|
|
233
|
+
def delete_asset: (
|
|
234
|
+
agent_space_id: ::String,
|
|
235
|
+
asset_id: ::String
|
|
236
|
+
) -> _DeleteAssetResponseSuccess
|
|
237
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAssetResponseSuccess
|
|
238
|
+
|
|
239
|
+
interface _DeleteAssetFileResponseSuccess
|
|
240
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAssetFileResponse]
|
|
241
|
+
end
|
|
242
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#delete_asset_file-instance_method
|
|
243
|
+
def delete_asset_file: (
|
|
244
|
+
agent_space_id: ::String,
|
|
245
|
+
asset_id: ::String,
|
|
246
|
+
path: ::String
|
|
247
|
+
) -> _DeleteAssetFileResponseSuccess
|
|
248
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAssetFileResponseSuccess
|
|
249
|
+
|
|
192
250
|
interface _DeletePrivateConnectionResponseSuccess
|
|
193
251
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeletePrivateConnectionOutput]
|
|
194
252
|
def name: () -> ::String
|
|
@@ -219,6 +277,8 @@ module Aws
|
|
|
219
277
|
def resource_configuration_id: () -> ::String
|
|
220
278
|
def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
|
|
221
279
|
def certificate_expiry_time: () -> ::Time
|
|
280
|
+
def dns_resolution: () -> ("PUBLIC" | "IN_VPC")
|
|
281
|
+
def failure_message: () -> ::String
|
|
222
282
|
def tags: () -> ::Hash[::String, ::String]
|
|
223
283
|
end
|
|
224
284
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#describe_private_connection-instance_method
|
|
@@ -247,6 +307,7 @@ module Aws
|
|
|
247
307
|
interface _EnableOperatorAppResponseSuccess
|
|
248
308
|
include ::Seahorse::Client::_ResponseSuccess[Types::EnableOperatorAppOutput]
|
|
249
309
|
def agent_space_id: () -> ::String
|
|
310
|
+
def operator_app_url: () -> ::String
|
|
250
311
|
def iam: () -> Types::IamAuthConfiguration
|
|
251
312
|
def idc: () -> Types::IdcAuthConfiguration
|
|
252
313
|
def idp: () -> Types::IdpAuthConfiguration
|
|
@@ -289,6 +350,44 @@ module Aws
|
|
|
289
350
|
) -> _GetAgentSpaceResponseSuccess
|
|
290
351
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAgentSpaceResponseSuccess
|
|
291
352
|
|
|
353
|
+
interface _GetAssetResponseSuccess
|
|
354
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAssetResponse]
|
|
355
|
+
def asset: () -> Types::Asset
|
|
356
|
+
end
|
|
357
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#get_asset-instance_method
|
|
358
|
+
def get_asset: (
|
|
359
|
+
agent_space_id: ::String,
|
|
360
|
+
asset_id: ::String,
|
|
361
|
+
?asset_version: ::Integer
|
|
362
|
+
) -> _GetAssetResponseSuccess
|
|
363
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssetResponseSuccess
|
|
364
|
+
|
|
365
|
+
interface _GetAssetContentResponseSuccess
|
|
366
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAssetContentResponse]
|
|
367
|
+
def content: () -> Types::AssetZipContent
|
|
368
|
+
def version: () -> ::Integer
|
|
369
|
+
end
|
|
370
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#get_asset_content-instance_method
|
|
371
|
+
def get_asset_content: (
|
|
372
|
+
agent_space_id: ::String,
|
|
373
|
+
asset_id: ::String,
|
|
374
|
+
?asset_version: ::Integer
|
|
375
|
+
) -> _GetAssetContentResponseSuccess
|
|
376
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssetContentResponseSuccess
|
|
377
|
+
|
|
378
|
+
interface _GetAssetFileResponseSuccess
|
|
379
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAssetFileResponse]
|
|
380
|
+
def file: () -> Types::AssetFile
|
|
381
|
+
end
|
|
382
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#get_asset_file-instance_method
|
|
383
|
+
def get_asset_file: (
|
|
384
|
+
agent_space_id: ::String,
|
|
385
|
+
asset_id: ::String,
|
|
386
|
+
path: ::String,
|
|
387
|
+
?asset_version: ::Integer
|
|
388
|
+
) -> _GetAssetFileResponseSuccess
|
|
389
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssetFileResponseSuccess
|
|
390
|
+
|
|
292
391
|
interface _GetAssociationResponseSuccess
|
|
293
392
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetAssociationOutput]
|
|
294
393
|
def association: () -> Types::Association
|
|
@@ -313,6 +412,7 @@ module Aws
|
|
|
313
412
|
|
|
314
413
|
interface _GetOperatorAppResponseSuccess
|
|
315
414
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetOperatorAppOutput]
|
|
415
|
+
def operator_app_url: () -> ::String
|
|
316
416
|
def iam: () -> Types::IamAuthConfiguration
|
|
317
417
|
def idc: () -> Types::IdcAuthConfiguration
|
|
318
418
|
def idp: () -> Types::IdpAuthConfiguration
|
|
@@ -358,6 +458,63 @@ module Aws
|
|
|
358
458
|
) -> _ListAgentSpacesResponseSuccess
|
|
359
459
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAgentSpacesResponseSuccess
|
|
360
460
|
|
|
461
|
+
interface _ListAssetFilesResponseSuccess
|
|
462
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAssetFilesResponse]
|
|
463
|
+
def items: () -> ::Array[Types::AssetFileSummary]
|
|
464
|
+
def next_token: () -> ::String
|
|
465
|
+
end
|
|
466
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#list_asset_files-instance_method
|
|
467
|
+
def list_asset_files: (
|
|
468
|
+
agent_space_id: ::String,
|
|
469
|
+
asset_id: ::String,
|
|
470
|
+
?asset_version: ::Integer,
|
|
471
|
+
?next_token: ::String,
|
|
472
|
+
?max_results: ::Integer
|
|
473
|
+
) -> _ListAssetFilesResponseSuccess
|
|
474
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssetFilesResponseSuccess
|
|
475
|
+
|
|
476
|
+
interface _ListAssetTypesResponseSuccess
|
|
477
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAssetTypesResponse]
|
|
478
|
+
def items: () -> ::Array[Types::AssetTypeSummary]
|
|
479
|
+
def next_token: () -> ::String
|
|
480
|
+
end
|
|
481
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#list_asset_types-instance_method
|
|
482
|
+
def list_asset_types: (
|
|
483
|
+
?next_token: ::String,
|
|
484
|
+
?max_results: ::Integer
|
|
485
|
+
) -> _ListAssetTypesResponseSuccess
|
|
486
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssetTypesResponseSuccess
|
|
487
|
+
|
|
488
|
+
interface _ListAssetVersionsResponseSuccess
|
|
489
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAssetVersionsResponse]
|
|
490
|
+
def items: () -> ::Array[Types::AssetVersionMetadata]
|
|
491
|
+
def next_token: () -> ::String
|
|
492
|
+
end
|
|
493
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#list_asset_versions-instance_method
|
|
494
|
+
def list_asset_versions: (
|
|
495
|
+
agent_space_id: ::String,
|
|
496
|
+
asset_id: ::String,
|
|
497
|
+
?max_results: ::Integer,
|
|
498
|
+
?next_token: ::String
|
|
499
|
+
) -> _ListAssetVersionsResponseSuccess
|
|
500
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssetVersionsResponseSuccess
|
|
501
|
+
|
|
502
|
+
interface _ListAssetsResponseSuccess
|
|
503
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAssetsResponse]
|
|
504
|
+
def items: () -> ::Array[Types::Asset]
|
|
505
|
+
def next_token: () -> ::String
|
|
506
|
+
end
|
|
507
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#list_assets-instance_method
|
|
508
|
+
def list_assets: (
|
|
509
|
+
agent_space_id: ::String,
|
|
510
|
+
?asset_type: ::String,
|
|
511
|
+
?updated_after: ::Time,
|
|
512
|
+
?updated_before: ::Time,
|
|
513
|
+
?next_token: ::String,
|
|
514
|
+
?max_results: ::Integer
|
|
515
|
+
) -> _ListAssetsResponseSuccess
|
|
516
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssetsResponseSuccess
|
|
517
|
+
|
|
361
518
|
interface _ListAssociationsResponseSuccess
|
|
362
519
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListAssociationsOutput]
|
|
363
520
|
def next_token: () -> ::String
|
|
@@ -384,7 +541,7 @@ module Aws
|
|
|
384
541
|
created_after: ::Time?,
|
|
385
542
|
created_before: ::Time?,
|
|
386
543
|
priority: Array[("CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "MINIMAL")]?,
|
|
387
|
-
status: Array[("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED")]?,
|
|
544
|
+
status: Array[("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED" | "SKIPPED")]?,
|
|
388
545
|
task_type: Array[("INVESTIGATION" | "EVALUATION")]?,
|
|
389
546
|
primary_task_id: ::String?
|
|
390
547
|
},
|
|
@@ -624,13 +781,16 @@ module Aws
|
|
|
624
781
|
authorization_config: {
|
|
625
782
|
region: ::String,
|
|
626
783
|
service: ::String,
|
|
627
|
-
role_arn: ::String
|
|
784
|
+
role_arn: ::String?,
|
|
785
|
+
mcp_role_arn: ::String?,
|
|
628
786
|
custom_headers: Hash[::String, ::String]?
|
|
629
787
|
}
|
|
630
788
|
}?
|
|
631
789
|
},
|
|
632
790
|
?kms_key_arn: ::String,
|
|
633
791
|
?private_connection_name: ::String,
|
|
792
|
+
?target_url_private_connection_name: ::String,
|
|
793
|
+
?exchange_url_private_connection_name: ::String,
|
|
634
794
|
?name: ::String,
|
|
635
795
|
?tags: Hash[::String, ::String]
|
|
636
796
|
) -> _RegisterServiceResponseSuccess
|
|
@@ -650,7 +810,8 @@ module Aws
|
|
|
650
810
|
last_message: ::String?,
|
|
651
811
|
user_action_response: ::String?
|
|
652
812
|
},
|
|
653
|
-
?user_id: ::String
|
|
813
|
+
?user_id: ::String,
|
|
814
|
+
?asset_ids: Array[::String]
|
|
654
815
|
) ?{ (*untyped) -> void } -> _SendMessageResponseSuccess
|
|
655
816
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _SendMessageResponseSuccess
|
|
656
817
|
|
|
@@ -687,6 +848,40 @@ module Aws
|
|
|
687
848
|
) -> _UpdateAgentSpaceResponseSuccess
|
|
688
849
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAgentSpaceResponseSuccess
|
|
689
850
|
|
|
851
|
+
interface _UpdateAssetResponseSuccess
|
|
852
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAssetResponse]
|
|
853
|
+
def asset: () -> Types::Asset
|
|
854
|
+
end
|
|
855
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#update_asset-instance_method
|
|
856
|
+
def update_asset: (
|
|
857
|
+
agent_space_id: ::String,
|
|
858
|
+
asset_id: ::String,
|
|
859
|
+
?metadata: {
|
|
860
|
+
},
|
|
861
|
+
?content: Params::asset_content,
|
|
862
|
+
?client_token: ::String
|
|
863
|
+
) -> _UpdateAssetResponseSuccess
|
|
864
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAssetResponseSuccess
|
|
865
|
+
|
|
866
|
+
interface _UpdateAssetFileResponseSuccess
|
|
867
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAssetFileResponse]
|
|
868
|
+
def file: () -> Types::AssetFile
|
|
869
|
+
end
|
|
870
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#update_asset_file-instance_method
|
|
871
|
+
def update_asset_file: (
|
|
872
|
+
agent_space_id: ::String,
|
|
873
|
+
asset_id: ::String,
|
|
874
|
+
path: ::String,
|
|
875
|
+
?content: {
|
|
876
|
+
bytes: ::String?,
|
|
877
|
+
text: ::String?
|
|
878
|
+
},
|
|
879
|
+
?metadata: {
|
|
880
|
+
},
|
|
881
|
+
?client_token: ::String
|
|
882
|
+
) -> _UpdateAssetFileResponseSuccess
|
|
883
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAssetFileResponseSuccess
|
|
884
|
+
|
|
690
885
|
interface _UpdateAssociationResponseSuccess
|
|
691
886
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAssociationOutput]
|
|
692
887
|
def association: () -> Types::Association
|
|
@@ -708,7 +903,7 @@ module Aws
|
|
|
708
903
|
def update_backlog_task: (
|
|
709
904
|
agent_space_id: ::String,
|
|
710
905
|
task_id: ::String,
|
|
711
|
-
?task_status: ("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED"),
|
|
906
|
+
?task_status: ("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED" | "SKIPPED"),
|
|
712
907
|
?client_token: ::String
|
|
713
908
|
) -> _UpdateBacklogTaskResponseSuccess
|
|
714
909
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBacklogTaskResponseSuccess
|
|
@@ -750,6 +945,8 @@ module Aws
|
|
|
750
945
|
def resource_configuration_id: () -> ::String
|
|
751
946
|
def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
|
|
752
947
|
def certificate_expiry_time: () -> ::Time
|
|
948
|
+
def dns_resolution: () -> ("PUBLIC" | "IN_VPC")
|
|
949
|
+
def failure_message: () -> ::String
|
|
753
950
|
end
|
|
754
951
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#update_private_connection_certificate-instance_method
|
|
755
952
|
def update_private_connection_certificate: (
|
data/sig/params.rbs
CHANGED
|
@@ -93,6 +93,23 @@ module Aws
|
|
|
93
93
|
}?
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
+
type asset_file_content = {
|
|
97
|
+
path: ::String,
|
|
98
|
+
body: {
|
|
99
|
+
bytes: ::String?,
|
|
100
|
+
text: ::String?
|
|
101
|
+
},
|
|
102
|
+
metadata: {
|
|
103
|
+
}?
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
type asset_content = {
|
|
107
|
+
file: Params::asset_file_content?,
|
|
108
|
+
zip: {
|
|
109
|
+
zip_file: ::String
|
|
110
|
+
}?
|
|
111
|
+
}
|
|
112
|
+
|
|
96
113
|
type mcp_server_o_auth_client_credentials_config = {
|
|
97
114
|
client_name: ::String?,
|
|
98
115
|
client_id: ::String,
|