@pulumi/azure 6.6.0 → 6.7.0-alpha.1730309595
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/appservice/linuxFunctionApp.d.ts +1 -1
- package/appservice/linuxFunctionApp.js +1 -1
- package/cosmosdb/sqlContainer.d.ts +9 -3
- package/cosmosdb/sqlContainer.js.map +1 -1
- package/desktopvirtualization/applicationGroup.d.ts +3 -3
- package/devcenter/index.d.ts +3 -0
- package/devcenter/index.js +6 -1
- package/devcenter/index.js.map +1 -1
- package/devcenter/projectPool.d.ts +215 -0
- package/devcenter/projectPool.js +152 -0
- package/devcenter/projectPool.js.map +1 -0
- package/index.d.ts +2 -1
- package/index.js +3 -1
- package/index.js.map +1 -1
- package/mssql/managedInstance.d.ts +3 -3
- package/network/applicationGateway.d.ts +3 -3
- package/oracle/autonomousDatabase.d.ts +317 -0
- package/oracle/autonomousDatabase.js +153 -0
- package/oracle/autonomousDatabase.js.map +1 -0
- package/oracle/getAdbsCharacterSets.d.ts +74 -0
- package/oracle/getAdbsCharacterSets.js +60 -0
- package/oracle/getAdbsCharacterSets.js.map +1 -0
- package/oracle/getAdbsNationalCharacterSets.d.ts +74 -0
- package/oracle/getAdbsNationalCharacterSets.js +60 -0
- package/oracle/getAdbsNationalCharacterSets.js.map +1 -0
- package/oracle/getAutonomousDatabase.d.ts +295 -0
- package/oracle/getAutonomousDatabase.js +56 -0
- package/oracle/getAutonomousDatabase.js.map +1 -0
- package/oracle/getDbNodes.d.ts +74 -0
- package/oracle/getDbNodes.js +60 -0
- package/oracle/getDbNodes.js.map +1 -0
- package/oracle/getDbSystemShapes.d.ts +78 -0
- package/oracle/getDbSystemShapes.js +64 -0
- package/oracle/getDbSystemShapes.js.map +1 -0
- package/oracle/getGiVersions.d.ts +77 -0
- package/oracle/getGiVersions.js +64 -0
- package/oracle/getGiVersions.js.map +1 -0
- package/oracle/index.d.ts +21 -0
- package/oracle/index.js +24 -1
- package/oracle/index.js.map +1 -1
- package/package.json +2 -2
- package/storage/account.d.ts +6 -0
- package/storage/account.js.map +1 -1
- package/types/input.d.ts +52 -12
- package/types/output.d.ts +239 -17
- package/videoindexer/account.d.ts +157 -0
- package/videoindexer/account.js +109 -0
- package/videoindexer/account.js.map +1 -0
- package/videoindexer/index.d.ts +3 -0
- package/videoindexer/index.js +22 -0
- package/videoindexer/index.js.map +1 -0
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Manages a Video Indexer Account
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as azure from "@pulumi/azure";
|
|
12
|
+
*
|
|
13
|
+
* const example = new azure.core.ResourceGroup("example", {
|
|
14
|
+
* name: "example",
|
|
15
|
+
* location: "West Europe",
|
|
16
|
+
* });
|
|
17
|
+
* const exampleAccount = new azure.storage.Account("example", {
|
|
18
|
+
* name: "example",
|
|
19
|
+
* resourceGroupName: example.name,
|
|
20
|
+
* location: example.location,
|
|
21
|
+
* accountTier: "Standard",
|
|
22
|
+
* accountReplicationType: "LRS",
|
|
23
|
+
* });
|
|
24
|
+
* const exampleAccount2 = new azure.videoindexer.Account("example", {
|
|
25
|
+
* name: "example",
|
|
26
|
+
* resourceGroupName: example.name,
|
|
27
|
+
* location: "West Europe",
|
|
28
|
+
* storage: {
|
|
29
|
+
* storageAccountId: exampleAccount.id,
|
|
30
|
+
* },
|
|
31
|
+
* identity: {
|
|
32
|
+
* type: "SystemAssigned",
|
|
33
|
+
* },
|
|
34
|
+
* });
|
|
35
|
+
* ```
|
|
36
|
+
*
|
|
37
|
+
* ## Import
|
|
38
|
+
*
|
|
39
|
+
* Video Indexer Accounts can be imported using the `resource id`, e.g.
|
|
40
|
+
*
|
|
41
|
+
* ```sh
|
|
42
|
+
* $ pulumi import azure:videoindexer/account:Account example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/example-resource-group/providers/Microsoft.VideoIndexer/accounts/example-account-name
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
export declare class Account extends pulumi.CustomResource {
|
|
46
|
+
/**
|
|
47
|
+
* Get an existing Account resource's state with the given name, ID, and optional extra
|
|
48
|
+
* properties used to qualify the lookup.
|
|
49
|
+
*
|
|
50
|
+
* @param name The _unique_ name of the resulting resource.
|
|
51
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
52
|
+
* @param state Any extra arguments used during the lookup.
|
|
53
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
54
|
+
*/
|
|
55
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AccountState, opts?: pulumi.CustomResourceOptions): Account;
|
|
56
|
+
/**
|
|
57
|
+
* Returns true if the given object is an instance of Account. This is designed to work even
|
|
58
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
59
|
+
*/
|
|
60
|
+
static isInstance(obj: any): obj is Account;
|
|
61
|
+
/**
|
|
62
|
+
* An `identity` block as defined below.
|
|
63
|
+
*/
|
|
64
|
+
readonly identity: pulumi.Output<outputs.videoindexer.AccountIdentity>;
|
|
65
|
+
/**
|
|
66
|
+
* The Azure location where the Video Indexer Account exists. Changing this forces a new resource to be created.
|
|
67
|
+
*/
|
|
68
|
+
readonly location: pulumi.Output<string>;
|
|
69
|
+
/**
|
|
70
|
+
* The name of the Video Indexer Account. Changing the name forces a new resource to be created.
|
|
71
|
+
*/
|
|
72
|
+
readonly name: pulumi.Output<string>;
|
|
73
|
+
/**
|
|
74
|
+
* The name of the Resource Group that the Video Indexer Account will be associated with. Changing the name forces a new resource to be created.
|
|
75
|
+
*/
|
|
76
|
+
readonly resourceGroupName: pulumi.Output<string>;
|
|
77
|
+
/**
|
|
78
|
+
* A `storage` block as defined below.
|
|
79
|
+
*/
|
|
80
|
+
readonly storage: pulumi.Output<outputs.videoindexer.AccountStorage>;
|
|
81
|
+
/**
|
|
82
|
+
* A mapping of tags to assign to the resource.
|
|
83
|
+
*/
|
|
84
|
+
readonly tags: pulumi.Output<{
|
|
85
|
+
[key: string]: string;
|
|
86
|
+
} | undefined>;
|
|
87
|
+
/**
|
|
88
|
+
* Create a Account resource with the given unique name, arguments, and options.
|
|
89
|
+
*
|
|
90
|
+
* @param name The _unique_ name of the resource.
|
|
91
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
92
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
93
|
+
*/
|
|
94
|
+
constructor(name: string, args: AccountArgs, opts?: pulumi.CustomResourceOptions);
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* Input properties used for looking up and filtering Account resources.
|
|
98
|
+
*/
|
|
99
|
+
export interface AccountState {
|
|
100
|
+
/**
|
|
101
|
+
* An `identity` block as defined below.
|
|
102
|
+
*/
|
|
103
|
+
identity?: pulumi.Input<inputs.videoindexer.AccountIdentity>;
|
|
104
|
+
/**
|
|
105
|
+
* The Azure location where the Video Indexer Account exists. Changing this forces a new resource to be created.
|
|
106
|
+
*/
|
|
107
|
+
location?: pulumi.Input<string>;
|
|
108
|
+
/**
|
|
109
|
+
* The name of the Video Indexer Account. Changing the name forces a new resource to be created.
|
|
110
|
+
*/
|
|
111
|
+
name?: pulumi.Input<string>;
|
|
112
|
+
/**
|
|
113
|
+
* The name of the Resource Group that the Video Indexer Account will be associated with. Changing the name forces a new resource to be created.
|
|
114
|
+
*/
|
|
115
|
+
resourceGroupName?: pulumi.Input<string>;
|
|
116
|
+
/**
|
|
117
|
+
* A `storage` block as defined below.
|
|
118
|
+
*/
|
|
119
|
+
storage?: pulumi.Input<inputs.videoindexer.AccountStorage>;
|
|
120
|
+
/**
|
|
121
|
+
* A mapping of tags to assign to the resource.
|
|
122
|
+
*/
|
|
123
|
+
tags?: pulumi.Input<{
|
|
124
|
+
[key: string]: pulumi.Input<string>;
|
|
125
|
+
}>;
|
|
126
|
+
}
|
|
127
|
+
/**
|
|
128
|
+
* The set of arguments for constructing a Account resource.
|
|
129
|
+
*/
|
|
130
|
+
export interface AccountArgs {
|
|
131
|
+
/**
|
|
132
|
+
* An `identity` block as defined below.
|
|
133
|
+
*/
|
|
134
|
+
identity: pulumi.Input<inputs.videoindexer.AccountIdentity>;
|
|
135
|
+
/**
|
|
136
|
+
* The Azure location where the Video Indexer Account exists. Changing this forces a new resource to be created.
|
|
137
|
+
*/
|
|
138
|
+
location?: pulumi.Input<string>;
|
|
139
|
+
/**
|
|
140
|
+
* The name of the Video Indexer Account. Changing the name forces a new resource to be created.
|
|
141
|
+
*/
|
|
142
|
+
name?: pulumi.Input<string>;
|
|
143
|
+
/**
|
|
144
|
+
* The name of the Resource Group that the Video Indexer Account will be associated with. Changing the name forces a new resource to be created.
|
|
145
|
+
*/
|
|
146
|
+
resourceGroupName: pulumi.Input<string>;
|
|
147
|
+
/**
|
|
148
|
+
* A `storage` block as defined below.
|
|
149
|
+
*/
|
|
150
|
+
storage: pulumi.Input<inputs.videoindexer.AccountStorage>;
|
|
151
|
+
/**
|
|
152
|
+
* A mapping of tags to assign to the resource.
|
|
153
|
+
*/
|
|
154
|
+
tags?: pulumi.Input<{
|
|
155
|
+
[key: string]: pulumi.Input<string>;
|
|
156
|
+
}>;
|
|
157
|
+
}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.Account = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manages a Video Indexer Account
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as azure from "@pulumi/azure";
|
|
16
|
+
*
|
|
17
|
+
* const example = new azure.core.ResourceGroup("example", {
|
|
18
|
+
* name: "example",
|
|
19
|
+
* location: "West Europe",
|
|
20
|
+
* });
|
|
21
|
+
* const exampleAccount = new azure.storage.Account("example", {
|
|
22
|
+
* name: "example",
|
|
23
|
+
* resourceGroupName: example.name,
|
|
24
|
+
* location: example.location,
|
|
25
|
+
* accountTier: "Standard",
|
|
26
|
+
* accountReplicationType: "LRS",
|
|
27
|
+
* });
|
|
28
|
+
* const exampleAccount2 = new azure.videoindexer.Account("example", {
|
|
29
|
+
* name: "example",
|
|
30
|
+
* resourceGroupName: example.name,
|
|
31
|
+
* location: "West Europe",
|
|
32
|
+
* storage: {
|
|
33
|
+
* storageAccountId: exampleAccount.id,
|
|
34
|
+
* },
|
|
35
|
+
* identity: {
|
|
36
|
+
* type: "SystemAssigned",
|
|
37
|
+
* },
|
|
38
|
+
* });
|
|
39
|
+
* ```
|
|
40
|
+
*
|
|
41
|
+
* ## Import
|
|
42
|
+
*
|
|
43
|
+
* Video Indexer Accounts can be imported using the `resource id`, e.g.
|
|
44
|
+
*
|
|
45
|
+
* ```sh
|
|
46
|
+
* $ pulumi import azure:videoindexer/account:Account example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/example-resource-group/providers/Microsoft.VideoIndexer/accounts/example-account-name
|
|
47
|
+
* ```
|
|
48
|
+
*/
|
|
49
|
+
class Account extends pulumi.CustomResource {
|
|
50
|
+
constructor(name, argsOrState, opts) {
|
|
51
|
+
let resourceInputs = {};
|
|
52
|
+
opts = opts || {};
|
|
53
|
+
if (opts.id) {
|
|
54
|
+
const state = argsOrState;
|
|
55
|
+
resourceInputs["identity"] = state ? state.identity : undefined;
|
|
56
|
+
resourceInputs["location"] = state ? state.location : undefined;
|
|
57
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
58
|
+
resourceInputs["resourceGroupName"] = state ? state.resourceGroupName : undefined;
|
|
59
|
+
resourceInputs["storage"] = state ? state.storage : undefined;
|
|
60
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
61
|
+
}
|
|
62
|
+
else {
|
|
63
|
+
const args = argsOrState;
|
|
64
|
+
if ((!args || args.identity === undefined) && !opts.urn) {
|
|
65
|
+
throw new Error("Missing required property 'identity'");
|
|
66
|
+
}
|
|
67
|
+
if ((!args || args.resourceGroupName === undefined) && !opts.urn) {
|
|
68
|
+
throw new Error("Missing required property 'resourceGroupName'");
|
|
69
|
+
}
|
|
70
|
+
if ((!args || args.storage === undefined) && !opts.urn) {
|
|
71
|
+
throw new Error("Missing required property 'storage'");
|
|
72
|
+
}
|
|
73
|
+
resourceInputs["identity"] = args ? args.identity : undefined;
|
|
74
|
+
resourceInputs["location"] = args ? args.location : undefined;
|
|
75
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
76
|
+
resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
|
|
77
|
+
resourceInputs["storage"] = args ? args.storage : undefined;
|
|
78
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
79
|
+
}
|
|
80
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
81
|
+
super(Account.__pulumiType, name, resourceInputs, opts);
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* Get an existing Account resource's state with the given name, ID, and optional extra
|
|
85
|
+
* properties used to qualify the lookup.
|
|
86
|
+
*
|
|
87
|
+
* @param name The _unique_ name of the resulting resource.
|
|
88
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
89
|
+
* @param state Any extra arguments used during the lookup.
|
|
90
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
91
|
+
*/
|
|
92
|
+
static get(name, id, state, opts) {
|
|
93
|
+
return new Account(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* Returns true if the given object is an instance of Account. This is designed to work even
|
|
97
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
98
|
+
*/
|
|
99
|
+
static isInstance(obj) {
|
|
100
|
+
if (obj === undefined || obj === null) {
|
|
101
|
+
return false;
|
|
102
|
+
}
|
|
103
|
+
return obj['__pulumiType'] === Account.__pulumiType;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
exports.Account = Account;
|
|
107
|
+
/** @internal */
|
|
108
|
+
Account.__pulumiType = 'azure:videoindexer/account:Account';
|
|
109
|
+
//# sourceMappingURL=account.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"account.js","sourceRoot":"","sources":["../../videoindexer/account.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.Account = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
exports.Account = null;
|
|
9
|
+
utilities.lazyLoad(exports, ["Account"], () => require("./account"));
|
|
10
|
+
const _module = {
|
|
11
|
+
version: utilities.getVersion(),
|
|
12
|
+
construct: (name, type, urn) => {
|
|
13
|
+
switch (type) {
|
|
14
|
+
case "azure:videoindexer/account:Account":
|
|
15
|
+
return new exports.Account(name, undefined, { urn });
|
|
16
|
+
default:
|
|
17
|
+
throw new Error(`unknown resource type ${type}`);
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
};
|
|
21
|
+
pulumi.runtime.registerResourceModule("azure", "videoindexer/account", _module);
|
|
22
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../videoindexer/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,OAAO,GAAuC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAGrE,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,oCAAoC;gBACrC,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA"}
|