-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
api.go
10887 lines (9736 loc) · 409 KB
/
api.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package verifiedpermissions
import (
"fmt"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/private/protocol"
"github.com/aws/aws-sdk-go/private/protocol/jsonrpc"
)
const opBatchIsAuthorized = "BatchIsAuthorized"
// BatchIsAuthorizedRequest generates a "aws/request.Request" representing the
// client's request for the BatchIsAuthorized operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See BatchIsAuthorized for more information on using the BatchIsAuthorized
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the BatchIsAuthorizedRequest method.
// req, resp := client.BatchIsAuthorizedRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/verifiedpermissions-2021-12-01/BatchIsAuthorized
func (c *VerifiedPermissions) BatchIsAuthorizedRequest(input *BatchIsAuthorizedInput) (req *request.Request, output *BatchIsAuthorizedOutput) {
op := &request.Operation{
Name: opBatchIsAuthorized,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &BatchIsAuthorizedInput{}
}
output = &BatchIsAuthorizedOutput{}
req = c.newRequest(op, input, output)
return
}
// BatchIsAuthorized API operation for Amazon Verified Permissions.
//
// Makes a series of decisions about multiple authorization requests for one
// principal or resource. Each request contains the equivalent content of an
// IsAuthorized request: principal, action, resource, and context. Either the
// principal or the resource parameter must be identical across all requests.
// For example, Verified Permissions won't evaluate a pair of requests where
// bob views photo1 and alice views photo2. Authorization of bob to view photo1
// and photo2, or bob and alice to view photo1, are valid batches.
//
// The request is evaluated against all policies in the specified policy store
// that match the entities that you declare. The result of the decisions is
// a series of Allow or Deny responses, along with the IDs of the policies that
// produced each decision.
//
// The entities of a BatchIsAuthorized API request can contain up to 100 principals
// and up to 100 resources. The requests of a BatchIsAuthorized API request
// can contain up to 30 requests.
//
// The BatchIsAuthorized operation doesn't have its own IAM permission. To authorize
// this operation for Amazon Web Services principals, include the permission
// verifiedpermissions:IsAuthorized in their IAM policies.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Verified Permissions's
// API operation BatchIsAuthorized for usage and error information.
//
// Returned Error Types:
//
// - ValidationException
// The request failed because one or more input parameters don't satisfy their
// constraint requirements. The output is provided as a list of fields and a
// reason for each field that isn't valid.
//
// The possible reasons include the following:
//
// - UnrecognizedEntityType The policy includes an entity type that isn't
// found in the schema.
//
// - UnrecognizedActionId The policy includes an action id that isn't found
// in the schema.
//
// - InvalidActionApplication The policy includes an action that, according
// to the schema, doesn't support the specified principal and resource.
//
// - UnexpectedType The policy included an operand that isn't a valid type
// for the specified operation.
//
// - IncompatibleTypes The types of elements included in a set, or the types
// of expressions used in an if...then...else clause aren't compatible in
// this context.
//
// - MissingAttribute The policy attempts to access a record or entity attribute
// that isn't specified in the schema. Test for the existence of the attribute
// first before attempting to access its value. For more information, see
// the has (presence of attribute test) operator (https://docs.cedarpolicy.com/policies/syntax-operators.html#has-presence-of-attribute-test)
// in the Cedar Policy Language Guide.
//
// - UnsafeOptionalAttributeAccess The policy attempts to access a record
// or entity attribute that is optional and isn't guaranteed to be present.
// Test for the existence of the attribute first before attempting to access
// its value. For more information, see the has (presence of attribute test)
// operator (https://docs.cedarpolicy.com/policies/syntax-operators.html#has-presence-of-attribute-test)
// in the Cedar Policy Language Guide.
//
// - ImpossiblePolicy Cedar has determined that a policy condition always
// evaluates to false. If the policy is always false, it can never apply
// to any query, and so it can never affect an authorization decision.
//
// - WrongNumberArguments The policy references an extension type with the
// wrong number of arguments.
//
// - FunctionArgumentValidationError Cedar couldn't parse the argument passed
// to an extension type. For example, a string that is to be parsed as an
// IPv4 address can contain only digits and the period character.
//
// - AccessDeniedException
// You don't have sufficient access to perform this action.
//
// - ResourceNotFoundException
// The request failed because it references a resource that doesn't exist.
//
// - ThrottlingException
// The request failed because it exceeded a throttling quota.
//
// - InternalServerException
// The request failed because of an internal error. Try your request again later
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/verifiedpermissions-2021-12-01/BatchIsAuthorized
func (c *VerifiedPermissions) BatchIsAuthorized(input *BatchIsAuthorizedInput) (*BatchIsAuthorizedOutput, error) {
req, out := c.BatchIsAuthorizedRequest(input)
return out, req.Send()
}
// BatchIsAuthorizedWithContext is the same as BatchIsAuthorized with the addition of
// the ability to pass a context and additional request options.
//
// See BatchIsAuthorized for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *VerifiedPermissions) BatchIsAuthorizedWithContext(ctx aws.Context, input *BatchIsAuthorizedInput, opts ...request.Option) (*BatchIsAuthorizedOutput, error) {
req, out := c.BatchIsAuthorizedRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opCreateIdentitySource = "CreateIdentitySource"
// CreateIdentitySourceRequest generates a "aws/request.Request" representing the
// client's request for the CreateIdentitySource operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See CreateIdentitySource for more information on using the CreateIdentitySource
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the CreateIdentitySourceRequest method.
// req, resp := client.CreateIdentitySourceRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/verifiedpermissions-2021-12-01/CreateIdentitySource
func (c *VerifiedPermissions) CreateIdentitySourceRequest(input *CreateIdentitySourceInput) (req *request.Request, output *CreateIdentitySourceOutput) {
op := &request.Operation{
Name: opCreateIdentitySource,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateIdentitySourceInput{}
}
output = &CreateIdentitySourceOutput{}
req = c.newRequest(op, input, output)
return
}
// CreateIdentitySource API operation for Amazon Verified Permissions.
//
// Creates a reference to an Amazon Cognito user pool as an external identity
// provider (IdP).
//
// After you create an identity source, you can use the identities provided
// by the IdP as proxies for the principal in authorization queries that use
// the IsAuthorizedWithToken (https://docs.aws.amazon.com/verifiedpermissions/latest/apireference/API_IsAuthorizedWithToken.html)
// operation. These identities take the form of tokens that contain claims about
// the user, such as IDs, attributes and group memberships. Amazon Cognito provides
// both identity tokens and access tokens, and Verified Permissions can use
// either or both. Any combination of identity and access tokens results in
// the same Cedar principal. Verified Permissions automatically translates the
// information about the identities into the standard Cedar attributes that
// can be evaluated by your policies. Because the Amazon Cognito identity and
// access tokens can contain different information, the tokens you choose to
// use determine which principal attributes are available to access when evaluating
// Cedar policies.
//
// If you delete a Amazon Cognito user pool or user, tokens from that deleted
// pool or that deleted user continue to be usable until they expire.
//
// To reference a user from this identity source in your Cedar policies, use
// the following syntax.
//
// IdentityType::"<CognitoUserPoolIdentifier>|<CognitoClientId>
//
// Where IdentityType is the string that you provide to the PrincipalEntityType
// parameter for this operation. The CognitoUserPoolId and CognitoClientId are
// defined by the Amazon Cognito user pool.
//
// Verified Permissions is eventually consistent (https://wikipedia.org/wiki/Eventual_consistency)
// . It can take a few seconds for a new or changed element to be propagate
// through the service and be visible in the results of other Verified Permissions
// operations.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Verified Permissions's
// API operation CreateIdentitySource for usage and error information.
//
// Returned Error Types:
//
// - ValidationException
// The request failed because one or more input parameters don't satisfy their
// constraint requirements. The output is provided as a list of fields and a
// reason for each field that isn't valid.
//
// The possible reasons include the following:
//
// - UnrecognizedEntityType The policy includes an entity type that isn't
// found in the schema.
//
// - UnrecognizedActionId The policy includes an action id that isn't found
// in the schema.
//
// - InvalidActionApplication The policy includes an action that, according
// to the schema, doesn't support the specified principal and resource.
//
// - UnexpectedType The policy included an operand that isn't a valid type
// for the specified operation.
//
// - IncompatibleTypes The types of elements included in a set, or the types
// of expressions used in an if...then...else clause aren't compatible in
// this context.
//
// - MissingAttribute The policy attempts to access a record or entity attribute
// that isn't specified in the schema. Test for the existence of the attribute
// first before attempting to access its value. For more information, see
// the has (presence of attribute test) operator (https://docs.cedarpolicy.com/policies/syntax-operators.html#has-presence-of-attribute-test)
// in the Cedar Policy Language Guide.
//
// - UnsafeOptionalAttributeAccess The policy attempts to access a record
// or entity attribute that is optional and isn't guaranteed to be present.
// Test for the existence of the attribute first before attempting to access
// its value. For more information, see the has (presence of attribute test)
// operator (https://docs.cedarpolicy.com/policies/syntax-operators.html#has-presence-of-attribute-test)
// in the Cedar Policy Language Guide.
//
// - ImpossiblePolicy Cedar has determined that a policy condition always
// evaluates to false. If the policy is always false, it can never apply
// to any query, and so it can never affect an authorization decision.
//
// - WrongNumberArguments The policy references an extension type with the
// wrong number of arguments.
//
// - FunctionArgumentValidationError Cedar couldn't parse the argument passed
// to an extension type. For example, a string that is to be parsed as an
// IPv4 address can contain only digits and the period character.
//
// - ServiceQuotaExceededException
// The request failed because it would cause a service quota to be exceeded.
//
// - ConflictException
// The request failed because another request to modify a resource occurred
// at the same.
//
// - AccessDeniedException
// You don't have sufficient access to perform this action.
//
// - ResourceNotFoundException
// The request failed because it references a resource that doesn't exist.
//
// - ThrottlingException
// The request failed because it exceeded a throttling quota.
//
// - InternalServerException
// The request failed because of an internal error. Try your request again later
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/verifiedpermissions-2021-12-01/CreateIdentitySource
func (c *VerifiedPermissions) CreateIdentitySource(input *CreateIdentitySourceInput) (*CreateIdentitySourceOutput, error) {
req, out := c.CreateIdentitySourceRequest(input)
return out, req.Send()
}
// CreateIdentitySourceWithContext is the same as CreateIdentitySource with the addition of
// the ability to pass a context and additional request options.
//
// See CreateIdentitySource for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *VerifiedPermissions) CreateIdentitySourceWithContext(ctx aws.Context, input *CreateIdentitySourceInput, opts ...request.Option) (*CreateIdentitySourceOutput, error) {
req, out := c.CreateIdentitySourceRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opCreatePolicy = "CreatePolicy"
// CreatePolicyRequest generates a "aws/request.Request" representing the
// client's request for the CreatePolicy operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See CreatePolicy for more information on using the CreatePolicy
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the CreatePolicyRequest method.
// req, resp := client.CreatePolicyRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/verifiedpermissions-2021-12-01/CreatePolicy
func (c *VerifiedPermissions) CreatePolicyRequest(input *CreatePolicyInput) (req *request.Request, output *CreatePolicyOutput) {
op := &request.Operation{
Name: opCreatePolicy,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreatePolicyInput{}
}
output = &CreatePolicyOutput{}
req = c.newRequest(op, input, output)
return
}
// CreatePolicy API operation for Amazon Verified Permissions.
//
// Creates a Cedar policy and saves it in the specified policy store. You can
// create either a static policy or a policy linked to a policy template.
//
// - To create a static policy, provide the Cedar policy text in the StaticPolicy
// section of the PolicyDefinition.
//
// - To create a policy that is dynamically linked to a policy template,
// specify the policy template ID and the principal and resource to associate
// with this policy in the templateLinked section of the PolicyDefinition.
// If the policy template is ever updated, any policies linked to the policy
// template automatically use the updated template.
//
// Creating a policy causes it to be validated against the schema in the policy
// store. If the policy doesn't pass validation, the operation fails and the
// policy isn't stored.
//
// Verified Permissions is eventually consistent (https://wikipedia.org/wiki/Eventual_consistency)
// . It can take a few seconds for a new or changed element to be propagate
// through the service and be visible in the results of other Verified Permissions
// operations.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Verified Permissions's
// API operation CreatePolicy for usage and error information.
//
// Returned Error Types:
//
// - ValidationException
// The request failed because one or more input parameters don't satisfy their
// constraint requirements. The output is provided as a list of fields and a
// reason for each field that isn't valid.
//
// The possible reasons include the following:
//
// - UnrecognizedEntityType The policy includes an entity type that isn't
// found in the schema.
//
// - UnrecognizedActionId The policy includes an action id that isn't found
// in the schema.
//
// - InvalidActionApplication The policy includes an action that, according
// to the schema, doesn't support the specified principal and resource.
//
// - UnexpectedType The policy included an operand that isn't a valid type
// for the specified operation.
//
// - IncompatibleTypes The types of elements included in a set, or the types
// of expressions used in an if...then...else clause aren't compatible in
// this context.
//
// - MissingAttribute The policy attempts to access a record or entity attribute
// that isn't specified in the schema. Test for the existence of the attribute
// first before attempting to access its value. For more information, see
// the has (presence of attribute test) operator (https://docs.cedarpolicy.com/policies/syntax-operators.html#has-presence-of-attribute-test)
// in the Cedar Policy Language Guide.
//
// - UnsafeOptionalAttributeAccess The policy attempts to access a record
// or entity attribute that is optional and isn't guaranteed to be present.
// Test for the existence of the attribute first before attempting to access
// its value. For more information, see the has (presence of attribute test)
// operator (https://docs.cedarpolicy.com/policies/syntax-operators.html#has-presence-of-attribute-test)
// in the Cedar Policy Language Guide.
//
// - ImpossiblePolicy Cedar has determined that a policy condition always
// evaluates to false. If the policy is always false, it can never apply
// to any query, and so it can never affect an authorization decision.
//
// - WrongNumberArguments The policy references an extension type with the
// wrong number of arguments.
//
// - FunctionArgumentValidationError Cedar couldn't parse the argument passed
// to an extension type. For example, a string that is to be parsed as an
// IPv4 address can contain only digits and the period character.
//
// - ServiceQuotaExceededException
// The request failed because it would cause a service quota to be exceeded.
//
// - ConflictException
// The request failed because another request to modify a resource occurred
// at the same.
//
// - AccessDeniedException
// You don't have sufficient access to perform this action.
//
// - ResourceNotFoundException
// The request failed because it references a resource that doesn't exist.
//
// - ThrottlingException
// The request failed because it exceeded a throttling quota.
//
// - InternalServerException
// The request failed because of an internal error. Try your request again later
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/verifiedpermissions-2021-12-01/CreatePolicy
func (c *VerifiedPermissions) CreatePolicy(input *CreatePolicyInput) (*CreatePolicyOutput, error) {
req, out := c.CreatePolicyRequest(input)
return out, req.Send()
}
// CreatePolicyWithContext is the same as CreatePolicy with the addition of
// the ability to pass a context and additional request options.
//
// See CreatePolicy for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *VerifiedPermissions) CreatePolicyWithContext(ctx aws.Context, input *CreatePolicyInput, opts ...request.Option) (*CreatePolicyOutput, error) {
req, out := c.CreatePolicyRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opCreatePolicyStore = "CreatePolicyStore"
// CreatePolicyStoreRequest generates a "aws/request.Request" representing the
// client's request for the CreatePolicyStore operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See CreatePolicyStore for more information on using the CreatePolicyStore
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the CreatePolicyStoreRequest method.
// req, resp := client.CreatePolicyStoreRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/verifiedpermissions-2021-12-01/CreatePolicyStore
func (c *VerifiedPermissions) CreatePolicyStoreRequest(input *CreatePolicyStoreInput) (req *request.Request, output *CreatePolicyStoreOutput) {
op := &request.Operation{
Name: opCreatePolicyStore,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreatePolicyStoreInput{}
}
output = &CreatePolicyStoreOutput{}
req = c.newRequest(op, input, output)
return
}
// CreatePolicyStore API operation for Amazon Verified Permissions.
//
// Creates a policy store. A policy store is a container for policy resources.
//
// Although Cedar supports multiple namespaces (https://docs.cedarpolicy.com/schema/schema.html#namespace),
// Verified Permissions currently supports only one namespace per policy store.
//
// Verified Permissions is eventually consistent (https://wikipedia.org/wiki/Eventual_consistency)
// . It can take a few seconds for a new or changed element to be propagate
// through the service and be visible in the results of other Verified Permissions
// operations.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Verified Permissions's
// API operation CreatePolicyStore for usage and error information.
//
// Returned Error Types:
//
// - ValidationException
// The request failed because one or more input parameters don't satisfy their
// constraint requirements. The output is provided as a list of fields and a
// reason for each field that isn't valid.
//
// The possible reasons include the following:
//
// - UnrecognizedEntityType The policy includes an entity type that isn't
// found in the schema.
//
// - UnrecognizedActionId The policy includes an action id that isn't found
// in the schema.
//
// - InvalidActionApplication The policy includes an action that, according
// to the schema, doesn't support the specified principal and resource.
//
// - UnexpectedType The policy included an operand that isn't a valid type
// for the specified operation.
//
// - IncompatibleTypes The types of elements included in a set, or the types
// of expressions used in an if...then...else clause aren't compatible in
// this context.
//
// - MissingAttribute The policy attempts to access a record or entity attribute
// that isn't specified in the schema. Test for the existence of the attribute
// first before attempting to access its value. For more information, see
// the has (presence of attribute test) operator (https://docs.cedarpolicy.com/policies/syntax-operators.html#has-presence-of-attribute-test)
// in the Cedar Policy Language Guide.
//
// - UnsafeOptionalAttributeAccess The policy attempts to access a record
// or entity attribute that is optional and isn't guaranteed to be present.
// Test for the existence of the attribute first before attempting to access
// its value. For more information, see the has (presence of attribute test)
// operator (https://docs.cedarpolicy.com/policies/syntax-operators.html#has-presence-of-attribute-test)
// in the Cedar Policy Language Guide.
//
// - ImpossiblePolicy Cedar has determined that a policy condition always
// evaluates to false. If the policy is always false, it can never apply
// to any query, and so it can never affect an authorization decision.
//
// - WrongNumberArguments The policy references an extension type with the
// wrong number of arguments.
//
// - FunctionArgumentValidationError Cedar couldn't parse the argument passed
// to an extension type. For example, a string that is to be parsed as an
// IPv4 address can contain only digits and the period character.
//
// - ServiceQuotaExceededException
// The request failed because it would cause a service quota to be exceeded.
//
// - ConflictException
// The request failed because another request to modify a resource occurred
// at the same.
//
// - AccessDeniedException
// You don't have sufficient access to perform this action.
//
// - ThrottlingException
// The request failed because it exceeded a throttling quota.
//
// - InternalServerException
// The request failed because of an internal error. Try your request again later
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/verifiedpermissions-2021-12-01/CreatePolicyStore
func (c *VerifiedPermissions) CreatePolicyStore(input *CreatePolicyStoreInput) (*CreatePolicyStoreOutput, error) {
req, out := c.CreatePolicyStoreRequest(input)
return out, req.Send()
}
// CreatePolicyStoreWithContext is the same as CreatePolicyStore with the addition of
// the ability to pass a context and additional request options.
//
// See CreatePolicyStore for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *VerifiedPermissions) CreatePolicyStoreWithContext(ctx aws.Context, input *CreatePolicyStoreInput, opts ...request.Option) (*CreatePolicyStoreOutput, error) {
req, out := c.CreatePolicyStoreRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opCreatePolicyTemplate = "CreatePolicyTemplate"
// CreatePolicyTemplateRequest generates a "aws/request.Request" representing the
// client's request for the CreatePolicyTemplate operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See CreatePolicyTemplate for more information on using the CreatePolicyTemplate
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the CreatePolicyTemplateRequest method.
// req, resp := client.CreatePolicyTemplateRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/verifiedpermissions-2021-12-01/CreatePolicyTemplate
func (c *VerifiedPermissions) CreatePolicyTemplateRequest(input *CreatePolicyTemplateInput) (req *request.Request, output *CreatePolicyTemplateOutput) {
op := &request.Operation{
Name: opCreatePolicyTemplate,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreatePolicyTemplateInput{}
}
output = &CreatePolicyTemplateOutput{}
req = c.newRequest(op, input, output)
return
}
// CreatePolicyTemplate API operation for Amazon Verified Permissions.
//
// Creates a policy template. A template can use placeholders for the principal
// and resource. A template must be instantiated into a policy by associating
// it with specific principals and resources to use for the placeholders. That
// instantiated policy can then be considered in authorization decisions. The
// instantiated policy works identically to any other policy, except that it
// is dynamically linked to the template. If the template changes, then any
// policies that are linked to that template are immediately updated as well.
//
// Verified Permissions is eventually consistent (https://wikipedia.org/wiki/Eventual_consistency)
// . It can take a few seconds for a new or changed element to be propagate
// through the service and be visible in the results of other Verified Permissions
// operations.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Verified Permissions's
// API operation CreatePolicyTemplate for usage and error information.
//
// Returned Error Types:
//
// - ValidationException
// The request failed because one or more input parameters don't satisfy their
// constraint requirements. The output is provided as a list of fields and a
// reason for each field that isn't valid.
//
// The possible reasons include the following:
//
// - UnrecognizedEntityType The policy includes an entity type that isn't
// found in the schema.
//
// - UnrecognizedActionId The policy includes an action id that isn't found
// in the schema.
//
// - InvalidActionApplication The policy includes an action that, according
// to the schema, doesn't support the specified principal and resource.
//
// - UnexpectedType The policy included an operand that isn't a valid type
// for the specified operation.
//
// - IncompatibleTypes The types of elements included in a set, or the types
// of expressions used in an if...then...else clause aren't compatible in
// this context.
//
// - MissingAttribute The policy attempts to access a record or entity attribute
// that isn't specified in the schema. Test for the existence of the attribute
// first before attempting to access its value. For more information, see
// the has (presence of attribute test) operator (https://docs.cedarpolicy.com/policies/syntax-operators.html#has-presence-of-attribute-test)
// in the Cedar Policy Language Guide.
//
// - UnsafeOptionalAttributeAccess The policy attempts to access a record
// or entity attribute that is optional and isn't guaranteed to be present.
// Test for the existence of the attribute first before attempting to access
// its value. For more information, see the has (presence of attribute test)
// operator (https://docs.cedarpolicy.com/policies/syntax-operators.html#has-presence-of-attribute-test)
// in the Cedar Policy Language Guide.
//
// - ImpossiblePolicy Cedar has determined that a policy condition always
// evaluates to false. If the policy is always false, it can never apply
// to any query, and so it can never affect an authorization decision.
//
// - WrongNumberArguments The policy references an extension type with the
// wrong number of arguments.
//
// - FunctionArgumentValidationError Cedar couldn't parse the argument passed
// to an extension type. For example, a string that is to be parsed as an
// IPv4 address can contain only digits and the period character.
//
// - ServiceQuotaExceededException
// The request failed because it would cause a service quota to be exceeded.
//
// - ConflictException
// The request failed because another request to modify a resource occurred
// at the same.
//
// - AccessDeniedException
// You don't have sufficient access to perform this action.
//
// - ResourceNotFoundException
// The request failed because it references a resource that doesn't exist.
//
// - ThrottlingException
// The request failed because it exceeded a throttling quota.
//
// - InternalServerException
// The request failed because of an internal error. Try your request again later
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/verifiedpermissions-2021-12-01/CreatePolicyTemplate
func (c *VerifiedPermissions) CreatePolicyTemplate(input *CreatePolicyTemplateInput) (*CreatePolicyTemplateOutput, error) {
req, out := c.CreatePolicyTemplateRequest(input)
return out, req.Send()
}
// CreatePolicyTemplateWithContext is the same as CreatePolicyTemplate with the addition of
// the ability to pass a context and additional request options.
//
// See CreatePolicyTemplate for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *VerifiedPermissions) CreatePolicyTemplateWithContext(ctx aws.Context, input *CreatePolicyTemplateInput, opts ...request.Option) (*CreatePolicyTemplateOutput, error) {
req, out := c.CreatePolicyTemplateRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opDeleteIdentitySource = "DeleteIdentitySource"
// DeleteIdentitySourceRequest generates a "aws/request.Request" representing the
// client's request for the DeleteIdentitySource operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See DeleteIdentitySource for more information on using the DeleteIdentitySource
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the DeleteIdentitySourceRequest method.
// req, resp := client.DeleteIdentitySourceRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/verifiedpermissions-2021-12-01/DeleteIdentitySource
func (c *VerifiedPermissions) DeleteIdentitySourceRequest(input *DeleteIdentitySourceInput) (req *request.Request, output *DeleteIdentitySourceOutput) {
op := &request.Operation{
Name: opDeleteIdentitySource,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteIdentitySourceInput{}
}
output = &DeleteIdentitySourceOutput{}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler)
return
}
// DeleteIdentitySource API operation for Amazon Verified Permissions.
//
// Deletes an identity source that references an identity provider (IdP) such
// as Amazon Cognito. After you delete the identity source, you can no longer
// use tokens for identities from that identity source to represent principals
// in authorization queries made using IsAuthorizedWithToken (https://docs.aws.amazon.com/verifiedpermissions/latest/apireference/API_IsAuthorizedWithToken.html).
// operations.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Verified Permissions's
// API operation DeleteIdentitySource for usage and error information.
//
// Returned Error Types:
//
// - ValidationException
// The request failed because one or more input parameters don't satisfy their
// constraint requirements. The output is provided as a list of fields and a
// reason for each field that isn't valid.
//
// The possible reasons include the following:
//
// - UnrecognizedEntityType The policy includes an entity type that isn't
// found in the schema.
//
// - UnrecognizedActionId The policy includes an action id that isn't found
// in the schema.
//
// - InvalidActionApplication The policy includes an action that, according
// to the schema, doesn't support the specified principal and resource.
//
// - UnexpectedType The policy included an operand that isn't a valid type
// for the specified operation.
//
// - IncompatibleTypes The types of elements included in a set, or the types
// of expressions used in an if...then...else clause aren't compatible in
// this context.
//
// - MissingAttribute The policy attempts to access a record or entity attribute
// that isn't specified in the schema. Test for the existence of the attribute
// first before attempting to access its value. For more information, see
// the has (presence of attribute test) operator (https://docs.cedarpolicy.com/policies/syntax-operators.html#has-presence-of-attribute-test)
// in the Cedar Policy Language Guide.
//
// - UnsafeOptionalAttributeAccess The policy attempts to access a record
// or entity attribute that is optional and isn't guaranteed to be present.
// Test for the existence of the attribute first before attempting to access
// its value. For more information, see the has (presence of attribute test)
// operator (https://docs.cedarpolicy.com/policies/syntax-operators.html#has-presence-of-attribute-test)
// in the Cedar Policy Language Guide.
//
// - ImpossiblePolicy Cedar has determined that a policy condition always
// evaluates to false. If the policy is always false, it can never apply
// to any query, and so it can never affect an authorization decision.
//
// - WrongNumberArguments The policy references an extension type with the
// wrong number of arguments.
//
// - FunctionArgumentValidationError Cedar couldn't parse the argument passed
// to an extension type. For example, a string that is to be parsed as an
// IPv4 address can contain only digits and the period character.
//
// - ConflictException
// The request failed because another request to modify a resource occurred
// at the same.
//
// - AccessDeniedException
// You don't have sufficient access to perform this action.
//
// - ResourceNotFoundException
// The request failed because it references a resource that doesn't exist.
//
// - ThrottlingException
// The request failed because it exceeded a throttling quota.
//
// - InternalServerException
// The request failed because of an internal error. Try your request again later
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/verifiedpermissions-2021-12-01/DeleteIdentitySource
func (c *VerifiedPermissions) DeleteIdentitySource(input *DeleteIdentitySourceInput) (*DeleteIdentitySourceOutput, error) {
req, out := c.DeleteIdentitySourceRequest(input)
return out, req.Send()
}
// DeleteIdentitySourceWithContext is the same as DeleteIdentitySource with the addition of
// the ability to pass a context and additional request options.
//
// See DeleteIdentitySource for details on how to use this API operation.
//
// The context must be non-nil and will be used for request cancellation. If
// the context is nil a panic will occur. In the future the SDK may create
// sub-contexts for http.Requests. See https://golang.org/pkg/context/
// for more information on using Contexts.
func (c *VerifiedPermissions) DeleteIdentitySourceWithContext(ctx aws.Context, input *DeleteIdentitySourceInput, opts ...request.Option) (*DeleteIdentitySourceOutput, error) {
req, out := c.DeleteIdentitySourceRequest(input)
req.SetContext(ctx)
req.ApplyOptions(opts...)
return out, req.Send()
}
const opDeletePolicy = "DeletePolicy"
// DeletePolicyRequest generates a "aws/request.Request" representing the
// client's request for the DeletePolicy operation. The "output" return
// value will be populated with the request's response once the request completes
// successfully.
//
// Use "Send" method on the returned Request to send the API call to the service.
// the "output" return value is not valid until after Send returns without error.
//
// See DeletePolicy for more information on using the DeletePolicy
// API call, and error handling.
//
// This method is useful when you want to inject custom logic or configuration
// into the SDK's request lifecycle. Such as custom headers, or retry logic.
//
// // Example sending a request using the DeletePolicyRequest method.
// req, resp := client.DeletePolicyRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// See also, https://docs.aws.amazon.com/goto/WebAPI/verifiedpermissions-2021-12-01/DeletePolicy
func (c *VerifiedPermissions) DeletePolicyRequest(input *DeletePolicyInput) (req *request.Request, output *DeletePolicyOutput) {
op := &request.Operation{
Name: opDeletePolicy,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeletePolicyInput{}
}
output = &DeletePolicyOutput{}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler)
return
}
// DeletePolicy API operation for Amazon Verified Permissions.
//
// Deletes the specified policy from the policy store.
//
// This operation is idempotent; if you specify a policy that doesn't exist,
// the request response returns a successful HTTP 200 status code.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.