aws-sdk-bedrockagentcorecontrol 1.49.0 → 1.51.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +366 -49
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +124 -24
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +556 -27
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +26 -8
- data/sig/params.rbs +190 -66
- data/sig/types.rbs +101 -2
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -155,13 +155,20 @@ module Aws
|
|
|
155
155
|
interface _CreateApiKeyCredentialProviderResponseSuccess
|
|
156
156
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateApiKeyCredentialProviderResponse]
|
|
157
157
|
def api_key_secret_arn: () -> Types::Secret
|
|
158
|
+
def api_key_secret_json_key: () -> ::String
|
|
159
|
+
def api_key_secret_source: () -> ("MANAGED" | "EXTERNAL")
|
|
158
160
|
def name: () -> ::String
|
|
159
161
|
def credential_provider_arn: () -> ::String
|
|
160
162
|
end
|
|
161
163
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_api_key_credential_provider-instance_method
|
|
162
164
|
def create_api_key_credential_provider: (
|
|
163
165
|
name: ::String,
|
|
164
|
-
api_key: ::String,
|
|
166
|
+
?api_key: ::String,
|
|
167
|
+
?api_key_secret_config: {
|
|
168
|
+
secret_id: ::String,
|
|
169
|
+
json_key: ::String
|
|
170
|
+
},
|
|
171
|
+
?api_key_secret_source: ("MANAGED" | "EXTERNAL"),
|
|
165
172
|
?tags: Hash[::String, ::String]
|
|
166
173
|
) -> _CreateApiKeyCredentialProviderResponseSuccess
|
|
167
174
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApiKeyCredentialProviderResponseSuccess
|
|
@@ -489,9 +496,7 @@ module Aws
|
|
|
489
496
|
Params::harness_tool
|
|
490
497
|
],
|
|
491
498
|
?skills: Array[
|
|
492
|
-
|
|
493
|
-
path: ::String?
|
|
494
|
-
}
|
|
499
|
+
Params::harness_skill
|
|
495
500
|
],
|
|
496
501
|
?allowed_tools: Array[::String],
|
|
497
502
|
?memory: Params::harness_memory_configuration,
|
|
@@ -532,6 +537,8 @@ module Aws
|
|
|
532
537
|
interface _CreateOauth2CredentialProviderResponseSuccess
|
|
533
538
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateOauth2CredentialProviderResponse]
|
|
534
539
|
def client_secret_arn: () -> Types::Secret
|
|
540
|
+
def client_secret_json_key: () -> ::String
|
|
541
|
+
def client_secret_source: () -> ("MANAGED" | "EXTERNAL")
|
|
535
542
|
def name: () -> ::String
|
|
536
543
|
def credential_provider_arn: () -> ::String
|
|
537
544
|
def callback_url: () -> ::String
|
|
@@ -1145,6 +1152,8 @@ module Aws
|
|
|
1145
1152
|
interface _GetApiKeyCredentialProviderResponseSuccess
|
|
1146
1153
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetApiKeyCredentialProviderResponse]
|
|
1147
1154
|
def api_key_secret_arn: () -> Types::Secret
|
|
1155
|
+
def api_key_secret_json_key: () -> ::String
|
|
1156
|
+
def api_key_secret_source: () -> ("MANAGED" | "EXTERNAL")
|
|
1148
1157
|
def name: () -> ::String
|
|
1149
1158
|
def credential_provider_arn: () -> ::String
|
|
1150
1159
|
def created_time: () -> ::Time
|
|
@@ -1401,6 +1410,8 @@ module Aws
|
|
|
1401
1410
|
interface _GetOauth2CredentialProviderResponseSuccess
|
|
1402
1411
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetOauth2CredentialProviderResponse]
|
|
1403
1412
|
def client_secret_arn: () -> Types::Secret
|
|
1413
|
+
def client_secret_json_key: () -> ::String
|
|
1414
|
+
def client_secret_source: () -> ("MANAGED" | "EXTERNAL")
|
|
1404
1415
|
def name: () -> ::String
|
|
1405
1416
|
def credential_provider_arn: () -> ::String
|
|
1406
1417
|
def credential_provider_vendor: () -> ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2" | "AtlassianOauth2" | "LinkedinOauth2" | "XOauth2" | "OktaOauth2" | "OneLoginOauth2" | "PingOneOauth2" | "FacebookOauth2" | "YandexOauth2" | "RedditOauth2" | "ZoomOauth2" | "TwitchOauth2" | "SpotifyOauth2" | "DropboxOauth2" | "NotionOauth2" | "HubspotOauth2" | "CyberArkOauth2" | "FusionAuthOauth2" | "Auth0Oauth2" | "CognitoOauth2")
|
|
@@ -2287,6 +2298,8 @@ module Aws
|
|
|
2287
2298
|
interface _UpdateApiKeyCredentialProviderResponseSuccess
|
|
2288
2299
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateApiKeyCredentialProviderResponse]
|
|
2289
2300
|
def api_key_secret_arn: () -> Types::Secret
|
|
2301
|
+
def api_key_secret_json_key: () -> ::String
|
|
2302
|
+
def api_key_secret_source: () -> ("MANAGED" | "EXTERNAL")
|
|
2290
2303
|
def name: () -> ::String
|
|
2291
2304
|
def credential_provider_arn: () -> ::String
|
|
2292
2305
|
def created_time: () -> ::Time
|
|
@@ -2295,7 +2308,12 @@ module Aws
|
|
|
2295
2308
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_api_key_credential_provider-instance_method
|
|
2296
2309
|
def update_api_key_credential_provider: (
|
|
2297
2310
|
name: ::String,
|
|
2298
|
-
api_key: ::String
|
|
2311
|
+
?api_key: ::String,
|
|
2312
|
+
?api_key_secret_config: {
|
|
2313
|
+
secret_id: ::String,
|
|
2314
|
+
json_key: ::String
|
|
2315
|
+
},
|
|
2316
|
+
?api_key_secret_source: ("MANAGED" | "EXTERNAL")
|
|
2299
2317
|
) -> _UpdateApiKeyCredentialProviderResponseSuccess
|
|
2300
2318
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApiKeyCredentialProviderResponseSuccess
|
|
2301
2319
|
|
|
@@ -2516,9 +2534,7 @@ module Aws
|
|
|
2516
2534
|
Params::harness_tool
|
|
2517
2535
|
],
|
|
2518
2536
|
?skills: Array[
|
|
2519
|
-
|
|
2520
|
-
path: ::String?
|
|
2521
|
-
}
|
|
2537
|
+
Params::harness_skill
|
|
2522
2538
|
],
|
|
2523
2539
|
?allowed_tools: Array[::String],
|
|
2524
2540
|
?memory: {
|
|
@@ -2628,6 +2644,8 @@ module Aws
|
|
|
2628
2644
|
interface _UpdateOauth2CredentialProviderResponseSuccess
|
|
2629
2645
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateOauth2CredentialProviderResponse]
|
|
2630
2646
|
def client_secret_arn: () -> Types::Secret
|
|
2647
|
+
def client_secret_json_key: () -> ::String
|
|
2648
|
+
def client_secret_source: () -> ("MANAGED" | "EXTERNAL")
|
|
2631
2649
|
def name: () -> ::String
|
|
2632
2650
|
def credential_provider_vendor: () -> ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2" | "AtlassianOauth2" | "LinkedinOauth2" | "XOauth2" | "OktaOauth2" | "OneLoginOauth2" | "PingOneOauth2" | "FacebookOauth2" | "YandexOauth2" | "RedditOauth2" | "ZoomOauth2" | "TwitchOauth2" | "SpotifyOauth2" | "DropboxOauth2" | "NotionOauth2" | "HubspotOauth2" | "CyberArkOauth2" | "FusionAuthOauth2" | "Auth0Oauth2" | "CognitoOauth2")
|
|
2633
2651
|
def credential_provider_arn: () -> ::String
|
data/sig/params.rbs
CHANGED
|
@@ -404,6 +404,27 @@ module Aws
|
|
|
404
404
|
agent_core_runtime_environment: Params::harness_agent_core_runtime_environment_request?
|
|
405
405
|
}
|
|
406
406
|
|
|
407
|
+
type harness_bedrock_model_config = {
|
|
408
|
+
model_id: ::String,
|
|
409
|
+
max_tokens: ::Integer?,
|
|
410
|
+
temperature: ::Float?,
|
|
411
|
+
top_p: ::Float?,
|
|
412
|
+
api_format: ("converse_stream" | "responses" | "chat_completions")?,
|
|
413
|
+
additional_params: {
|
|
414
|
+
}?
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
type harness_open_ai_model_config = {
|
|
418
|
+
model_id: ::String,
|
|
419
|
+
api_key_arn: ::String,
|
|
420
|
+
max_tokens: ::Integer?,
|
|
421
|
+
temperature: ::Float?,
|
|
422
|
+
top_p: ::Float?,
|
|
423
|
+
api_format: ("chat_completions" | "responses")?,
|
|
424
|
+
additional_params: {
|
|
425
|
+
}?
|
|
426
|
+
}
|
|
427
|
+
|
|
407
428
|
type harness_gemini_model_config = {
|
|
408
429
|
model_id: ::String,
|
|
409
430
|
api_key_arn: ::String,
|
|
@@ -413,21 +434,22 @@ module Aws
|
|
|
413
434
|
top_k: ::Integer?
|
|
414
435
|
}
|
|
415
436
|
|
|
437
|
+
type harness_lite_llm_model_config = {
|
|
438
|
+
model_id: ::String,
|
|
439
|
+
api_key_arn: ::String?,
|
|
440
|
+
api_base: ::String?,
|
|
441
|
+
max_tokens: ::Integer?,
|
|
442
|
+
temperature: ::Float?,
|
|
443
|
+
top_p: ::Float?,
|
|
444
|
+
additional_params: {
|
|
445
|
+
}?
|
|
446
|
+
}
|
|
447
|
+
|
|
416
448
|
type harness_model_configuration = {
|
|
417
|
-
bedrock_model_config:
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
top_p: ::Float?
|
|
422
|
-
}?,
|
|
423
|
-
open_ai_model_config: {
|
|
424
|
-
model_id: ::String,
|
|
425
|
-
api_key_arn: ::String,
|
|
426
|
-
max_tokens: ::Integer?,
|
|
427
|
-
temperature: ::Float?,
|
|
428
|
-
top_p: ::Float?
|
|
429
|
-
}?,
|
|
430
|
-
gemini_model_config: Params::harness_gemini_model_config?
|
|
449
|
+
bedrock_model_config: Params::harness_bedrock_model_config?,
|
|
450
|
+
open_ai_model_config: Params::harness_open_ai_model_config?,
|
|
451
|
+
gemini_model_config: Params::harness_gemini_model_config?,
|
|
452
|
+
lite_llm_model_config: Params::harness_lite_llm_model_config?
|
|
431
453
|
}
|
|
432
454
|
|
|
433
455
|
type harness_gateway_outbound_auth = {
|
|
@@ -474,6 +496,23 @@ module Aws
|
|
|
474
496
|
config: Params::harness_tool_configuration?
|
|
475
497
|
}
|
|
476
498
|
|
|
499
|
+
type harness_skill_git_source = {
|
|
500
|
+
url: ::String,
|
|
501
|
+
path: ::String?,
|
|
502
|
+
auth: {
|
|
503
|
+
credential_arn: ::String,
|
|
504
|
+
username: ::String?
|
|
505
|
+
}?
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
type harness_skill = {
|
|
509
|
+
path: ::String?,
|
|
510
|
+
s3: {
|
|
511
|
+
uri: ::String
|
|
512
|
+
}?,
|
|
513
|
+
git: Params::harness_skill_git_source?
|
|
514
|
+
}
|
|
515
|
+
|
|
477
516
|
type harness_agent_core_memory_configuration = {
|
|
478
517
|
arn: ::String,
|
|
479
518
|
actor_id: ::String?,
|
|
@@ -708,10 +747,11 @@ module Aws
|
|
|
708
747
|
oauth_discovery: Params::oauth_2_discovery,
|
|
709
748
|
client_id: ::String?,
|
|
710
749
|
client_secret: ::String?,
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
750
|
+
client_secret_config: {
|
|
751
|
+
secret_id: ::String,
|
|
752
|
+
json_key: ::String
|
|
753
|
+
}?,
|
|
754
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?,
|
|
715
755
|
on_behalf_of_token_exchange_config: {
|
|
716
756
|
grant_type: ("TOKEN_EXCHANGE" | "JWT_AUTHORIZATION_GRANT"),
|
|
717
757
|
token_exchange_grant_type_config: {
|
|
@@ -719,47 +759,107 @@ module Aws
|
|
|
719
759
|
actor_token_scopes: Array[::String]?
|
|
720
760
|
}?
|
|
721
761
|
}?,
|
|
722
|
-
client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")
|
|
762
|
+
client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")?,
|
|
763
|
+
private_endpoint: Params::private_endpoint?,
|
|
764
|
+
private_endpoint_overrides: Array[
|
|
765
|
+
Params::private_endpoint_override
|
|
766
|
+
]?
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
type google_oauth_2_provider_config_input = {
|
|
770
|
+
client_id: ::String,
|
|
771
|
+
client_secret: ::String?,
|
|
772
|
+
client_secret_config: {
|
|
773
|
+
secret_id: ::String,
|
|
774
|
+
json_key: ::String
|
|
775
|
+
}?,
|
|
776
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
type github_oauth_2_provider_config_input = {
|
|
780
|
+
client_id: ::String,
|
|
781
|
+
client_secret: ::String?,
|
|
782
|
+
client_secret_config: {
|
|
783
|
+
secret_id: ::String,
|
|
784
|
+
json_key: ::String
|
|
785
|
+
}?,
|
|
786
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
type slack_oauth_2_provider_config_input = {
|
|
790
|
+
client_id: ::String,
|
|
791
|
+
client_secret: ::String?,
|
|
792
|
+
client_secret_config: {
|
|
793
|
+
secret_id: ::String,
|
|
794
|
+
json_key: ::String
|
|
795
|
+
}?,
|
|
796
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
type salesforce_oauth_2_provider_config_input = {
|
|
800
|
+
client_id: ::String,
|
|
801
|
+
client_secret: ::String?,
|
|
802
|
+
client_secret_config: {
|
|
803
|
+
secret_id: ::String,
|
|
804
|
+
json_key: ::String
|
|
805
|
+
}?,
|
|
806
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
type microsoft_oauth_2_provider_config_input = {
|
|
810
|
+
client_id: ::String,
|
|
811
|
+
client_secret: ::String?,
|
|
812
|
+
client_secret_config: {
|
|
813
|
+
secret_id: ::String,
|
|
814
|
+
json_key: ::String
|
|
815
|
+
}?,
|
|
816
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?,
|
|
817
|
+
tenant_id: ::String?
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
type atlassian_oauth_2_provider_config_input = {
|
|
821
|
+
client_id: ::String,
|
|
822
|
+
client_secret: ::String?,
|
|
823
|
+
client_secret_config: {
|
|
824
|
+
secret_id: ::String,
|
|
825
|
+
json_key: ::String
|
|
826
|
+
}?,
|
|
827
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
type linkedin_oauth_2_provider_config_input = {
|
|
831
|
+
client_id: ::String,
|
|
832
|
+
client_secret: ::String?,
|
|
833
|
+
client_secret_config: {
|
|
834
|
+
secret_id: ::String,
|
|
835
|
+
json_key: ::String
|
|
836
|
+
}?,
|
|
837
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
type included_oauth_2_provider_config_input = {
|
|
841
|
+
client_id: ::String,
|
|
842
|
+
client_secret: ::String?,
|
|
843
|
+
client_secret_config: {
|
|
844
|
+
secret_id: ::String,
|
|
845
|
+
json_key: ::String
|
|
846
|
+
}?,
|
|
847
|
+
client_secret_source: ("MANAGED" | "EXTERNAL")?,
|
|
848
|
+
issuer: ::String?,
|
|
849
|
+
authorization_endpoint: ::String?,
|
|
850
|
+
token_endpoint: ::String?
|
|
723
851
|
}
|
|
724
852
|
|
|
725
853
|
type oauth_2_provider_config_input = {
|
|
726
854
|
custom_oauth_2_provider_config: Params::custom_oauth_2_provider_config_input?,
|
|
727
|
-
google_oauth_2_provider_config:
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
slack_oauth_2_provider_config: {
|
|
736
|
-
client_id: ::String,
|
|
737
|
-
client_secret: ::String
|
|
738
|
-
}?,
|
|
739
|
-
salesforce_oauth_2_provider_config: {
|
|
740
|
-
client_id: ::String,
|
|
741
|
-
client_secret: ::String
|
|
742
|
-
}?,
|
|
743
|
-
microsoft_oauth_2_provider_config: {
|
|
744
|
-
client_id: ::String,
|
|
745
|
-
client_secret: ::String,
|
|
746
|
-
tenant_id: ::String?
|
|
747
|
-
}?,
|
|
748
|
-
atlassian_oauth_2_provider_config: {
|
|
749
|
-
client_id: ::String,
|
|
750
|
-
client_secret: ::String
|
|
751
|
-
}?,
|
|
752
|
-
linkedin_oauth_2_provider_config: {
|
|
753
|
-
client_id: ::String,
|
|
754
|
-
client_secret: ::String
|
|
755
|
-
}?,
|
|
756
|
-
included_oauth_2_provider_config: {
|
|
757
|
-
client_id: ::String,
|
|
758
|
-
client_secret: ::String,
|
|
759
|
-
issuer: ::String?,
|
|
760
|
-
authorization_endpoint: ::String?,
|
|
761
|
-
token_endpoint: ::String?
|
|
762
|
-
}?
|
|
855
|
+
google_oauth_2_provider_config: Params::google_oauth_2_provider_config_input?,
|
|
856
|
+
github_oauth_2_provider_config: Params::github_oauth_2_provider_config_input?,
|
|
857
|
+
slack_oauth_2_provider_config: Params::slack_oauth_2_provider_config_input?,
|
|
858
|
+
salesforce_oauth_2_provider_config: Params::salesforce_oauth_2_provider_config_input?,
|
|
859
|
+
microsoft_oauth_2_provider_config: Params::microsoft_oauth_2_provider_config_input?,
|
|
860
|
+
atlassian_oauth_2_provider_config: Params::atlassian_oauth_2_provider_config_input?,
|
|
861
|
+
linkedin_oauth_2_provider_config: Params::linkedin_oauth_2_provider_config_input?,
|
|
862
|
+
included_oauth_2_provider_config: Params::included_oauth_2_provider_config_input?
|
|
763
863
|
}
|
|
764
864
|
|
|
765
865
|
type rule = {
|
|
@@ -793,20 +893,44 @@ module Aws
|
|
|
793
893
|
}?
|
|
794
894
|
}
|
|
795
895
|
|
|
796
|
-
type
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
896
|
+
type coinbase_cdp_configuration_input = {
|
|
897
|
+
api_key_id: ::String,
|
|
898
|
+
api_key_secret: ::String?,
|
|
899
|
+
api_key_secret_source: ("MANAGED" | "EXTERNAL")?,
|
|
900
|
+
api_key_secret_config: {
|
|
901
|
+
secret_id: ::String,
|
|
902
|
+
json_key: ::String
|
|
903
|
+
}?,
|
|
904
|
+
wallet_secret: ::String?,
|
|
905
|
+
wallet_secret_source: ("MANAGED" | "EXTERNAL")?,
|
|
906
|
+
wallet_secret_config: {
|
|
907
|
+
secret_id: ::String,
|
|
908
|
+
json_key: ::String
|
|
807
909
|
}?
|
|
808
910
|
}
|
|
809
911
|
|
|
912
|
+
type stripe_privy_configuration_input = {
|
|
913
|
+
app_id: ::String,
|
|
914
|
+
app_secret: ::String?,
|
|
915
|
+
app_secret_source: ("MANAGED" | "EXTERNAL")?,
|
|
916
|
+
app_secret_config: {
|
|
917
|
+
secret_id: ::String,
|
|
918
|
+
json_key: ::String
|
|
919
|
+
}?,
|
|
920
|
+
authorization_private_key: ::String?,
|
|
921
|
+
authorization_private_key_source: ("MANAGED" | "EXTERNAL")?,
|
|
922
|
+
authorization_private_key_config: {
|
|
923
|
+
secret_id: ::String,
|
|
924
|
+
json_key: ::String
|
|
925
|
+
}?,
|
|
926
|
+
authorization_id: ::String
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
type payment_provider_configuration_input = {
|
|
930
|
+
coinbase_cdp_configuration: Params::coinbase_cdp_configuration_input?,
|
|
931
|
+
stripe_privy_configuration: Params::stripe_privy_configuration_input?
|
|
932
|
+
}
|
|
933
|
+
|
|
810
934
|
type policy_definition = {
|
|
811
935
|
cedar: {
|
|
812
936
|
statement: ::String
|