mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-06 22:18:28 +00:00
Update vendored deps, including AWS SDK, openpgp, ftp, ...
This commit is contained in:
+7028
-302
File diff suppressed because it is too large
Load Diff
+1
-1
@@ -18,7 +18,7 @@
|
||||
//
|
||||
// Using the Client
|
||||
//
|
||||
// To AWS WAF with the SDK use the New function to create
|
||||
// To contact AWS WAF with the SDK use the New function to create
|
||||
// a new service client. With that client you can make API requests to the service.
|
||||
// These clients are safe to use concurrently.
|
||||
//
|
||||
|
||||
+39
-1
@@ -71,7 +71,7 @@ const (
|
||||
// BLOCK, or COUNT.
|
||||
//
|
||||
// * You tried to update a ByteMatchSet with a FieldToMatchType other than
|
||||
// HEADER, QUERY_STRING, or URI.
|
||||
// HEADER, METHOD, QUERY_STRING, URI, or BODY.
|
||||
//
|
||||
// * You tried to update a ByteMatchSet with a Field of HEADER but no value
|
||||
// for Data.
|
||||
@@ -80,6 +80,38 @@ const (
|
||||
// a resource with which a web ACL cannot be associated.
|
||||
ErrCodeInvalidParameterException = "InvalidParameterException"
|
||||
|
||||
// ErrCodeInvalidPermissionPolicyException for service response error code
|
||||
// "InvalidPermissionPolicyException".
|
||||
//
|
||||
// The operation failed because the specified policy is not in the proper format.
|
||||
//
|
||||
// The policy is subject to the following restrictions:
|
||||
//
|
||||
// * You can attach only one policy with each PutPermissionPolicy request.
|
||||
//
|
||||
// * The policy must include an Effect, Action and Principal.
|
||||
//
|
||||
// * Effect must specify Allow.
|
||||
//
|
||||
// * The Action in the policy must be waf:UpdateWebACL or waf-regional:UpdateWebACL.
|
||||
// Any extra or wildcard actions in the policy will be rejected.
|
||||
//
|
||||
// * The policy cannot include a Resource parameter.
|
||||
//
|
||||
// * The ARN in the request must be a valid WAF RuleGroup ARN and the RuleGroup
|
||||
// must exist in the same region.
|
||||
//
|
||||
// * The user making the request must be the owner of the RuleGroup.
|
||||
//
|
||||
// * Your policy must be composed using IAM Policy version 2012-10-17.
|
||||
ErrCodeInvalidPermissionPolicyException = "InvalidPermissionPolicyException"
|
||||
|
||||
// ErrCodeInvalidRegexPatternException for service response error code
|
||||
// "InvalidRegexPatternException".
|
||||
//
|
||||
// The regular expression (regex) you specified in RegexPatternString is invalid.
|
||||
ErrCodeInvalidRegexPatternException = "InvalidRegexPatternException"
|
||||
|
||||
// ErrCodeLimitsExceededException for service response error code
|
||||
// "LimitsExceededException".
|
||||
//
|
||||
@@ -148,4 +180,10 @@ const (
|
||||
// The operation failed because you tried to create, update, or delete an object
|
||||
// by using a change token that has already been used.
|
||||
ErrCodeStaleDataException = "StaleDataException"
|
||||
|
||||
// ErrCodeSubscriptionNotFoundException for service response error code
|
||||
// "SubscriptionNotFoundException".
|
||||
//
|
||||
// The specified subscription does not exist.
|
||||
ErrCodeSubscriptionNotFoundException = "SubscriptionNotFoundException"
|
||||
)
|
||||
|
||||
+47
@@ -1077,6 +1077,15 @@ func ExampleWAF_UpdateByteMatchSet_shared00() {
|
||||
Updates: []*waf.ByteMatchSetUpdate{
|
||||
{
|
||||
Action: aws.String("DELETE"),
|
||||
ByteMatchTuple: &waf.ByteMatchTuple{
|
||||
FieldToMatch: &waf.FieldToMatch{
|
||||
Data: aws.String("referer"),
|
||||
Type: aws.String("HEADER"),
|
||||
},
|
||||
PositionalConstraint: aws.String("CONTAINS"),
|
||||
TargetString: []byte("badrefer1"),
|
||||
TextTransformation: aws.String("NONE"),
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
@@ -1127,6 +1136,10 @@ func ExampleWAF_UpdateIPSet_shared00() {
|
||||
Updates: []*waf.IPSetUpdate{
|
||||
{
|
||||
Action: aws.String("DELETE"),
|
||||
IPSetDescriptor: &waf.IPSetDescriptor{
|
||||
Type: aws.String("IPV4"),
|
||||
Value: aws.String("192.0.2.44/32"),
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
@@ -1178,6 +1191,11 @@ func ExampleWAF_UpdateRule_shared00() {
|
||||
Updates: []*waf.RuleUpdate{
|
||||
{
|
||||
Action: aws.String("DELETE"),
|
||||
Predicate: &waf.Predicate{
|
||||
DataId: aws.String("MyByteMatchSetID"),
|
||||
Negated: aws.Bool(false),
|
||||
Type: aws.String("ByteMatch"),
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
@@ -1230,6 +1248,14 @@ func ExampleWAF_UpdateSizeConstraintSet_shared00() {
|
||||
Updates: []*waf.SizeConstraintSetUpdate{
|
||||
{
|
||||
Action: aws.String("DELETE"),
|
||||
SizeConstraint: &waf.SizeConstraint{
|
||||
ComparisonOperator: aws.String("GT"),
|
||||
FieldToMatch: &waf.FieldToMatch{
|
||||
Type: aws.String("QUERY_STRING"),
|
||||
},
|
||||
Size: aws.Int64(0),
|
||||
TextTransformation: aws.String("NONE"),
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
@@ -1282,6 +1308,12 @@ func ExampleWAF_UpdateSqlInjectionMatchSet_shared00() {
|
||||
Updates: []*waf.SqlInjectionMatchSetUpdate{
|
||||
{
|
||||
Action: aws.String("DELETE"),
|
||||
SqlInjectionMatchTuple: &waf.SqlInjectionMatchTuple{
|
||||
FieldToMatch: &waf.FieldToMatch{
|
||||
Type: aws.String("QUERY_STRING"),
|
||||
},
|
||||
TextTransformation: aws.String("URL_DECODE"),
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
@@ -1333,6 +1365,13 @@ func ExampleWAF_UpdateWebACL_shared00() {
|
||||
Updates: []*waf.WebACLUpdate{
|
||||
{
|
||||
Action: aws.String("DELETE"),
|
||||
ActivatedRule: &waf.ActivatedRule{
|
||||
Action: &waf.WafAction{
|
||||
Type: aws.String("ALLOW"),
|
||||
},
|
||||
Priority: aws.Int64(1),
|
||||
RuleId: aws.String("WAFRule-1-Example"),
|
||||
},
|
||||
},
|
||||
},
|
||||
WebACLId: aws.String("webacl-1472061481310"),
|
||||
@@ -1360,6 +1399,8 @@ func ExampleWAF_UpdateWebACL_shared00() {
|
||||
fmt.Println(waf.ErrCodeReferencedItemException, aerr.Error())
|
||||
case waf.ErrCodeLimitsExceededException:
|
||||
fmt.Println(waf.ErrCodeLimitsExceededException, aerr.Error())
|
||||
case waf.ErrCodeSubscriptionNotFoundException:
|
||||
fmt.Println(waf.ErrCodeSubscriptionNotFoundException, aerr.Error())
|
||||
default:
|
||||
fmt.Println(aerr.Error())
|
||||
}
|
||||
@@ -1385,6 +1426,12 @@ func ExampleWAF_UpdateXssMatchSet_shared00() {
|
||||
Updates: []*waf.XssMatchSetUpdate{
|
||||
{
|
||||
Action: aws.String("DELETE"),
|
||||
XssMatchTuple: &waf.XssMatchTuple{
|
||||
FieldToMatch: &waf.FieldToMatch{
|
||||
Type: aws.String("QUERY_STRING"),
|
||||
},
|
||||
TextTransformation: aws.String("URL_DECODE"),
|
||||
},
|
||||
},
|
||||
},
|
||||
XssMatchSetId: aws.String("example1ds3t-46da-4fdb-b8d5-abc321j569j5"),
|
||||
|
||||
+100
@@ -64,6 +64,10 @@ type WAFAPI interface {
|
||||
CreateByteMatchSetWithContext(aws.Context, *waf.CreateByteMatchSetInput, ...request.Option) (*waf.CreateByteMatchSetOutput, error)
|
||||
CreateByteMatchSetRequest(*waf.CreateByteMatchSetInput) (*request.Request, *waf.CreateByteMatchSetOutput)
|
||||
|
||||
CreateGeoMatchSet(*waf.CreateGeoMatchSetInput) (*waf.CreateGeoMatchSetOutput, error)
|
||||
CreateGeoMatchSetWithContext(aws.Context, *waf.CreateGeoMatchSetInput, ...request.Option) (*waf.CreateGeoMatchSetOutput, error)
|
||||
CreateGeoMatchSetRequest(*waf.CreateGeoMatchSetInput) (*request.Request, *waf.CreateGeoMatchSetOutput)
|
||||
|
||||
CreateIPSet(*waf.CreateIPSetInput) (*waf.CreateIPSetOutput, error)
|
||||
CreateIPSetWithContext(aws.Context, *waf.CreateIPSetInput, ...request.Option) (*waf.CreateIPSetOutput, error)
|
||||
CreateIPSetRequest(*waf.CreateIPSetInput) (*request.Request, *waf.CreateIPSetOutput)
|
||||
@@ -72,10 +76,22 @@ type WAFAPI interface {
|
||||
CreateRateBasedRuleWithContext(aws.Context, *waf.CreateRateBasedRuleInput, ...request.Option) (*waf.CreateRateBasedRuleOutput, error)
|
||||
CreateRateBasedRuleRequest(*waf.CreateRateBasedRuleInput) (*request.Request, *waf.CreateRateBasedRuleOutput)
|
||||
|
||||
CreateRegexMatchSet(*waf.CreateRegexMatchSetInput) (*waf.CreateRegexMatchSetOutput, error)
|
||||
CreateRegexMatchSetWithContext(aws.Context, *waf.CreateRegexMatchSetInput, ...request.Option) (*waf.CreateRegexMatchSetOutput, error)
|
||||
CreateRegexMatchSetRequest(*waf.CreateRegexMatchSetInput) (*request.Request, *waf.CreateRegexMatchSetOutput)
|
||||
|
||||
CreateRegexPatternSet(*waf.CreateRegexPatternSetInput) (*waf.CreateRegexPatternSetOutput, error)
|
||||
CreateRegexPatternSetWithContext(aws.Context, *waf.CreateRegexPatternSetInput, ...request.Option) (*waf.CreateRegexPatternSetOutput, error)
|
||||
CreateRegexPatternSetRequest(*waf.CreateRegexPatternSetInput) (*request.Request, *waf.CreateRegexPatternSetOutput)
|
||||
|
||||
CreateRule(*waf.CreateRuleInput) (*waf.CreateRuleOutput, error)
|
||||
CreateRuleWithContext(aws.Context, *waf.CreateRuleInput, ...request.Option) (*waf.CreateRuleOutput, error)
|
||||
CreateRuleRequest(*waf.CreateRuleInput) (*request.Request, *waf.CreateRuleOutput)
|
||||
|
||||
CreateRuleGroup(*waf.CreateRuleGroupInput) (*waf.CreateRuleGroupOutput, error)
|
||||
CreateRuleGroupWithContext(aws.Context, *waf.CreateRuleGroupInput, ...request.Option) (*waf.CreateRuleGroupOutput, error)
|
||||
CreateRuleGroupRequest(*waf.CreateRuleGroupInput) (*request.Request, *waf.CreateRuleGroupOutput)
|
||||
|
||||
CreateSizeConstraintSet(*waf.CreateSizeConstraintSetInput) (*waf.CreateSizeConstraintSetOutput, error)
|
||||
CreateSizeConstraintSetWithContext(aws.Context, *waf.CreateSizeConstraintSetInput, ...request.Option) (*waf.CreateSizeConstraintSetOutput, error)
|
||||
CreateSizeConstraintSetRequest(*waf.CreateSizeConstraintSetInput) (*request.Request, *waf.CreateSizeConstraintSetOutput)
|
||||
@@ -96,18 +112,38 @@ type WAFAPI interface {
|
||||
DeleteByteMatchSetWithContext(aws.Context, *waf.DeleteByteMatchSetInput, ...request.Option) (*waf.DeleteByteMatchSetOutput, error)
|
||||
DeleteByteMatchSetRequest(*waf.DeleteByteMatchSetInput) (*request.Request, *waf.DeleteByteMatchSetOutput)
|
||||
|
||||
DeleteGeoMatchSet(*waf.DeleteGeoMatchSetInput) (*waf.DeleteGeoMatchSetOutput, error)
|
||||
DeleteGeoMatchSetWithContext(aws.Context, *waf.DeleteGeoMatchSetInput, ...request.Option) (*waf.DeleteGeoMatchSetOutput, error)
|
||||
DeleteGeoMatchSetRequest(*waf.DeleteGeoMatchSetInput) (*request.Request, *waf.DeleteGeoMatchSetOutput)
|
||||
|
||||
DeleteIPSet(*waf.DeleteIPSetInput) (*waf.DeleteIPSetOutput, error)
|
||||
DeleteIPSetWithContext(aws.Context, *waf.DeleteIPSetInput, ...request.Option) (*waf.DeleteIPSetOutput, error)
|
||||
DeleteIPSetRequest(*waf.DeleteIPSetInput) (*request.Request, *waf.DeleteIPSetOutput)
|
||||
|
||||
DeletePermissionPolicy(*waf.DeletePermissionPolicyInput) (*waf.DeletePermissionPolicyOutput, error)
|
||||
DeletePermissionPolicyWithContext(aws.Context, *waf.DeletePermissionPolicyInput, ...request.Option) (*waf.DeletePermissionPolicyOutput, error)
|
||||
DeletePermissionPolicyRequest(*waf.DeletePermissionPolicyInput) (*request.Request, *waf.DeletePermissionPolicyOutput)
|
||||
|
||||
DeleteRateBasedRule(*waf.DeleteRateBasedRuleInput) (*waf.DeleteRateBasedRuleOutput, error)
|
||||
DeleteRateBasedRuleWithContext(aws.Context, *waf.DeleteRateBasedRuleInput, ...request.Option) (*waf.DeleteRateBasedRuleOutput, error)
|
||||
DeleteRateBasedRuleRequest(*waf.DeleteRateBasedRuleInput) (*request.Request, *waf.DeleteRateBasedRuleOutput)
|
||||
|
||||
DeleteRegexMatchSet(*waf.DeleteRegexMatchSetInput) (*waf.DeleteRegexMatchSetOutput, error)
|
||||
DeleteRegexMatchSetWithContext(aws.Context, *waf.DeleteRegexMatchSetInput, ...request.Option) (*waf.DeleteRegexMatchSetOutput, error)
|
||||
DeleteRegexMatchSetRequest(*waf.DeleteRegexMatchSetInput) (*request.Request, *waf.DeleteRegexMatchSetOutput)
|
||||
|
||||
DeleteRegexPatternSet(*waf.DeleteRegexPatternSetInput) (*waf.DeleteRegexPatternSetOutput, error)
|
||||
DeleteRegexPatternSetWithContext(aws.Context, *waf.DeleteRegexPatternSetInput, ...request.Option) (*waf.DeleteRegexPatternSetOutput, error)
|
||||
DeleteRegexPatternSetRequest(*waf.DeleteRegexPatternSetInput) (*request.Request, *waf.DeleteRegexPatternSetOutput)
|
||||
|
||||
DeleteRule(*waf.DeleteRuleInput) (*waf.DeleteRuleOutput, error)
|
||||
DeleteRuleWithContext(aws.Context, *waf.DeleteRuleInput, ...request.Option) (*waf.DeleteRuleOutput, error)
|
||||
DeleteRuleRequest(*waf.DeleteRuleInput) (*request.Request, *waf.DeleteRuleOutput)
|
||||
|
||||
DeleteRuleGroup(*waf.DeleteRuleGroupInput) (*waf.DeleteRuleGroupOutput, error)
|
||||
DeleteRuleGroupWithContext(aws.Context, *waf.DeleteRuleGroupInput, ...request.Option) (*waf.DeleteRuleGroupOutput, error)
|
||||
DeleteRuleGroupRequest(*waf.DeleteRuleGroupInput) (*request.Request, *waf.DeleteRuleGroupOutput)
|
||||
|
||||
DeleteSizeConstraintSet(*waf.DeleteSizeConstraintSetInput) (*waf.DeleteSizeConstraintSetOutput, error)
|
||||
DeleteSizeConstraintSetWithContext(aws.Context, *waf.DeleteSizeConstraintSetInput, ...request.Option) (*waf.DeleteSizeConstraintSetOutput, error)
|
||||
DeleteSizeConstraintSetRequest(*waf.DeleteSizeConstraintSetInput) (*request.Request, *waf.DeleteSizeConstraintSetOutput)
|
||||
@@ -136,10 +172,18 @@ type WAFAPI interface {
|
||||
GetChangeTokenStatusWithContext(aws.Context, *waf.GetChangeTokenStatusInput, ...request.Option) (*waf.GetChangeTokenStatusOutput, error)
|
||||
GetChangeTokenStatusRequest(*waf.GetChangeTokenStatusInput) (*request.Request, *waf.GetChangeTokenStatusOutput)
|
||||
|
||||
GetGeoMatchSet(*waf.GetGeoMatchSetInput) (*waf.GetGeoMatchSetOutput, error)
|
||||
GetGeoMatchSetWithContext(aws.Context, *waf.GetGeoMatchSetInput, ...request.Option) (*waf.GetGeoMatchSetOutput, error)
|
||||
GetGeoMatchSetRequest(*waf.GetGeoMatchSetInput) (*request.Request, *waf.GetGeoMatchSetOutput)
|
||||
|
||||
GetIPSet(*waf.GetIPSetInput) (*waf.GetIPSetOutput, error)
|
||||
GetIPSetWithContext(aws.Context, *waf.GetIPSetInput, ...request.Option) (*waf.GetIPSetOutput, error)
|
||||
GetIPSetRequest(*waf.GetIPSetInput) (*request.Request, *waf.GetIPSetOutput)
|
||||
|
||||
GetPermissionPolicy(*waf.GetPermissionPolicyInput) (*waf.GetPermissionPolicyOutput, error)
|
||||
GetPermissionPolicyWithContext(aws.Context, *waf.GetPermissionPolicyInput, ...request.Option) (*waf.GetPermissionPolicyOutput, error)
|
||||
GetPermissionPolicyRequest(*waf.GetPermissionPolicyInput) (*request.Request, *waf.GetPermissionPolicyOutput)
|
||||
|
||||
GetRateBasedRule(*waf.GetRateBasedRuleInput) (*waf.GetRateBasedRuleOutput, error)
|
||||
GetRateBasedRuleWithContext(aws.Context, *waf.GetRateBasedRuleInput, ...request.Option) (*waf.GetRateBasedRuleOutput, error)
|
||||
GetRateBasedRuleRequest(*waf.GetRateBasedRuleInput) (*request.Request, *waf.GetRateBasedRuleOutput)
|
||||
@@ -148,10 +192,22 @@ type WAFAPI interface {
|
||||
GetRateBasedRuleManagedKeysWithContext(aws.Context, *waf.GetRateBasedRuleManagedKeysInput, ...request.Option) (*waf.GetRateBasedRuleManagedKeysOutput, error)
|
||||
GetRateBasedRuleManagedKeysRequest(*waf.GetRateBasedRuleManagedKeysInput) (*request.Request, *waf.GetRateBasedRuleManagedKeysOutput)
|
||||
|
||||
GetRegexMatchSet(*waf.GetRegexMatchSetInput) (*waf.GetRegexMatchSetOutput, error)
|
||||
GetRegexMatchSetWithContext(aws.Context, *waf.GetRegexMatchSetInput, ...request.Option) (*waf.GetRegexMatchSetOutput, error)
|
||||
GetRegexMatchSetRequest(*waf.GetRegexMatchSetInput) (*request.Request, *waf.GetRegexMatchSetOutput)
|
||||
|
||||
GetRegexPatternSet(*waf.GetRegexPatternSetInput) (*waf.GetRegexPatternSetOutput, error)
|
||||
GetRegexPatternSetWithContext(aws.Context, *waf.GetRegexPatternSetInput, ...request.Option) (*waf.GetRegexPatternSetOutput, error)
|
||||
GetRegexPatternSetRequest(*waf.GetRegexPatternSetInput) (*request.Request, *waf.GetRegexPatternSetOutput)
|
||||
|
||||
GetRule(*waf.GetRuleInput) (*waf.GetRuleOutput, error)
|
||||
GetRuleWithContext(aws.Context, *waf.GetRuleInput, ...request.Option) (*waf.GetRuleOutput, error)
|
||||
GetRuleRequest(*waf.GetRuleInput) (*request.Request, *waf.GetRuleOutput)
|
||||
|
||||
GetRuleGroup(*waf.GetRuleGroupInput) (*waf.GetRuleGroupOutput, error)
|
||||
GetRuleGroupWithContext(aws.Context, *waf.GetRuleGroupInput, ...request.Option) (*waf.GetRuleGroupOutput, error)
|
||||
GetRuleGroupRequest(*waf.GetRuleGroupInput) (*request.Request, *waf.GetRuleGroupOutput)
|
||||
|
||||
GetSampledRequests(*waf.GetSampledRequestsInput) (*waf.GetSampledRequestsOutput, error)
|
||||
GetSampledRequestsWithContext(aws.Context, *waf.GetSampledRequestsInput, ...request.Option) (*waf.GetSampledRequestsOutput, error)
|
||||
GetSampledRequestsRequest(*waf.GetSampledRequestsInput) (*request.Request, *waf.GetSampledRequestsOutput)
|
||||
@@ -172,10 +228,18 @@ type WAFAPI interface {
|
||||
GetXssMatchSetWithContext(aws.Context, *waf.GetXssMatchSetInput, ...request.Option) (*waf.GetXssMatchSetOutput, error)
|
||||
GetXssMatchSetRequest(*waf.GetXssMatchSetInput) (*request.Request, *waf.GetXssMatchSetOutput)
|
||||
|
||||
ListActivatedRulesInRuleGroup(*waf.ListActivatedRulesInRuleGroupInput) (*waf.ListActivatedRulesInRuleGroupOutput, error)
|
||||
ListActivatedRulesInRuleGroupWithContext(aws.Context, *waf.ListActivatedRulesInRuleGroupInput, ...request.Option) (*waf.ListActivatedRulesInRuleGroupOutput, error)
|
||||
ListActivatedRulesInRuleGroupRequest(*waf.ListActivatedRulesInRuleGroupInput) (*request.Request, *waf.ListActivatedRulesInRuleGroupOutput)
|
||||
|
||||
ListByteMatchSets(*waf.ListByteMatchSetsInput) (*waf.ListByteMatchSetsOutput, error)
|
||||
ListByteMatchSetsWithContext(aws.Context, *waf.ListByteMatchSetsInput, ...request.Option) (*waf.ListByteMatchSetsOutput, error)
|
||||
ListByteMatchSetsRequest(*waf.ListByteMatchSetsInput) (*request.Request, *waf.ListByteMatchSetsOutput)
|
||||
|
||||
ListGeoMatchSets(*waf.ListGeoMatchSetsInput) (*waf.ListGeoMatchSetsOutput, error)
|
||||
ListGeoMatchSetsWithContext(aws.Context, *waf.ListGeoMatchSetsInput, ...request.Option) (*waf.ListGeoMatchSetsOutput, error)
|
||||
ListGeoMatchSetsRequest(*waf.ListGeoMatchSetsInput) (*request.Request, *waf.ListGeoMatchSetsOutput)
|
||||
|
||||
ListIPSets(*waf.ListIPSetsInput) (*waf.ListIPSetsOutput, error)
|
||||
ListIPSetsWithContext(aws.Context, *waf.ListIPSetsInput, ...request.Option) (*waf.ListIPSetsOutput, error)
|
||||
ListIPSetsRequest(*waf.ListIPSetsInput) (*request.Request, *waf.ListIPSetsOutput)
|
||||
@@ -184,6 +248,18 @@ type WAFAPI interface {
|
||||
ListRateBasedRulesWithContext(aws.Context, *waf.ListRateBasedRulesInput, ...request.Option) (*waf.ListRateBasedRulesOutput, error)
|
||||
ListRateBasedRulesRequest(*waf.ListRateBasedRulesInput) (*request.Request, *waf.ListRateBasedRulesOutput)
|
||||
|
||||
ListRegexMatchSets(*waf.ListRegexMatchSetsInput) (*waf.ListRegexMatchSetsOutput, error)
|
||||
ListRegexMatchSetsWithContext(aws.Context, *waf.ListRegexMatchSetsInput, ...request.Option) (*waf.ListRegexMatchSetsOutput, error)
|
||||
ListRegexMatchSetsRequest(*waf.ListRegexMatchSetsInput) (*request.Request, *waf.ListRegexMatchSetsOutput)
|
||||
|
||||
ListRegexPatternSets(*waf.ListRegexPatternSetsInput) (*waf.ListRegexPatternSetsOutput, error)
|
||||
ListRegexPatternSetsWithContext(aws.Context, *waf.ListRegexPatternSetsInput, ...request.Option) (*waf.ListRegexPatternSetsOutput, error)
|
||||
ListRegexPatternSetsRequest(*waf.ListRegexPatternSetsInput) (*request.Request, *waf.ListRegexPatternSetsOutput)
|
||||
|
||||
ListRuleGroups(*waf.ListRuleGroupsInput) (*waf.ListRuleGroupsOutput, error)
|
||||
ListRuleGroupsWithContext(aws.Context, *waf.ListRuleGroupsInput, ...request.Option) (*waf.ListRuleGroupsOutput, error)
|
||||
ListRuleGroupsRequest(*waf.ListRuleGroupsInput) (*request.Request, *waf.ListRuleGroupsOutput)
|
||||
|
||||
ListRules(*waf.ListRulesInput) (*waf.ListRulesOutput, error)
|
||||
ListRulesWithContext(aws.Context, *waf.ListRulesInput, ...request.Option) (*waf.ListRulesOutput, error)
|
||||
ListRulesRequest(*waf.ListRulesInput) (*request.Request, *waf.ListRulesOutput)
|
||||
@@ -196,6 +272,10 @@ type WAFAPI interface {
|
||||
ListSqlInjectionMatchSetsWithContext(aws.Context, *waf.ListSqlInjectionMatchSetsInput, ...request.Option) (*waf.ListSqlInjectionMatchSetsOutput, error)
|
||||
ListSqlInjectionMatchSetsRequest(*waf.ListSqlInjectionMatchSetsInput) (*request.Request, *waf.ListSqlInjectionMatchSetsOutput)
|
||||
|
||||
ListSubscribedRuleGroups(*waf.ListSubscribedRuleGroupsInput) (*waf.ListSubscribedRuleGroupsOutput, error)
|
||||
ListSubscribedRuleGroupsWithContext(aws.Context, *waf.ListSubscribedRuleGroupsInput, ...request.Option) (*waf.ListSubscribedRuleGroupsOutput, error)
|
||||
ListSubscribedRuleGroupsRequest(*waf.ListSubscribedRuleGroupsInput) (*request.Request, *waf.ListSubscribedRuleGroupsOutput)
|
||||
|
||||
ListWebACLs(*waf.ListWebACLsInput) (*waf.ListWebACLsOutput, error)
|
||||
ListWebACLsWithContext(aws.Context, *waf.ListWebACLsInput, ...request.Option) (*waf.ListWebACLsOutput, error)
|
||||
ListWebACLsRequest(*waf.ListWebACLsInput) (*request.Request, *waf.ListWebACLsOutput)
|
||||
@@ -204,10 +284,18 @@ type WAFAPI interface {
|
||||
ListXssMatchSetsWithContext(aws.Context, *waf.ListXssMatchSetsInput, ...request.Option) (*waf.ListXssMatchSetsOutput, error)
|
||||
ListXssMatchSetsRequest(*waf.ListXssMatchSetsInput) (*request.Request, *waf.ListXssMatchSetsOutput)
|
||||
|
||||
PutPermissionPolicy(*waf.PutPermissionPolicyInput) (*waf.PutPermissionPolicyOutput, error)
|
||||
PutPermissionPolicyWithContext(aws.Context, *waf.PutPermissionPolicyInput, ...request.Option) (*waf.PutPermissionPolicyOutput, error)
|
||||
PutPermissionPolicyRequest(*waf.PutPermissionPolicyInput) (*request.Request, *waf.PutPermissionPolicyOutput)
|
||||
|
||||
UpdateByteMatchSet(*waf.UpdateByteMatchSetInput) (*waf.UpdateByteMatchSetOutput, error)
|
||||
UpdateByteMatchSetWithContext(aws.Context, *waf.UpdateByteMatchSetInput, ...request.Option) (*waf.UpdateByteMatchSetOutput, error)
|
||||
UpdateByteMatchSetRequest(*waf.UpdateByteMatchSetInput) (*request.Request, *waf.UpdateByteMatchSetOutput)
|
||||
|
||||
UpdateGeoMatchSet(*waf.UpdateGeoMatchSetInput) (*waf.UpdateGeoMatchSetOutput, error)
|
||||
UpdateGeoMatchSetWithContext(aws.Context, *waf.UpdateGeoMatchSetInput, ...request.Option) (*waf.UpdateGeoMatchSetOutput, error)
|
||||
UpdateGeoMatchSetRequest(*waf.UpdateGeoMatchSetInput) (*request.Request, *waf.UpdateGeoMatchSetOutput)
|
||||
|
||||
UpdateIPSet(*waf.UpdateIPSetInput) (*waf.UpdateIPSetOutput, error)
|
||||
UpdateIPSetWithContext(aws.Context, *waf.UpdateIPSetInput, ...request.Option) (*waf.UpdateIPSetOutput, error)
|
||||
UpdateIPSetRequest(*waf.UpdateIPSetInput) (*request.Request, *waf.UpdateIPSetOutput)
|
||||
@@ -216,10 +304,22 @@ type WAFAPI interface {
|
||||
UpdateRateBasedRuleWithContext(aws.Context, *waf.UpdateRateBasedRuleInput, ...request.Option) (*waf.UpdateRateBasedRuleOutput, error)
|
||||
UpdateRateBasedRuleRequest(*waf.UpdateRateBasedRuleInput) (*request.Request, *waf.UpdateRateBasedRuleOutput)
|
||||
|
||||
UpdateRegexMatchSet(*waf.UpdateRegexMatchSetInput) (*waf.UpdateRegexMatchSetOutput, error)
|
||||
UpdateRegexMatchSetWithContext(aws.Context, *waf.UpdateRegexMatchSetInput, ...request.Option) (*waf.UpdateRegexMatchSetOutput, error)
|
||||
UpdateRegexMatchSetRequest(*waf.UpdateRegexMatchSetInput) (*request.Request, *waf.UpdateRegexMatchSetOutput)
|
||||
|
||||
UpdateRegexPatternSet(*waf.UpdateRegexPatternSetInput) (*waf.UpdateRegexPatternSetOutput, error)
|
||||
UpdateRegexPatternSetWithContext(aws.Context, *waf.UpdateRegexPatternSetInput, ...request.Option) (*waf.UpdateRegexPatternSetOutput, error)
|
||||
UpdateRegexPatternSetRequest(*waf.UpdateRegexPatternSetInput) (*request.Request, *waf.UpdateRegexPatternSetOutput)
|
||||
|
||||
UpdateRule(*waf.UpdateRuleInput) (*waf.UpdateRuleOutput, error)
|
||||
UpdateRuleWithContext(aws.Context, *waf.UpdateRuleInput, ...request.Option) (*waf.UpdateRuleOutput, error)
|
||||
UpdateRuleRequest(*waf.UpdateRuleInput) (*request.Request, *waf.UpdateRuleOutput)
|
||||
|
||||
UpdateRuleGroup(*waf.UpdateRuleGroupInput) (*waf.UpdateRuleGroupOutput, error)
|
||||
UpdateRuleGroupWithContext(aws.Context, *waf.UpdateRuleGroupInput, ...request.Option) (*waf.UpdateRuleGroupOutput, error)
|
||||
UpdateRuleGroupRequest(*waf.UpdateRuleGroupInput) (*request.Request, *waf.UpdateRuleGroupOutput)
|
||||
|
||||
UpdateSizeConstraintSet(*waf.UpdateSizeConstraintSetInput) (*waf.UpdateSizeConstraintSetOutput, error)
|
||||
UpdateSizeConstraintSetWithContext(aws.Context, *waf.UpdateSizeConstraintSetInput, ...request.Option) (*waf.UpdateSizeConstraintSetOutput, error)
|
||||
UpdateSizeConstraintSetRequest(*waf.UpdateSizeConstraintSetInput) (*request.Request, *waf.UpdateSizeConstraintSetOutput)
|
||||
|
||||
Reference in New Issue
Block a user