-
Notifications
You must be signed in to change notification settings - Fork 8
Issue #131 #137
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
Closed
Closed
Issue #131 #137
Changes from 6 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
6ad0871
Enhance handling of DNS split profile assignments by adding checks fo…
fmunozmiranda 0c16cca
Update CHANGELOG for version 1.8.1 to include enhancements in DNS spl…
fmunozmiranda d609cae
Refactor DNS split profile assignment logic to improve matching crite…
fmunozmiranda d28356d
Add 'id' attribute to assignment ID and profile ID in appliance DNS s…
fmunozmiranda 9ecbb80
Enhance appliance DNS split profile assignments by introducing 'get_i…
fmunozmiranda 1e0f715
Introduce 'get_in_create_context' attribute in schema and update reso…
fmunozmiranda a4fc112
Update CHANGELOG for version 1.8.1 to reflect enhancements in DNS spl…
fmunozmiranda 87d2dbe
- Add undocumented `ipv6_prefix_assignments[].disabled` attribute to …
fmunozmiranda File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -7,6 +7,8 @@ no_update: false | |
| no_delete: false | ||
| no_import: true | ||
| no_read: false | ||
| get_in_create_context: true | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think we need to enhance the generator here, as this should not be a common theme. Due to the non-standard endpoint paths, this resource requires code customizations anyway, therefore I would just insert the extra GET after the POST manually in |
||
| read_path_method: getAssignmentsPath | ||
| doc_category: Appliances | ||
| test_tags: [APPLIANCE_DNS_SPLIT_PROFILE_ASSIGNMENTS] | ||
| test_variables: [test_org, test_network] | ||
|
|
@@ -34,12 +36,14 @@ attributes: | |
| description: ID of the network | ||
| example: N_123456 | ||
| test_value: meraki_network.test.id | ||
| id: true | ||
| - model_name: id | ||
| type: String | ||
| data_path: [profile] | ||
| mandatory: true | ||
| description: ID of the profile | ||
| example: "1234" | ||
| id: true | ||
| test_value: meraki_appliance_dns_split_profile.test.id | ||
| test_prerequisites: | | ||
| data "meraki_organization" "test" { | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add a
(unreleased)here to emphasize this is not published yet. Also, whenever you update the changelog, make sure you run the generator again to update the changelog in the documentation as well.