Skip to content

Commit

Permalink
feat(client-fms): AWS Firewall Manager now supports Fortigate Cloud N…
Browse files Browse the repository at this point in the history
…ative Firewall as a Service as a third-party policy type.
  • Loading branch information
awstools committed Dec 2, 2022
1 parent a684000 commit 4f42dff
Show file tree
Hide file tree
Showing 4 changed files with 317 additions and 224 deletions.
2 changes: 1 addition & 1 deletion clients/client-fms/src/endpoint/EndpointParameters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const resolveClientEndpointParameters = <T>(
};

export interface EndpointParameters extends __EndpointParameters {
Region?: string;
Region: string;
UseDualStack?: boolean;
UseFIPS?: boolean;
Endpoint?: string;
Expand Down
11 changes: 1 addition & 10 deletions clients/client-fms/src/endpoint/ruleset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const ruleSet: RuleSetObject = {
parameters: {
Region: {
builtIn: "AWS::Region",
required: false,
required: true,
documentation: "The AWS region used to dispatch the request.",
type: "String",
},
Expand Down Expand Up @@ -58,15 +58,6 @@ export const ruleSet: RuleSetObject = {
},
],
},
{
fn: "parseURL",
argv: [
{
ref: "Endpoint",
},
],
assign: "url",
},
],
type: "tree",
rules: [
Expand Down
1 change: 1 addition & 0 deletions clients/client-fms/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ export class ResourceNotFoundException extends __BaseException {
}

export enum ThirdPartyFirewall {
FORTIGATE_CLOUD_NATIVE_FIREWALL = "FORTIGATE_CLOUD_NATIVE_FIREWALL",
PALO_ALTO_NETWORKS_CLOUD_NGFW = "PALO_ALTO_NETWORKS_CLOUD_NGFW",
}

Expand Down

0 comments on commit 4f42dff

Please sign in to comment.