@pulumi/databricks 1.55.0-alpha.1731130534 → 1.55.0-alpha.1731342436
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/getFunctions.d.ts +121 -0
- package/getFunctions.js +80 -0
- package/getFunctions.js.map +1 -0
- package/getVolumes.d.ts +8 -0
- package/getVolumes.js +8 -0
- package/getVolumes.js.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +7 -4
- package/index.js.map +1 -1
- package/library.d.ts +7 -0
- package/library.js +6 -0
- package/library.js.map +1 -1
- package/package.json +2 -2
- package/qualityMonitor.d.ts +16 -0
- package/qualityMonitor.js +6 -0
- package/qualityMonitor.js.map +1 -1
- package/types/input.d.ts +494 -0
- package/types/output.d.ts +247 -0
package/qualityMonitor.d.ts
CHANGED
|
@@ -6,6 +6,10 @@ import * as outputs from "./types/output";
|
|
|
6
6
|
*
|
|
7
7
|
* A `databricks.QualityMonitor` is attached to a databricks.SqlTable and can be of type timeseries, snapshot or inference.
|
|
8
8
|
*
|
|
9
|
+
* ## Plugin Framework Migration
|
|
10
|
+
*
|
|
11
|
+
* The quality monitor resource has been migrated from sdkv2 to plugin framework。 If you encounter any problem with this resource and suspect it is due to the migration, you can fallback to sdkv2 by setting the environment variable in the following way `export USE_SDK_V2_RESOURCES="databricks.QualityMonitor"`.
|
|
12
|
+
*
|
|
9
13
|
* ## Example Usage
|
|
10
14
|
*
|
|
11
15
|
* ```typescript
|
|
@@ -135,6 +139,10 @@ export declare class QualityMonitor extends pulumi.CustomResource {
|
|
|
135
139
|
*/
|
|
136
140
|
readonly inferenceLog: pulumi.Output<outputs.QualityMonitorInferenceLog | undefined>;
|
|
137
141
|
readonly latestMonitorFailureMsg: pulumi.Output<string | undefined>;
|
|
142
|
+
/**
|
|
143
|
+
* ID of this monitor is the same as the full table name of the format `{catalog}.{schema_name}.{table_name}`
|
|
144
|
+
*/
|
|
145
|
+
readonly monitorId: pulumi.Output<string>;
|
|
138
146
|
/**
|
|
139
147
|
* The version of the monitor config (e.g. 1,2,3). If negative, the monitor may be corrupted
|
|
140
148
|
*/
|
|
@@ -226,6 +234,10 @@ export interface QualityMonitorState {
|
|
|
226
234
|
*/
|
|
227
235
|
inferenceLog?: pulumi.Input<inputs.QualityMonitorInferenceLog>;
|
|
228
236
|
latestMonitorFailureMsg?: pulumi.Input<string>;
|
|
237
|
+
/**
|
|
238
|
+
* ID of this monitor is the same as the full table name of the format `{catalog}.{schema_name}.{table_name}`
|
|
239
|
+
*/
|
|
240
|
+
monitorId?: pulumi.Input<string>;
|
|
229
241
|
/**
|
|
230
242
|
* The version of the monitor config (e.g. 1,2,3). If negative, the monitor may be corrupted
|
|
231
243
|
*/
|
|
@@ -301,6 +313,10 @@ export interface QualityMonitorArgs {
|
|
|
301
313
|
*/
|
|
302
314
|
inferenceLog?: pulumi.Input<inputs.QualityMonitorInferenceLog>;
|
|
303
315
|
latestMonitorFailureMsg?: pulumi.Input<string>;
|
|
316
|
+
/**
|
|
317
|
+
* ID of this monitor is the same as the full table name of the format `{catalog}.{schema_name}.{table_name}`
|
|
318
|
+
*/
|
|
319
|
+
monitorId?: pulumi.Input<string>;
|
|
304
320
|
/**
|
|
305
321
|
* The notification settings for the monitor. The following optional blocks are supported, each consisting of the single string array field with name `emailAddresses` containing a list of emails to notify:
|
|
306
322
|
*/
|
package/qualityMonitor.js
CHANGED
|
@@ -10,6 +10,10 @@ const utilities = require("./utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* A `databricks.QualityMonitor` is attached to a databricks.SqlTable and can be of type timeseries, snapshot or inference.
|
|
12
12
|
*
|
|
13
|
+
* ## Plugin Framework Migration
|
|
14
|
+
*
|
|
15
|
+
* The quality monitor resource has been migrated from sdkv2 to plugin framework。 If you encounter any problem with this resource and suspect it is due to the migration, you can fallback to sdkv2 by setting the environment variable in the following way `export USE_SDK_V2_RESOURCES="databricks.QualityMonitor"`.
|
|
16
|
+
*
|
|
13
17
|
* ## Example Usage
|
|
14
18
|
*
|
|
15
19
|
* ```typescript
|
|
@@ -129,6 +133,7 @@ class QualityMonitor extends pulumi.CustomResource {
|
|
|
129
133
|
resourceInputs["driftMetricsTableName"] = state ? state.driftMetricsTableName : undefined;
|
|
130
134
|
resourceInputs["inferenceLog"] = state ? state.inferenceLog : undefined;
|
|
131
135
|
resourceInputs["latestMonitorFailureMsg"] = state ? state.latestMonitorFailureMsg : undefined;
|
|
136
|
+
resourceInputs["monitorId"] = state ? state.monitorId : undefined;
|
|
132
137
|
resourceInputs["monitorVersion"] = state ? state.monitorVersion : undefined;
|
|
133
138
|
resourceInputs["notifications"] = state ? state.notifications : undefined;
|
|
134
139
|
resourceInputs["outputSchemaName"] = state ? state.outputSchemaName : undefined;
|
|
@@ -159,6 +164,7 @@ class QualityMonitor extends pulumi.CustomResource {
|
|
|
159
164
|
resourceInputs["dataClassificationConfig"] = args ? args.dataClassificationConfig : undefined;
|
|
160
165
|
resourceInputs["inferenceLog"] = args ? args.inferenceLog : undefined;
|
|
161
166
|
resourceInputs["latestMonitorFailureMsg"] = args ? args.latestMonitorFailureMsg : undefined;
|
|
167
|
+
resourceInputs["monitorId"] = args ? args.monitorId : undefined;
|
|
162
168
|
resourceInputs["notifications"] = args ? args.notifications : undefined;
|
|
163
169
|
resourceInputs["outputSchemaName"] = args ? args.outputSchemaName : undefined;
|
|
164
170
|
resourceInputs["schedule"] = args ? args.schedule : undefined;
|
package/qualityMonitor.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"qualityMonitor.js","sourceRoot":"","sources":["../qualityMonitor.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"qualityMonitor.js","sourceRoot":"","sources":["../qualityMonitor.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -2066,6 +2066,500 @@ export interface GetExternalLocationExternalLocationInfoEncryptionDetailsSseEncr
|
|
|
2066
2066
|
algorithm?: pulumi.Input<string>;
|
|
2067
2067
|
awsKmsKeyArn?: pulumi.Input<string>;
|
|
2068
2068
|
}
|
|
2069
|
+
export interface GetFunctionsFunction {
|
|
2070
|
+
/**
|
|
2071
|
+
* Indicates whether the principal is limited to retrieving metadata for the associated object through the `BROWSE` privilege when `includeBrowse` is enabled in the request.
|
|
2072
|
+
*/
|
|
2073
|
+
browseOnly?: boolean;
|
|
2074
|
+
/**
|
|
2075
|
+
* Name of databricks_catalog.
|
|
2076
|
+
*/
|
|
2077
|
+
catalogName?: string;
|
|
2078
|
+
/**
|
|
2079
|
+
* User-provided free-form text description.
|
|
2080
|
+
*/
|
|
2081
|
+
comment?: string;
|
|
2082
|
+
/**
|
|
2083
|
+
* Time at which this function was created, in epoch milliseconds.
|
|
2084
|
+
*/
|
|
2085
|
+
createdAt?: number;
|
|
2086
|
+
/**
|
|
2087
|
+
* Username of function creator.
|
|
2088
|
+
*/
|
|
2089
|
+
createdBy?: string;
|
|
2090
|
+
/**
|
|
2091
|
+
* Scalar function return data type.
|
|
2092
|
+
*/
|
|
2093
|
+
dataType?: string;
|
|
2094
|
+
/**
|
|
2095
|
+
* External function language.
|
|
2096
|
+
*/
|
|
2097
|
+
externalLanguage?: string;
|
|
2098
|
+
/**
|
|
2099
|
+
* External function name.
|
|
2100
|
+
*/
|
|
2101
|
+
externalName?: string;
|
|
2102
|
+
/**
|
|
2103
|
+
* Pretty printed function data type.
|
|
2104
|
+
*/
|
|
2105
|
+
fullDataType?: string;
|
|
2106
|
+
/**
|
|
2107
|
+
* Full name of function, in form of catalog_name.schema_name.function__name
|
|
2108
|
+
*/
|
|
2109
|
+
fullName?: string;
|
|
2110
|
+
/**
|
|
2111
|
+
* Id of Function, relative to parent schema.
|
|
2112
|
+
*/
|
|
2113
|
+
functionId?: string;
|
|
2114
|
+
/**
|
|
2115
|
+
* object describing input parameters. Consists of the single attribute:
|
|
2116
|
+
*/
|
|
2117
|
+
inputParams?: inputs.GetFunctionsFunctionInputParams;
|
|
2118
|
+
/**
|
|
2119
|
+
* Boolean flag specifying whether the function is deterministic.
|
|
2120
|
+
*/
|
|
2121
|
+
isDeterministic?: boolean;
|
|
2122
|
+
/**
|
|
2123
|
+
* Boolean flag whether function null call.
|
|
2124
|
+
*/
|
|
2125
|
+
isNullCall?: boolean;
|
|
2126
|
+
/**
|
|
2127
|
+
* Unique identifier of parent metastore.
|
|
2128
|
+
*/
|
|
2129
|
+
metastoreId?: string;
|
|
2130
|
+
/**
|
|
2131
|
+
* Name of parameter.
|
|
2132
|
+
*/
|
|
2133
|
+
name?: string;
|
|
2134
|
+
/**
|
|
2135
|
+
* Username of current owner of function.
|
|
2136
|
+
*/
|
|
2137
|
+
owner?: string;
|
|
2138
|
+
/**
|
|
2139
|
+
* Function parameter style. `S` is the value for SQL.
|
|
2140
|
+
*/
|
|
2141
|
+
parameterStyle?: string;
|
|
2142
|
+
/**
|
|
2143
|
+
* JSON-serialized key-value pair map, encoded (escaped) as a string.
|
|
2144
|
+
*/
|
|
2145
|
+
properties?: string;
|
|
2146
|
+
/**
|
|
2147
|
+
* Table function return parameters. See `inputParams` for description.
|
|
2148
|
+
*/
|
|
2149
|
+
returnParams?: inputs.GetFunctionsFunctionReturnParams;
|
|
2150
|
+
/**
|
|
2151
|
+
* Function language (`SQL` or `EXTERNAL`). When `EXTERNAL` is used, the language of the routine function should be specified in the `externalLanguage` field, and the `returnParams` of the function cannot be used (as `TABLE` return type is not supported), and the `sqlDataAccess` field must be `NO_SQL`.
|
|
2152
|
+
*/
|
|
2153
|
+
routineBody?: string;
|
|
2154
|
+
/**
|
|
2155
|
+
* Function body.
|
|
2156
|
+
*/
|
|
2157
|
+
routineDefinition?: string;
|
|
2158
|
+
/**
|
|
2159
|
+
* Function dependencies.
|
|
2160
|
+
*/
|
|
2161
|
+
routineDependencies?: inputs.GetFunctionsFunctionRoutineDependencies;
|
|
2162
|
+
/**
|
|
2163
|
+
* Name of databricks_schema.
|
|
2164
|
+
*/
|
|
2165
|
+
schemaName?: string;
|
|
2166
|
+
/**
|
|
2167
|
+
* Function security type. (Enum: `DEFINER`).
|
|
2168
|
+
*/
|
|
2169
|
+
securityType?: string;
|
|
2170
|
+
/**
|
|
2171
|
+
* Specific name of the function; Reserved for future use.
|
|
2172
|
+
*/
|
|
2173
|
+
specificName?: string;
|
|
2174
|
+
/**
|
|
2175
|
+
* Function SQL data access (`CONTAINS_SQL`, `READS_SQL_DATA`, `NO_SQL`).
|
|
2176
|
+
*/
|
|
2177
|
+
sqlDataAccess?: string;
|
|
2178
|
+
/**
|
|
2179
|
+
* List of schemes whose objects can be referenced without qualification.
|
|
2180
|
+
*/
|
|
2181
|
+
sqlPath?: string;
|
|
2182
|
+
/**
|
|
2183
|
+
* Time at which this function was created, in epoch milliseconds.
|
|
2184
|
+
*/
|
|
2185
|
+
updatedAt?: number;
|
|
2186
|
+
/**
|
|
2187
|
+
* Username of user who last modified function.
|
|
2188
|
+
*/
|
|
2189
|
+
updatedBy?: string;
|
|
2190
|
+
}
|
|
2191
|
+
export interface GetFunctionsFunctionArgs {
|
|
2192
|
+
/**
|
|
2193
|
+
* Indicates whether the principal is limited to retrieving metadata for the associated object through the `BROWSE` privilege when `includeBrowse` is enabled in the request.
|
|
2194
|
+
*/
|
|
2195
|
+
browseOnly?: pulumi.Input<boolean>;
|
|
2196
|
+
/**
|
|
2197
|
+
* Name of databricks_catalog.
|
|
2198
|
+
*/
|
|
2199
|
+
catalogName?: pulumi.Input<string>;
|
|
2200
|
+
/**
|
|
2201
|
+
* User-provided free-form text description.
|
|
2202
|
+
*/
|
|
2203
|
+
comment?: pulumi.Input<string>;
|
|
2204
|
+
/**
|
|
2205
|
+
* Time at which this function was created, in epoch milliseconds.
|
|
2206
|
+
*/
|
|
2207
|
+
createdAt?: pulumi.Input<number>;
|
|
2208
|
+
/**
|
|
2209
|
+
* Username of function creator.
|
|
2210
|
+
*/
|
|
2211
|
+
createdBy?: pulumi.Input<string>;
|
|
2212
|
+
/**
|
|
2213
|
+
* Scalar function return data type.
|
|
2214
|
+
*/
|
|
2215
|
+
dataType?: pulumi.Input<string>;
|
|
2216
|
+
/**
|
|
2217
|
+
* External function language.
|
|
2218
|
+
*/
|
|
2219
|
+
externalLanguage?: pulumi.Input<string>;
|
|
2220
|
+
/**
|
|
2221
|
+
* External function name.
|
|
2222
|
+
*/
|
|
2223
|
+
externalName?: pulumi.Input<string>;
|
|
2224
|
+
/**
|
|
2225
|
+
* Pretty printed function data type.
|
|
2226
|
+
*/
|
|
2227
|
+
fullDataType?: pulumi.Input<string>;
|
|
2228
|
+
/**
|
|
2229
|
+
* Full name of function, in form of catalog_name.schema_name.function__name
|
|
2230
|
+
*/
|
|
2231
|
+
fullName?: pulumi.Input<string>;
|
|
2232
|
+
/**
|
|
2233
|
+
* Id of Function, relative to parent schema.
|
|
2234
|
+
*/
|
|
2235
|
+
functionId?: pulumi.Input<string>;
|
|
2236
|
+
/**
|
|
2237
|
+
* object describing input parameters. Consists of the single attribute:
|
|
2238
|
+
*/
|
|
2239
|
+
inputParams?: pulumi.Input<inputs.GetFunctionsFunctionInputParamsArgs>;
|
|
2240
|
+
/**
|
|
2241
|
+
* Boolean flag specifying whether the function is deterministic.
|
|
2242
|
+
*/
|
|
2243
|
+
isDeterministic?: pulumi.Input<boolean>;
|
|
2244
|
+
/**
|
|
2245
|
+
* Boolean flag whether function null call.
|
|
2246
|
+
*/
|
|
2247
|
+
isNullCall?: pulumi.Input<boolean>;
|
|
2248
|
+
/**
|
|
2249
|
+
* Unique identifier of parent metastore.
|
|
2250
|
+
*/
|
|
2251
|
+
metastoreId?: pulumi.Input<string>;
|
|
2252
|
+
/**
|
|
2253
|
+
* Name of parameter.
|
|
2254
|
+
*/
|
|
2255
|
+
name?: pulumi.Input<string>;
|
|
2256
|
+
/**
|
|
2257
|
+
* Username of current owner of function.
|
|
2258
|
+
*/
|
|
2259
|
+
owner?: pulumi.Input<string>;
|
|
2260
|
+
/**
|
|
2261
|
+
* Function parameter style. `S` is the value for SQL.
|
|
2262
|
+
*/
|
|
2263
|
+
parameterStyle?: pulumi.Input<string>;
|
|
2264
|
+
/**
|
|
2265
|
+
* JSON-serialized key-value pair map, encoded (escaped) as a string.
|
|
2266
|
+
*/
|
|
2267
|
+
properties?: pulumi.Input<string>;
|
|
2268
|
+
/**
|
|
2269
|
+
* Table function return parameters. See `inputParams` for description.
|
|
2270
|
+
*/
|
|
2271
|
+
returnParams?: pulumi.Input<inputs.GetFunctionsFunctionReturnParamsArgs>;
|
|
2272
|
+
/**
|
|
2273
|
+
* Function language (`SQL` or `EXTERNAL`). When `EXTERNAL` is used, the language of the routine function should be specified in the `externalLanguage` field, and the `returnParams` of the function cannot be used (as `TABLE` return type is not supported), and the `sqlDataAccess` field must be `NO_SQL`.
|
|
2274
|
+
*/
|
|
2275
|
+
routineBody?: pulumi.Input<string>;
|
|
2276
|
+
/**
|
|
2277
|
+
* Function body.
|
|
2278
|
+
*/
|
|
2279
|
+
routineDefinition?: pulumi.Input<string>;
|
|
2280
|
+
/**
|
|
2281
|
+
* Function dependencies.
|
|
2282
|
+
*/
|
|
2283
|
+
routineDependencies?: pulumi.Input<inputs.GetFunctionsFunctionRoutineDependenciesArgs>;
|
|
2284
|
+
/**
|
|
2285
|
+
* Name of databricks_schema.
|
|
2286
|
+
*/
|
|
2287
|
+
schemaName?: pulumi.Input<string>;
|
|
2288
|
+
/**
|
|
2289
|
+
* Function security type. (Enum: `DEFINER`).
|
|
2290
|
+
*/
|
|
2291
|
+
securityType?: pulumi.Input<string>;
|
|
2292
|
+
/**
|
|
2293
|
+
* Specific name of the function; Reserved for future use.
|
|
2294
|
+
*/
|
|
2295
|
+
specificName?: pulumi.Input<string>;
|
|
2296
|
+
/**
|
|
2297
|
+
* Function SQL data access (`CONTAINS_SQL`, `READS_SQL_DATA`, `NO_SQL`).
|
|
2298
|
+
*/
|
|
2299
|
+
sqlDataAccess?: pulumi.Input<string>;
|
|
2300
|
+
/**
|
|
2301
|
+
* List of schemes whose objects can be referenced without qualification.
|
|
2302
|
+
*/
|
|
2303
|
+
sqlPath?: pulumi.Input<string>;
|
|
2304
|
+
/**
|
|
2305
|
+
* Time at which this function was created, in epoch milliseconds.
|
|
2306
|
+
*/
|
|
2307
|
+
updatedAt?: pulumi.Input<number>;
|
|
2308
|
+
/**
|
|
2309
|
+
* Username of user who last modified function.
|
|
2310
|
+
*/
|
|
2311
|
+
updatedBy?: pulumi.Input<string>;
|
|
2312
|
+
}
|
|
2313
|
+
export interface GetFunctionsFunctionInputParams {
|
|
2314
|
+
/**
|
|
2315
|
+
* The array of definitions of the function's parameters:
|
|
2316
|
+
*/
|
|
2317
|
+
parameters?: inputs.GetFunctionsFunctionInputParamsParameter[];
|
|
2318
|
+
}
|
|
2319
|
+
export interface GetFunctionsFunctionInputParamsArgs {
|
|
2320
|
+
/**
|
|
2321
|
+
* The array of definitions of the function's parameters:
|
|
2322
|
+
*/
|
|
2323
|
+
parameters?: pulumi.Input<pulumi.Input<inputs.GetFunctionsFunctionInputParamsParameterArgs>[]>;
|
|
2324
|
+
}
|
|
2325
|
+
export interface GetFunctionsFunctionInputParamsParameter {
|
|
2326
|
+
/**
|
|
2327
|
+
* User-provided free-form text description.
|
|
2328
|
+
*/
|
|
2329
|
+
comment?: string;
|
|
2330
|
+
/**
|
|
2331
|
+
* Name of parameter.
|
|
2332
|
+
*/
|
|
2333
|
+
name: string;
|
|
2334
|
+
/**
|
|
2335
|
+
* Default value of the parameter.
|
|
2336
|
+
*/
|
|
2337
|
+
parameterDefault?: string;
|
|
2338
|
+
/**
|
|
2339
|
+
* The mode of the function parameter.
|
|
2340
|
+
*/
|
|
2341
|
+
parameterMode?: string;
|
|
2342
|
+
/**
|
|
2343
|
+
* The type of function parameter (`PARAM` or `COLUMN`).
|
|
2344
|
+
*/
|
|
2345
|
+
parameterType?: string;
|
|
2346
|
+
/**
|
|
2347
|
+
* Ordinal position of column (starting at position 0).
|
|
2348
|
+
*/
|
|
2349
|
+
position: number;
|
|
2350
|
+
/**
|
|
2351
|
+
* Format of IntervalType.
|
|
2352
|
+
*/
|
|
2353
|
+
typeIntervalType?: string;
|
|
2354
|
+
/**
|
|
2355
|
+
* Full data type spec, JSON-serialized.
|
|
2356
|
+
*/
|
|
2357
|
+
typeJson?: string;
|
|
2358
|
+
/**
|
|
2359
|
+
* Name of type (INT, STRUCT, MAP, etc.).
|
|
2360
|
+
*/
|
|
2361
|
+
typeName: string;
|
|
2362
|
+
/**
|
|
2363
|
+
* Digits of precision; required on Create for DecimalTypes.
|
|
2364
|
+
*/
|
|
2365
|
+
typePrecision?: number;
|
|
2366
|
+
/**
|
|
2367
|
+
* Digits to right of decimal; Required on Create for DecimalTypes.
|
|
2368
|
+
*/
|
|
2369
|
+
typeScale?: number;
|
|
2370
|
+
/**
|
|
2371
|
+
* Full data type spec, SQL/catalogString text.
|
|
2372
|
+
*/
|
|
2373
|
+
typeText: string;
|
|
2374
|
+
}
|
|
2375
|
+
export interface GetFunctionsFunctionInputParamsParameterArgs {
|
|
2376
|
+
/**
|
|
2377
|
+
* User-provided free-form text description.
|
|
2378
|
+
*/
|
|
2379
|
+
comment?: pulumi.Input<string>;
|
|
2380
|
+
/**
|
|
2381
|
+
* Name of parameter.
|
|
2382
|
+
*/
|
|
2383
|
+
name: pulumi.Input<string>;
|
|
2384
|
+
/**
|
|
2385
|
+
* Default value of the parameter.
|
|
2386
|
+
*/
|
|
2387
|
+
parameterDefault?: pulumi.Input<string>;
|
|
2388
|
+
/**
|
|
2389
|
+
* The mode of the function parameter.
|
|
2390
|
+
*/
|
|
2391
|
+
parameterMode?: pulumi.Input<string>;
|
|
2392
|
+
/**
|
|
2393
|
+
* The type of function parameter (`PARAM` or `COLUMN`).
|
|
2394
|
+
*/
|
|
2395
|
+
parameterType?: pulumi.Input<string>;
|
|
2396
|
+
/**
|
|
2397
|
+
* Ordinal position of column (starting at position 0).
|
|
2398
|
+
*/
|
|
2399
|
+
position: pulumi.Input<number>;
|
|
2400
|
+
/**
|
|
2401
|
+
* Format of IntervalType.
|
|
2402
|
+
*/
|
|
2403
|
+
typeIntervalType?: pulumi.Input<string>;
|
|
2404
|
+
/**
|
|
2405
|
+
* Full data type spec, JSON-serialized.
|
|
2406
|
+
*/
|
|
2407
|
+
typeJson?: pulumi.Input<string>;
|
|
2408
|
+
/**
|
|
2409
|
+
* Name of type (INT, STRUCT, MAP, etc.).
|
|
2410
|
+
*/
|
|
2411
|
+
typeName: pulumi.Input<string>;
|
|
2412
|
+
/**
|
|
2413
|
+
* Digits of precision; required on Create for DecimalTypes.
|
|
2414
|
+
*/
|
|
2415
|
+
typePrecision?: pulumi.Input<number>;
|
|
2416
|
+
/**
|
|
2417
|
+
* Digits to right of decimal; Required on Create for DecimalTypes.
|
|
2418
|
+
*/
|
|
2419
|
+
typeScale?: pulumi.Input<number>;
|
|
2420
|
+
/**
|
|
2421
|
+
* Full data type spec, SQL/catalogString text.
|
|
2422
|
+
*/
|
|
2423
|
+
typeText: pulumi.Input<string>;
|
|
2424
|
+
}
|
|
2425
|
+
export interface GetFunctionsFunctionReturnParams {
|
|
2426
|
+
/**
|
|
2427
|
+
* The array of definitions of the function's parameters:
|
|
2428
|
+
*/
|
|
2429
|
+
parameters?: inputs.GetFunctionsFunctionReturnParamsParameter[];
|
|
2430
|
+
}
|
|
2431
|
+
export interface GetFunctionsFunctionReturnParamsArgs {
|
|
2432
|
+
/**
|
|
2433
|
+
* The array of definitions of the function's parameters:
|
|
2434
|
+
*/
|
|
2435
|
+
parameters?: pulumi.Input<pulumi.Input<inputs.GetFunctionsFunctionReturnParamsParameterArgs>[]>;
|
|
2436
|
+
}
|
|
2437
|
+
export interface GetFunctionsFunctionReturnParamsParameter {
|
|
2438
|
+
/**
|
|
2439
|
+
* User-provided free-form text description.
|
|
2440
|
+
*/
|
|
2441
|
+
comment?: string;
|
|
2442
|
+
/**
|
|
2443
|
+
* Name of parameter.
|
|
2444
|
+
*/
|
|
2445
|
+
name: string;
|
|
2446
|
+
/**
|
|
2447
|
+
* Default value of the parameter.
|
|
2448
|
+
*/
|
|
2449
|
+
parameterDefault?: string;
|
|
2450
|
+
/**
|
|
2451
|
+
* The mode of the function parameter.
|
|
2452
|
+
*/
|
|
2453
|
+
parameterMode?: string;
|
|
2454
|
+
/**
|
|
2455
|
+
* The type of function parameter (`PARAM` or `COLUMN`).
|
|
2456
|
+
*/
|
|
2457
|
+
parameterType?: string;
|
|
2458
|
+
/**
|
|
2459
|
+
* Ordinal position of column (starting at position 0).
|
|
2460
|
+
*/
|
|
2461
|
+
position: number;
|
|
2462
|
+
/**
|
|
2463
|
+
* Format of IntervalType.
|
|
2464
|
+
*/
|
|
2465
|
+
typeIntervalType?: string;
|
|
2466
|
+
/**
|
|
2467
|
+
* Full data type spec, JSON-serialized.
|
|
2468
|
+
*/
|
|
2469
|
+
typeJson?: string;
|
|
2470
|
+
/**
|
|
2471
|
+
* Name of type (INT, STRUCT, MAP, etc.).
|
|
2472
|
+
*/
|
|
2473
|
+
typeName: string;
|
|
2474
|
+
/**
|
|
2475
|
+
* Digits of precision; required on Create for DecimalTypes.
|
|
2476
|
+
*/
|
|
2477
|
+
typePrecision?: number;
|
|
2478
|
+
/**
|
|
2479
|
+
* Digits to right of decimal; Required on Create for DecimalTypes.
|
|
2480
|
+
*/
|
|
2481
|
+
typeScale?: number;
|
|
2482
|
+
/**
|
|
2483
|
+
* Full data type spec, SQL/catalogString text.
|
|
2484
|
+
*/
|
|
2485
|
+
typeText: string;
|
|
2486
|
+
}
|
|
2487
|
+
export interface GetFunctionsFunctionReturnParamsParameterArgs {
|
|
2488
|
+
/**
|
|
2489
|
+
* User-provided free-form text description.
|
|
2490
|
+
*/
|
|
2491
|
+
comment?: pulumi.Input<string>;
|
|
2492
|
+
/**
|
|
2493
|
+
* Name of parameter.
|
|
2494
|
+
*/
|
|
2495
|
+
name: pulumi.Input<string>;
|
|
2496
|
+
/**
|
|
2497
|
+
* Default value of the parameter.
|
|
2498
|
+
*/
|
|
2499
|
+
parameterDefault?: pulumi.Input<string>;
|
|
2500
|
+
/**
|
|
2501
|
+
* The mode of the function parameter.
|
|
2502
|
+
*/
|
|
2503
|
+
parameterMode?: pulumi.Input<string>;
|
|
2504
|
+
/**
|
|
2505
|
+
* The type of function parameter (`PARAM` or `COLUMN`).
|
|
2506
|
+
*/
|
|
2507
|
+
parameterType?: pulumi.Input<string>;
|
|
2508
|
+
/**
|
|
2509
|
+
* Ordinal position of column (starting at position 0).
|
|
2510
|
+
*/
|
|
2511
|
+
position: pulumi.Input<number>;
|
|
2512
|
+
/**
|
|
2513
|
+
* Format of IntervalType.
|
|
2514
|
+
*/
|
|
2515
|
+
typeIntervalType?: pulumi.Input<string>;
|
|
2516
|
+
/**
|
|
2517
|
+
* Full data type spec, JSON-serialized.
|
|
2518
|
+
*/
|
|
2519
|
+
typeJson?: pulumi.Input<string>;
|
|
2520
|
+
/**
|
|
2521
|
+
* Name of type (INT, STRUCT, MAP, etc.).
|
|
2522
|
+
*/
|
|
2523
|
+
typeName: pulumi.Input<string>;
|
|
2524
|
+
/**
|
|
2525
|
+
* Digits of precision; required on Create for DecimalTypes.
|
|
2526
|
+
*/
|
|
2527
|
+
typePrecision?: pulumi.Input<number>;
|
|
2528
|
+
/**
|
|
2529
|
+
* Digits to right of decimal; Required on Create for DecimalTypes.
|
|
2530
|
+
*/
|
|
2531
|
+
typeScale?: pulumi.Input<number>;
|
|
2532
|
+
/**
|
|
2533
|
+
* Full data type spec, SQL/catalogString text.
|
|
2534
|
+
*/
|
|
2535
|
+
typeText: pulumi.Input<string>;
|
|
2536
|
+
}
|
|
2537
|
+
export interface GetFunctionsFunctionRoutineDependencies {
|
|
2538
|
+
dependencies?: inputs.GetFunctionsFunctionRoutineDependenciesDependency[];
|
|
2539
|
+
}
|
|
2540
|
+
export interface GetFunctionsFunctionRoutineDependenciesArgs {
|
|
2541
|
+
dependencies?: pulumi.Input<pulumi.Input<inputs.GetFunctionsFunctionRoutineDependenciesDependencyArgs>[]>;
|
|
2542
|
+
}
|
|
2543
|
+
export interface GetFunctionsFunctionRoutineDependenciesDependency {
|
|
2544
|
+
function?: inputs.GetFunctionsFunctionRoutineDependenciesDependencyFunction;
|
|
2545
|
+
table?: inputs.GetFunctionsFunctionRoutineDependenciesDependencyTable;
|
|
2546
|
+
}
|
|
2547
|
+
export interface GetFunctionsFunctionRoutineDependenciesDependencyArgs {
|
|
2548
|
+
function?: pulumi.Input<inputs.GetFunctionsFunctionRoutineDependenciesDependencyFunctionArgs>;
|
|
2549
|
+
table?: pulumi.Input<inputs.GetFunctionsFunctionRoutineDependenciesDependencyTableArgs>;
|
|
2550
|
+
}
|
|
2551
|
+
export interface GetFunctionsFunctionRoutineDependenciesDependencyFunction {
|
|
2552
|
+
functionFullName: string;
|
|
2553
|
+
}
|
|
2554
|
+
export interface GetFunctionsFunctionRoutineDependenciesDependencyFunctionArgs {
|
|
2555
|
+
functionFullName: pulumi.Input<string>;
|
|
2556
|
+
}
|
|
2557
|
+
export interface GetFunctionsFunctionRoutineDependenciesDependencyTable {
|
|
2558
|
+
tableFullName: string;
|
|
2559
|
+
}
|
|
2560
|
+
export interface GetFunctionsFunctionRoutineDependenciesDependencyTableArgs {
|
|
2561
|
+
tableFullName: pulumi.Input<string>;
|
|
2562
|
+
}
|
|
2069
2563
|
export interface GetInstancePoolPoolInfo {
|
|
2070
2564
|
awsAttributes?: inputs.GetInstancePoolPoolInfoAwsAttributes;
|
|
2071
2565
|
azureAttributes?: inputs.GetInstancePoolPoolInfoAzureAttributes;
|