Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AWS Network Manager Resource w/ Core & Global #9514

Open
wants to merge 11 commits into
base: main
Choose a base branch
from

Conversation

zkarpinski
Copy link
Contributor

@zkarpinski zkarpinski commented May 18, 2024

Adds support for AWS Network Manager resource. Including Core Network and Global Network.
Closes #9511 #9512 & #9513

GlobalNetwork

  • DescribeGlobalNetworks
  • TagResource
  • UntagResource

Core Network

  • ListCoreNetworks
  • GetCoreNetwork
  • TagResource
  • UntagResource
  • DeleteCoreNetwork

@zkarpinski zkarpinski marked this pull request as ready for review May 18, 2024 19:28
@zkarpinski zkarpinski requested a review from kapilt as a code owner May 18, 2024 19:28
@zkarpinski zkarpinski marked this pull request as draft May 21, 2024 14:46
@zkarpinski zkarpinski marked this pull request as ready for review May 21, 2024 18:35
Copy link
Contributor

@jerryhxu jerryhxu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please also implement mark-for-op and marked-for-op as part of tagging functionality.

config_type = None
cfn_type = 'AWS::NetworkManager::CoreNetwork'
permissions_augment = ("networkmanager:ListTagsForResource",)
universal_taggable = object()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need for this line since 'tag' and 'untag' are implemented.

date = 'CreatedAt'
config_type = cfn_type = 'AWS::NetworkManager::GlobalNetwork'
permissions_augment = ("networkmanager:ListTagsForResource",)
universal_taggable = object()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need for this line since 'tag' and 'untag' are implemented.

permissions_augment = ("networkmanager:ListTagsForResource",)
universal_taggable = object()

source_mapping = {'describe': DescribeGlobalNetwork, 'config': ConfigSource}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need for this line since it doesn't provide any additional functionality.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add AWS NetworkManager Resource Type
2 participants