Skip to content

Commit

Permalink
[ignore] Added vendor file
Browse files Browse the repository at this point in the history
  • Loading branch information
abrahammughal committed Jun 20, 2024
1 parent 3ea14e4 commit 47ffc21
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions aci/resource_aci_fvctx.go
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,12 @@ func resourceAciVRFCreate(ctx context.Context, d *schema.ResourceData, m interfa
} else {
fvCtxAttr.Annotation = "{}"
}
if PcTag, ok := d.GetOk("pc_tag"); ok {
fvCtxAttr.PcTag = PcTag.(string)
}
if Scope, ok := d.GetOk("scope"); ok {
fvCtxAttr.Scope = Scope.(string)
}
if BdEnforcedEnable, ok := d.GetOk("bd_enforced_enable"); ok {
fvCtxAttr.BdEnforcedEnable = BdEnforcedEnable.(string)
}
Expand Down Expand Up @@ -475,6 +481,12 @@ func resourceAciVRFUpdate(ctx context.Context, d *schema.ResourceData, m interfa
} else {
fvCtxAttr.Annotation = "{}"
}
if PcTag, ok := d.GetOk("pc_tag"); ok {
fvCtxAttr.PcTag = PcTag.(string)
}
if Scope, ok := d.GetOk("scope"); ok {
fvCtxAttr.Scope = Scope.(string)
}
if BdEnforcedEnable, ok := d.GetOk("bd_enforced_enable"); ok {
fvCtxAttr.BdEnforcedEnable = BdEnforcedEnable.(string)
}
Expand Down
12 changes: 12 additions & 0 deletions vendor/github.com/ciscoecosystem/aci-go-client/v2/models/fv_ctx.go

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

0 comments on commit 47ffc21

Please sign in to comment.