Skip to content

Commit

Permalink
cleaning up datasource mentions
Browse files Browse the repository at this point in the history
  • Loading branch information
1riatsila1 committed Dec 4, 2024
1 parent 91b0140 commit b8b7d55
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions docs/resources/agent_group_assignment.md

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

2 changes: 1 addition & 1 deletion docs/resources/group.md

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

4 changes: 2 additions & 2 deletions docs/resources/network_group_assignment.md

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

4 changes: 2 additions & 2 deletions docs/resources/sensor_group_assignment.md

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

4 changes: 2 additions & 2 deletions docs/resources/service_test_group_assignment.md

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

Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func (r *agentGroupAssignmentResource) Schema(
"agent_id": schema.StringAttribute{
Description: "The identifier of the agent to be assigned. " +
"Use `hpeuxi_agent` resource id field; " +
"`hpeuxi_agent` datasource id field " +
"`data.hpeuxi_agent` id field " +
"or agent id here.",
Required: true,
PlanModifiers: []planmodifier.String{
Expand All @@ -77,7 +77,7 @@ func (r *agentGroupAssignmentResource) Schema(
"group_id": schema.StringAttribute{
Description: "The identifier of the group to be assigned to. " +
"Use `hpeuxi_group` resource id field (recommended); " +
"`hpeuxi_group` datasource id field or " +
"`data.hpeuxi_group` id field or " +
"group id here.",
Required: true,
PlanModifiers: []planmodifier.String{
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/resources/resource_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func (r *groupResource) Schema(
},
"parent_group_id": schema.StringAttribute{
Description: "The identifier of the parent of this group. " +
"Use `hpeuxi_group` resource (recommended) or datasource id for this attribute. " +
"Use `hpeuxi_group` resource (recommended) or `data.hpeuxi_group` id for this attribute. " +
"Alternatively leave blank to set group to highest level configurable node.",
Optional: true,
PlanModifiers: []planmodifier.String{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ func (r *networkGroupAssignmentResource) Schema(
"network_id": schema.StringAttribute{
Description: "The identifier of the network to be assigned. " +
"Use `hpeuxi_wired_network` resource id field; " +
"`hpeuxi_wired_network` datasource id field; " +
"`hpeuxi_wireless_network` resource id field;" +
"`hpeuxi_wireless_network` datasource id field " +
"`data.hpeuxi_wired_network` id field; " +
"`hpeuxi_wireless_network` resource id field; " +
"`data.hpeuxi_wireless_network` id field " +
"wired network id; " +
"or wireless network id here.",
Required: true,
Expand All @@ -80,7 +80,7 @@ func (r *networkGroupAssignmentResource) Schema(
"group_id": schema.StringAttribute{
Description: "The identifier of the group to be assigned to. " +
"Use `hpeuxi_group` resource id field (recommended); " +
"`hpeuxi_group` datasource id field or " +
"`data.hpeuxi_group` id field or " +
"group id here.",
Required: true,
PlanModifiers: []planmodifier.String{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func (r *sensorGroupAssignmentResource) Schema(
"sensor_id": schema.StringAttribute{
Description: "The identifier of the sensor to be assigned. " +
"Use `hpeuxi_sensor` resource id field; " +
"`hpeuxi_sensor` datasource id field or " +
"`data.hpeuxi_sensor` id field or " +
"sensor id here.",
Required: true,
PlanModifiers: []planmodifier.String{
Expand All @@ -77,7 +77,7 @@ func (r *sensorGroupAssignmentResource) Schema(
"group_id": schema.StringAttribute{
Description: "The identifier of the group to be assigned to. " +
"Use `hpeuxi_group` resource id field (recommended); " +
"`hpeuxi_group` datasource id field or " +
"`data.hpeuxi_group` id field or " +
"group id here.",
Required: true,
PlanModifiers: []planmodifier.String{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func (r *serviceTestGroupAssignmentResource) Schema(
"service_test_id": schema.StringAttribute{
Description: "The identifier of the service test to be assigned. " +
"Use `hpeuxi_service_test` resource id field; " +
"`hpeuxi_service_test` datasource id field or " +
"`data.hpeuxi_service_test` id field or " +
"service test id here.",
Required: true,
PlanModifiers: []planmodifier.String{
Expand All @@ -77,7 +77,7 @@ func (r *serviceTestGroupAssignmentResource) Schema(
"group_id": schema.StringAttribute{
Description: "The identifier of the group to be assigned to. " +
"Use `hpeuxi_group` resource id field (recommended); " +
"`hpeuxi_group` datasource id field or " +
"`data.hpeuxi_group` id field or " +
"group id here.",
Required: true,
PlanModifiers: []planmodifier.String{
Expand Down

0 comments on commit b8b7d55

Please sign in to comment.