Skip to main content

db_system_shapes

Creates, updates, deletes, gets or lists a db_system_shapes resource.

Overview

Namedb_system_shapes
TypeResource
Idazure_isv.oracle.db_system_shapes

Fields

The following fields are returned by SELECT queries:

Azure operation completed successfully.

NameDatatypeDescription
propertiesobjectThe resource-specific properties for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, location, dbsystemshapenameGet a DbSystemShape
list_by_locationselectsubscriptionId, locationList DbSystemShape resources by Location

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
dbsystemshapenamestringDbSystemShape name
locationstringThe name of the Azure region.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Get a DbSystemShape

SELECT
properties
FROM azure_isv.oracle.db_system_shapes
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND dbsystemshapename = '{{ dbsystemshapename }}' -- required
;