All URIs are relative to http://localhost
Method | HTTP request | Description |
---|---|---|
CreateGlobalRule | Post /admin/rules | Create global rule |
CreateRoleMapping | Post /admin/roleMappings | Create a new role mapping |
DeleteAllGlobalRules | Delete /admin/rules | Delete all global rules |
DeleteGlobalRule | Delete /admin/rules/{rule} | Delete global rule |
DeleteRoleMapping | Delete /admin/roleMappings/{principalId} | Delete a role mapping |
ExportData | Get /admin/export | Export registry data |
GetConfigProperty | Get /admin/config/properties/{propertyName} | Get configuration property value |
GetGlobalRuleConfig | Get /admin/rules/{rule} | Get global rule configuration |
GetRoleMapping | Get /admin/roleMappings/{principalId} | Return a single role mapping |
ImportData | Post /admin/import | Import registry data |
ListArtifactTypes | Get /admin/artifactTypes | List artifact types |
ListConfigProperties | Get /admin/config/properties | List all configuration properties |
ListGlobalRules | Get /admin/rules | List global rules |
ListRoleMappings | Get /admin/roleMappings | List all role mappings |
ResetConfigProperty | Delete /admin/config/properties/{propertyName} | Reset a configuration property |
UpdateConfigProperty | Put /admin/config/properties/{propertyName} | Update a configuration property |
UpdateGlobalRuleConfig | Put /admin/rules/{rule} | Update global rule configuration |
UpdateRoleMapping | Put /admin/roleMappings/{principalId} | Update a role mapping |
CreateGlobalRule(ctx).Rule(rule).Execute()
Create global rule
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
rule := *openapiclient.NewRule("Config_example") // Rule |
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.AdminAPI.CreateGlobalRule(context.Background()).Rule(rule).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.CreateGlobalRule``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Other parameters are passed through a pointer to a apiCreateGlobalRuleRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
rule | Rule |
(empty response body)
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
CreateRoleMapping(ctx).RoleMapping(roleMapping).Execute()
Create a new role mapping
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
roleMapping := *openapiclient.NewRoleMapping("PrincipalId_example", openapiclient.RoleType("READ_ONLY")) // RoleMapping |
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.AdminAPI.CreateRoleMapping(context.Background()).RoleMapping(roleMapping).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.CreateRoleMapping``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Other parameters are passed through a pointer to a apiCreateRoleMappingRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
roleMapping | RoleMapping |
(empty response body)
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
DeleteAllGlobalRules(ctx).Execute()
Delete all global rules
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.AdminAPI.DeleteAllGlobalRules(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.DeleteAllGlobalRules``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
This endpoint does not need any parameter.
Other parameters are passed through a pointer to a apiDeleteAllGlobalRulesRequest struct via the builder pattern
(empty response body)
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
DeleteGlobalRule(ctx, rule).Execute()
Delete global rule
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
rule := openapiclient.RuleType("VALIDITY") // RuleType | The unique name/type of a rule.
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.AdminAPI.DeleteGlobalRule(context.Background(), rule).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.DeleteGlobalRule``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
rule | RuleType | The unique name/type of a rule. |
Other parameters are passed through a pointer to a apiDeleteGlobalRuleRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
(empty response body)
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
DeleteRoleMapping(ctx, principalId).Execute()
Delete a role mapping
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
principalId := "principalId_example" // string | Unique id of a principal (typically either a user or service account).
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.AdminAPI.DeleteRoleMapping(context.Background(), principalId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.DeleteRoleMapping``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
principalId | string | Unique id of a principal (typically either a user or service account). |
Other parameters are passed through a pointer to a apiDeleteRoleMappingRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
(empty response body)
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
*os.File ExportData(ctx).ForBrowser(forBrowser).Execute()
Export registry data
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
forBrowser := true // bool | Indicates if the operation is done for a browser. If true, the response will be a JSON payload with a property called `href`. This `href` will be a single-use, naked download link suitable for use by a web browser to download the content. (optional)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.AdminAPI.ExportData(context.Background()).ForBrowser(forBrowser).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.ExportData``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ExportData`: *os.File
fmt.Fprintf(os.Stdout, "Response from `AdminAPI.ExportData`: %v\n", resp)
}
Other parameters are passed through a pointer to a apiExportDataRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
forBrowser | bool | Indicates if the operation is done for a browser. If true, the response will be a JSON payload with a property called `href`. This `href` will be a single-use, naked download link suitable for use by a web browser to download the content. |
No authorization required
- Content-Type: Not defined
- Accept: application/zip, application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ConfigurationProperty GetConfigProperty(ctx, propertyName).Execute()
Get configuration property value
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
propertyName := "propertyName_example" // string | The name of a configuration property.
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.AdminAPI.GetConfigProperty(context.Background(), propertyName).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.GetConfigProperty``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetConfigProperty`: ConfigurationProperty
fmt.Fprintf(os.Stdout, "Response from `AdminAPI.GetConfigProperty`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
propertyName | string | The name of a configuration property. |
Other parameters are passed through a pointer to a apiGetConfigPropertyRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Rule GetGlobalRuleConfig(ctx, rule).Execute()
Get global rule configuration
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
rule := openapiclient.RuleType("VALIDITY") // RuleType | The unique name/type of a rule.
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.AdminAPI.GetGlobalRuleConfig(context.Background(), rule).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.GetGlobalRuleConfig``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetGlobalRuleConfig`: Rule
fmt.Fprintf(os.Stdout, "Response from `AdminAPI.GetGlobalRuleConfig`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
rule | RuleType | The unique name/type of a rule. |
Other parameters are passed through a pointer to a apiGetGlobalRuleConfigRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RoleMapping GetRoleMapping(ctx, principalId).Execute()
Return a single role mapping
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
principalId := "principalId_example" // string | Unique id of a principal (typically either a user or service account).
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.AdminAPI.GetRoleMapping(context.Background(), principalId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.GetRoleMapping``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetRoleMapping`: RoleMapping
fmt.Fprintf(os.Stdout, "Response from `AdminAPI.GetRoleMapping`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
principalId | string | Unique id of a principal (typically either a user or service account). |
Other parameters are passed through a pointer to a apiGetRoleMappingRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ImportData(ctx).Body(body).XRegistryPreserveGlobalId(xRegistryPreserveGlobalId).XRegistryPreserveContentId(xRegistryPreserveContentId).Execute()
Import registry data
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
body := os.NewFile(1234, "some_file") // *os.File | The ZIP file representing the previously exported registry data.
xRegistryPreserveGlobalId := true // bool | If this header is set to false, global ids of imported data will be ignored and replaced by next id in global id sequence. This allows to import any data even thought the global ids would cause a conflict. (optional)
xRegistryPreserveContentId := true // bool | If this header is set to false, content ids of imported data will be ignored and replaced by next id in content id sequence. The mapping between content and artifacts will be preserved. This allows to import any data even thought the content ids would cause a conflict. (optional)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.AdminAPI.ImportData(context.Background()).Body(body).XRegistryPreserveGlobalId(xRegistryPreserveGlobalId).XRegistryPreserveContentId(xRegistryPreserveContentId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.ImportData``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Other parameters are passed through a pointer to a apiImportDataRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
body | *os.File | The ZIP file representing the previously exported registry data. | |
xRegistryPreserveGlobalId | bool | If this header is set to false, global ids of imported data will be ignored and replaced by next id in global id sequence. This allows to import any data even thought the global ids would cause a conflict. | |
xRegistryPreserveContentId | bool | If this header is set to false, content ids of imported data will be ignored and replaced by next id in content id sequence. The mapping between content and artifacts will be preserved. This allows to import any data even thought the content ids would cause a conflict. |
(empty response body)
No authorization required
- Content-Type: application/zip
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[]ArtifactTypeInfo ListArtifactTypes(ctx).Execute()
List artifact types
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.AdminAPI.ListArtifactTypes(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.ListArtifactTypes``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ListArtifactTypes`: []ArtifactTypeInfo
fmt.Fprintf(os.Stdout, "Response from `AdminAPI.ListArtifactTypes`: %v\n", resp)
}
This endpoint does not need any parameter.
Other parameters are passed through a pointer to a apiListArtifactTypesRequest struct via the builder pattern
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[]ConfigurationProperty ListConfigProperties(ctx).Execute()
List all configuration properties
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.AdminAPI.ListConfigProperties(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.ListConfigProperties``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ListConfigProperties`: []ConfigurationProperty
fmt.Fprintf(os.Stdout, "Response from `AdminAPI.ListConfigProperties`: %v\n", resp)
}
This endpoint does not need any parameter.
Other parameters are passed through a pointer to a apiListConfigPropertiesRequest struct via the builder pattern
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[]RuleType ListGlobalRules(ctx).Execute()
List global rules
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.AdminAPI.ListGlobalRules(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.ListGlobalRules``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ListGlobalRules`: []RuleType
fmt.Fprintf(os.Stdout, "Response from `AdminAPI.ListGlobalRules`: %v\n", resp)
}
This endpoint does not need any parameter.
Other parameters are passed through a pointer to a apiListGlobalRulesRequest struct via the builder pattern
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[]RoleMapping ListRoleMappings(ctx).Execute()
List all role mappings
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.AdminAPI.ListRoleMappings(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.ListRoleMappings``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ListRoleMappings`: []RoleMapping
fmt.Fprintf(os.Stdout, "Response from `AdminAPI.ListRoleMappings`: %v\n", resp)
}
This endpoint does not need any parameter.
Other parameters are passed through a pointer to a apiListRoleMappingsRequest struct via the builder pattern
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ResetConfigProperty(ctx, propertyName).Execute()
Reset a configuration property
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
propertyName := "propertyName_example" // string | The name of a configuration property.
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.AdminAPI.ResetConfigProperty(context.Background(), propertyName).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.ResetConfigProperty``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
propertyName | string | The name of a configuration property. |
Other parameters are passed through a pointer to a apiResetConfigPropertyRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
(empty response body)
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
UpdateConfigProperty(ctx, propertyName).UpdateConfigurationProperty(updateConfigurationProperty).Execute()
Update a configuration property
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
propertyName := "propertyName_example" // string | The name of a configuration property.
updateConfigurationProperty := *openapiclient.NewUpdateConfigurationProperty("Value_example") // UpdateConfigurationProperty |
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.AdminAPI.UpdateConfigProperty(context.Background(), propertyName).UpdateConfigurationProperty(updateConfigurationProperty).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.UpdateConfigProperty``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
propertyName | string | The name of a configuration property. |
Other parameters are passed through a pointer to a apiUpdateConfigPropertyRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
updateConfigurationProperty | UpdateConfigurationProperty | |
(empty response body)
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Rule UpdateGlobalRuleConfig(ctx, rule).Rule2(rule2).Execute()
Update global rule configuration
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
rule := openapiclient.RuleType("VALIDITY") // RuleType | The unique name/type of a rule.
rule2 := *openapiclient.NewRule("Config_example") // Rule |
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.AdminAPI.UpdateGlobalRuleConfig(context.Background(), rule).Rule2(rule2).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.UpdateGlobalRuleConfig``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `UpdateGlobalRuleConfig`: Rule
fmt.Fprintf(os.Stdout, "Response from `AdminAPI.UpdateGlobalRuleConfig`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
rule | RuleType | The unique name/type of a rule. |
Other parameters are passed through a pointer to a apiUpdateGlobalRuleConfigRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
rule2 | Rule | |
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
UpdateRoleMapping(ctx, principalId).UpdateRole(updateRole).Execute()
Update a role mapping
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/Apicurio/apicurio-registry-client-sdk-go"
)
func main() {
principalId := "principalId_example" // string | Unique id of a principal (typically either a user or service account).
updateRole := *openapiclient.NewUpdateRole(openapiclient.RoleType("READ_ONLY")) // UpdateRole |
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.AdminAPI.UpdateRoleMapping(context.Background(), principalId).UpdateRole(updateRole).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `AdminAPI.UpdateRoleMapping``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
principalId | string | Unique id of a principal (typically either a user or service account). |
Other parameters are passed through a pointer to a apiUpdateRoleMappingRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
updateRole | UpdateRole | |
(empty response body)
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]