aws-sdk-bedrockagentcorecontrol 1.45.0 → 1.46.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-bedrockagentcorecontrol/client.rb +425 -60
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +240 -23
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +766 -195
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +123 -25
- data/sig/types.rbs +150 -22
- metadata +3 -3
|
@@ -422,10 +422,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
422
422
|
GetPaymentManagerResponse = Shapes::StructureShape.new(name: 'GetPaymentManagerResponse')
|
|
423
423
|
GetPolicyEngineRequest = Shapes::StructureShape.new(name: 'GetPolicyEngineRequest')
|
|
424
424
|
GetPolicyEngineResponse = Shapes::StructureShape.new(name: 'GetPolicyEngineResponse')
|
|
425
|
+
GetPolicyEngineSummaryRequest = Shapes::StructureShape.new(name: 'GetPolicyEngineSummaryRequest')
|
|
426
|
+
GetPolicyEngineSummaryResponse = Shapes::StructureShape.new(name: 'GetPolicyEngineSummaryResponse')
|
|
425
427
|
GetPolicyGenerationRequest = Shapes::StructureShape.new(name: 'GetPolicyGenerationRequest')
|
|
426
428
|
GetPolicyGenerationResponse = Shapes::StructureShape.new(name: 'GetPolicyGenerationResponse')
|
|
429
|
+
GetPolicyGenerationSummaryRequest = Shapes::StructureShape.new(name: 'GetPolicyGenerationSummaryRequest')
|
|
430
|
+
GetPolicyGenerationSummaryResponse = Shapes::StructureShape.new(name: 'GetPolicyGenerationSummaryResponse')
|
|
427
431
|
GetPolicyRequest = Shapes::StructureShape.new(name: 'GetPolicyRequest')
|
|
428
432
|
GetPolicyResponse = Shapes::StructureShape.new(name: 'GetPolicyResponse')
|
|
433
|
+
GetPolicySummaryRequest = Shapes::StructureShape.new(name: 'GetPolicySummaryRequest')
|
|
434
|
+
GetPolicySummaryResponse = Shapes::StructureShape.new(name: 'GetPolicySummaryResponse')
|
|
429
435
|
GetRegistryRecordRequest = Shapes::StructureShape.new(name: 'GetRegistryRecordRequest')
|
|
430
436
|
GetRegistryRecordResponse = Shapes::StructureShape.new(name: 'GetRegistryRecordResponse')
|
|
431
437
|
GetRegistryRequest = Shapes::StructureShape.new(name: 'GetRegistryRequest')
|
|
@@ -586,12 +592,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
586
592
|
ListPaymentManagersResponse = Shapes::StructureShape.new(name: 'ListPaymentManagersResponse')
|
|
587
593
|
ListPoliciesRequest = Shapes::StructureShape.new(name: 'ListPoliciesRequest')
|
|
588
594
|
ListPoliciesResponse = Shapes::StructureShape.new(name: 'ListPoliciesResponse')
|
|
595
|
+
ListPolicyEngineSummariesRequest = Shapes::StructureShape.new(name: 'ListPolicyEngineSummariesRequest')
|
|
596
|
+
ListPolicyEngineSummariesResponse = Shapes::StructureShape.new(name: 'ListPolicyEngineSummariesResponse')
|
|
589
597
|
ListPolicyEnginesRequest = Shapes::StructureShape.new(name: 'ListPolicyEnginesRequest')
|
|
590
598
|
ListPolicyEnginesResponse = Shapes::StructureShape.new(name: 'ListPolicyEnginesResponse')
|
|
591
599
|
ListPolicyGenerationAssetsRequest = Shapes::StructureShape.new(name: 'ListPolicyGenerationAssetsRequest')
|
|
592
600
|
ListPolicyGenerationAssetsResponse = Shapes::StructureShape.new(name: 'ListPolicyGenerationAssetsResponse')
|
|
601
|
+
ListPolicyGenerationSummariesRequest = Shapes::StructureShape.new(name: 'ListPolicyGenerationSummariesRequest')
|
|
602
|
+
ListPolicyGenerationSummariesResponse = Shapes::StructureShape.new(name: 'ListPolicyGenerationSummariesResponse')
|
|
593
603
|
ListPolicyGenerationsRequest = Shapes::StructureShape.new(name: 'ListPolicyGenerationsRequest')
|
|
594
604
|
ListPolicyGenerationsResponse = Shapes::StructureShape.new(name: 'ListPolicyGenerationsResponse')
|
|
605
|
+
ListPolicySummariesRequest = Shapes::StructureShape.new(name: 'ListPolicySummariesRequest')
|
|
606
|
+
ListPolicySummariesResponse = Shapes::StructureShape.new(name: 'ListPolicySummariesResponse')
|
|
595
607
|
ListRegistriesRequest = Shapes::StructureShape.new(name: 'ListRegistriesRequest')
|
|
596
608
|
ListRegistriesResponse = Shapes::StructureShape.new(name: 'ListRegistriesResponse')
|
|
597
609
|
ListRegistryRecordsRequest = Shapes::StructureShape.new(name: 'ListRegistryRecordsRequest')
|
|
@@ -740,6 +752,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
740
752
|
PolicyEngineArn = Shapes::StringShape.new(name: 'PolicyEngineArn')
|
|
741
753
|
PolicyEngineName = Shapes::StringShape.new(name: 'PolicyEngineName')
|
|
742
754
|
PolicyEngineStatus = Shapes::StringShape.new(name: 'PolicyEngineStatus')
|
|
755
|
+
PolicyEngineSummary = Shapes::StructureShape.new(name: 'PolicyEngineSummary')
|
|
756
|
+
PolicyEngineSummaryList = Shapes::ListShape.new(name: 'PolicyEngineSummaryList')
|
|
743
757
|
PolicyEngines = Shapes::ListShape.new(name: 'PolicyEngines')
|
|
744
758
|
PolicyGeneration = Shapes::StructureShape.new(name: 'PolicyGeneration')
|
|
745
759
|
PolicyGenerationArn = Shapes::StringShape.new(name: 'PolicyGenerationArn')
|
|
@@ -748,10 +762,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
748
762
|
PolicyGenerationDetails = Shapes::StructureShape.new(name: 'PolicyGenerationDetails')
|
|
749
763
|
PolicyGenerationName = Shapes::StringShape.new(name: 'PolicyGenerationName')
|
|
750
764
|
PolicyGenerationStatus = Shapes::StringShape.new(name: 'PolicyGenerationStatus')
|
|
765
|
+
PolicyGenerationSummary = Shapes::StructureShape.new(name: 'PolicyGenerationSummary')
|
|
766
|
+
PolicyGenerationSummaryList = Shapes::ListShape.new(name: 'PolicyGenerationSummaryList')
|
|
751
767
|
PolicyGenerations = Shapes::ListShape.new(name: 'PolicyGenerations')
|
|
752
768
|
PolicyName = Shapes::StringShape.new(name: 'PolicyName')
|
|
753
769
|
PolicyStatus = Shapes::StringShape.new(name: 'PolicyStatus')
|
|
754
770
|
PolicyStatusReasons = Shapes::ListShape.new(name: 'PolicyStatusReasons')
|
|
771
|
+
PolicySummary = Shapes::StructureShape.new(name: 'PolicySummary')
|
|
772
|
+
PolicySummaryList = Shapes::ListShape.new(name: 'PolicySummaryList')
|
|
755
773
|
PolicyValidationMode = Shapes::StringShape.new(name: 'PolicyValidationMode')
|
|
756
774
|
PrincipalMatchOperator = Shapes::StringShape.new(name: 'PrincipalMatchOperator')
|
|
757
775
|
PrivateEndpoint = Shapes::UnionShape.new(name: 'PrivateEndpoint')
|
|
@@ -1752,13 +1770,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
1752
1770
|
|
|
1753
1771
|
CreatePolicyEngineResponse.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyEngineId"))
|
|
1754
1772
|
CreatePolicyEngineResponse.add_member(:name, Shapes::ShapeRef.new(shape: PolicyEngineName, required: true, location_name: "name"))
|
|
1755
|
-
CreatePolicyEngineResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
1756
1773
|
CreatePolicyEngineResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
1757
1774
|
CreatePolicyEngineResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
1758
1775
|
CreatePolicyEngineResponse.add_member(:policy_engine_arn, Shapes::ShapeRef.new(shape: PolicyEngineArn, required: true, location_name: "policyEngineArn"))
|
|
1759
1776
|
CreatePolicyEngineResponse.add_member(:status, Shapes::ShapeRef.new(shape: PolicyEngineStatus, required: true, location_name: "status"))
|
|
1760
|
-
CreatePolicyEngineResponse.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
1761
1777
|
CreatePolicyEngineResponse.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "encryptionKeyArn"))
|
|
1778
|
+
CreatePolicyEngineResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
1779
|
+
CreatePolicyEngineResponse.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
1762
1780
|
CreatePolicyEngineResponse.struct_class = Types::CreatePolicyEngineResponse
|
|
1763
1781
|
|
|
1764
1782
|
CreatePolicyRequest.add_member(:name, Shapes::ShapeRef.new(shape: PolicyName, required: true, location_name: "name"))
|
|
@@ -1772,12 +1790,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
1772
1790
|
CreatePolicyResponse.add_member(:policy_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyId"))
|
|
1773
1791
|
CreatePolicyResponse.add_member(:name, Shapes::ShapeRef.new(shape: PolicyName, required: true, location_name: "name"))
|
|
1774
1792
|
CreatePolicyResponse.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyEngineId"))
|
|
1775
|
-
CreatePolicyResponse.add_member(:definition, Shapes::ShapeRef.new(shape: PolicyDefinition, required: true, location_name: "definition"))
|
|
1776
|
-
CreatePolicyResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
1777
1793
|
CreatePolicyResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
1778
1794
|
CreatePolicyResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
1779
1795
|
CreatePolicyResponse.add_member(:policy_arn, Shapes::ShapeRef.new(shape: PolicyArn, required: true, location_name: "policyArn"))
|
|
1780
1796
|
CreatePolicyResponse.add_member(:status, Shapes::ShapeRef.new(shape: PolicyStatus, required: true, location_name: "status"))
|
|
1797
|
+
CreatePolicyResponse.add_member(:definition, Shapes::ShapeRef.new(shape: PolicyDefinition, required: true, location_name: "definition"))
|
|
1798
|
+
CreatePolicyResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
1781
1799
|
CreatePolicyResponse.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
1782
1800
|
CreatePolicyResponse.struct_class = Types::CreatePolicyResponse
|
|
1783
1801
|
|
|
@@ -2122,13 +2140,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
2122
2140
|
|
|
2123
2141
|
DeletePolicyEngineResponse.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyEngineId"))
|
|
2124
2142
|
DeletePolicyEngineResponse.add_member(:name, Shapes::ShapeRef.new(shape: PolicyEngineName, required: true, location_name: "name"))
|
|
2125
|
-
DeletePolicyEngineResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
2126
2143
|
DeletePolicyEngineResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
2127
2144
|
DeletePolicyEngineResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
2128
2145
|
DeletePolicyEngineResponse.add_member(:policy_engine_arn, Shapes::ShapeRef.new(shape: PolicyEngineArn, required: true, location_name: "policyEngineArn"))
|
|
2129
2146
|
DeletePolicyEngineResponse.add_member(:status, Shapes::ShapeRef.new(shape: PolicyEngineStatus, required: true, location_name: "status"))
|
|
2130
|
-
DeletePolicyEngineResponse.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
2131
2147
|
DeletePolicyEngineResponse.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "encryptionKeyArn"))
|
|
2148
|
+
DeletePolicyEngineResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
2149
|
+
DeletePolicyEngineResponse.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
2132
2150
|
DeletePolicyEngineResponse.struct_class = Types::DeletePolicyEngineResponse
|
|
2133
2151
|
|
|
2134
2152
|
DeletePolicyRequest.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "policyEngineId"))
|
|
@@ -2138,12 +2156,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
2138
2156
|
DeletePolicyResponse.add_member(:policy_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyId"))
|
|
2139
2157
|
DeletePolicyResponse.add_member(:name, Shapes::ShapeRef.new(shape: PolicyName, required: true, location_name: "name"))
|
|
2140
2158
|
DeletePolicyResponse.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyEngineId"))
|
|
2141
|
-
DeletePolicyResponse.add_member(:definition, Shapes::ShapeRef.new(shape: PolicyDefinition, required: true, location_name: "definition"))
|
|
2142
|
-
DeletePolicyResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
2143
2159
|
DeletePolicyResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
2144
2160
|
DeletePolicyResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
2145
2161
|
DeletePolicyResponse.add_member(:policy_arn, Shapes::ShapeRef.new(shape: PolicyArn, required: true, location_name: "policyArn"))
|
|
2146
2162
|
DeletePolicyResponse.add_member(:status, Shapes::ShapeRef.new(shape: PolicyStatus, required: true, location_name: "status"))
|
|
2163
|
+
DeletePolicyResponse.add_member(:definition, Shapes::ShapeRef.new(shape: PolicyDefinition, required: true, location_name: "definition"))
|
|
2164
|
+
DeletePolicyResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
2147
2165
|
DeletePolicyResponse.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
2148
2166
|
DeletePolicyResponse.struct_class = Types::DeletePolicyResponse
|
|
2149
2167
|
|
|
@@ -2698,15 +2716,27 @@ module Aws::BedrockAgentCoreControl
|
|
|
2698
2716
|
|
|
2699
2717
|
GetPolicyEngineResponse.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyEngineId"))
|
|
2700
2718
|
GetPolicyEngineResponse.add_member(:name, Shapes::ShapeRef.new(shape: PolicyEngineName, required: true, location_name: "name"))
|
|
2701
|
-
GetPolicyEngineResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
2702
2719
|
GetPolicyEngineResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
2703
2720
|
GetPolicyEngineResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
2704
2721
|
GetPolicyEngineResponse.add_member(:policy_engine_arn, Shapes::ShapeRef.new(shape: PolicyEngineArn, required: true, location_name: "policyEngineArn"))
|
|
2705
2722
|
GetPolicyEngineResponse.add_member(:status, Shapes::ShapeRef.new(shape: PolicyEngineStatus, required: true, location_name: "status"))
|
|
2706
|
-
GetPolicyEngineResponse.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
2707
2723
|
GetPolicyEngineResponse.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "encryptionKeyArn"))
|
|
2724
|
+
GetPolicyEngineResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
2725
|
+
GetPolicyEngineResponse.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
2708
2726
|
GetPolicyEngineResponse.struct_class = Types::GetPolicyEngineResponse
|
|
2709
2727
|
|
|
2728
|
+
GetPolicyEngineSummaryRequest.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "policyEngineId"))
|
|
2729
|
+
GetPolicyEngineSummaryRequest.struct_class = Types::GetPolicyEngineSummaryRequest
|
|
2730
|
+
|
|
2731
|
+
GetPolicyEngineSummaryResponse.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyEngineId"))
|
|
2732
|
+
GetPolicyEngineSummaryResponse.add_member(:name, Shapes::ShapeRef.new(shape: PolicyEngineName, required: true, location_name: "name"))
|
|
2733
|
+
GetPolicyEngineSummaryResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
2734
|
+
GetPolicyEngineSummaryResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
2735
|
+
GetPolicyEngineSummaryResponse.add_member(:policy_engine_arn, Shapes::ShapeRef.new(shape: PolicyEngineArn, required: true, location_name: "policyEngineArn"))
|
|
2736
|
+
GetPolicyEngineSummaryResponse.add_member(:status, Shapes::ShapeRef.new(shape: PolicyEngineStatus, required: true, location_name: "status"))
|
|
2737
|
+
GetPolicyEngineSummaryResponse.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "encryptionKeyArn"))
|
|
2738
|
+
GetPolicyEngineSummaryResponse.struct_class = Types::GetPolicyEngineSummaryResponse
|
|
2739
|
+
|
|
2710
2740
|
GetPolicyGenerationRequest.add_member(:policy_generation_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "policyGenerationId"))
|
|
2711
2741
|
GetPolicyGenerationRequest.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "policyEngineId"))
|
|
2712
2742
|
GetPolicyGenerationRequest.struct_class = Types::GetPolicyGenerationRequest
|
|
@@ -2719,10 +2749,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
2719
2749
|
GetPolicyGenerationResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
2720
2750
|
GetPolicyGenerationResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
2721
2751
|
GetPolicyGenerationResponse.add_member(:status, Shapes::ShapeRef.new(shape: PolicyGenerationStatus, required: true, location_name: "status"))
|
|
2722
|
-
GetPolicyGenerationResponse.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
2723
2752
|
GetPolicyGenerationResponse.add_member(:findings, Shapes::ShapeRef.new(shape: String, location_name: "findings"))
|
|
2753
|
+
GetPolicyGenerationResponse.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
2724
2754
|
GetPolicyGenerationResponse.struct_class = Types::GetPolicyGenerationResponse
|
|
2725
2755
|
|
|
2756
|
+
GetPolicyGenerationSummaryRequest.add_member(:policy_generation_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "policyGenerationId"))
|
|
2757
|
+
GetPolicyGenerationSummaryRequest.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "policyEngineId"))
|
|
2758
|
+
GetPolicyGenerationSummaryRequest.struct_class = Types::GetPolicyGenerationSummaryRequest
|
|
2759
|
+
|
|
2760
|
+
GetPolicyGenerationSummaryResponse.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyEngineId"))
|
|
2761
|
+
GetPolicyGenerationSummaryResponse.add_member(:policy_generation_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyGenerationId"))
|
|
2762
|
+
GetPolicyGenerationSummaryResponse.add_member(:name, Shapes::ShapeRef.new(shape: PolicyGenerationName, required: true, location_name: "name"))
|
|
2763
|
+
GetPolicyGenerationSummaryResponse.add_member(:policy_generation_arn, Shapes::ShapeRef.new(shape: PolicyGenerationArn, required: true, location_name: "policyGenerationArn"))
|
|
2764
|
+
GetPolicyGenerationSummaryResponse.add_member(:resource, Shapes::ShapeRef.new(shape: Resource, required: true, location_name: "resource"))
|
|
2765
|
+
GetPolicyGenerationSummaryResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
2766
|
+
GetPolicyGenerationSummaryResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
2767
|
+
GetPolicyGenerationSummaryResponse.add_member(:status, Shapes::ShapeRef.new(shape: PolicyGenerationStatus, required: true, location_name: "status"))
|
|
2768
|
+
GetPolicyGenerationSummaryResponse.add_member(:findings, Shapes::ShapeRef.new(shape: String, location_name: "findings"))
|
|
2769
|
+
GetPolicyGenerationSummaryResponse.struct_class = Types::GetPolicyGenerationSummaryResponse
|
|
2770
|
+
|
|
2726
2771
|
GetPolicyRequest.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "policyEngineId"))
|
|
2727
2772
|
GetPolicyRequest.add_member(:policy_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "policyId"))
|
|
2728
2773
|
GetPolicyRequest.struct_class = Types::GetPolicyRequest
|
|
@@ -2730,15 +2775,28 @@ module Aws::BedrockAgentCoreControl
|
|
|
2730
2775
|
GetPolicyResponse.add_member(:policy_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyId"))
|
|
2731
2776
|
GetPolicyResponse.add_member(:name, Shapes::ShapeRef.new(shape: PolicyName, required: true, location_name: "name"))
|
|
2732
2777
|
GetPolicyResponse.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyEngineId"))
|
|
2733
|
-
GetPolicyResponse.add_member(:definition, Shapes::ShapeRef.new(shape: PolicyDefinition, required: true, location_name: "definition"))
|
|
2734
|
-
GetPolicyResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
2735
2778
|
GetPolicyResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
2736
2779
|
GetPolicyResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
2737
2780
|
GetPolicyResponse.add_member(:policy_arn, Shapes::ShapeRef.new(shape: PolicyArn, required: true, location_name: "policyArn"))
|
|
2738
2781
|
GetPolicyResponse.add_member(:status, Shapes::ShapeRef.new(shape: PolicyStatus, required: true, location_name: "status"))
|
|
2782
|
+
GetPolicyResponse.add_member(:definition, Shapes::ShapeRef.new(shape: PolicyDefinition, required: true, location_name: "definition"))
|
|
2783
|
+
GetPolicyResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
2739
2784
|
GetPolicyResponse.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
2740
2785
|
GetPolicyResponse.struct_class = Types::GetPolicyResponse
|
|
2741
2786
|
|
|
2787
|
+
GetPolicySummaryRequest.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "policyEngineId"))
|
|
2788
|
+
GetPolicySummaryRequest.add_member(:policy_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "policyId"))
|
|
2789
|
+
GetPolicySummaryRequest.struct_class = Types::GetPolicySummaryRequest
|
|
2790
|
+
|
|
2791
|
+
GetPolicySummaryResponse.add_member(:policy_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyId"))
|
|
2792
|
+
GetPolicySummaryResponse.add_member(:name, Shapes::ShapeRef.new(shape: PolicyName, required: true, location_name: "name"))
|
|
2793
|
+
GetPolicySummaryResponse.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyEngineId"))
|
|
2794
|
+
GetPolicySummaryResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
2795
|
+
GetPolicySummaryResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
2796
|
+
GetPolicySummaryResponse.add_member(:policy_arn, Shapes::ShapeRef.new(shape: PolicyArn, required: true, location_name: "policyArn"))
|
|
2797
|
+
GetPolicySummaryResponse.add_member(:status, Shapes::ShapeRef.new(shape: PolicyStatus, required: true, location_name: "status"))
|
|
2798
|
+
GetPolicySummaryResponse.struct_class = Types::GetPolicySummaryResponse
|
|
2799
|
+
|
|
2742
2800
|
GetRegistryRecordRequest.add_member(:registry_id, Shapes::ShapeRef.new(shape: RegistryIdentifier, required: true, location: "uri", location_name: "registryId"))
|
|
2743
2801
|
GetRegistryRecordRequest.add_member(:record_id, Shapes::ShapeRef.new(shape: RecordIdentifier, required: true, location: "uri", location_name: "recordId"))
|
|
2744
2802
|
GetRegistryRecordRequest.struct_class = Types::GetRegistryRecordRequest
|
|
@@ -3289,6 +3347,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
3289
3347
|
ListPoliciesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
3290
3348
|
ListPoliciesResponse.struct_class = Types::ListPoliciesResponse
|
|
3291
3349
|
|
|
3350
|
+
ListPolicyEngineSummariesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
3351
|
+
ListPolicyEngineSummariesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
3352
|
+
ListPolicyEngineSummariesRequest.struct_class = Types::ListPolicyEngineSummariesRequest
|
|
3353
|
+
|
|
3354
|
+
ListPolicyEngineSummariesResponse.add_member(:policy_engines, Shapes::ShapeRef.new(shape: PolicyEngineSummaryList, required: true, location_name: "policyEngines"))
|
|
3355
|
+
ListPolicyEngineSummariesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
3356
|
+
ListPolicyEngineSummariesResponse.struct_class = Types::ListPolicyEngineSummariesResponse
|
|
3357
|
+
|
|
3292
3358
|
ListPolicyEnginesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
3293
3359
|
ListPolicyEnginesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
3294
3360
|
ListPolicyEnginesRequest.struct_class = Types::ListPolicyEnginesRequest
|
|
@@ -3307,6 +3373,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
3307
3373
|
ListPolicyGenerationAssetsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
3308
3374
|
ListPolicyGenerationAssetsResponse.struct_class = Types::ListPolicyGenerationAssetsResponse
|
|
3309
3375
|
|
|
3376
|
+
ListPolicyGenerationSummariesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
3377
|
+
ListPolicyGenerationSummariesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
3378
|
+
ListPolicyGenerationSummariesRequest.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "policyEngineId"))
|
|
3379
|
+
ListPolicyGenerationSummariesRequest.struct_class = Types::ListPolicyGenerationSummariesRequest
|
|
3380
|
+
|
|
3381
|
+
ListPolicyGenerationSummariesResponse.add_member(:policy_generations, Shapes::ShapeRef.new(shape: PolicyGenerationSummaryList, required: true, location_name: "policyGenerations"))
|
|
3382
|
+
ListPolicyGenerationSummariesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
3383
|
+
ListPolicyGenerationSummariesResponse.struct_class = Types::ListPolicyGenerationSummariesResponse
|
|
3384
|
+
|
|
3310
3385
|
ListPolicyGenerationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
3311
3386
|
ListPolicyGenerationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
3312
3387
|
ListPolicyGenerationsRequest.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "policyEngineId"))
|
|
@@ -3316,9 +3391,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
3316
3391
|
ListPolicyGenerationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
3317
3392
|
ListPolicyGenerationsResponse.struct_class = Types::ListPolicyGenerationsResponse
|
|
3318
3393
|
|
|
3394
|
+
ListPolicySummariesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
3395
|
+
ListPolicySummariesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
3396
|
+
ListPolicySummariesRequest.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "policyEngineId"))
|
|
3397
|
+
ListPolicySummariesRequest.add_member(:target_resource_scope, Shapes::ShapeRef.new(shape: BedrockAgentcoreResourceArn, location: "querystring", location_name: "targetResourceScope"))
|
|
3398
|
+
ListPolicySummariesRequest.struct_class = Types::ListPolicySummariesRequest
|
|
3399
|
+
|
|
3400
|
+
ListPolicySummariesResponse.add_member(:policies, Shapes::ShapeRef.new(shape: PolicySummaryList, required: true, location_name: "policies"))
|
|
3401
|
+
ListPolicySummariesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
3402
|
+
ListPolicySummariesResponse.struct_class = Types::ListPolicySummariesResponse
|
|
3403
|
+
|
|
3319
3404
|
ListRegistriesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
3320
3405
|
ListRegistriesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
3321
3406
|
ListRegistriesRequest.add_member(:status, Shapes::ShapeRef.new(shape: RegistryStatus, location: "querystring", location_name: "status"))
|
|
3407
|
+
ListRegistriesRequest.add_member(:authorizer_type, Shapes::ShapeRef.new(shape: RegistryAuthorizerType, location: "querystring", location_name: "authorizerType"))
|
|
3322
3408
|
ListRegistriesRequest.struct_class = Types::ListRegistriesRequest
|
|
3323
3409
|
|
|
3324
3410
|
ListRegistriesResponse.add_member(:registries, Shapes::ShapeRef.new(shape: RegistrySummaryList, required: true, location_name: "registries"))
|
|
@@ -3749,12 +3835,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
3749
3835
|
Policy.add_member(:policy_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyId"))
|
|
3750
3836
|
Policy.add_member(:name, Shapes::ShapeRef.new(shape: PolicyName, required: true, location_name: "name"))
|
|
3751
3837
|
Policy.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyEngineId"))
|
|
3752
|
-
Policy.add_member(:definition, Shapes::ShapeRef.new(shape: PolicyDefinition, required: true, location_name: "definition"))
|
|
3753
|
-
Policy.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
3754
3838
|
Policy.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
3755
3839
|
Policy.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
3756
3840
|
Policy.add_member(:policy_arn, Shapes::ShapeRef.new(shape: PolicyArn, required: true, location_name: "policyArn"))
|
|
3757
3841
|
Policy.add_member(:status, Shapes::ShapeRef.new(shape: PolicyStatus, required: true, location_name: "status"))
|
|
3842
|
+
Policy.add_member(:definition, Shapes::ShapeRef.new(shape: PolicyDefinition, required: true, location_name: "definition"))
|
|
3843
|
+
Policy.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
3758
3844
|
Policy.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
3759
3845
|
Policy.struct_class = Types::Policy
|
|
3760
3846
|
|
|
@@ -3768,15 +3854,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
3768
3854
|
|
|
3769
3855
|
PolicyEngine.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyEngineId"))
|
|
3770
3856
|
PolicyEngine.add_member(:name, Shapes::ShapeRef.new(shape: PolicyEngineName, required: true, location_name: "name"))
|
|
3771
|
-
PolicyEngine.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
3772
3857
|
PolicyEngine.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
3773
3858
|
PolicyEngine.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
3774
3859
|
PolicyEngine.add_member(:policy_engine_arn, Shapes::ShapeRef.new(shape: PolicyEngineArn, required: true, location_name: "policyEngineArn"))
|
|
3775
3860
|
PolicyEngine.add_member(:status, Shapes::ShapeRef.new(shape: PolicyEngineStatus, required: true, location_name: "status"))
|
|
3776
|
-
PolicyEngine.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
3777
3861
|
PolicyEngine.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "encryptionKeyArn"))
|
|
3862
|
+
PolicyEngine.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
3863
|
+
PolicyEngine.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
3778
3864
|
PolicyEngine.struct_class = Types::PolicyEngine
|
|
3779
3865
|
|
|
3866
|
+
PolicyEngineSummary.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyEngineId"))
|
|
3867
|
+
PolicyEngineSummary.add_member(:name, Shapes::ShapeRef.new(shape: PolicyEngineName, required: true, location_name: "name"))
|
|
3868
|
+
PolicyEngineSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
3869
|
+
PolicyEngineSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
3870
|
+
PolicyEngineSummary.add_member(:policy_engine_arn, Shapes::ShapeRef.new(shape: PolicyEngineArn, required: true, location_name: "policyEngineArn"))
|
|
3871
|
+
PolicyEngineSummary.add_member(:status, Shapes::ShapeRef.new(shape: PolicyEngineStatus, required: true, location_name: "status"))
|
|
3872
|
+
PolicyEngineSummary.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "encryptionKeyArn"))
|
|
3873
|
+
PolicyEngineSummary.struct_class = Types::PolicyEngineSummary
|
|
3874
|
+
|
|
3875
|
+
PolicyEngineSummaryList.member = Shapes::ShapeRef.new(shape: PolicyEngineSummary)
|
|
3876
|
+
|
|
3780
3877
|
PolicyEngines.member = Shapes::ShapeRef.new(shape: PolicyEngine)
|
|
3781
3878
|
|
|
3782
3879
|
PolicyGeneration.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyEngineId"))
|
|
@@ -3787,8 +3884,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3787
3884
|
PolicyGeneration.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
3788
3885
|
PolicyGeneration.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
3789
3886
|
PolicyGeneration.add_member(:status, Shapes::ShapeRef.new(shape: PolicyGenerationStatus, required: true, location_name: "status"))
|
|
3790
|
-
PolicyGeneration.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
3791
3887
|
PolicyGeneration.add_member(:findings, Shapes::ShapeRef.new(shape: String, location_name: "findings"))
|
|
3888
|
+
PolicyGeneration.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
3792
3889
|
PolicyGeneration.struct_class = Types::PolicyGeneration
|
|
3793
3890
|
|
|
3794
3891
|
PolicyGenerationAsset.add_member(:policy_generation_asset_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyGenerationAssetId"))
|
|
@@ -3803,10 +3900,34 @@ module Aws::BedrockAgentCoreControl
|
|
|
3803
3900
|
PolicyGenerationDetails.add_member(:policy_generation_asset_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyGenerationAssetId"))
|
|
3804
3901
|
PolicyGenerationDetails.struct_class = Types::PolicyGenerationDetails
|
|
3805
3902
|
|
|
3903
|
+
PolicyGenerationSummary.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyEngineId"))
|
|
3904
|
+
PolicyGenerationSummary.add_member(:policy_generation_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyGenerationId"))
|
|
3905
|
+
PolicyGenerationSummary.add_member(:name, Shapes::ShapeRef.new(shape: PolicyGenerationName, required: true, location_name: "name"))
|
|
3906
|
+
PolicyGenerationSummary.add_member(:policy_generation_arn, Shapes::ShapeRef.new(shape: PolicyGenerationArn, required: true, location_name: "policyGenerationArn"))
|
|
3907
|
+
PolicyGenerationSummary.add_member(:resource, Shapes::ShapeRef.new(shape: Resource, required: true, location_name: "resource"))
|
|
3908
|
+
PolicyGenerationSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
3909
|
+
PolicyGenerationSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
3910
|
+
PolicyGenerationSummary.add_member(:status, Shapes::ShapeRef.new(shape: PolicyGenerationStatus, required: true, location_name: "status"))
|
|
3911
|
+
PolicyGenerationSummary.add_member(:findings, Shapes::ShapeRef.new(shape: String, location_name: "findings"))
|
|
3912
|
+
PolicyGenerationSummary.struct_class = Types::PolicyGenerationSummary
|
|
3913
|
+
|
|
3914
|
+
PolicyGenerationSummaryList.member = Shapes::ShapeRef.new(shape: PolicyGenerationSummary)
|
|
3915
|
+
|
|
3806
3916
|
PolicyGenerations.member = Shapes::ShapeRef.new(shape: PolicyGeneration)
|
|
3807
3917
|
|
|
3808
3918
|
PolicyStatusReasons.member = Shapes::ShapeRef.new(shape: String)
|
|
3809
3919
|
|
|
3920
|
+
PolicySummary.add_member(:policy_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyId"))
|
|
3921
|
+
PolicySummary.add_member(:name, Shapes::ShapeRef.new(shape: PolicyName, required: true, location_name: "name"))
|
|
3922
|
+
PolicySummary.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyEngineId"))
|
|
3923
|
+
PolicySummary.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
3924
|
+
PolicySummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
3925
|
+
PolicySummary.add_member(:policy_arn, Shapes::ShapeRef.new(shape: PolicyArn, required: true, location_name: "policyArn"))
|
|
3926
|
+
PolicySummary.add_member(:status, Shapes::ShapeRef.new(shape: PolicyStatus, required: true, location_name: "status"))
|
|
3927
|
+
PolicySummary.struct_class = Types::PolicySummary
|
|
3928
|
+
|
|
3929
|
+
PolicySummaryList.member = Shapes::ShapeRef.new(shape: PolicySummary)
|
|
3930
|
+
|
|
3810
3931
|
PrivateEndpoint.add_member(:self_managed_lattice_resource, Shapes::ShapeRef.new(shape: SelfManagedLatticeResource, location_name: "selfManagedLatticeResource"))
|
|
3811
3932
|
PrivateEndpoint.add_member(:managed_vpc_resource, Shapes::ShapeRef.new(shape: ManagedVpcResource, location_name: "managedVpcResource"))
|
|
3812
3933
|
PrivateEndpoint.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
@@ -4108,8 +4229,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4108
4229
|
StartPolicyGenerationResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
4109
4230
|
StartPolicyGenerationResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
4110
4231
|
StartPolicyGenerationResponse.add_member(:status, Shapes::ShapeRef.new(shape: PolicyGenerationStatus, required: true, location_name: "status"))
|
|
4111
|
-
StartPolicyGenerationResponse.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
4112
4232
|
StartPolicyGenerationResponse.add_member(:findings, Shapes::ShapeRef.new(shape: String, location_name: "findings"))
|
|
4233
|
+
StartPolicyGenerationResponse.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
4113
4234
|
StartPolicyGenerationResponse.struct_class = Types::StartPolicyGenerationResponse
|
|
4114
4235
|
|
|
4115
4236
|
StaticOverride.add_member(:bundle_arn, Shapes::ShapeRef.new(shape: GatewayConfigurationBundleArn, required: true, location_name: "bundleArn"))
|
|
@@ -4627,13 +4748,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
4627
4748
|
|
|
4628
4749
|
UpdatePolicyEngineResponse.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyEngineId"))
|
|
4629
4750
|
UpdatePolicyEngineResponse.add_member(:name, Shapes::ShapeRef.new(shape: PolicyEngineName, required: true, location_name: "name"))
|
|
4630
|
-
UpdatePolicyEngineResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
4631
4751
|
UpdatePolicyEngineResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
4632
4752
|
UpdatePolicyEngineResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
4633
4753
|
UpdatePolicyEngineResponse.add_member(:policy_engine_arn, Shapes::ShapeRef.new(shape: PolicyEngineArn, required: true, location_name: "policyEngineArn"))
|
|
4634
4754
|
UpdatePolicyEngineResponse.add_member(:status, Shapes::ShapeRef.new(shape: PolicyEngineStatus, required: true, location_name: "status"))
|
|
4635
|
-
UpdatePolicyEngineResponse.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
4636
4755
|
UpdatePolicyEngineResponse.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "encryptionKeyArn"))
|
|
4756
|
+
UpdatePolicyEngineResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
4757
|
+
UpdatePolicyEngineResponse.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
4637
4758
|
UpdatePolicyEngineResponse.struct_class = Types::UpdatePolicyEngineResponse
|
|
4638
4759
|
|
|
4639
4760
|
UpdatePolicyRequest.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "policyEngineId"))
|
|
@@ -4646,12 +4767,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
4646
4767
|
UpdatePolicyResponse.add_member(:policy_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyId"))
|
|
4647
4768
|
UpdatePolicyResponse.add_member(:name, Shapes::ShapeRef.new(shape: PolicyName, required: true, location_name: "name"))
|
|
4648
4769
|
UpdatePolicyResponse.add_member(:policy_engine_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "policyEngineId"))
|
|
4649
|
-
UpdatePolicyResponse.add_member(:definition, Shapes::ShapeRef.new(shape: PolicyDefinition, required: true, location_name: "definition"))
|
|
4650
|
-
UpdatePolicyResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
4651
4770
|
UpdatePolicyResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "createdAt"))
|
|
4652
4771
|
UpdatePolicyResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "updatedAt"))
|
|
4653
4772
|
UpdatePolicyResponse.add_member(:policy_arn, Shapes::ShapeRef.new(shape: PolicyArn, required: true, location_name: "policyArn"))
|
|
4654
4773
|
UpdatePolicyResponse.add_member(:status, Shapes::ShapeRef.new(shape: PolicyStatus, required: true, location_name: "status"))
|
|
4774
|
+
UpdatePolicyResponse.add_member(:definition, Shapes::ShapeRef.new(shape: PolicyDefinition, required: true, location_name: "definition"))
|
|
4775
|
+
UpdatePolicyResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
4655
4776
|
UpdatePolicyResponse.add_member(:status_reasons, Shapes::ShapeRef.new(shape: PolicyStatusReasons, required: true, location_name: "statusReasons"))
|
|
4656
4777
|
UpdatePolicyResponse.struct_class = Types::UpdatePolicyResponse
|
|
4657
4778
|
|
|
@@ -4855,6 +4976,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4855
4976
|
|
|
4856
4977
|
VpcConfig.add_member(:security_groups, Shapes::ShapeRef.new(shape: SecurityGroups, required: true, location_name: "securityGroups"))
|
|
4857
4978
|
VpcConfig.add_member(:subnets, Shapes::ShapeRef.new(shape: Subnets, required: true, location_name: "subnets"))
|
|
4979
|
+
VpcConfig.add_member(:require_service_s3_endpoint, Shapes::ShapeRef.new(shape: Boolean, location_name: "requireServiceS3Endpoint"))
|
|
4858
4980
|
VpcConfig.struct_class = Types::VpcConfig
|
|
4859
4981
|
|
|
4860
4982
|
WeightedOverride.add_member(:traffic_split, Shapes::ShapeRef.new(shape: TrafficSplitEntries, required: true, location_name: "trafficSplit"))
|
|
@@ -5848,6 +5970,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
5848
5970
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
5849
5971
|
end)
|
|
5850
5972
|
|
|
5973
|
+
api.add_operation(:get_policy_engine_summary, Seahorse::Model::Operation.new.tap do |o|
|
|
5974
|
+
o.name = "GetPolicyEngineSummary"
|
|
5975
|
+
o.http_method = "GET"
|
|
5976
|
+
o.http_request_uri = "/policy-engine-summaries/{policyEngineId}"
|
|
5977
|
+
o.input = Shapes::ShapeRef.new(shape: GetPolicyEngineSummaryRequest)
|
|
5978
|
+
o.output = Shapes::ShapeRef.new(shape: GetPolicyEngineSummaryResponse)
|
|
5979
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
5980
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
5981
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
5982
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
5983
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
5984
|
+
end)
|
|
5985
|
+
|
|
5851
5986
|
api.add_operation(:get_policy_generation, Seahorse::Model::Operation.new.tap do |o|
|
|
5852
5987
|
o.name = "GetPolicyGeneration"
|
|
5853
5988
|
o.http_method = "GET"
|
|
@@ -5861,6 +5996,32 @@ module Aws::BedrockAgentCoreControl
|
|
|
5861
5996
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
5862
5997
|
end)
|
|
5863
5998
|
|
|
5999
|
+
api.add_operation(:get_policy_generation_summary, Seahorse::Model::Operation.new.tap do |o|
|
|
6000
|
+
o.name = "GetPolicyGenerationSummary"
|
|
6001
|
+
o.http_method = "GET"
|
|
6002
|
+
o.http_request_uri = "/policy-engines/{policyEngineId}/policy-generation-summaries/{policyGenerationId}"
|
|
6003
|
+
o.input = Shapes::ShapeRef.new(shape: GetPolicyGenerationSummaryRequest)
|
|
6004
|
+
o.output = Shapes::ShapeRef.new(shape: GetPolicyGenerationSummaryResponse)
|
|
6005
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
6006
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
6007
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
6008
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
6009
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
6010
|
+
end)
|
|
6011
|
+
|
|
6012
|
+
api.add_operation(:get_policy_summary, Seahorse::Model::Operation.new.tap do |o|
|
|
6013
|
+
o.name = "GetPolicySummary"
|
|
6014
|
+
o.http_method = "GET"
|
|
6015
|
+
o.http_request_uri = "/policy-engines/{policyEngineId}/policy-summaries/{policyId}"
|
|
6016
|
+
o.input = Shapes::ShapeRef.new(shape: GetPolicySummaryRequest)
|
|
6017
|
+
o.output = Shapes::ShapeRef.new(shape: GetPolicySummaryResponse)
|
|
6018
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
6019
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
6020
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
6021
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
6022
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
6023
|
+
end)
|
|
6024
|
+
|
|
5864
6025
|
api.add_operation(:get_registry, Seahorse::Model::Operation.new.tap do |o|
|
|
5865
6026
|
o.name = "GetRegistry"
|
|
5866
6027
|
o.http_method = "GET"
|
|
@@ -6318,6 +6479,24 @@ module Aws::BedrockAgentCoreControl
|
|
|
6318
6479
|
)
|
|
6319
6480
|
end)
|
|
6320
6481
|
|
|
6482
|
+
api.add_operation(:list_policy_engine_summaries, Seahorse::Model::Operation.new.tap do |o|
|
|
6483
|
+
o.name = "ListPolicyEngineSummaries"
|
|
6484
|
+
o.http_method = "GET"
|
|
6485
|
+
o.http_request_uri = "/policy-engine-summaries"
|
|
6486
|
+
o.input = Shapes::ShapeRef.new(shape: ListPolicyEngineSummariesRequest)
|
|
6487
|
+
o.output = Shapes::ShapeRef.new(shape: ListPolicyEngineSummariesResponse)
|
|
6488
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
6489
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
6490
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
6491
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
6492
|
+
o[:pager] = Aws::Pager.new(
|
|
6493
|
+
limit_key: "max_results",
|
|
6494
|
+
tokens: {
|
|
6495
|
+
"next_token" => "next_token"
|
|
6496
|
+
}
|
|
6497
|
+
)
|
|
6498
|
+
end)
|
|
6499
|
+
|
|
6321
6500
|
api.add_operation(:list_policy_engines, Seahorse::Model::Operation.new.tap do |o|
|
|
6322
6501
|
o.name = "ListPolicyEngines"
|
|
6323
6502
|
o.http_method = "GET"
|
|
@@ -6355,6 +6534,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
6355
6534
|
)
|
|
6356
6535
|
end)
|
|
6357
6536
|
|
|
6537
|
+
api.add_operation(:list_policy_generation_summaries, Seahorse::Model::Operation.new.tap do |o|
|
|
6538
|
+
o.name = "ListPolicyGenerationSummaries"
|
|
6539
|
+
o.http_method = "GET"
|
|
6540
|
+
o.http_request_uri = "/policy-engines/{policyEngineId}/policy-generation-summaries"
|
|
6541
|
+
o.input = Shapes::ShapeRef.new(shape: ListPolicyGenerationSummariesRequest)
|
|
6542
|
+
o.output = Shapes::ShapeRef.new(shape: ListPolicyGenerationSummariesResponse)
|
|
6543
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
6544
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
6545
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
6546
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
6547
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
6548
|
+
o[:pager] = Aws::Pager.new(
|
|
6549
|
+
limit_key: "max_results",
|
|
6550
|
+
tokens: {
|
|
6551
|
+
"next_token" => "next_token"
|
|
6552
|
+
}
|
|
6553
|
+
)
|
|
6554
|
+
end)
|
|
6555
|
+
|
|
6358
6556
|
api.add_operation(:list_policy_generations, Seahorse::Model::Operation.new.tap do |o|
|
|
6359
6557
|
o.name = "ListPolicyGenerations"
|
|
6360
6558
|
o.http_method = "GET"
|
|
@@ -6374,6 +6572,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
6374
6572
|
)
|
|
6375
6573
|
end)
|
|
6376
6574
|
|
|
6575
|
+
api.add_operation(:list_policy_summaries, Seahorse::Model::Operation.new.tap do |o|
|
|
6576
|
+
o.name = "ListPolicySummaries"
|
|
6577
|
+
o.http_method = "GET"
|
|
6578
|
+
o.http_request_uri = "/policy-engines/{policyEngineId}/policy-summaries"
|
|
6579
|
+
o.input = Shapes::ShapeRef.new(shape: ListPolicySummariesRequest)
|
|
6580
|
+
o.output = Shapes::ShapeRef.new(shape: ListPolicySummariesResponse)
|
|
6581
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
6582
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
6583
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
6584
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
6585
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
6586
|
+
o[:pager] = Aws::Pager.new(
|
|
6587
|
+
limit_key: "max_results",
|
|
6588
|
+
tokens: {
|
|
6589
|
+
"next_token" => "next_token"
|
|
6590
|
+
}
|
|
6591
|
+
)
|
|
6592
|
+
end)
|
|
6593
|
+
|
|
6377
6594
|
api.add_operation(:list_registries, Seahorse::Model::Operation.new.tap do |o|
|
|
6378
6595
|
o.name = "ListRegistries"
|
|
6379
6596
|
o.http_method = "GET"
|