-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support export of sec profiles
- Loading branch information
Showing
5 changed files
with
258 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// Copyright 2020 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package securityprofiles | ||
|
||
import ( | ||
Check failure on line 17 in cmd/securityprofiles/export.go GitHub Actions / lint
|
||
"internal/apiclient" | ||
"os" | ||
Check failure on line 19 in cmd/securityprofiles/export.go GitHub Actions / lint
|
||
|
||
"internal/client/securityprofiles" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
// ExpCmd to export sec profiles | ||
var ExpCmd = &cobra.Command{ | ||
Use: "export", | ||
Short: "Export Security Profiles to a file", | ||
Long: "Export Security Profiles to a file", | ||
Args: func(cmd *cobra.Command, args []string) (err error) { | ||
return apiclient.SetApigeeOrg(org) | ||
}, | ||
RunE: func(cmd *cobra.Command, args []string) (err error) { | ||
if folder == "" { | ||
folder, _ = os.Getwd() | ||
} | ||
if err = apiclient.FolderExists(folder); err != nil { | ||
return err | ||
} | ||
return securityprofiles.Export(conn, folder, allRevisions) | ||
}, | ||
} | ||
|
||
var ( | ||
conn int | ||
folder string | ||
allRevisions bool | ||
) | ||
|
||
func init() { | ||
ExpCmd.Flags().IntVarP(&conn, "conn", "c", | ||
4, "Number of connections") | ||
ExpCmd.Flags().StringVarP(&folder, "folder", "f", | ||
"", "folder to export API proxy bundles") | ||
ExpCmd.Flags().BoolVarP(&allRevisions, "all", "", | ||
false, "Export all proxy revisions") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
// Copyright 2023 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package securityprofiles | ||
|
||
import ( | ||
"internal/apiclient" | ||
"internal/client/securityprofiles" | ||
|
||
"github.com/apigee/apigeecli/cmd/utils" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
// UpdateCmd to update a security profile | ||
var UpdateCmd = &cobra.Command{ | ||
Use: "update", | ||
Short: "Update an existing Security Profile", | ||
Long: "Update an existing Security Profile", | ||
Args: func(cmd *cobra.Command, args []string) (err error) { | ||
return apiclient.SetApigeeOrg(org) | ||
}, | ||
RunE: func(cmd *cobra.Command, args []string) (err error) { | ||
content, err := utils.ReadFile(securityActionFile) | ||
if err != nil { | ||
return err | ||
} | ||
_, err = securityprofiles.Update(name, content) | ||
return | ||
}, | ||
} | ||
|
||
func init() { | ||
UpdateCmd.Flags().StringVarP(&name, "name", "n", | ||
"", "Name of the security profile") | ||
UpdateCmd.Flags().StringVarP(&securityActionFile, "file", "f", | ||
"", "Path to a file containing Security Profile content") | ||
_ = UpdateCmd.MarkFlagRequired("name") | ||
_ = UpdateCmd.MarkFlagRequired("file") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters