Skip to content

Commit

Permalink
[ignore] Changed the attribute name use_fv_subnet to use_epg_subnet i…
Browse files Browse the repository at this point in the history
…n the aci_epg_useg_ip_attribute resource
  • Loading branch information
sajagana committed Jul 8, 2024
1 parent 8cd313a commit 4dfdd15
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 37 deletions.
2 changes: 1 addition & 1 deletion docs/data-sources/epg_useg_ip_attribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ data "aci_epg_useg_ip_attribute" "example_epg_useg_block_statement" {
* `name_alias` (nameAlias) - (string) The name alias of the EPG uSeg IP Attribute object.
* `owner_key` (ownerKey) - (string) The key for enabling clients to own their data for entity correlation.
* `owner_tag` (ownerTag) - (string) A tag for enabling clients to add their own data. For example, to indicate who created this object.
* `use_fv_subnet` (usefvSubnet) - (string) The usefvSubnet flag of the EPG uSeg IP Attribute object.
* `use_epg_subnet` (usefvSubnet) - (string) The usefvSubnet flag of the EPG uSeg IP Attribute object.

* `annotations` - (list) A list of Annotations (ACI object [tagAnnotation](https://pubhub.devnetcloud.com/media/model-doc-latest/docs/app/index.html#/objects/tagAnnotation/overview)). This attribute is supported in ACI versions: 3.2(1l) and later.
* `key` (key) - (string) The key used to uniquely identify this configuration object.
Expand Down
20 changes: 10 additions & 10 deletions docs/resources/epg_useg_ip_attribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ The configuration snippet below shows all possible attributes of the EPG uSeg IP
```hcl
resource "aci_epg_useg_ip_attribute" "full_example_epg_useg_block_statement" {
parent_dn = aci_epg_useg_block_statement.example.id
annotation = "annotation"
description = "description"
ip = "131.107.1.200"
name = "131"
name_alias = "name_alias"
owner_key = "owner_key"
owner_tag = "owner_tag"
use_fv_subnet = "yes"
parent_dn = aci_epg_useg_block_statement.example.id
annotation = "annotation"
description = "description"
ip = "131.107.1.200"
name = "131"
name_alias = "name_alias"
owner_key = "owner_key"
owner_tag = "owner_tag"
use_epg_subnet = "yes"
annotations = [
{
key = "key_0"
Expand Down Expand Up @@ -96,7 +96,7 @@ All examples for the EPG uSeg IP Attribute resource can be found in the [example
* `name_alias` (nameAlias) - (string) The name alias of the EPG uSeg IP Attribute object.
* `owner_key` (ownerKey) - (string) The key for enabling clients to own their data for entity correlation.
* `owner_tag` (ownerTag) - (string) A tag for enabling clients to add their own data. For example, to indicate who created this object.
* `use_fv_subnet` (usefvSubnet) - (string) The usefvSubnet flag of the EPG uSeg IP Attribute object.
* `use_epg_subnet` (usefvSubnet) - (string) The usefvSubnet flag of the EPG uSeg IP Attribute object.
- Default: `no`
- Valid Values: `no`, `yes`.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@

resource "aci_epg_useg_ip_attribute" "full_example_epg_useg_block_statement" {
parent_dn = aci_epg_useg_block_statement.example.id
annotation = "annotation"
description = "description"
ip = "131.107.1.200"
name = "131"
name_alias = "name_alias"
owner_key = "owner_key"
owner_tag = "owner_tag"
use_fv_subnet = "yes"
parent_dn = aci_epg_useg_block_statement.example.id
annotation = "annotation"
description = "description"
ip = "131.107.1.200"
name = "131"
name_alias = "name_alias"
owner_key = "owner_key"
owner_tag = "owner_tag"
use_epg_subnet = "yes"
annotations = [
{
key = "key_0"
Expand Down
6 changes: 3 additions & 3 deletions gen/definitions/properties.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -602,19 +602,19 @@ fvIpAttr:
resource_required:
- ip
overwrites:
usefv_subnet: "use_fv_subnet"
usefv_subnet: "use_epg_subnet"
documentation:
ip: "The device IP address of the %s object."
usefvSubnet: "The usefvSubnet flag of the %s object."
default_values:
usefvSubnet: "no"
test_values:
default:
use_fv_subnet: "no"
use_epg_subnet: "no"
ip: "131.107.1.200"
name: "131"
all:
use_fv_subnet: "yes"
use_epg_subnet: "yes"
ip: "0.0.0.0"
resource_required:
name: "131"
Expand Down
4 changes: 2 additions & 2 deletions gen/testvars/fvIpAttr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ default:
name_alias: ""
owner_key: ""
owner_tag: ""
use_fv_subnet: "no"
use_epg_subnet: "no"

datasource_non_existing:
name: "131_non_existing"
Expand All @@ -28,7 +28,7 @@ all:
name_alias: "name_alias"
owner_key: "owner_key"
owner_tag: "owner_tag"
use_fv_subnet: "yes"
use_epg_subnet: "yes"

children:
annotations:
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/data_source_aci_epg_useg_ip_attribute.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions internal/provider/resource_aci_epg_useg_ip_attribute.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions internal/provider/resource_aci_epg_useg_ip_attribute_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4dfdd15

Please sign in to comment.