Update shared components
Update shared-component configuration data.
HTTP request
PUT /api/sn_cdm/applications/shared_components
Path parameters
None.
Query parameters
| Name | Description |
|---|---|
appName | Optional — set via the verb's QueryParameters type. |
sharedComponentName | Optional — set via the verb's QueryParameters type. |
name | Optional — set via the verb's QueryParameters type. |
Request body
Supply a cdmapplicationsapi.SharedComponentUpdateRequest.
Response
SharedComponentUpdateResponse.
Example
// Build the request body
response, err := client.Cdm().Applications().SharedComponents().Put(ctx, nil)
if err != nil {
log.Fatal(err)
}