Interface ServiceCatalog
-
- All Superinterfaces:
AutoCloseable
- All Known Implementing Classes:
ServiceCatalogClient
@Generated(value="OracleSDKGenerator", comments="API Version: 20210527") public interface ServiceCatalog extends AutoCloseable
Manage solutions in Oracle Cloud Infrastructure Service Catalog.This service client uses CircuitBreakerUtils.DEFAULT_CIRCUIT_BREAKER for all the operations by default if no circuit breaker configuration is defined by the user.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BulkReplaceServiceCatalogAssociationsResponse
bulkReplaceServiceCatalogAssociations(BulkReplaceServiceCatalogAssociationsRequest request)
Replace all associations of a given service catalog in one bulk transaction.ChangePrivateApplicationCompartmentResponse
changePrivateApplicationCompartment(ChangePrivateApplicationCompartmentRequest request)
Moves the specified private application from one compartment to another.ChangeServiceCatalogCompartmentResponse
changeServiceCatalogCompartment(ChangeServiceCatalogCompartmentRequest request)
Moves the specified service catalog from one compartment to another.CreatePrivateApplicationResponse
createPrivateApplication(CreatePrivateApplicationRequest request)
Creates a private application along with a single package to be hosted.CreateServiceCatalogResponse
createServiceCatalog(CreateServiceCatalogRequest request)
Creates a brand new service catalog in a given compartment.CreateServiceCatalogAssociationResponse
createServiceCatalogAssociation(CreateServiceCatalogAssociationRequest request)
Creates an association between service catalog and a resource.DeletePrivateApplicationResponse
deletePrivateApplication(DeletePrivateApplicationRequest request)
Deletes an existing private application.DeleteServiceCatalogResponse
deleteServiceCatalog(DeleteServiceCatalogRequest request)
Deletes the specified service catalog from the compartment.DeleteServiceCatalogAssociationResponse
deleteServiceCatalogAssociation(DeleteServiceCatalogAssociationRequest request)
Removes an association between service catalog and a resource.String
getEndpoint()
Gets the set endpoint for REST call (ex, https://www.example.com)ServiceCatalogPaginators
getPaginators()
Gets the pre-configured paginators available for list operations in this service which may return multiple pages of data.GetPrivateApplicationResponse
getPrivateApplication(GetPrivateApplicationRequest request)
Gets the details of the specified private application.GetPrivateApplicationActionDownloadLogoResponse
getPrivateApplicationActionDownloadLogo(GetPrivateApplicationActionDownloadLogoRequest request)
Downloads the binary payload of the logo image of the private application.GetPrivateApplicationPackageResponse
getPrivateApplicationPackage(GetPrivateApplicationPackageRequest request)
Gets the details of a specific package within a given private application.GetPrivateApplicationPackageActionDownloadConfigResponse
getPrivateApplicationPackageActionDownloadConfig(GetPrivateApplicationPackageActionDownloadConfigRequest request)
Downloads the configuration that was used to create the private application package.GetServiceCatalogResponse
getServiceCatalog(GetServiceCatalogRequest request)
Gets detailed information about the service catalog including name, compartmentIdGetServiceCatalogAssociationResponse
getServiceCatalogAssociation(GetServiceCatalogAssociationRequest request)
Gets detailed information about specific service catalog association.ServiceCatalogWaiters
getWaiters()
Gets the pre-configured waiters available for resources for this service.GetWorkRequestResponse
getWorkRequest(GetWorkRequestRequest request)
Gets the status of the work request with the given ID.ListApplicationsResponse
listApplications(ListApplicationsRequest request)
Lists all the applications in a service catalog or a tenancy.ListPrivateApplicationPackagesResponse
listPrivateApplicationPackages(ListPrivateApplicationPackagesRequest request)
Lists the packages in the specified private application.ListPrivateApplicationsResponse
listPrivateApplications(ListPrivateApplicationsRequest request)
Lists all the private applications in a given compartment.ListServiceCatalogAssociationsResponse
listServiceCatalogAssociations(ListServiceCatalogAssociationsRequest request)
Lists all the resource associations for a specific service catalog.ListServiceCatalogsResponse
listServiceCatalogs(ListServiceCatalogsRequest request)
Lists all the service catalogs in the given compartment.ListWorkRequestErrorsResponse
listWorkRequestErrors(ListWorkRequestErrorsRequest request)
Return a (paginated) list of errors for a given work request.ListWorkRequestLogsResponse
listWorkRequestLogs(ListWorkRequestLogsRequest request)
Return a (paginated) list of logs for a given work request.ListWorkRequestsResponse
listWorkRequests(ListWorkRequestsRequest request)
Lists the work requests in a compartment.void
refreshClient()
Rebuilds the client from scratch.void
setEndpoint(String endpoint)
Sets the endpoint to call (ex, https://www.example.com).void
setRegion(Region region)
Sets the region to call (ex, Region.US_PHOENIX_1).void
setRegion(String regionId)
Sets the region to call (ex, ‘us-phoenix-1’).UpdatePrivateApplicationResponse
updatePrivateApplication(UpdatePrivateApplicationRequest request)
Updates the details of an existing private application.UpdateServiceCatalogResponse
updateServiceCatalog(UpdateServiceCatalogRequest request)
Updates the details of a previously created service catalog.void
useRealmSpecificEndpointTemplate(boolean realmSpecificEndpointTemplateEnabled)
Determines whether realm specific endpoint should be used or not.-
Methods inherited from interface java.lang.AutoCloseable
close
-
-
-
-
Method Detail
-
refreshClient
void refreshClient()
Rebuilds the client from scratch.Useful to refresh certificates.
-
setEndpoint
void setEndpoint(String endpoint)
Sets the endpoint to call (ex, https://www.example.com).- Parameters:
endpoint
- The endpoint of the service.
-
getEndpoint
String getEndpoint()
Gets the set endpoint for REST call (ex, https://www.example.com)
-
setRegion
void setRegion(Region region)
Sets the region to call (ex, Region.US_PHOENIX_1).Note, this will call
setEndpoint
after resolving the endpoint. If the service is not available in this Region, however, an IllegalArgumentException will be raised.- Parameters:
region
- The region of the service.
-
setRegion
void setRegion(String regionId)
Sets the region to call (ex, ‘us-phoenix-1’).Note, this will first try to map the region ID to a known Region and call
setRegion
.If no known Region could be determined, it will create an endpoint based on the default endpoint format (
Region.formatDefaultRegionEndpoint(Service, String)
and then callsetEndpoint
.- Parameters:
regionId
- The public region ID.
-
useRealmSpecificEndpointTemplate
void useRealmSpecificEndpointTemplate(boolean realmSpecificEndpointTemplateEnabled)
Determines whether realm specific endpoint should be used or not.Set realmSpecificEndpointTemplateEnabled to “true” if the user wants to enable use of realm specific endpoint template, otherwise set it to “false”
- Parameters:
realmSpecificEndpointTemplateEnabled
- flag to enable the use of realm specific endpoint template
-
bulkReplaceServiceCatalogAssociations
BulkReplaceServiceCatalogAssociationsResponse bulkReplaceServiceCatalogAssociations(BulkReplaceServiceCatalogAssociationsRequest request)
Replace all associations of a given service catalog in one bulk transaction.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/BulkReplaceServiceCatalogAssociationsExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use BulkReplaceServiceCatalogAssociations API.
-
changePrivateApplicationCompartment
ChangePrivateApplicationCompartmentResponse changePrivateApplicationCompartment(ChangePrivateApplicationCompartmentRequest request)
Moves the specified private application from one compartment to another.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/ChangePrivateApplicationCompartmentExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ChangePrivateApplicationCompartment API.
-
changeServiceCatalogCompartment
ChangeServiceCatalogCompartmentResponse changeServiceCatalogCompartment(ChangeServiceCatalogCompartmentRequest request)
Moves the specified service catalog from one compartment to another.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/ChangeServiceCatalogCompartmentExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ChangeServiceCatalogCompartment API.
-
createPrivateApplication
CreatePrivateApplicationResponse createPrivateApplication(CreatePrivateApplicationRequest request)
Creates a private application along with a single package to be hosted.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/CreatePrivateApplicationExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use CreatePrivateApplication API.
-
createServiceCatalog
CreateServiceCatalogResponse createServiceCatalog(CreateServiceCatalogRequest request)
Creates a brand new service catalog in a given compartment.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/CreateServiceCatalogExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use CreateServiceCatalog API.
-
createServiceCatalogAssociation
CreateServiceCatalogAssociationResponse createServiceCatalogAssociation(CreateServiceCatalogAssociationRequest request)
Creates an association between service catalog and a resource.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/CreateServiceCatalogAssociationExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use CreateServiceCatalogAssociation API.
-
deletePrivateApplication
DeletePrivateApplicationResponse deletePrivateApplication(DeletePrivateApplicationRequest request)
Deletes an existing private application.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/DeletePrivateApplicationExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use DeletePrivateApplication API.
-
deleteServiceCatalog
DeleteServiceCatalogResponse deleteServiceCatalog(DeleteServiceCatalogRequest request)
Deletes the specified service catalog from the compartment.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/DeleteServiceCatalogExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use DeleteServiceCatalog API.
-
deleteServiceCatalogAssociation
DeleteServiceCatalogAssociationResponse deleteServiceCatalogAssociation(DeleteServiceCatalogAssociationRequest request)
Removes an association between service catalog and a resource.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/DeleteServiceCatalogAssociationExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use DeleteServiceCatalogAssociation API.
-
getPrivateApplication
GetPrivateApplicationResponse getPrivateApplication(GetPrivateApplicationRequest request)
Gets the details of the specified private application.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/GetPrivateApplicationExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use GetPrivateApplication API.
-
getPrivateApplicationActionDownloadLogo
GetPrivateApplicationActionDownloadLogoResponse getPrivateApplicationActionDownloadLogo(GetPrivateApplicationActionDownloadLogoRequest request)
Downloads the binary payload of the logo image of the private application.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/GetPrivateApplicationActionDownloadLogoExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use GetPrivateApplicationActionDownloadLogo API.
-
getPrivateApplicationPackage
GetPrivateApplicationPackageResponse getPrivateApplicationPackage(GetPrivateApplicationPackageRequest request)
Gets the details of a specific package within a given private application.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/GetPrivateApplicationPackageExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use GetPrivateApplicationPackage API.
-
getPrivateApplicationPackageActionDownloadConfig
GetPrivateApplicationPackageActionDownloadConfigResponse getPrivateApplicationPackageActionDownloadConfig(GetPrivateApplicationPackageActionDownloadConfigRequest request)
Downloads the configuration that was used to create the private application package.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/GetPrivateApplicationPackageActionDownloadConfigExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use GetPrivateApplicationPackageActionDownloadConfig API.
-
getServiceCatalog
GetServiceCatalogResponse getServiceCatalog(GetServiceCatalogRequest request)
Gets detailed information about the service catalog including name, compartmentId- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/GetServiceCatalogExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use GetServiceCatalog API.
-
getServiceCatalogAssociation
GetServiceCatalogAssociationResponse getServiceCatalogAssociation(GetServiceCatalogAssociationRequest request)
Gets detailed information about specific service catalog association.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/GetServiceCatalogAssociationExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use GetServiceCatalogAssociation API.
-
getWorkRequest
GetWorkRequestResponse getWorkRequest(GetWorkRequestRequest request)
Gets the status of the work request with the given ID.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/GetWorkRequestExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use GetWorkRequest API.
-
listApplications
ListApplicationsResponse listApplications(ListApplicationsRequest request)
Lists all the applications in a service catalog or a tenancy.If no parameter is specified, all catalogs from all compartments in the tenancy will be scanned for any type of content.
- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/ListApplicationsExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListApplications API.
-
listPrivateApplicationPackages
ListPrivateApplicationPackagesResponse listPrivateApplicationPackages(ListPrivateApplicationPackagesRequest request)
Lists the packages in the specified private application.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/ListPrivateApplicationPackagesExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListPrivateApplicationPackages API.
-
listPrivateApplications
ListPrivateApplicationsResponse listPrivateApplications(ListPrivateApplicationsRequest request)
Lists all the private applications in a given compartment.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/ListPrivateApplicationsExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListPrivateApplications API.
-
listServiceCatalogAssociations
ListServiceCatalogAssociationsResponse listServiceCatalogAssociations(ListServiceCatalogAssociationsRequest request)
Lists all the resource associations for a specific service catalog.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/ListServiceCatalogAssociationsExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListServiceCatalogAssociations API.
-
listServiceCatalogs
ListServiceCatalogsResponse listServiceCatalogs(ListServiceCatalogsRequest request)
Lists all the service catalogs in the given compartment.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/ListServiceCatalogsExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListServiceCatalogs API.
-
listWorkRequestErrors
ListWorkRequestErrorsResponse listWorkRequestErrors(ListWorkRequestErrorsRequest request)
Return a (paginated) list of errors for a given work request.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/ListWorkRequestErrorsExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListWorkRequestErrors API.
-
listWorkRequestLogs
ListWorkRequestLogsResponse listWorkRequestLogs(ListWorkRequestLogsRequest request)
Return a (paginated) list of logs for a given work request.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/ListWorkRequestLogsExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListWorkRequestLogs API.
-
listWorkRequests
ListWorkRequestsResponse listWorkRequests(ListWorkRequestsRequest request)
Lists the work requests in a compartment.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/ListWorkRequestsExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListWorkRequests API.
-
updatePrivateApplication
UpdatePrivateApplicationResponse updatePrivateApplication(UpdatePrivateApplicationRequest request)
Updates the details of an existing private application.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/UpdatePrivateApplicationExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use UpdatePrivateApplication API.
-
updateServiceCatalog
UpdateServiceCatalogResponse updateServiceCatalog(UpdateServiceCatalogRequest request)
Updates the details of a previously created service catalog.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/servicecatalog/UpdateServiceCatalogExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use UpdateServiceCatalog API.
-
getWaiters
ServiceCatalogWaiters getWaiters()
Gets the pre-configured waiters available for resources for this service.- Returns:
- The service waiters.
-
getPaginators
ServiceCatalogPaginators getPaginators()
Gets the pre-configured paginators available for list operations in this service which may return multiple pages of data.These paginators provide an
Iterable
interface so that service responses, or resources/records, can be iterated through without having to manually deal with pagination and page tokens.- Returns:
- The service paginators.
-
-