Skip to content

Commit 13bac4b

Browse files
committed
RCA vs Rca.
1 parent ca0f974 commit 13bac4b

9 files changed

+9
-9
lines changed

examples/get_webrca_incident.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func main() {
5454
defer connection.Close()
5555

5656
// Get the client for the resource that manages the collection of incidents:
57-
collection := connection.WebRca().V1().Incidents()
57+
collection := connection.WebRCA().V1().Incidents()
5858

5959
// Get the client for the resource that manages the incident that we are looking for. Note
6060
// that this will not send any request to the server yet, so it will succeed even if that

examples/get_webrca_incident_event.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func main() {
5858
event_id := "61ac5f1d-c425-48b2-b87a-dc5ef2dfe192"
5959

6060
// Get the client for the resource that manages the collection of incidents:
61-
incidents_collection := connection.WebRca().V1().Incidents()
61+
incidents_collection := connection.WebRCA().V1().Incidents()
6262
events_collection := incidents_collection.Incident(incident_id).Events()
6363

6464
// Get the client for the resource that manages the incident that we are looking for. Note

examples/get_webrca_user.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func main() {
5454
defer connection.Close()
5555

5656
// Get the client for the resource that manages the collection of users:
57-
collection := connection.WebRca().V1().Users()
57+
collection := connection.WebRCA().V1().Users()
5858

5959
// Get the client for the resource that manages the user that we are looking for. Note
6060
// that this will not send any request to the server yet, so it will succeed even if that

examples/list_webrca_incident_event_attachments.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func main() {
4545
incident_id := "1d42c885-32d9-4f92-a58c-fbb434668d17"
4646
event_id := "6b64cdc6-7ca9-41f2-8088-2ee4fa243806"
4747

48-
collection := connection.WebRca().V1().Incidents().Incident(incident_id).Events().Event(event_id).Attachments()
48+
collection := connection.WebRCA().V1().Incidents().Incident(incident_id).Events().Event(event_id).Attachments()
4949

5050
size := 10
5151
page := 1

examples/list_webrca_incident_events.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func main() {
4242
defer connection.Close()
4343

4444
incident_id := "0d6fcdde-e9d8-4dc4-beb0-67ed975d71b7" // Adjust as needed
45-
collection := connection.WebRca().V1().Incidents().Incident(incident_id).Events()
45+
collection := connection.WebRCA().V1().Incidents().Incident(incident_id).Events()
4646

4747
size := 10
4848
page := 1

examples/list_webrca_incident_followups.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func main() {
4242
defer connection.Close()
4343

4444
incident_id := "bc0760a1-7f40-4b68-86b1-3f8f2a5b0f59" // Adjust as needed
45-
collection := connection.WebRca().V1().Incidents().Incident(incident_id).FollowUps()
45+
collection := connection.WebRCA().V1().Incidents().Incident(incident_id).FollowUps()
4646

4747
size := 10
4848
page := 1

examples/list_webrca_incident_notifications.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func main() {
4242
defer connection.Close()
4343

4444
incident_id := "0d6fcdde-e9d8-4dc4-beb0-67ed975d71b7" // Adjust as needed
45-
collection := connection.WebRca().V1().Incidents().Incident(incident_id).Notifications()
45+
collection := connection.WebRCA().V1().Incidents().Incident(incident_id).Notifications()
4646

4747
size := 10
4848
page := 1

examples/list_webrca_incidents.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func main() {
4141

4242
defer connection.Close()
4343

44-
collection := connection.WebRca().V1().Incidents()
44+
collection := connection.WebRCA().V1().Incidents()
4545

4646
size := 10
4747
page := 1

examples/list_webrca_users.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ func main() {
5656
defer connection.Close()
5757

5858
// Get the client for the resource that manages the collection of products:
59-
collection := connection.WebRca().V1().Users()
59+
collection := connection.WebRCA().V1().Users()
6060

6161
// Retrieve the list of products using pages of ten items, till we get a page that has less
6262
// items than requests, as that marks the end of the collection:

0 commit comments

Comments
 (0)