aws-sdk-bedrockagentcorecontrol 1.67.0 → 1.69.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 +360 -37
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +219 -3
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +546 -46
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +124 -3
- data/sig/types.rbs +122 -0
- metadata +1 -1
|
@@ -47,6 +47,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
47
47
|
AgentSkillsDescriptor = Shapes::StructureShape.new(name: 'AgentSkillsDescriptor')
|
|
48
48
|
AllowedAudience = Shapes::StringShape.new(name: 'AllowedAudience')
|
|
49
49
|
AllowedAudienceList = Shapes::ListShape.new(name: 'AllowedAudienceList')
|
|
50
|
+
AllowedAudienceType = Shapes::StringShape.new(name: 'AllowedAudienceType')
|
|
50
51
|
AllowedClient = Shapes::StringShape.new(name: 'AllowedClient')
|
|
51
52
|
AllowedClientsList = Shapes::ListShape.new(name: 'AllowedClientsList')
|
|
52
53
|
AllowedQueryParameters = Shapes::ListShape.new(name: 'AllowedQueryParameters')
|
|
@@ -140,6 +141,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
140
141
|
ClientIdType = Shapes::StringShape.new(name: 'ClientIdType')
|
|
141
142
|
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
|
142
143
|
CloudWatchLogsInputConfig = Shapes::StructureShape.new(name: 'CloudWatchLogsInputConfig')
|
|
144
|
+
CloudWatchLogsInputConfigLogGroupNamePrefixesList = Shapes::ListShape.new(name: 'CloudWatchLogsInputConfigLogGroupNamePrefixesList')
|
|
143
145
|
CloudWatchLogsInputConfigLogGroupNamesList = Shapes::ListShape.new(name: 'CloudWatchLogsInputConfigLogGroupNamesList')
|
|
144
146
|
CloudWatchLogsInputConfigServiceNamesList = Shapes::ListShape.new(name: 'CloudWatchLogsInputConfigServiceNamesList')
|
|
145
147
|
CloudWatchOutputConfig = Shapes::StructureShape.new(name: 'CloudWatchOutputConfig')
|
|
@@ -196,6 +198,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
196
198
|
ConnectorSource = Shapes::StructureShape.new(name: 'ConnectorSource')
|
|
197
199
|
ConnectorTargetConfiguration = Shapes::StructureShape.new(name: 'ConnectorTargetConfiguration')
|
|
198
200
|
ConnectorVersion = Shapes::StringShape.new(name: 'ConnectorVersion')
|
|
201
|
+
ConsentPortalArnType = Shapes::StringShape.new(name: 'ConsentPortalArnType')
|
|
202
|
+
ConsentPortalDescriptionType = Shapes::StringShape.new(name: 'ConsentPortalDescriptionType')
|
|
203
|
+
ConsentPortalIdType = Shapes::StringShape.new(name: 'ConsentPortalIdType')
|
|
204
|
+
ConsentPortalIdentifier = Shapes::StringShape.new(name: 'ConsentPortalIdentifier')
|
|
205
|
+
ConsentPortalIdpConfig = Shapes::StructureShape.new(name: 'ConsentPortalIdpConfig')
|
|
206
|
+
ConsentPortalNameType = Shapes::StringShape.new(name: 'ConsentPortalNameType')
|
|
207
|
+
ConsentPortalSource = Shapes::StructureShape.new(name: 'ConsentPortalSource')
|
|
208
|
+
ConsentPortalSourceIdentifierType = Shapes::StringShape.new(name: 'ConsentPortalSourceIdentifierType')
|
|
209
|
+
ConsentPortalSourceType = Shapes::StringShape.new(name: 'ConsentPortalSourceType')
|
|
210
|
+
ConsentPortalSources = Shapes::ListShape.new(name: 'ConsentPortalSources')
|
|
211
|
+
ConsentPortalStatus = Shapes::StringShape.new(name: 'ConsentPortalStatus')
|
|
212
|
+
ConsentPortalSummaries = Shapes::ListShape.new(name: 'ConsentPortalSummaries')
|
|
213
|
+
ConsentPortalSummary = Shapes::StructureShape.new(name: 'ConsentPortalSummary')
|
|
199
214
|
ConsolidationConfiguration = Shapes::UnionShape.new(name: 'ConsolidationConfiguration')
|
|
200
215
|
ContainerConfiguration = Shapes::StructureShape.new(name: 'ContainerConfiguration')
|
|
201
216
|
Content = Shapes::UnionShape.new(name: 'Content')
|
|
@@ -219,6 +234,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
219
234
|
CreateConfigurationBundleRequest = Shapes::StructureShape.new(name: 'CreateConfigurationBundleRequest')
|
|
220
235
|
CreateConfigurationBundleRequestCommitMessageString = Shapes::StringShape.new(name: 'CreateConfigurationBundleRequestCommitMessageString')
|
|
221
236
|
CreateConfigurationBundleResponse = Shapes::StructureShape.new(name: 'CreateConfigurationBundleResponse')
|
|
237
|
+
CreateConsentPortalRequest = Shapes::StructureShape.new(name: 'CreateConsentPortalRequest')
|
|
238
|
+
CreateConsentPortalResponse = Shapes::StructureShape.new(name: 'CreateConsentPortalResponse')
|
|
222
239
|
CreateDatasetRequest = Shapes::StructureShape.new(name: 'CreateDatasetRequest')
|
|
223
240
|
CreateDatasetRequestDescriptionString = Shapes::StringShape.new(name: 'CreateDatasetRequestDescriptionString')
|
|
224
241
|
CreateDatasetResponse = Shapes::StructureShape.new(name: 'CreateDatasetResponse')
|
|
@@ -329,6 +346,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
329
346
|
DeleteCodeInterpreterResponse = Shapes::StructureShape.new(name: 'DeleteCodeInterpreterResponse')
|
|
330
347
|
DeleteConfigurationBundleRequest = Shapes::StructureShape.new(name: 'DeleteConfigurationBundleRequest')
|
|
331
348
|
DeleteConfigurationBundleResponse = Shapes::StructureShape.new(name: 'DeleteConfigurationBundleResponse')
|
|
349
|
+
DeleteConsentPortalRequest = Shapes::StructureShape.new(name: 'DeleteConsentPortalRequest')
|
|
350
|
+
DeleteConsentPortalResponse = Shapes::StructureShape.new(name: 'DeleteConsentPortalResponse')
|
|
332
351
|
DeleteDatasetExamplesRequest = Shapes::StructureShape.new(name: 'DeleteDatasetExamplesRequest')
|
|
333
352
|
DeleteDatasetExamplesRequestExampleIdsList = Shapes::ListShape.new(name: 'DeleteDatasetExamplesRequestExampleIdsList')
|
|
334
353
|
DeleteDatasetExamplesResponse = Shapes::StructureShape.new(name: 'DeleteDatasetExamplesResponse')
|
|
@@ -442,6 +461,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
442
461
|
ExampleId = Shapes::StringShape.new(name: 'ExampleId')
|
|
443
462
|
ExampleIdList = Shapes::ListShape.new(name: 'ExampleIdList')
|
|
444
463
|
ExceptionLevel = Shapes::StringShape.new(name: 'ExceptionLevel')
|
|
464
|
+
ExecutionRoleArnType = Shapes::StringShape.new(name: 'ExecutionRoleArnType')
|
|
445
465
|
ExtractionConfig = Shapes::UnionShape.new(name: 'ExtractionConfig')
|
|
446
466
|
ExtractionConfiguration = Shapes::UnionShape.new(name: 'ExtractionConfiguration')
|
|
447
467
|
ExtractionType = Shapes::StringShape.new(name: 'ExtractionType')
|
|
@@ -514,6 +534,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
514
534
|
GetConfigurationBundleResponse = Shapes::StructureShape.new(name: 'GetConfigurationBundleResponse')
|
|
515
535
|
GetConfigurationBundleVersionRequest = Shapes::StructureShape.new(name: 'GetConfigurationBundleVersionRequest')
|
|
516
536
|
GetConfigurationBundleVersionResponse = Shapes::StructureShape.new(name: 'GetConfigurationBundleVersionResponse')
|
|
537
|
+
GetConsentPortalRequest = Shapes::StructureShape.new(name: 'GetConsentPortalRequest')
|
|
538
|
+
GetConsentPortalResponse = Shapes::StructureShape.new(name: 'GetConsentPortalResponse')
|
|
517
539
|
GetDatasetRequest = Shapes::StructureShape.new(name: 'GetDatasetRequest')
|
|
518
540
|
GetDatasetResponse = Shapes::StructureShape.new(name: 'GetDatasetResponse')
|
|
519
541
|
GetEvaluatorRequest = Shapes::StructureShape.new(name: 'GetEvaluatorRequest')
|
|
@@ -758,6 +780,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
758
780
|
ListConfigurationBundlesRequest = Shapes::StructureShape.new(name: 'ListConfigurationBundlesRequest')
|
|
759
781
|
ListConfigurationBundlesRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListConfigurationBundlesRequestMaxResultsInteger')
|
|
760
782
|
ListConfigurationBundlesResponse = Shapes::StructureShape.new(name: 'ListConfigurationBundlesResponse')
|
|
783
|
+
ListConsentPortalsRequest = Shapes::StructureShape.new(name: 'ListConsentPortalsRequest')
|
|
784
|
+
ListConsentPortalsRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListConsentPortalsRequestMaxResultsInteger')
|
|
785
|
+
ListConsentPortalsResponse = Shapes::StructureShape.new(name: 'ListConsentPortalsResponse')
|
|
761
786
|
ListDatasetExamplesRequest = Shapes::StructureShape.new(name: 'ListDatasetExamplesRequest')
|
|
762
787
|
ListDatasetExamplesRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListDatasetExamplesRequestMaxResultsInteger')
|
|
763
788
|
ListDatasetExamplesRequestNextTokenString = Shapes::StringShape.new(name: 'ListDatasetExamplesRequestNextTokenString')
|
|
@@ -830,6 +855,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
830
855
|
LlmExtractionConfig = Shapes::StructureShape.new(name: 'LlmExtractionConfig')
|
|
831
856
|
LlmExtractionInstruction = Shapes::StringShape.new(name: 'LlmExtractionInstruction')
|
|
832
857
|
LogGroupName = Shapes::StringShape.new(name: 'LogGroupName')
|
|
858
|
+
LogGroupNamePrefix = Shapes::StringShape.new(name: 'LogGroupNamePrefix')
|
|
833
859
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
|
834
860
|
MCPGatewayConfiguration = Shapes::StructureShape.new(name: 'MCPGatewayConfiguration')
|
|
835
861
|
ManagedResourceDetails = Shapes::StructureShape.new(name: 'ManagedResourceDetails')
|
|
@@ -878,6 +904,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
878
904
|
MetadataSchemaEntry = Shapes::StructureShape.new(name: 'MetadataSchemaEntry')
|
|
879
905
|
MetadataSchemaList = Shapes::ListShape.new(name: 'MetadataSchemaList')
|
|
880
906
|
MetadataValueType = Shapes::StringShape.new(name: 'MetadataValueType')
|
|
907
|
+
MetricsNamespace = Shapes::StringShape.new(name: 'MetricsNamespace')
|
|
881
908
|
MicrosoftOauth2ProviderConfigInput = Shapes::StructureShape.new(name: 'MicrosoftOauth2ProviderConfigInput')
|
|
882
909
|
MicrosoftOauth2ProviderConfigOutput = Shapes::StructureShape.new(name: 'MicrosoftOauth2ProviderConfigOutput')
|
|
883
910
|
ModelEntries = Shapes::ListShape.new(name: 'ModelEntries')
|
|
@@ -922,6 +949,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
922
949
|
OAuth2AuthorizationData = Shapes::StructureShape.new(name: 'OAuth2AuthorizationData')
|
|
923
950
|
OAuth2AuthorizationDataAuthorizationUrlString = Shapes::StringShape.new(name: 'OAuth2AuthorizationDataAuthorizationUrlString')
|
|
924
951
|
OAuth2AuthorizationDataUserIdString = Shapes::StringShape.new(name: 'OAuth2AuthorizationDataUserIdString')
|
|
952
|
+
OAuth2CredentialProviderArn = Shapes::StringShape.new(name: 'OAuth2CredentialProviderArn')
|
|
925
953
|
OAuthCredentialProvider = Shapes::StructureShape.new(name: 'OAuthCredentialProvider')
|
|
926
954
|
OAuthCredentialProviderArn = Shapes::StringShape.new(name: 'OAuthCredentialProviderArn')
|
|
927
955
|
OAuthCustomParameters = Shapes::MapShape.new(name: 'OAuthCustomParameters')
|
|
@@ -950,6 +978,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
950
978
|
OpenResponsesEvaluatorModelConfigTemperatureFloat = Shapes::FloatShape.new(name: 'OpenResponsesEvaluatorModelConfigTemperatureFloat')
|
|
951
979
|
OpenResponsesEvaluatorModelConfigTopPFloat = Shapes::FloatShape.new(name: 'OpenResponsesEvaluatorModelConfigTopPFloat')
|
|
952
980
|
OperatingSystem = Shapes::StringShape.new(name: 'OperatingSystem')
|
|
981
|
+
OptionalLogGroupName = Shapes::StringShape.new(name: 'OptionalLogGroupName')
|
|
953
982
|
OutputConfig = Shapes::StructureShape.new(name: 'OutputConfig')
|
|
954
983
|
OverrideType = Shapes::StringShape.new(name: 'OverrideType')
|
|
955
984
|
PassthroughEndpoint = Shapes::StringShape.new(name: 'PassthroughEndpoint')
|
|
@@ -1009,6 +1038,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1009
1038
|
PolicySummary = Shapes::StructureShape.new(name: 'PolicySummary')
|
|
1010
1039
|
PolicySummaryList = Shapes::ListShape.new(name: 'PolicySummaryList')
|
|
1011
1040
|
PolicyValidationMode = Shapes::StringShape.new(name: 'PolicyValidationMode')
|
|
1041
|
+
PortalUrlType = Shapes::StringShape.new(name: 'PortalUrlType')
|
|
1012
1042
|
PrincipalMatchOperator = Shapes::StringShape.new(name: 'PrincipalMatchOperator')
|
|
1013
1043
|
PrivateEndpoint = Shapes::UnionShape.new(name: 'PrivateEndpoint')
|
|
1014
1044
|
PrivateEndpointManagedResources = Shapes::ListShape.new(name: 'PrivateEndpointManagedResources')
|
|
@@ -1074,6 +1104,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1074
1104
|
ResponseType = Shapes::StringShape.new(name: 'ResponseType')
|
|
1075
1105
|
RestApiMethod = Shapes::StringShape.new(name: 'RestApiMethod')
|
|
1076
1106
|
RestApiMethods = Shapes::ListShape.new(name: 'RestApiMethods')
|
|
1107
|
+
ResultDestination = Shapes::StringShape.new(name: 'ResultDestination')
|
|
1077
1108
|
RetryableConflictException = Shapes::StructureShape.new(name: 'RetryableConflictException')
|
|
1078
1109
|
RoleArn = Shapes::StringShape.new(name: 'RoleArn')
|
|
1079
1110
|
RootVolumeConfiguration = Shapes::StructureShape.new(name: 'RootVolumeConfiguration')
|
|
@@ -1165,6 +1196,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1165
1196
|
StaticRoute = Shapes::StructureShape.new(name: 'StaticRoute')
|
|
1166
1197
|
Status = Shapes::StringShape.new(name: 'Status')
|
|
1167
1198
|
StatusReason = Shapes::StringShape.new(name: 'StatusReason')
|
|
1199
|
+
StatusReasonType = Shapes::StringShape.new(name: 'StatusReasonType')
|
|
1168
1200
|
StatusReasons = Shapes::ListShape.new(name: 'StatusReasons')
|
|
1169
1201
|
StickinessConfiguration = Shapes::StructureShape.new(name: 'StickinessConfiguration')
|
|
1170
1202
|
StickinessConfigurationIdentifierString = Shapes::StringShape.new(name: 'StickinessConfigurationIdentifierString')
|
|
@@ -1274,6 +1306,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1274
1306
|
UpdateConfigurationBundleRequest = Shapes::StructureShape.new(name: 'UpdateConfigurationBundleRequest')
|
|
1275
1307
|
UpdateConfigurationBundleRequestCommitMessageString = Shapes::StringShape.new(name: 'UpdateConfigurationBundleRequestCommitMessageString')
|
|
1276
1308
|
UpdateConfigurationBundleResponse = Shapes::StructureShape.new(name: 'UpdateConfigurationBundleResponse')
|
|
1309
|
+
UpdateConsentPortalRequest = Shapes::StructureShape.new(name: 'UpdateConsentPortalRequest')
|
|
1310
|
+
UpdateConsentPortalResponse = Shapes::StructureShape.new(name: 'UpdateConsentPortalResponse')
|
|
1277
1311
|
UpdateDatasetExamplesRequest = Shapes::StructureShape.new(name: 'UpdateDatasetExamplesRequest')
|
|
1278
1312
|
UpdateDatasetExamplesRequestExamplesList = Shapes::ListShape.new(name: 'UpdateDatasetExamplesRequestExamplesList')
|
|
1279
1313
|
UpdateDatasetExamplesResponse = Shapes::StructureShape.new(name: 'UpdateDatasetExamplesResponse')
|
|
@@ -1672,15 +1706,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
1672
1706
|
ClaimMatchValueType.add_member_subclass(:unknown, Types::ClaimMatchValueType::Unknown)
|
|
1673
1707
|
ClaimMatchValueType.struct_class = Types::ClaimMatchValueType
|
|
1674
1708
|
|
|
1675
|
-
CloudWatchLogsInputConfig.add_member(:log_group_names, Shapes::ShapeRef.new(shape: CloudWatchLogsInputConfigLogGroupNamesList,
|
|
1709
|
+
CloudWatchLogsInputConfig.add_member(:log_group_names, Shapes::ShapeRef.new(shape: CloudWatchLogsInputConfigLogGroupNamesList, location_name: "logGroupNames"))
|
|
1710
|
+
CloudWatchLogsInputConfig.add_member(:log_group_name_prefixes, Shapes::ShapeRef.new(shape: CloudWatchLogsInputConfigLogGroupNamePrefixesList, location_name: "logGroupNamePrefixes"))
|
|
1676
1711
|
CloudWatchLogsInputConfig.add_member(:service_names, Shapes::ShapeRef.new(shape: CloudWatchLogsInputConfigServiceNamesList, required: true, location_name: "serviceNames"))
|
|
1677
1712
|
CloudWatchLogsInputConfig.struct_class = Types::CloudWatchLogsInputConfig
|
|
1678
1713
|
|
|
1714
|
+
CloudWatchLogsInputConfigLogGroupNamePrefixesList.member = Shapes::ShapeRef.new(shape: LogGroupNamePrefix)
|
|
1715
|
+
|
|
1679
1716
|
CloudWatchLogsInputConfigLogGroupNamesList.member = Shapes::ShapeRef.new(shape: LogGroupName)
|
|
1680
1717
|
|
|
1681
1718
|
CloudWatchLogsInputConfigServiceNamesList.member = Shapes::ShapeRef.new(shape: ServiceName)
|
|
1682
1719
|
|
|
1683
|
-
CloudWatchOutputConfig.add_member(:log_group_name, Shapes::ShapeRef.new(shape:
|
|
1720
|
+
CloudWatchOutputConfig.add_member(:log_group_name, Shapes::ShapeRef.new(shape: OptionalLogGroupName, location_name: "logGroupName"))
|
|
1721
|
+
CloudWatchOutputConfig.add_member(:metrics_namespace, Shapes::ShapeRef.new(shape: MetricsNamespace, location_name: "metricsNamespace"))
|
|
1722
|
+
CloudWatchOutputConfig.add_member(:result_destination, Shapes::ShapeRef.new(shape: ResultDestination, location_name: "resultDestination"))
|
|
1684
1723
|
CloudWatchOutputConfig.struct_class = Types::CloudWatchOutputConfig
|
|
1685
1724
|
|
|
1686
1725
|
ClusteringConfig.add_member(:frequencies, Shapes::ShapeRef.new(shape: ClusteringFrequencyList, required: true, location_name: "frequencies"))
|
|
@@ -1826,6 +1865,30 @@ module Aws::BedrockAgentCoreControl
|
|
|
1826
1865
|
ConnectorTargetConfiguration.add_member(:configurations, Shapes::ShapeRef.new(shape: ConnectorConfigurations, location_name: "configurations"))
|
|
1827
1866
|
ConnectorTargetConfiguration.struct_class = Types::ConnectorTargetConfiguration
|
|
1828
1867
|
|
|
1868
|
+
ConsentPortalIdpConfig.add_member(:credential_provider_arn, Shapes::ShapeRef.new(shape: OAuth2CredentialProviderArn, required: true, location_name: "credentialProviderArn"))
|
|
1869
|
+
ConsentPortalIdpConfig.add_member(:scopes, Shapes::ShapeRef.new(shape: AllowedScopesType, required: true, location_name: "scopes"))
|
|
1870
|
+
ConsentPortalIdpConfig.add_member(:audience, Shapes::ShapeRef.new(shape: AllowedAudienceType, location_name: "audience"))
|
|
1871
|
+
ConsentPortalIdpConfig.struct_class = Types::ConsentPortalIdpConfig
|
|
1872
|
+
|
|
1873
|
+
ConsentPortalSource.add_member(:identifier, Shapes::ShapeRef.new(shape: ConsentPortalSourceIdentifierType, required: true, location_name: "identifier"))
|
|
1874
|
+
ConsentPortalSource.add_member(:type, Shapes::ShapeRef.new(shape: ConsentPortalSourceType, required: true, location_name: "type"))
|
|
1875
|
+
ConsentPortalSource.struct_class = Types::ConsentPortalSource
|
|
1876
|
+
|
|
1877
|
+
ConsentPortalSources.member = Shapes::ShapeRef.new(shape: ConsentPortalSource)
|
|
1878
|
+
|
|
1879
|
+
ConsentPortalSummaries.member = Shapes::ShapeRef.new(shape: ConsentPortalSummary)
|
|
1880
|
+
|
|
1881
|
+
ConsentPortalSummary.add_member(:sources, Shapes::ShapeRef.new(shape: ConsentPortalSources, required: true, location_name: "sources"))
|
|
1882
|
+
ConsentPortalSummary.add_member(:consent_portal_arn, Shapes::ShapeRef.new(shape: ConsentPortalArnType, required: true, location_name: "consentPortalArn"))
|
|
1883
|
+
ConsentPortalSummary.add_member(:consent_portal_id, Shapes::ShapeRef.new(shape: ConsentPortalIdType, required: true, location_name: "consentPortalId"))
|
|
1884
|
+
ConsentPortalSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
|
1885
|
+
ConsentPortalSummary.add_member(:description, Shapes::ShapeRef.new(shape: ConsentPortalDescriptionType, location_name: "description"))
|
|
1886
|
+
ConsentPortalSummary.add_member(:name, Shapes::ShapeRef.new(shape: ConsentPortalNameType, required: true, location_name: "name"))
|
|
1887
|
+
ConsentPortalSummary.add_member(:portal_url, Shapes::ShapeRef.new(shape: PortalUrlType, location_name: "portalUrl"))
|
|
1888
|
+
ConsentPortalSummary.add_member(:status, Shapes::ShapeRef.new(shape: ConsentPortalStatus, required: true, location_name: "status"))
|
|
1889
|
+
ConsentPortalSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
1890
|
+
ConsentPortalSummary.struct_class = Types::ConsentPortalSummary
|
|
1891
|
+
|
|
1829
1892
|
ConsolidationConfiguration.add_member(:custom_consolidation_configuration, Shapes::ShapeRef.new(shape: CustomConsolidationConfiguration, location_name: "customConsolidationConfiguration"))
|
|
1830
1893
|
ConsolidationConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1831
1894
|
ConsolidationConfiguration.add_member_subclass(:custom_consolidation_configuration, Types::ConsolidationConfiguration::CustomConsolidationConfiguration)
|
|
@@ -1978,6 +2041,28 @@ module Aws::BedrockAgentCoreControl
|
|
|
1978
2041
|
CreateConfigurationBundleResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
|
1979
2042
|
CreateConfigurationBundleResponse.struct_class = Types::CreateConfigurationBundleResponse
|
|
1980
2043
|
|
|
2044
|
+
CreateConsentPortalRequest.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ExecutionRoleArnType, required: true, location_name: "executionRoleArn"))
|
|
2045
|
+
CreateConsentPortalRequest.add_member(:idp_config, Shapes::ShapeRef.new(shape: ConsentPortalIdpConfig, required: true, location_name: "idpConfig"))
|
|
2046
|
+
CreateConsentPortalRequest.add_member(:name, Shapes::ShapeRef.new(shape: ConsentPortalNameType, required: true, location_name: "name"))
|
|
2047
|
+
CreateConsentPortalRequest.add_member(:sources, Shapes::ShapeRef.new(shape: ConsentPortalSources, required: true, location_name: "sources"))
|
|
2048
|
+
CreateConsentPortalRequest.add_member(:description, Shapes::ShapeRef.new(shape: ConsentPortalDescriptionType, location_name: "description"))
|
|
2049
|
+
CreateConsentPortalRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
2050
|
+
CreateConsentPortalRequest.struct_class = Types::CreateConsentPortalRequest
|
|
2051
|
+
|
|
2052
|
+
CreateConsentPortalResponse.add_member(:sources, Shapes::ShapeRef.new(shape: ConsentPortalSources, required: true, location_name: "sources"))
|
|
2053
|
+
CreateConsentPortalResponse.add_member(:consent_portal_arn, Shapes::ShapeRef.new(shape: ConsentPortalArnType, required: true, location_name: "consentPortalArn"))
|
|
2054
|
+
CreateConsentPortalResponse.add_member(:consent_portal_id, Shapes::ShapeRef.new(shape: ConsentPortalIdType, required: true, location_name: "consentPortalId"))
|
|
2055
|
+
CreateConsentPortalResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
|
2056
|
+
CreateConsentPortalResponse.add_member(:description, Shapes::ShapeRef.new(shape: ConsentPortalDescriptionType, location_name: "description"))
|
|
2057
|
+
CreateConsentPortalResponse.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ExecutionRoleArnType, required: true, location_name: "executionRoleArn"))
|
|
2058
|
+
CreateConsentPortalResponse.add_member(:idp_config, Shapes::ShapeRef.new(shape: ConsentPortalIdpConfig, required: true, location_name: "idpConfig"))
|
|
2059
|
+
CreateConsentPortalResponse.add_member(:name, Shapes::ShapeRef.new(shape: ConsentPortalNameType, required: true, location_name: "name"))
|
|
2060
|
+
CreateConsentPortalResponse.add_member(:portal_url, Shapes::ShapeRef.new(shape: PortalUrlType, location_name: "portalUrl"))
|
|
2061
|
+
CreateConsentPortalResponse.add_member(:status, Shapes::ShapeRef.new(shape: ConsentPortalStatus, required: true, location_name: "status"))
|
|
2062
|
+
CreateConsentPortalResponse.add_member(:status_reason, Shapes::ShapeRef.new(shape: StatusReasonType, location_name: "statusReason"))
|
|
2063
|
+
CreateConsentPortalResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
2064
|
+
CreateConsentPortalResponse.struct_class = Types::CreateConsentPortalResponse
|
|
2065
|
+
|
|
1981
2066
|
CreateDatasetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
1982
2067
|
CreateDatasetRequest.add_member(:dataset_name, Shapes::ShapeRef.new(shape: DatasetName, required: true, location_name: "datasetName"))
|
|
1983
2068
|
CreateDatasetRequest.add_member(:description, Shapes::ShapeRef.new(shape: CreateDatasetRequestDescriptionString, location_name: "description"))
|
|
@@ -2197,6 +2282,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2197
2282
|
CreateOnlineEvaluationConfigRequest.add_member(:evaluators, Shapes::ShapeRef.new(shape: EvaluatorList, location_name: "evaluators"))
|
|
2198
2283
|
CreateOnlineEvaluationConfigRequest.add_member(:insights, Shapes::ShapeRef.new(shape: InsightList, location_name: "insights"))
|
|
2199
2284
|
CreateOnlineEvaluationConfigRequest.add_member(:clustering_config, Shapes::ShapeRef.new(shape: ClusteringConfig, location_name: "clusteringConfig"))
|
|
2285
|
+
CreateOnlineEvaluationConfigRequest.add_member(:output_config, Shapes::ShapeRef.new(shape: OutputConfig, location_name: "outputConfig"))
|
|
2200
2286
|
CreateOnlineEvaluationConfigRequest.add_member(:evaluation_execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "evaluationExecutionRoleArn"))
|
|
2201
2287
|
CreateOnlineEvaluationConfigRequest.add_member(:enable_on_create, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enableOnCreate"))
|
|
2202
2288
|
CreateOnlineEvaluationConfigRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
@@ -2602,6 +2688,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
2602
2688
|
DeleteConfigurationBundleResponse.add_member(:status, Shapes::ShapeRef.new(shape: ConfigurationBundleStatus, required: true, location_name: "status"))
|
|
2603
2689
|
DeleteConfigurationBundleResponse.struct_class = Types::DeleteConfigurationBundleResponse
|
|
2604
2690
|
|
|
2691
|
+
DeleteConsentPortalRequest.add_member(:consent_portal_identifier, Shapes::ShapeRef.new(shape: ConsentPortalIdentifier, required: true, location_name: "consentPortalIdentifier"))
|
|
2692
|
+
DeleteConsentPortalRequest.struct_class = Types::DeleteConsentPortalRequest
|
|
2693
|
+
|
|
2694
|
+
DeleteConsentPortalResponse.struct_class = Types::DeleteConsentPortalResponse
|
|
2695
|
+
|
|
2605
2696
|
DeleteDatasetExamplesRequest.add_member(:dataset_id, Shapes::ShapeRef.new(shape: DatasetId, required: true, location: "uri", location_name: "datasetId"))
|
|
2606
2697
|
DeleteDatasetExamplesRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
2607
2698
|
DeleteDatasetExamplesRequest.add_member(:example_ids, Shapes::ShapeRef.new(shape: DeleteDatasetExamplesRequestExampleIdsList, required: true, location_name: "exampleIds"))
|
|
@@ -3231,6 +3322,23 @@ module Aws::BedrockAgentCoreControl
|
|
|
3231
3322
|
GetConfigurationBundleVersionResponse.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
|
3232
3323
|
GetConfigurationBundleVersionResponse.struct_class = Types::GetConfigurationBundleVersionResponse
|
|
3233
3324
|
|
|
3325
|
+
GetConsentPortalRequest.add_member(:consent_portal_identifier, Shapes::ShapeRef.new(shape: ConsentPortalIdentifier, required: true, location_name: "consentPortalIdentifier"))
|
|
3326
|
+
GetConsentPortalRequest.struct_class = Types::GetConsentPortalRequest
|
|
3327
|
+
|
|
3328
|
+
GetConsentPortalResponse.add_member(:sources, Shapes::ShapeRef.new(shape: ConsentPortalSources, required: true, location_name: "sources"))
|
|
3329
|
+
GetConsentPortalResponse.add_member(:consent_portal_arn, Shapes::ShapeRef.new(shape: ConsentPortalArnType, required: true, location_name: "consentPortalArn"))
|
|
3330
|
+
GetConsentPortalResponse.add_member(:consent_portal_id, Shapes::ShapeRef.new(shape: ConsentPortalIdType, required: true, location_name: "consentPortalId"))
|
|
3331
|
+
GetConsentPortalResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
|
3332
|
+
GetConsentPortalResponse.add_member(:description, Shapes::ShapeRef.new(shape: ConsentPortalDescriptionType, location_name: "description"))
|
|
3333
|
+
GetConsentPortalResponse.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ExecutionRoleArnType, required: true, location_name: "executionRoleArn"))
|
|
3334
|
+
GetConsentPortalResponse.add_member(:idp_config, Shapes::ShapeRef.new(shape: ConsentPortalIdpConfig, required: true, location_name: "idpConfig"))
|
|
3335
|
+
GetConsentPortalResponse.add_member(:name, Shapes::ShapeRef.new(shape: ConsentPortalNameType, required: true, location_name: "name"))
|
|
3336
|
+
GetConsentPortalResponse.add_member(:portal_url, Shapes::ShapeRef.new(shape: PortalUrlType, location_name: "portalUrl"))
|
|
3337
|
+
GetConsentPortalResponse.add_member(:status, Shapes::ShapeRef.new(shape: ConsentPortalStatus, required: true, location_name: "status"))
|
|
3338
|
+
GetConsentPortalResponse.add_member(:status_reason, Shapes::ShapeRef.new(shape: StatusReasonType, location_name: "statusReason"))
|
|
3339
|
+
GetConsentPortalResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
3340
|
+
GetConsentPortalResponse.struct_class = Types::GetConsentPortalResponse
|
|
3341
|
+
|
|
3234
3342
|
GetDatasetRequest.add_member(:dataset_id, Shapes::ShapeRef.new(shape: DatasetId, required: true, location: "uri", location_name: "datasetId"))
|
|
3235
3343
|
GetDatasetRequest.add_member(:dataset_version, Shapes::ShapeRef.new(shape: DatasetVersion, location: "querystring", location_name: "datasetVersion"))
|
|
3236
3344
|
GetDatasetRequest.struct_class = Types::GetDatasetRequest
|
|
@@ -4219,6 +4327,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
4219
4327
|
ListConfigurationBundlesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
4220
4328
|
ListConfigurationBundlesResponse.struct_class = Types::ListConfigurationBundlesResponse
|
|
4221
4329
|
|
|
4330
|
+
ListConsentPortalsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListConsentPortalsRequestMaxResultsInteger, location_name: "maxResults"))
|
|
4331
|
+
ListConsentPortalsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
4332
|
+
ListConsentPortalsRequest.struct_class = Types::ListConsentPortalsRequest
|
|
4333
|
+
|
|
4334
|
+
ListConsentPortalsResponse.add_member(:consent_portals, Shapes::ShapeRef.new(shape: ConsentPortalSummaries, required: true, location_name: "consentPortals"))
|
|
4335
|
+
ListConsentPortalsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
4336
|
+
ListConsentPortalsResponse.struct_class = Types::ListConsentPortalsResponse
|
|
4337
|
+
|
|
4222
4338
|
ListDatasetExamplesRequest.add_member(:dataset_id, Shapes::ShapeRef.new(shape: DatasetId, required: true, location: "uri", location_name: "datasetId"))
|
|
4223
4339
|
ListDatasetExamplesRequest.add_member(:dataset_version, Shapes::ShapeRef.new(shape: DatasetVersion, location: "querystring", location_name: "datasetVersion"))
|
|
4224
4340
|
ListDatasetExamplesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListDatasetExamplesRequestMaxResultsInteger, location: "querystring", location_name: "maxResults"))
|
|
@@ -5710,7 +5826,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5710
5826
|
UpdateConfigurationBundleRequest.add_member(:bundle_name, Shapes::ShapeRef.new(shape: ConfigurationBundleName, location_name: "bundleName"))
|
|
5711
5827
|
UpdateConfigurationBundleRequest.add_member(:description, Shapes::ShapeRef.new(shape: ConfigurationBundleDescription, location_name: "description"))
|
|
5712
5828
|
UpdateConfigurationBundleRequest.add_member(:components, Shapes::ShapeRef.new(shape: ComponentConfigurationMap, location_name: "components"))
|
|
5713
|
-
UpdateConfigurationBundleRequest.add_member(:parent_version_ids, Shapes::ShapeRef.new(shape: ConfigurationBundleVersionList, location_name: "parentVersionIds"))
|
|
5829
|
+
UpdateConfigurationBundleRequest.add_member(:parent_version_ids, Shapes::ShapeRef.new(shape: ConfigurationBundleVersionList, required: true, location_name: "parentVersionIds"))
|
|
5714
5830
|
UpdateConfigurationBundleRequest.add_member(:branch_name, Shapes::ShapeRef.new(shape: BranchName, location_name: "branchName"))
|
|
5715
5831
|
UpdateConfigurationBundleRequest.add_member(:commit_message, Shapes::ShapeRef.new(shape: UpdateConfigurationBundleRequestCommitMessageString, location_name: "commitMessage"))
|
|
5716
5832
|
UpdateConfigurationBundleRequest.add_member(:created_by, Shapes::ShapeRef.new(shape: VersionCreatedBySource, location_name: "createdBy"))
|
|
@@ -5723,6 +5839,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
5723
5839
|
UpdateConfigurationBundleResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
5724
5840
|
UpdateConfigurationBundleResponse.struct_class = Types::UpdateConfigurationBundleResponse
|
|
5725
5841
|
|
|
5842
|
+
UpdateConsentPortalRequest.add_member(:consent_portal_identifier, Shapes::ShapeRef.new(shape: ConsentPortalIdentifier, required: true, location_name: "consentPortalIdentifier"))
|
|
5843
|
+
UpdateConsentPortalRequest.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ExecutionRoleArnType, location_name: "executionRoleArn"))
|
|
5844
|
+
UpdateConsentPortalRequest.add_member(:idp_config, Shapes::ShapeRef.new(shape: ConsentPortalIdpConfig, location_name: "idpConfig"))
|
|
5845
|
+
UpdateConsentPortalRequest.add_member(:description, Shapes::ShapeRef.new(shape: ConsentPortalDescriptionType, location_name: "description"))
|
|
5846
|
+
UpdateConsentPortalRequest.struct_class = Types::UpdateConsentPortalRequest
|
|
5847
|
+
|
|
5848
|
+
UpdateConsentPortalResponse.add_member(:sources, Shapes::ShapeRef.new(shape: ConsentPortalSources, required: true, location_name: "sources"))
|
|
5849
|
+
UpdateConsentPortalResponse.add_member(:consent_portal_arn, Shapes::ShapeRef.new(shape: ConsentPortalArnType, required: true, location_name: "consentPortalArn"))
|
|
5850
|
+
UpdateConsentPortalResponse.add_member(:consent_portal_id, Shapes::ShapeRef.new(shape: ConsentPortalIdType, required: true, location_name: "consentPortalId"))
|
|
5851
|
+
UpdateConsentPortalResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
|
5852
|
+
UpdateConsentPortalResponse.add_member(:description, Shapes::ShapeRef.new(shape: ConsentPortalDescriptionType, location_name: "description"))
|
|
5853
|
+
UpdateConsentPortalResponse.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ExecutionRoleArnType, required: true, location_name: "executionRoleArn"))
|
|
5854
|
+
UpdateConsentPortalResponse.add_member(:idp_config, Shapes::ShapeRef.new(shape: ConsentPortalIdpConfig, required: true, location_name: "idpConfig"))
|
|
5855
|
+
UpdateConsentPortalResponse.add_member(:name, Shapes::ShapeRef.new(shape: ConsentPortalNameType, required: true, location_name: "name"))
|
|
5856
|
+
UpdateConsentPortalResponse.add_member(:portal_url, Shapes::ShapeRef.new(shape: PortalUrlType, location_name: "portalUrl"))
|
|
5857
|
+
UpdateConsentPortalResponse.add_member(:status, Shapes::ShapeRef.new(shape: ConsentPortalStatus, required: true, location_name: "status"))
|
|
5858
|
+
UpdateConsentPortalResponse.add_member(:status_reason, Shapes::ShapeRef.new(shape: StatusReasonType, location_name: "statusReason"))
|
|
5859
|
+
UpdateConsentPortalResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
5860
|
+
UpdateConsentPortalResponse.struct_class = Types::UpdateConsentPortalResponse
|
|
5861
|
+
|
|
5726
5862
|
UpdateDatasetExamplesRequest.add_member(:dataset_id, Shapes::ShapeRef.new(shape: DatasetId, required: true, location: "uri", location_name: "datasetId"))
|
|
5727
5863
|
UpdateDatasetExamplesRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
5728
5864
|
UpdateDatasetExamplesRequest.add_member(:examples, Shapes::ShapeRef.new(shape: UpdateDatasetExamplesRequestExamplesList, required: true, location_name: "examples"))
|
|
@@ -5937,6 +6073,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5937
6073
|
UpdateOnlineEvaluationConfigRequest.add_member(:evaluators, Shapes::ShapeRef.new(shape: EvaluatorList, location_name: "evaluators"))
|
|
5938
6074
|
UpdateOnlineEvaluationConfigRequest.add_member(:insights, Shapes::ShapeRef.new(shape: InsightList, location_name: "insights"))
|
|
5939
6075
|
UpdateOnlineEvaluationConfigRequest.add_member(:clustering_config, Shapes::ShapeRef.new(shape: ClusteringConfig, location_name: "clusteringConfig"))
|
|
6076
|
+
UpdateOnlineEvaluationConfigRequest.add_member(:output_config, Shapes::ShapeRef.new(shape: OutputConfig, location_name: "outputConfig"))
|
|
5940
6077
|
UpdateOnlineEvaluationConfigRequest.add_member(:evaluation_execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "evaluationExecutionRoleArn"))
|
|
5941
6078
|
UpdateOnlineEvaluationConfigRequest.add_member(:execution_status, Shapes::ShapeRef.new(shape: OnlineEvaluationExecutionStatus, location_name: "executionStatus"))
|
|
5942
6079
|
UpdateOnlineEvaluationConfigRequest.struct_class = Types::UpdateOnlineEvaluationConfigRequest
|
|
@@ -6444,6 +6581,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
6444
6581
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
6445
6582
|
end)
|
|
6446
6583
|
|
|
6584
|
+
api.add_operation(:create_consent_portal, Seahorse::Model::Operation.new.tap do |o|
|
|
6585
|
+
o.name = "CreateConsentPortal"
|
|
6586
|
+
o.http_method = "POST"
|
|
6587
|
+
o.http_request_uri = "/identities/CreateConsentPortal"
|
|
6588
|
+
o.input = Shapes::ShapeRef.new(shape: CreateConsentPortalRequest)
|
|
6589
|
+
o.output = Shapes::ShapeRef.new(shape: CreateConsentPortalResponse)
|
|
6590
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
6591
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
6592
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
6593
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
6594
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
6595
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
6596
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
6597
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
6598
|
+
end)
|
|
6599
|
+
|
|
6447
6600
|
api.add_operation(:create_dataset, Seahorse::Model::Operation.new.tap do |o|
|
|
6448
6601
|
o.name = "CreateDataset"
|
|
6449
6602
|
o.http_method = "POST"
|
|
@@ -6857,6 +7010,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
6857
7010
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
6858
7011
|
end)
|
|
6859
7012
|
|
|
7013
|
+
api.add_operation(:delete_consent_portal, Seahorse::Model::Operation.new.tap do |o|
|
|
7014
|
+
o.name = "DeleteConsentPortal"
|
|
7015
|
+
o.http_method = "POST"
|
|
7016
|
+
o.http_request_uri = "/identities/DeleteConsentPortal"
|
|
7017
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteConsentPortalRequest)
|
|
7018
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteConsentPortalResponse)
|
|
7019
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
7020
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
7021
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
7022
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
7023
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
7024
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
7025
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
7026
|
+
end)
|
|
7027
|
+
|
|
6860
7028
|
api.add_operation(:delete_dataset, Seahorse::Model::Operation.new.tap do |o|
|
|
6861
7029
|
o.name = "DeleteDataset"
|
|
6862
7030
|
o.http_method = "DELETE"
|
|
@@ -7268,6 +7436,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
7268
7436
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
7269
7437
|
end)
|
|
7270
7438
|
|
|
7439
|
+
api.add_operation(:get_consent_portal, Seahorse::Model::Operation.new.tap do |o|
|
|
7440
|
+
o.name = "GetConsentPortal"
|
|
7441
|
+
o.http_method = "POST"
|
|
7442
|
+
o.http_request_uri = "/identities/GetConsentPortal"
|
|
7443
|
+
o.input = Shapes::ShapeRef.new(shape: GetConsentPortalRequest)
|
|
7444
|
+
o.output = Shapes::ShapeRef.new(shape: GetConsentPortalResponse)
|
|
7445
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
7446
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
7447
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
7448
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
7449
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
7450
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
7451
|
+
end)
|
|
7452
|
+
|
|
7271
7453
|
api.add_operation(:get_dataset, Seahorse::Model::Operation.new.tap do |o|
|
|
7272
7454
|
o.name = "GetDataset"
|
|
7273
7455
|
o.http_method = "GET"
|
|
@@ -7803,6 +7985,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
7803
7985
|
)
|
|
7804
7986
|
end)
|
|
7805
7987
|
|
|
7988
|
+
api.add_operation(:list_consent_portals, Seahorse::Model::Operation.new.tap do |o|
|
|
7989
|
+
o.name = "ListConsentPortals"
|
|
7990
|
+
o.http_method = "POST"
|
|
7991
|
+
o.http_request_uri = "/identities/ListConsentPortals"
|
|
7992
|
+
o.input = Shapes::ShapeRef.new(shape: ListConsentPortalsRequest)
|
|
7993
|
+
o.output = Shapes::ShapeRef.new(shape: ListConsentPortalsResponse)
|
|
7994
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
7995
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
7996
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
7997
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
7998
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
7999
|
+
o[:pager] = Aws::Pager.new(
|
|
8000
|
+
limit_key: "max_results",
|
|
8001
|
+
tokens: {
|
|
8002
|
+
"next_token" => "next_token"
|
|
8003
|
+
}
|
|
8004
|
+
)
|
|
8005
|
+
end)
|
|
8006
|
+
|
|
7806
8007
|
api.add_operation(:list_dataset_examples, Seahorse::Model::Operation.new.tap do |o|
|
|
7807
8008
|
o.name = "ListDatasetExamples"
|
|
7808
8009
|
o.http_method = "GET"
|
|
@@ -8500,6 +8701,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
8500
8701
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
8501
8702
|
end)
|
|
8502
8703
|
|
|
8704
|
+
api.add_operation(:update_consent_portal, Seahorse::Model::Operation.new.tap do |o|
|
|
8705
|
+
o.name = "UpdateConsentPortal"
|
|
8706
|
+
o.http_method = "POST"
|
|
8707
|
+
o.http_request_uri = "/identities/UpdateConsentPortal"
|
|
8708
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateConsentPortalRequest)
|
|
8709
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateConsentPortalResponse)
|
|
8710
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
|
8711
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
8712
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
8713
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
8714
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
8715
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
8716
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
8717
|
+
end)
|
|
8718
|
+
|
|
8503
8719
|
api.add_operation(:update_dataset, Seahorse::Model::Operation.new.tap do |o|
|
|
8504
8720
|
o.name = "UpdateDataset"
|
|
8505
8721
|
o.http_method = "PUT"
|