ServiceConfigurations interface
Interface representing a ServiceConfigurations.
Methods
create |
Create or update a service in serviceConfiguration for the endpoint resource. |
delete(string, string, string, Service |
Deletes the service details to the target resource. |
get(string, string, string, Service |
Gets the details about the service to the resource. |
list |
API to enumerate registered services in service configurations under a Endpoint Resource |
update(string, string, string, Service |
Update the service details in the service configurations of the target resource. |
Method Details
createOrupdate(string, string, string, ServiceConfigurationResource, ServiceConfigurationsCreateOrupdateOptionalParams)
Create or update a service in serviceConfiguration for the endpoint resource.
function createOrupdate(resourceUri: string, endpointName: string, serviceConfigurationName: string, serviceConfigurationResource: ServiceConfigurationResource, options?: ServiceConfigurationsCreateOrupdateOptionalParams): Promise<ServiceConfigurationResource>
Parameters
- resourceUri
-
string
The fully qualified Azure Resource manager identifier of the resource to be connected.
- endpointName
-
string
The endpoint name.
- serviceConfigurationName
-
string
The service name.
- serviceConfigurationResource
- ServiceConfigurationResource
Service details
The options parameters.
Returns
Promise<ServiceConfigurationResource>
delete(string, string, string, ServiceConfigurationsDeleteOptionalParams)
Deletes the service details to the target resource.
function delete(resourceUri: string, endpointName: string, serviceConfigurationName: string, options?: ServiceConfigurationsDeleteOptionalParams): Promise<void>
Parameters
- resourceUri
-
string
The fully qualified Azure Resource manager identifier of the resource to be connected.
- endpointName
-
string
The endpoint name.
- serviceConfigurationName
-
string
The service name.
The options parameters.
Returns
Promise<void>
get(string, string, string, ServiceConfigurationsGetOptionalParams)
Gets the details about the service to the resource.
function get(resourceUri: string, endpointName: string, serviceConfigurationName: string, options?: ServiceConfigurationsGetOptionalParams): Promise<ServiceConfigurationResource>
Parameters
- resourceUri
-
string
The fully qualified Azure Resource manager identifier of the resource to be connected.
- endpointName
-
string
The endpoint name.
- serviceConfigurationName
-
string
The service name.
The options parameters.
Returns
Promise<ServiceConfigurationResource>
listByEndpointResource(string, string, ServiceConfigurationsListByEndpointResourceOptionalParams)
API to enumerate registered services in service configurations under a Endpoint Resource
function listByEndpointResource(resourceUri: string, endpointName: string, options?: ServiceConfigurationsListByEndpointResourceOptionalParams): PagedAsyncIterableIterator<ServiceConfigurationResource, ServiceConfigurationResource[], PageSettings>
Parameters
- resourceUri
-
string
The fully qualified Azure Resource manager identifier of the resource to be connected.
- endpointName
-
string
The endpoint name.
The options parameters.
Returns
update(string, string, string, ServiceConfigurationResourcePatch, ServiceConfigurationsUpdateOptionalParams)
Update the service details in the service configurations of the target resource.
function update(resourceUri: string, endpointName: string, serviceConfigurationName: string, serviceConfigurationResource: ServiceConfigurationResourcePatch, options?: ServiceConfigurationsUpdateOptionalParams): Promise<ServiceConfigurationResource>
Parameters
- resourceUri
-
string
The fully qualified Azure Resource manager identifier of the resource to be connected.
- endpointName
-
string
The endpoint name.
- serviceConfigurationName
-
string
The service name.
- serviceConfigurationResource
- ServiceConfigurationResourcePatch
Service details
The options parameters.
Returns
Promise<ServiceConfigurationResource>