Skip to content

Commit f93b452

Browse files
authored
Syncing protocol buffers (#75)
1 parent e0111bd commit f93b452

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

wgtwo/ir21/v1/ir21.proto

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ option go_package = "github.com/working-group-two/wgtwoapis/wgtwo/ir21/v1";
3333
service Ir21Service {
3434

3535
// CreateOrUpdateOrganisation is used to import organisation information into the IR21 database. An organisation
36-
// consists of a name, country, TADIGs, MCCMNCs, GT prefixes, realms, and notes, and is part of a dataset.
37-
//
36+
// consists of a name, country, TADIGs, MCCMNCs, GT prefixes, realms, and notes, and is part of a dataset. <br>
37+
// <br>
3838
// NOTE: THIS METHOD IS CURRENTLY IN BETA RELEASE
3939
// See https://developer.cisco.com/docs/mobility-services/api-lifecycle
4040
rpc CreateOrUpdateOrganisation(CreateOrUpdateOrganisationRequest) returns (CreateOrUpdateOrganisationResponse) {
@@ -43,8 +43,8 @@ service Ir21Service {
4343
}
4444

4545
// CreateOrUpdateOrganisationFromXml is used to import organisation information from an XML file into the IR21
46-
// database. The XML file should contain the organisation data.
47-
//
46+
// database. The XML file should contain the organisation data. <br>
47+
// <br>
4848
// NOTE: THIS METHOD IS CURRENTLY IN BETA RELEASE
4949
// See https://developer.cisco.com/docs/mobility-services/api-lifecycle
5050
rpc CreateOrUpdateOrganisationFromXml(CreateOrUpdateOrganisationFromXmlRequest)
@@ -54,80 +54,80 @@ service Ir21Service {
5454
}
5555

5656
// DeleteOrganisation is used to delete an organisation from the IR21 database. The organisation is identified by its
57-
// UUID and is part of a dataset.
58-
//
57+
// UUID and is part of a dataset. <br>
58+
// <br>
5959
// NOTE: THIS METHOD IS CURRENTLY IN BETA RELEASE
6060
// See https://developer.cisco.com/docs/mobility-services/api-lifecycle
6161
rpc DeleteOrganisation(DeleteOrganisationRequest) returns (DeleteOrganisationResponse) {
6262
option (status) = BETA;
6363
option (scope) = "";
6464
}
6565

66-
// ListOrganisations is used to list organisations from a dataset in the IR21 database.
67-
//
66+
// ListOrganisations is used to list organisations from a dataset in the IR21 database. <br>
67+
// <br>
6868
// NOTE: THIS METHOD IS CURRENTLY IN BETA RELEASE
6969
// See https://developer.cisco.com/docs/mobility-services/api-lifecycle
7070
rpc ListOrganisations(ListOrganisationsRequest) returns (ListOrganisationsResponse) {
7171
option (status) = BETA;
7272
option (scope) = "";
7373
}
7474

75-
// GetOrganisation is used to get an organisation from the IR21 database. The organisation is identified by its UUID.
76-
//
75+
// GetOrganisation is used to get an organisation from the IR21 database. The organisation is identified by its UUID. <br>
76+
// <br>
7777
// NOTE: THIS METHOD IS CURRENTLY IN BETA RELEASE
7878
// See https://developer.cisco.com/docs/mobility-services/api-lifecycle
7979
rpc GetOrganisation(GetOrganisationRequest) returns (GetOrganisationResponse) {
8080
option (status) = BETA;
8181
option (scope) = "";
8282
}
8383

84-
// ListDatasets is used to list datasets from the IR21 database.
85-
//
84+
// ListDatasets is used to list datasets from the IR21 database. <br>
85+
// <br>
8686
// NOTE: THIS METHOD IS CURRENTLY IN BETA RELEASE
8787
// See https://developer.cisco.com/docs/mobility-services/api-lifecycle
8888
rpc ListDatasets(ListDatasetsRequest) returns (ListDatasetsResponse) {
8989
option (status) = BETA;
9090
option (scope) = "";
9191
}
9292

93-
// CreateDataset is used to create a dataset in the IR21 database. A dataset has a name and a UUID.
94-
//
93+
// CreateDataset is used to create a dataset in the IR21 database. A dataset has a name and a UUID. <br>
94+
// <br>
9595
// NOTE: THIS METHOD IS CURRENTLY IN BETA RELEASE
9696
// See https://developer.cisco.com/docs/mobility-services/api-lifecycle
9797
rpc CreateDataset(CreateDatasetRequest) returns (CreateDatasetResponse) {
9898
option (status) = BETA;
9999
option (scope) = "";
100100
}
101101

102-
// DeleteDataset is used to delete a dataset from the IR21 database. The dataset is identified by its UUID.
103-
//
102+
// DeleteDataset is used to delete a dataset from the IR21 database. The dataset is identified by its UUID. <br>
103+
// <br>
104104
// NOTE: THIS METHOD IS CURRENTLY IN BETA RELEASE
105105
// See https://developer.cisco.com/docs/mobility-services/api-lifecycle
106106
rpc DeleteDataset(DeleteDatasetRequest) returns (DeleteDatasetResponse) {
107107
option (status) = BETA;
108108
option (scope) = "";
109109
}
110110

111-
// CopyDataset is used to copy a dataset in the IR21 database.
112-
//
111+
// CopyDataset is used to copy a dataset in the IR21 database. <br>
112+
// <br>
113113
// NOTE: THIS METHOD IS CURRENTLY IN BETA RELEASE
114114
// See https://developer.cisco.com/docs/mobility-services/api-lifecycle
115115
rpc CopyDataset(CopyDatasetRequest) returns (CopyDatasetResponse) {
116116
option (status) = BETA;
117117
option (scope) = "";
118118
}
119119

120-
// SetCurrentDatasetForTenant is used to set the active dataset for a tenant in the IR21 database.
121-
//
120+
// SetCurrentDatasetForTenant is used to set the active dataset for a tenant in the IR21 database. <br>
121+
// <br>
122122
// NOTE: THIS METHOD IS CURRENTLY IN BETA RELEASE
123123
// See https://developer.cisco.com/docs/mobility-services/api-lifecycle
124124
rpc SetActiveDataset(SetActiveDatasetRequest) returns (SetActiveDatasetResponse) {
125125
option (status) = BETA;
126126
option (scope) = "";
127127
}
128128

129-
// GetActiveDatasets gets a list of pairs where each pair contains a dataset UUID and a tenant UUID.
130-
//
129+
// GetActiveDatasets gets a list of pairs where each pair contains a dataset UUID and a tenant UUID. <br>
130+
// <br>
131131
// NOTE: THIS METHOD IS CURRENTLY IN BETA RELEASE
132132
// See https://developer.cisco.com/docs/mobility-services/api-lifecycle
133133
rpc GetActiveDatasets(GetActiveDatasetsRequest) returns (GetActiveDatasetsResponse) {

0 commit comments

Comments
 (0)