@pulumi/azure-native 3.2.0 → 3.3.0-alpha.1745626403
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/advisor/assessment.d.ts +2 -0
- package/advisor/assessment.js +4 -2
- package/advisor/getAssessment.d.ts +4 -0
- package/advisor/getAssessment.js +5 -1
- package/advisor/getSuppression.d.ts +2 -2
- package/advisor/getSuppression.js +2 -2
- package/advisor/suppression.d.ts +1 -1
- package/advisor/suppression.js +3 -3
- package/containerregistry/cacheRule.d.ts +1 -1
- package/containerregistry/cacheRule.js +3 -3
- package/containerregistry/connectedRegistry.d.ts +1 -1
- package/containerregistry/connectedRegistry.js +3 -3
- package/containerregistry/credentialSet.d.ts +1 -1
- package/containerregistry/credentialSet.js +3 -3
- package/containerregistry/getCacheRule.d.ts +2 -2
- package/containerregistry/getCacheRule.js +2 -2
- package/containerregistry/getConnectedRegistry.d.ts +2 -2
- package/containerregistry/getConnectedRegistry.js +2 -2
- package/containerregistry/getCredentialSet.d.ts +2 -2
- package/containerregistry/getCredentialSet.js +2 -2
- package/containerregistry/getPrivateEndpointConnection.d.ts +2 -2
- package/containerregistry/getPrivateEndpointConnection.js +2 -2
- package/containerregistry/getRegistry.d.ts +2 -2
- package/containerregistry/getRegistry.js +2 -2
- package/containerregistry/getReplication.d.ts +2 -2
- package/containerregistry/getReplication.js +2 -2
- package/containerregistry/getScopeMap.d.ts +2 -2
- package/containerregistry/getScopeMap.js +2 -2
- package/containerregistry/getToken.d.ts +2 -2
- package/containerregistry/getToken.js +2 -2
- package/containerregistry/getWebhook.d.ts +2 -2
- package/containerregistry/getWebhook.js +2 -2
- package/containerregistry/getWebhookCallbackConfig.d.ts +2 -2
- package/containerregistry/getWebhookCallbackConfig.js +2 -2
- package/containerregistry/listRegistryCredentials.d.ts +2 -2
- package/containerregistry/listRegistryCredentials.js +2 -2
- package/containerregistry/listWebhookEvents.d.ts +2 -2
- package/containerregistry/listWebhookEvents.js +2 -2
- package/containerregistry/privateEndpointConnection.d.ts +1 -1
- package/containerregistry/privateEndpointConnection.js +3 -3
- package/containerregistry/registry.d.ts +1 -1
- package/containerregistry/registry.js +3 -3
- package/containerregistry/replication.d.ts +1 -1
- package/containerregistry/replication.js +3 -3
- package/containerregistry/scopeMap.d.ts +1 -1
- package/containerregistry/scopeMap.js +3 -3
- package/containerregistry/token.d.ts +1 -1
- package/containerregistry/token.js +3 -3
- package/containerregistry/webhook.d.ts +1 -1
- package/containerregistry/webhook.js +3 -3
- package/dbforpostgresql/getServerGroupCluster.d.ts +3 -3
- package/dbforpostgresql/server.js +2 -2
- package/dbforpostgresql/serverGroupCluster.d.ts +6 -6
- package/dbforpostgresql/serverGroupCluster.js +2 -3
- package/index.d.ts +2 -1
- package/index.js +6 -3
- package/monitor/azureMonitorWorkspace.d.ts +17 -12
- package/monitor/azureMonitorWorkspace.js +5 -5
- package/monitor/getAzureMonitorWorkspace.d.ts +18 -18
- package/monitor/getAzureMonitorWorkspace.js +6 -6
- package/onlineexperimentation/getOnlineExperimentWorkspace.d.ts +81 -0
- package/onlineexperimentation/getOnlineExperimentWorkspace.js +34 -0
- package/onlineexperimentation/index.d.ts +7 -0
- package/onlineexperimentation/index.js +41 -0
- package/onlineexperimentation/onlineExperimentWorkspace.d.ts +105 -0
- package/onlineexperimentation/onlineExperimentWorkspace.js +81 -0
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/types/enums/durabletask/index.d.ts +1 -1
- package/types/enums/durabletask/index.js +1 -1
- package/types/enums/index.d.ts +2 -1
- package/types/enums/index.js +5 -3
- package/types/enums/migrate/index.d.ts +22 -0
- package/types/enums/migrate/index.js +21 -3
- package/types/enums/monitor/index.d.ts +8 -0
- package/types/enums/monitor/index.js +6 -2
- package/types/enums/onlineexperimentation/index.d.ts +46 -0
- package/types/enums/onlineexperimentation/index.js +40 -0
- package/types/input.d.ts +154 -15
- package/types/input.js +11 -3
- package/types/output.d.ts +245 -38
- package/types/output.js +11 -3
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "../types/output";
|
|
3
3
|
/**
|
|
4
|
-
* Returns the
|
|
4
|
+
* Returns the specified Azure Monitor Workspace
|
|
5
5
|
*
|
|
6
|
-
* Uses Azure REST API version 2023-
|
|
6
|
+
* Uses Azure REST API version 2023-04-03.
|
|
7
7
|
*
|
|
8
|
-
* Other available API versions: 2023-
|
|
8
|
+
* Other available API versions: 2023-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native monitor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
9
9
|
*/
|
|
10
10
|
export declare function getAzureMonitorWorkspace(args: GetAzureMonitorWorkspaceArgs, opts?: pulumi.InvokeOptions): Promise<GetAzureMonitorWorkspaceResult>;
|
|
11
11
|
export interface GetAzureMonitorWorkspaceArgs {
|
|
12
12
|
/**
|
|
13
|
-
* The name of the Azure Monitor
|
|
13
|
+
* The name of the Azure Monitor Workspace. The name is case insensitive
|
|
14
14
|
*/
|
|
15
15
|
azureMonitorWorkspaceName: string;
|
|
16
16
|
/**
|
|
@@ -19,11 +19,11 @@ export interface GetAzureMonitorWorkspaceArgs {
|
|
|
19
19
|
resourceGroupName: string;
|
|
20
20
|
}
|
|
21
21
|
/**
|
|
22
|
-
* An Azure Monitor Workspace definition
|
|
22
|
+
* An Azure Monitor Workspace definition
|
|
23
23
|
*/
|
|
24
24
|
export interface GetAzureMonitorWorkspaceResult {
|
|
25
25
|
/**
|
|
26
|
-
* The immutable
|
|
26
|
+
* The immutable Id of the Azure Monitor Workspace. This property is read-only.
|
|
27
27
|
*/
|
|
28
28
|
readonly accountId: string;
|
|
29
29
|
/**
|
|
@@ -33,13 +33,13 @@ export interface GetAzureMonitorWorkspaceResult {
|
|
|
33
33
|
/**
|
|
34
34
|
* The Data Collection Rule and Endpoint used for ingestion by default.
|
|
35
35
|
*/
|
|
36
|
-
readonly defaultIngestionSettings: outputs.monitor.
|
|
36
|
+
readonly defaultIngestionSettings: outputs.monitor.AzureMonitorWorkspaceResponseDefaultIngestionSettings;
|
|
37
37
|
/**
|
|
38
38
|
* Resource entity tag (ETag)
|
|
39
39
|
*/
|
|
40
40
|
readonly etag: string;
|
|
41
41
|
/**
|
|
42
|
-
* Fully qualified resource ID for the resource.
|
|
42
|
+
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
43
43
|
*/
|
|
44
44
|
readonly id: string;
|
|
45
45
|
/**
|
|
@@ -47,25 +47,25 @@ export interface GetAzureMonitorWorkspaceResult {
|
|
|
47
47
|
*/
|
|
48
48
|
readonly location: string;
|
|
49
49
|
/**
|
|
50
|
-
*
|
|
50
|
+
* Properties related to the metrics container in the Azure Monitor Workspace
|
|
51
51
|
*/
|
|
52
|
-
readonly metrics
|
|
52
|
+
readonly metrics: outputs.monitor.AzureMonitorWorkspaceResponseMetrics;
|
|
53
53
|
/**
|
|
54
54
|
* The name of the resource
|
|
55
55
|
*/
|
|
56
56
|
readonly name: string;
|
|
57
57
|
/**
|
|
58
|
-
* List of private endpoint connections
|
|
58
|
+
* List of private endpoint connections
|
|
59
59
|
*/
|
|
60
60
|
readonly privateEndpointConnections: outputs.monitor.PrivateEndpointConnectionResponse[];
|
|
61
61
|
/**
|
|
62
|
-
* The provisioning state of the Azure Monitor
|
|
62
|
+
* The provisioning state of the Azure Monitor Workspace. Set to Succeeded if everything is healthy.
|
|
63
63
|
*/
|
|
64
64
|
readonly provisioningState: string;
|
|
65
65
|
/**
|
|
66
|
-
* Gets or sets allow or disallow public network access to
|
|
66
|
+
* Gets or sets allow or disallow public network access to Azure Monitor Workspace
|
|
67
67
|
*/
|
|
68
|
-
readonly publicNetworkAccess
|
|
68
|
+
readonly publicNetworkAccess?: string;
|
|
69
69
|
/**
|
|
70
70
|
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
71
71
|
*/
|
|
@@ -82,16 +82,16 @@ export interface GetAzureMonitorWorkspaceResult {
|
|
|
82
82
|
readonly type: string;
|
|
83
83
|
}
|
|
84
84
|
/**
|
|
85
|
-
* Returns the
|
|
85
|
+
* Returns the specified Azure Monitor Workspace
|
|
86
86
|
*
|
|
87
|
-
* Uses Azure REST API version 2023-
|
|
87
|
+
* Uses Azure REST API version 2023-04-03.
|
|
88
88
|
*
|
|
89
|
-
* Other available API versions: 2023-
|
|
89
|
+
* Other available API versions: 2023-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native monitor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
90
90
|
*/
|
|
91
91
|
export declare function getAzureMonitorWorkspaceOutput(args: GetAzureMonitorWorkspaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAzureMonitorWorkspaceResult>;
|
|
92
92
|
export interface GetAzureMonitorWorkspaceOutputArgs {
|
|
93
93
|
/**
|
|
94
|
-
* The name of the Azure Monitor
|
|
94
|
+
* The name of the Azure Monitor Workspace. The name is case insensitive
|
|
95
95
|
*/
|
|
96
96
|
azureMonitorWorkspaceName: pulumi.Input<string>;
|
|
97
97
|
/**
|
|
@@ -6,11 +6,11 @@ exports.getAzureMonitorWorkspaceOutput = exports.getAzureMonitorWorkspace = void
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Returns the
|
|
9
|
+
* Returns the specified Azure Monitor Workspace
|
|
10
10
|
*
|
|
11
|
-
* Uses Azure REST API version 2023-
|
|
11
|
+
* Uses Azure REST API version 2023-04-03.
|
|
12
12
|
*
|
|
13
|
-
* Other available API versions: 2023-
|
|
13
|
+
* Other available API versions: 2023-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native monitor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
14
14
|
*/
|
|
15
15
|
function getAzureMonitorWorkspace(args, opts) {
|
|
16
16
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -21,11 +21,11 @@ function getAzureMonitorWorkspace(args, opts) {
|
|
|
21
21
|
}
|
|
22
22
|
exports.getAzureMonitorWorkspace = getAzureMonitorWorkspace;
|
|
23
23
|
/**
|
|
24
|
-
* Returns the
|
|
24
|
+
* Returns the specified Azure Monitor Workspace
|
|
25
25
|
*
|
|
26
|
-
* Uses Azure REST API version 2023-
|
|
26
|
+
* Uses Azure REST API version 2023-04-03.
|
|
27
27
|
*
|
|
28
|
-
* Other available API versions: 2023-
|
|
28
|
+
* Other available API versions: 2023-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native monitor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
29
29
|
*/
|
|
30
30
|
function getAzureMonitorWorkspaceOutput(args, opts) {
|
|
31
31
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Gets an experiment workspace
|
|
5
|
+
*
|
|
6
|
+
* Uses Azure REST API version 2025-05-31-preview.
|
|
7
|
+
*/
|
|
8
|
+
export declare function getOnlineExperimentWorkspace(args: GetOnlineExperimentWorkspaceArgs, opts?: pulumi.InvokeOptions): Promise<GetOnlineExperimentWorkspaceResult>;
|
|
9
|
+
export interface GetOnlineExperimentWorkspaceArgs {
|
|
10
|
+
/**
|
|
11
|
+
* The name of the resource group. The name is case insensitive.
|
|
12
|
+
*/
|
|
13
|
+
resourceGroupName: string;
|
|
14
|
+
/**
|
|
15
|
+
* The name of the OnlineExperimentWorkspace
|
|
16
|
+
*/
|
|
17
|
+
workspaceName: string;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* An online experiment workspace resource.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetOnlineExperimentWorkspaceResult {
|
|
23
|
+
/**
|
|
24
|
+
* The Azure API version of the resource.
|
|
25
|
+
*/
|
|
26
|
+
readonly azureApiVersion: string;
|
|
27
|
+
/**
|
|
28
|
+
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
29
|
+
*/
|
|
30
|
+
readonly id: string;
|
|
31
|
+
/**
|
|
32
|
+
* The managed service identities assigned to this resource.
|
|
33
|
+
*/
|
|
34
|
+
readonly identity?: outputs.onlineexperimentation.ManagedServiceIdentityResponse;
|
|
35
|
+
/**
|
|
36
|
+
* The geo-location where the resource lives
|
|
37
|
+
*/
|
|
38
|
+
readonly location: string;
|
|
39
|
+
/**
|
|
40
|
+
* The name of the resource
|
|
41
|
+
*/
|
|
42
|
+
readonly name: string;
|
|
43
|
+
/**
|
|
44
|
+
* The resource-specific properties for this resource.
|
|
45
|
+
*/
|
|
46
|
+
readonly properties: outputs.onlineexperimentation.OnlineExperimentWorkspacePropertiesResponse;
|
|
47
|
+
/**
|
|
48
|
+
* The SKU (Stock Keeping Unit) assigned to this resource.
|
|
49
|
+
*/
|
|
50
|
+
readonly sku?: outputs.onlineexperimentation.OnlineExperimentationWorkspaceSkuResponse;
|
|
51
|
+
/**
|
|
52
|
+
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
53
|
+
*/
|
|
54
|
+
readonly systemData: outputs.onlineexperimentation.SystemDataResponse;
|
|
55
|
+
/**
|
|
56
|
+
* Resource tags.
|
|
57
|
+
*/
|
|
58
|
+
readonly tags?: {
|
|
59
|
+
[key: string]: string;
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
63
|
+
*/
|
|
64
|
+
readonly type: string;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Gets an experiment workspace
|
|
68
|
+
*
|
|
69
|
+
* Uses Azure REST API version 2025-05-31-preview.
|
|
70
|
+
*/
|
|
71
|
+
export declare function getOnlineExperimentWorkspaceOutput(args: GetOnlineExperimentWorkspaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOnlineExperimentWorkspaceResult>;
|
|
72
|
+
export interface GetOnlineExperimentWorkspaceOutputArgs {
|
|
73
|
+
/**
|
|
74
|
+
* The name of the resource group. The name is case insensitive.
|
|
75
|
+
*/
|
|
76
|
+
resourceGroupName: pulumi.Input<string>;
|
|
77
|
+
/**
|
|
78
|
+
* The name of the OnlineExperimentWorkspace
|
|
79
|
+
*/
|
|
80
|
+
workspaceName: pulumi.Input<string>;
|
|
81
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.getOnlineExperimentWorkspaceOutput = exports.getOnlineExperimentWorkspace = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Gets an experiment workspace
|
|
10
|
+
*
|
|
11
|
+
* Uses Azure REST API version 2025-05-31-preview.
|
|
12
|
+
*/
|
|
13
|
+
function getOnlineExperimentWorkspace(args, opts) {
|
|
14
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
15
|
+
return pulumi.runtime.invoke("azure-native:onlineexperimentation:getOnlineExperimentWorkspace", {
|
|
16
|
+
"resourceGroupName": args.resourceGroupName,
|
|
17
|
+
"workspaceName": args.workspaceName,
|
|
18
|
+
}, opts);
|
|
19
|
+
}
|
|
20
|
+
exports.getOnlineExperimentWorkspace = getOnlineExperimentWorkspace;
|
|
21
|
+
/**
|
|
22
|
+
* Gets an experiment workspace
|
|
23
|
+
*
|
|
24
|
+
* Uses Azure REST API version 2025-05-31-preview.
|
|
25
|
+
*/
|
|
26
|
+
function getOnlineExperimentWorkspaceOutput(args, opts) {
|
|
27
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
28
|
+
return pulumi.runtime.invokeOutput("azure-native:onlineexperimentation:getOnlineExperimentWorkspace", {
|
|
29
|
+
"resourceGroupName": args.resourceGroupName,
|
|
30
|
+
"workspaceName": args.workspaceName,
|
|
31
|
+
}, opts);
|
|
32
|
+
}
|
|
33
|
+
exports.getOnlineExperimentWorkspaceOutput = getOnlineExperimentWorkspaceOutput;
|
|
34
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0T25saW5lRXhwZXJpbWVudFdvcmtzcGFjZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL29ubGluZWV4cGVyaW1lbnRhdGlvbi9nZXRPbmxpbmVFeHBlcmltZW50V29ya3NwYWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxzRUFBc0U7QUFDdEUsaUZBQWlGOzs7QUFFakYseUNBQXlDO0FBSXpDLDBDQUEwQztBQUUxQzs7OztHQUlHO0FBQ0gsU0FBZ0IsNEJBQTRCLENBQUMsSUFBc0MsRUFBRSxJQUEyQjtJQUM1RyxJQUFJLEdBQUcsTUFBTSxDQUFDLFlBQVksQ0FBQyxTQUFTLENBQUMsb0JBQW9CLEVBQUUsRUFBRSxJQUFJLElBQUksRUFBRSxDQUFDLENBQUM7SUFDekUsT0FBTyxNQUFNLENBQUMsT0FBTyxDQUFDLE1BQU0sQ0FBQyxpRUFBaUUsRUFBRTtRQUM1RixtQkFBbUIsRUFBRSxJQUFJLENBQUMsaUJBQWlCO1FBQzNDLGVBQWUsRUFBRSxJQUFJLENBQUMsYUFBYTtLQUN0QyxFQUFFLElBQUksQ0FBQyxDQUFDO0FBQ2IsQ0FBQztBQU5ELG9FQU1DO0FBMEREOzs7O0dBSUc7QUFDSCxTQUFnQixrQ0FBa0MsQ0FBQyxJQUE0QyxFQUFFLElBQWlDO0lBQzlILElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN6RSxPQUFPLE1BQU0sQ0FBQyxPQUFPLENBQUMsWUFBWSxDQUFDLGlFQUFpRSxFQUFFO1FBQ2xHLG1CQUFtQixFQUFFLElBQUksQ0FBQyxpQkFBaUI7UUFDM0MsZUFBZSxFQUFFLElBQUksQ0FBQyxhQUFhO0tBQ3RDLEVBQUUsSUFBSSxDQUFDLENBQUM7QUFDYixDQUFDO0FBTkQsZ0ZBTUMifQ==
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { GetOnlineExperimentWorkspaceArgs, GetOnlineExperimentWorkspaceResult, GetOnlineExperimentWorkspaceOutputArgs } from "./getOnlineExperimentWorkspace";
|
|
2
|
+
export declare const getOnlineExperimentWorkspace: typeof import("./getOnlineExperimentWorkspace").getOnlineExperimentWorkspace;
|
|
3
|
+
export declare const getOnlineExperimentWorkspaceOutput: typeof import("./getOnlineExperimentWorkspace").getOnlineExperimentWorkspaceOutput;
|
|
4
|
+
export { OnlineExperimentWorkspaceArgs } from "./onlineExperimentWorkspace";
|
|
5
|
+
export type OnlineExperimentWorkspace = import("./onlineExperimentWorkspace").OnlineExperimentWorkspace;
|
|
6
|
+
export declare const OnlineExperimentWorkspace: typeof import("./onlineExperimentWorkspace").OnlineExperimentWorkspace;
|
|
7
|
+
export * from "../types/enums/onlineexperimentation";
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
16
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
|
+
};
|
|
18
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
+
exports.OnlineExperimentWorkspace = exports.getOnlineExperimentWorkspaceOutput = exports.getOnlineExperimentWorkspace = void 0;
|
|
20
|
+
const pulumi = require("@pulumi/pulumi");
|
|
21
|
+
const utilities = require("../utilities");
|
|
22
|
+
exports.getOnlineExperimentWorkspace = null;
|
|
23
|
+
exports.getOnlineExperimentWorkspaceOutput = null;
|
|
24
|
+
utilities.lazyLoad(exports, ["getOnlineExperimentWorkspace", "getOnlineExperimentWorkspaceOutput"], () => require("./getOnlineExperimentWorkspace"));
|
|
25
|
+
exports.OnlineExperimentWorkspace = null;
|
|
26
|
+
utilities.lazyLoad(exports, ["OnlineExperimentWorkspace"], () => require("./onlineExperimentWorkspace"));
|
|
27
|
+
// Export enums:
|
|
28
|
+
__exportStar(require("../types/enums/onlineexperimentation"), exports);
|
|
29
|
+
const _module = {
|
|
30
|
+
version: utilities.getVersion(),
|
|
31
|
+
construct: (name, type, urn) => {
|
|
32
|
+
switch (type) {
|
|
33
|
+
case "azure-native:onlineexperimentation:OnlineExperimentWorkspace":
|
|
34
|
+
return new exports.OnlineExperimentWorkspace(name, undefined, { urn });
|
|
35
|
+
default:
|
|
36
|
+
throw new Error(`unknown resource type ${type}`);
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
};
|
|
40
|
+
pulumi.runtime.registerResourceModule("azure-native", "onlineexperimentation", _module);
|
|
41
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9vbmxpbmVleHBlcmltZW50YXRpb24vaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLHNFQUFzRTtBQUN0RSxpRkFBaUY7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRWpGLHlDQUF5QztBQUN6QywwQ0FBMEM7QUFJN0IsUUFBQSw0QkFBNEIsR0FBaUYsSUFBVyxDQUFDO0FBQ3pILFFBQUEsa0NBQWtDLEdBQXVGLElBQVcsQ0FBQztBQUNsSixTQUFTLENBQUMsUUFBUSxDQUFDLE9BQU8sRUFBRSxDQUFDLDhCQUE4QixFQUFDLG9DQUFvQyxDQUFDLEVBQUUsR0FBRyxFQUFFLENBQUMsT0FBTyxDQUFDLGdDQUFnQyxDQUFDLENBQUMsQ0FBQztBQUl2SSxRQUFBLHlCQUF5QixHQUEyRSxJQUFXLENBQUM7QUFDN0gsU0FBUyxDQUFDLFFBQVEsQ0FBQyxPQUFPLEVBQUUsQ0FBQywyQkFBMkIsQ0FBQyxFQUFFLEdBQUcsRUFBRSxDQUFDLE9BQU8sQ0FBQyw2QkFBNkIsQ0FBQyxDQUFDLENBQUM7QUFHekcsZ0JBQWdCO0FBQ2hCLHVFQUFxRDtBQUVyRCxNQUFNLE9BQU8sR0FBRztJQUNaLE9BQU8sRUFBRSxTQUFTLENBQUMsVUFBVSxFQUFFO0lBQy9CLFNBQVMsRUFBRSxDQUFDLElBQVksRUFBRSxJQUFZLEVBQUUsR0FBVyxFQUFtQixFQUFFO1FBQ3BFLFFBQVEsSUFBSSxFQUFFO1lBQ1YsS0FBSyw4REFBOEQ7Z0JBQy9ELE9BQU8sSUFBSSxpQ0FBeUIsQ0FBQyxJQUFJLEVBQU8sU0FBUyxFQUFFLEVBQUUsR0FBRyxFQUFFLENBQUMsQ0FBQTtZQUN2RTtnQkFDSSxNQUFNLElBQUksS0FBSyxDQUFDLHlCQUF5QixJQUFJLEVBQUUsQ0FBQyxDQUFDO1NBQ3hEO0lBQ0wsQ0FBQztDQUNKLENBQUM7QUFDRixNQUFNLENBQUMsT0FBTyxDQUFDLHNCQUFzQixDQUFDLGNBQWMsRUFBRSx1QkFBdUIsRUFBRSxPQUFPLENBQUMsQ0FBQSJ9
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* An online experiment workspace resource.
|
|
6
|
+
*
|
|
7
|
+
* Uses Azure REST API version 2025-05-31-preview.
|
|
8
|
+
*/
|
|
9
|
+
export declare class OnlineExperimentWorkspace extends pulumi.CustomResource {
|
|
10
|
+
/**
|
|
11
|
+
* Get an existing OnlineExperimentWorkspace resource's state with the given name, ID, and optional extra
|
|
12
|
+
* properties used to qualify the lookup.
|
|
13
|
+
*
|
|
14
|
+
* @param name The _unique_ name of the resulting resource.
|
|
15
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
16
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
17
|
+
*/
|
|
18
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): OnlineExperimentWorkspace;
|
|
19
|
+
/**
|
|
20
|
+
* Returns true if the given object is an instance of OnlineExperimentWorkspace. This is designed to work even
|
|
21
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
22
|
+
*/
|
|
23
|
+
static isInstance(obj: any): obj is OnlineExperimentWorkspace;
|
|
24
|
+
/**
|
|
25
|
+
* The Azure API version of the resource.
|
|
26
|
+
*/
|
|
27
|
+
readonly azureApiVersion: pulumi.Output<string>;
|
|
28
|
+
/**
|
|
29
|
+
* The managed service identities assigned to this resource.
|
|
30
|
+
*/
|
|
31
|
+
readonly identity: pulumi.Output<outputs.onlineexperimentation.ManagedServiceIdentityResponse | undefined>;
|
|
32
|
+
/**
|
|
33
|
+
* The geo-location where the resource lives
|
|
34
|
+
*/
|
|
35
|
+
readonly location: pulumi.Output<string>;
|
|
36
|
+
/**
|
|
37
|
+
* The name of the resource
|
|
38
|
+
*/
|
|
39
|
+
readonly name: pulumi.Output<string>;
|
|
40
|
+
/**
|
|
41
|
+
* The resource-specific properties for this resource.
|
|
42
|
+
*/
|
|
43
|
+
readonly properties: pulumi.Output<outputs.onlineexperimentation.OnlineExperimentWorkspacePropertiesResponse>;
|
|
44
|
+
/**
|
|
45
|
+
* The SKU (Stock Keeping Unit) assigned to this resource.
|
|
46
|
+
*/
|
|
47
|
+
readonly sku: pulumi.Output<outputs.onlineexperimentation.OnlineExperimentationWorkspaceSkuResponse | undefined>;
|
|
48
|
+
/**
|
|
49
|
+
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
50
|
+
*/
|
|
51
|
+
readonly systemData: pulumi.Output<outputs.onlineexperimentation.SystemDataResponse>;
|
|
52
|
+
/**
|
|
53
|
+
* Resource tags.
|
|
54
|
+
*/
|
|
55
|
+
readonly tags: pulumi.Output<{
|
|
56
|
+
[key: string]: string;
|
|
57
|
+
} | undefined>;
|
|
58
|
+
/**
|
|
59
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
60
|
+
*/
|
|
61
|
+
readonly type: pulumi.Output<string>;
|
|
62
|
+
/**
|
|
63
|
+
* Create a OnlineExperimentWorkspace resource with the given unique name, arguments, and options.
|
|
64
|
+
*
|
|
65
|
+
* @param name The _unique_ name of the resource.
|
|
66
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
67
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
68
|
+
*/
|
|
69
|
+
constructor(name: string, args: OnlineExperimentWorkspaceArgs, opts?: pulumi.CustomResourceOptions);
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* The set of arguments for constructing a OnlineExperimentWorkspace resource.
|
|
73
|
+
*/
|
|
74
|
+
export interface OnlineExperimentWorkspaceArgs {
|
|
75
|
+
/**
|
|
76
|
+
* The managed service identities assigned to this resource.
|
|
77
|
+
*/
|
|
78
|
+
identity?: pulumi.Input<inputs.onlineexperimentation.ManagedServiceIdentityArgs>;
|
|
79
|
+
/**
|
|
80
|
+
* The geo-location where the resource lives
|
|
81
|
+
*/
|
|
82
|
+
location?: pulumi.Input<string>;
|
|
83
|
+
/**
|
|
84
|
+
* The resource-specific properties for this resource.
|
|
85
|
+
*/
|
|
86
|
+
properties?: pulumi.Input<inputs.onlineexperimentation.OnlineExperimentWorkspacePropertiesArgs>;
|
|
87
|
+
/**
|
|
88
|
+
* The name of the resource group. The name is case insensitive.
|
|
89
|
+
*/
|
|
90
|
+
resourceGroupName: pulumi.Input<string>;
|
|
91
|
+
/**
|
|
92
|
+
* The SKU (Stock Keeping Unit) assigned to this resource.
|
|
93
|
+
*/
|
|
94
|
+
sku?: pulumi.Input<inputs.onlineexperimentation.OnlineExperimentationWorkspaceSkuArgs>;
|
|
95
|
+
/**
|
|
96
|
+
* Resource tags.
|
|
97
|
+
*/
|
|
98
|
+
tags?: pulumi.Input<{
|
|
99
|
+
[key: string]: pulumi.Input<string>;
|
|
100
|
+
}>;
|
|
101
|
+
/**
|
|
102
|
+
* The name of the OnlineExperimentWorkspace
|
|
103
|
+
*/
|
|
104
|
+
workspaceName?: pulumi.Input<string>;
|
|
105
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.OnlineExperimentWorkspace = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* An online experiment workspace resource.
|
|
10
|
+
*
|
|
11
|
+
* Uses Azure REST API version 2025-05-31-preview.
|
|
12
|
+
*/
|
|
13
|
+
class OnlineExperimentWorkspace extends pulumi.CustomResource {
|
|
14
|
+
/**
|
|
15
|
+
* Get an existing OnlineExperimentWorkspace resource's state with the given name, ID, and optional extra
|
|
16
|
+
* properties used to qualify the lookup.
|
|
17
|
+
*
|
|
18
|
+
* @param name The _unique_ name of the resulting resource.
|
|
19
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
20
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
21
|
+
*/
|
|
22
|
+
static get(name, id, opts) {
|
|
23
|
+
return new OnlineExperimentWorkspace(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Returns true if the given object is an instance of OnlineExperimentWorkspace. This is designed to work even
|
|
27
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
28
|
+
*/
|
|
29
|
+
static isInstance(obj) {
|
|
30
|
+
if (obj === undefined || obj === null) {
|
|
31
|
+
return false;
|
|
32
|
+
}
|
|
33
|
+
return obj['__pulumiType'] === OnlineExperimentWorkspace.__pulumiType;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Create a OnlineExperimentWorkspace resource with the given unique name, arguments, and options.
|
|
37
|
+
*
|
|
38
|
+
* @param name The _unique_ name of the resource.
|
|
39
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
40
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
41
|
+
*/
|
|
42
|
+
constructor(name, args, opts) {
|
|
43
|
+
let resourceInputs = {};
|
|
44
|
+
opts = opts || {};
|
|
45
|
+
if (!opts.id) {
|
|
46
|
+
if ((!args || args.resourceGroupName === undefined) && !opts.urn) {
|
|
47
|
+
throw new Error("Missing required property 'resourceGroupName'");
|
|
48
|
+
}
|
|
49
|
+
resourceInputs["identity"] = args ? args.identity : undefined;
|
|
50
|
+
resourceInputs["location"] = args ? args.location : undefined;
|
|
51
|
+
resourceInputs["properties"] = args ? args.properties : undefined;
|
|
52
|
+
resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
|
|
53
|
+
resourceInputs["sku"] = args ? args.sku : undefined;
|
|
54
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
55
|
+
resourceInputs["workspaceName"] = args ? args.workspaceName : undefined;
|
|
56
|
+
resourceInputs["azureApiVersion"] = undefined /*out*/;
|
|
57
|
+
resourceInputs["name"] = undefined /*out*/;
|
|
58
|
+
resourceInputs["systemData"] = undefined /*out*/;
|
|
59
|
+
resourceInputs["type"] = undefined /*out*/;
|
|
60
|
+
}
|
|
61
|
+
else {
|
|
62
|
+
resourceInputs["azureApiVersion"] = undefined /*out*/;
|
|
63
|
+
resourceInputs["identity"] = undefined /*out*/;
|
|
64
|
+
resourceInputs["location"] = undefined /*out*/;
|
|
65
|
+
resourceInputs["name"] = undefined /*out*/;
|
|
66
|
+
resourceInputs["properties"] = undefined /*out*/;
|
|
67
|
+
resourceInputs["sku"] = undefined /*out*/;
|
|
68
|
+
resourceInputs["systemData"] = undefined /*out*/;
|
|
69
|
+
resourceInputs["tags"] = undefined /*out*/;
|
|
70
|
+
resourceInputs["type"] = undefined /*out*/;
|
|
71
|
+
}
|
|
72
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
73
|
+
const aliasOpts = { aliases: [{ type: "azure-native:onlineexperimentation/v20250531preview:OnlineExperimentWorkspace" }] };
|
|
74
|
+
opts = pulumi.mergeOptions(opts, aliasOpts);
|
|
75
|
+
super(OnlineExperimentWorkspace.__pulumiType, name, resourceInputs, opts);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
exports.OnlineExperimentWorkspace = OnlineExperimentWorkspace;
|
|
79
|
+
/** @internal */
|
|
80
|
+
OnlineExperimentWorkspace.__pulumiType = 'azure-native:onlineexperimentation:OnlineExperimentWorkspace';
|
|
81
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib25saW5lRXhwZXJpbWVudFdvcmtzcGFjZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL29ubGluZWV4cGVyaW1lbnRhdGlvbi9vbmxpbmVFeHBlcmltZW50V29ya3NwYWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxzRUFBc0U7QUFDdEUsaUZBQWlGOzs7QUFFakYseUNBQXlDO0FBSXpDLDBDQUEwQztBQUUxQzs7OztHQUlHO0FBQ0gsTUFBYSx5QkFBMEIsU0FBUSxNQUFNLENBQUMsY0FBYztJQUNoRTs7Ozs7OztPQU9HO0lBQ0ksTUFBTSxDQUFDLEdBQUcsQ0FBQyxJQUFZLEVBQUUsRUFBMkIsRUFBRSxJQUFtQztRQUM1RixPQUFPLElBQUkseUJBQXlCLENBQUMsSUFBSSxFQUFFLFNBQWdCLGtDQUFPLElBQUksS0FBRSxFQUFFLEVBQUUsRUFBRSxJQUFHLENBQUM7SUFDdEYsQ0FBQztJQUtEOzs7T0FHRztJQUNJLE1BQU0sQ0FBQyxVQUFVLENBQUMsR0FBUTtRQUM3QixJQUFJLEdBQUcsS0FBSyxTQUFTLElBQUksR0FBRyxLQUFLLElBQUksRUFBRTtZQUNuQyxPQUFPLEtBQUssQ0FBQztTQUNoQjtRQUNELE9BQU8sR0FBRyxDQUFDLGNBQWMsQ0FBQyxLQUFLLHlCQUF5QixDQUFDLFlBQVksQ0FBQztJQUMxRSxDQUFDO0lBdUNEOzs7Ozs7T0FNRztJQUNILFlBQVksSUFBWSxFQUFFLElBQW1DLEVBQUUsSUFBbUM7UUFDOUYsSUFBSSxjQUFjLEdBQWtCLEVBQUUsQ0FBQztRQUN2QyxJQUFJLEdBQUcsSUFBSSxJQUFJLEVBQUUsQ0FBQztRQUNsQixJQUFJLENBQUMsSUFBSSxDQUFDLEVBQUUsRUFBRTtZQUNWLElBQUksQ0FBQyxDQUFDLElBQUksSUFBSSxJQUFJLENBQUMsaUJBQWlCLEtBQUssU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsR0FBRyxFQUFFO2dCQUM5RCxNQUFNLElBQUksS0FBSyxDQUFDLCtDQUEr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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/azure-native",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0-alpha.1745626403",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"azure",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "azure-native",
|
|
27
|
-
"version": "3.
|
|
27
|
+
"version": "3.3.0-alpha.1745626403"
|
|
28
28
|
}
|
|
29
29
|
}
|