@pulumi/azure 5.88.0 → 5.89.0-alpha.1724152320

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.
Files changed (60) hide show
  1. package/cognitive/aiservices.d.ts +274 -0
  2. package/cognitive/aiservices.js +121 -0
  3. package/cognitive/aiservices.js.map +1 -0
  4. package/cognitive/index.d.ts +3 -0
  5. package/cognitive/index.js +6 -1
  6. package/cognitive/index.js.map +1 -1
  7. package/communication/index.d.ts +3 -0
  8. package/communication/index.js +6 -1
  9. package/communication/index.js.map +1 -1
  10. package/communication/serviceEmailDomainAssociation.d.ts +102 -0
  11. package/communication/serviceEmailDomainAssociation.js +99 -0
  12. package/communication/serviceEmailDomainAssociation.js.map +1 -0
  13. package/containerservice/getKubernetesCluster.d.ts +1 -1
  14. package/containerservice/kubernetesCluster.d.ts +3 -9
  15. package/containerservice/kubernetesCluster.js.map +1 -1
  16. package/containerservice/kubernetesClusterNodePool.d.ts +9 -21
  17. package/containerservice/kubernetesClusterNodePool.js.map +1 -1
  18. package/cosmosdb/account.d.ts +3 -0
  19. package/cosmosdb/account.js +2 -0
  20. package/cosmosdb/account.js.map +1 -1
  21. package/cosmosdb/sqlContainer.d.ts +4 -4
  22. package/cosmosdb/sqlContainer.js +1 -1
  23. package/devcenter/index.d.ts +3 -0
  24. package/devcenter/index.js +6 -1
  25. package/devcenter/index.js.map +1 -1
  26. package/devcenter/projectEnvironmentType.d.ts +193 -0
  27. package/devcenter/projectEnvironmentType.js +125 -0
  28. package/devcenter/projectEnvironmentType.js.map +1 -0
  29. package/extendedlocation/customLocation.d.ts +159 -0
  30. package/extendedlocation/customLocation.js +90 -0
  31. package/extendedlocation/customLocation.js.map +1 -0
  32. package/extendedlocation/index.d.ts +3 -0
  33. package/extendedlocation/index.js +22 -0
  34. package/extendedlocation/index.js.map +1 -0
  35. package/index.d.ts +2 -1
  36. package/index.js +4 -2
  37. package/index.js.map +1 -1
  38. package/network/expressRouteConnection.d.ts +3 -3
  39. package/nginx/deployment.d.ts +4 -4
  40. package/nginx/deployment.js +1 -1
  41. package/package.json +2 -2
  42. package/postgresql/flexibleServerVirtualEndpoint.d.ts +141 -0
  43. package/postgresql/flexibleServerVirtualEndpoint.js +121 -0
  44. package/postgresql/flexibleServerVirtualEndpoint.js.map +1 -0
  45. package/postgresql/index.d.ts +3 -0
  46. package/postgresql/index.js +6 -1
  47. package/postgresql/index.js.map +1 -1
  48. package/recoveryservices/getVault.d.ts +5 -0
  49. package/recoveryservices/getVault.js.map +1 -1
  50. package/search/getService.d.ts +6 -0
  51. package/search/getService.js.map +1 -1
  52. package/storage/getTableEntities.d.ts +23 -8
  53. package/storage/getTableEntities.js +1 -0
  54. package/storage/getTableEntities.js.map +1 -1
  55. package/storage/getTableEntity.d.ts +23 -8
  56. package/storage/getTableEntity.js +1 -0
  57. package/storage/getTableEntity.js.map +1 -1
  58. package/synapse/sparkPool.d.ts +1 -1
  59. package/types/input.d.ts +121 -15
  60. package/types/output.d.ts +141 -16
@@ -0,0 +1,274 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "../types/input";
3
+ import * as outputs from "../types/output";
4
+ /**
5
+ * Manages an AI Services 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-resources",
15
+ * location: "West Europe",
16
+ * });
17
+ * const exampleAIServices = new azure.cognitive.AIServices("example", {
18
+ * name: "example-account",
19
+ * location: example.location,
20
+ * resourceGroupName: example.name,
21
+ * skuName: "S0",
22
+ * tags: {
23
+ * Acceptance: "Test",
24
+ * },
25
+ * });
26
+ * ```
27
+ *
28
+ * ## Import
29
+ *
30
+ * AI Services Account can be imported using the `resource id`, e.g.
31
+ *
32
+ * ```sh
33
+ * $ pulumi import azure:cognitive/aIServices:AIServices account1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.CognitiveServices/accounts/account1
34
+ * ```
35
+ */
36
+ export declare class AIServices extends pulumi.CustomResource {
37
+ /**
38
+ * Get an existing AIServices resource's state with the given name, ID, and optional extra
39
+ * properties used to qualify the lookup.
40
+ *
41
+ * @param name The _unique_ name of the resulting resource.
42
+ * @param id The _unique_ provider ID of the resource to lookup.
43
+ * @param state Any extra arguments used during the lookup.
44
+ * @param opts Optional settings to control the behavior of the CustomResource.
45
+ */
46
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AIServicesState, opts?: pulumi.CustomResourceOptions): AIServices;
47
+ /**
48
+ * Returns true if the given object is an instance of AIServices. This is designed to work even
49
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
50
+ */
51
+ static isInstance(obj: any): obj is AIServices;
52
+ /**
53
+ * The subdomain name used for token-based authentication. This property is required when `networkAcls` is specified. Changing this forces a new resource to be created.
54
+ */
55
+ readonly customSubdomainName: pulumi.Output<string | undefined>;
56
+ /**
57
+ * A `customerManagedKey` block as documented below.
58
+ */
59
+ readonly customerManagedKey: pulumi.Output<outputs.cognitive.AIServicesCustomerManagedKey | undefined>;
60
+ /**
61
+ * The endpoint used to connect to the AI Services Account.
62
+ */
63
+ readonly endpoint: pulumi.Output<string>;
64
+ /**
65
+ * List of FQDNs allowed for the AI Services Account.
66
+ */
67
+ readonly fqdns: pulumi.Output<string[] | undefined>;
68
+ /**
69
+ * An `identity` block as defined below.
70
+ */
71
+ readonly identity: pulumi.Output<outputs.cognitive.AIServicesIdentity | undefined>;
72
+ /**
73
+ * Whether local authentication is enabled for the AI Services Account. Defaults to `true`.
74
+ */
75
+ readonly localAuthenticationEnabled: pulumi.Output<boolean | undefined>;
76
+ /**
77
+ * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
78
+ */
79
+ readonly location: pulumi.Output<string>;
80
+ /**
81
+ * Specifies the name of the AI Services Account. Changing this forces a new resource to be created.
82
+ */
83
+ readonly name: pulumi.Output<string>;
84
+ /**
85
+ * A `networkAcls` block as defined below. When this property is specified, `customSubdomainName` is also required to be set.
86
+ */
87
+ readonly networkAcls: pulumi.Output<outputs.cognitive.AIServicesNetworkAcls | undefined>;
88
+ /**
89
+ * Whether outbound network access is restricted for the AI Services Account. Defaults to `false`.
90
+ */
91
+ readonly outboundNetworkAccessRestricted: pulumi.Output<boolean | undefined>;
92
+ /**
93
+ * A primary access key which can be used to connect to the AI Services Account.
94
+ */
95
+ readonly primaryAccessKey: pulumi.Output<string>;
96
+ /**
97
+ * Whether public network access is allowed for the AI Services Account. Possible values are `Enabled` and `Disabled`. Defaults to `Enabled`.
98
+ */
99
+ readonly publicNetworkAccess: pulumi.Output<string | undefined>;
100
+ /**
101
+ * The name of the resource group in which the AI Services Account is created. Changing this forces a new resource to be created.
102
+ */
103
+ readonly resourceGroupName: pulumi.Output<string>;
104
+ /**
105
+ * The secondary access key which can be used to connect to the AI Services Account.
106
+ */
107
+ readonly secondaryAccessKey: pulumi.Output<string>;
108
+ /**
109
+ * Specifies the SKU Name for this AI Services Account. Possible values are `F0`, `F1`, `S0`, `S`, `S1`, `S2`, `S3`, `S4`, `S5`, `S6`, `P0`, `P1`, `P2`, `E0` and `DC0`.
110
+ *
111
+ * > **NOTE:** SKU `DC0` is the commitment tier for AI Services Account containers running in disconnected environments. You must obtain approval from Microsoft by submitting the [request form](https://aka.ms/csdisconnectedcontainers) first, before you can use this SKU. More information on [Purchase a commitment plan to use containers in disconnected environments](https://learn.microsoft.com/en-us/azure/cognitive-services/containers/disconnected-containers?tabs=stt#purchase-a-commitment-plan-to-use-containers-in-disconnected-environments).
112
+ */
113
+ readonly skuName: pulumi.Output<string>;
114
+ /**
115
+ * A `storage` block as defined below.
116
+ */
117
+ readonly storages: pulumi.Output<outputs.cognitive.AIServicesStorage[] | undefined>;
118
+ /**
119
+ * A mapping of tags to assign to the resource.
120
+ */
121
+ readonly tags: pulumi.Output<{
122
+ [key: string]: string;
123
+ } | undefined>;
124
+ /**
125
+ * Create a AIServices resource with the given unique name, arguments, and options.
126
+ *
127
+ * @param name The _unique_ name of the resource.
128
+ * @param args The arguments to use to populate this resource's properties.
129
+ * @param opts A bag of options that control this resource's behavior.
130
+ */
131
+ constructor(name: string, args: AIServicesArgs, opts?: pulumi.CustomResourceOptions);
132
+ }
133
+ /**
134
+ * Input properties used for looking up and filtering AIServices resources.
135
+ */
136
+ export interface AIServicesState {
137
+ /**
138
+ * The subdomain name used for token-based authentication. This property is required when `networkAcls` is specified. Changing this forces a new resource to be created.
139
+ */
140
+ customSubdomainName?: pulumi.Input<string>;
141
+ /**
142
+ * A `customerManagedKey` block as documented below.
143
+ */
144
+ customerManagedKey?: pulumi.Input<inputs.cognitive.AIServicesCustomerManagedKey>;
145
+ /**
146
+ * The endpoint used to connect to the AI Services Account.
147
+ */
148
+ endpoint?: pulumi.Input<string>;
149
+ /**
150
+ * List of FQDNs allowed for the AI Services Account.
151
+ */
152
+ fqdns?: pulumi.Input<pulumi.Input<string>[]>;
153
+ /**
154
+ * An `identity` block as defined below.
155
+ */
156
+ identity?: pulumi.Input<inputs.cognitive.AIServicesIdentity>;
157
+ /**
158
+ * Whether local authentication is enabled for the AI Services Account. Defaults to `true`.
159
+ */
160
+ localAuthenticationEnabled?: pulumi.Input<boolean>;
161
+ /**
162
+ * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
163
+ */
164
+ location?: pulumi.Input<string>;
165
+ /**
166
+ * Specifies the name of the AI Services Account. Changing this forces a new resource to be created.
167
+ */
168
+ name?: pulumi.Input<string>;
169
+ /**
170
+ * A `networkAcls` block as defined below. When this property is specified, `customSubdomainName` is also required to be set.
171
+ */
172
+ networkAcls?: pulumi.Input<inputs.cognitive.AIServicesNetworkAcls>;
173
+ /**
174
+ * Whether outbound network access is restricted for the AI Services Account. Defaults to `false`.
175
+ */
176
+ outboundNetworkAccessRestricted?: pulumi.Input<boolean>;
177
+ /**
178
+ * A primary access key which can be used to connect to the AI Services Account.
179
+ */
180
+ primaryAccessKey?: pulumi.Input<string>;
181
+ /**
182
+ * Whether public network access is allowed for the AI Services Account. Possible values are `Enabled` and `Disabled`. Defaults to `Enabled`.
183
+ */
184
+ publicNetworkAccess?: pulumi.Input<string>;
185
+ /**
186
+ * The name of the resource group in which the AI Services Account is created. Changing this forces a new resource to be created.
187
+ */
188
+ resourceGroupName?: pulumi.Input<string>;
189
+ /**
190
+ * The secondary access key which can be used to connect to the AI Services Account.
191
+ */
192
+ secondaryAccessKey?: pulumi.Input<string>;
193
+ /**
194
+ * Specifies the SKU Name for this AI Services Account. Possible values are `F0`, `F1`, `S0`, `S`, `S1`, `S2`, `S3`, `S4`, `S5`, `S6`, `P0`, `P1`, `P2`, `E0` and `DC0`.
195
+ *
196
+ * > **NOTE:** SKU `DC0` is the commitment tier for AI Services Account containers running in disconnected environments. You must obtain approval from Microsoft by submitting the [request form](https://aka.ms/csdisconnectedcontainers) first, before you can use this SKU. More information on [Purchase a commitment plan to use containers in disconnected environments](https://learn.microsoft.com/en-us/azure/cognitive-services/containers/disconnected-containers?tabs=stt#purchase-a-commitment-plan-to-use-containers-in-disconnected-environments).
197
+ */
198
+ skuName?: pulumi.Input<string>;
199
+ /**
200
+ * A `storage` block as defined below.
201
+ */
202
+ storages?: pulumi.Input<pulumi.Input<inputs.cognitive.AIServicesStorage>[]>;
203
+ /**
204
+ * A mapping of tags to assign to the resource.
205
+ */
206
+ tags?: pulumi.Input<{
207
+ [key: string]: pulumi.Input<string>;
208
+ }>;
209
+ }
210
+ /**
211
+ * The set of arguments for constructing a AIServices resource.
212
+ */
213
+ export interface AIServicesArgs {
214
+ /**
215
+ * The subdomain name used for token-based authentication. This property is required when `networkAcls` is specified. Changing this forces a new resource to be created.
216
+ */
217
+ customSubdomainName?: pulumi.Input<string>;
218
+ /**
219
+ * A `customerManagedKey` block as documented below.
220
+ */
221
+ customerManagedKey?: pulumi.Input<inputs.cognitive.AIServicesCustomerManagedKey>;
222
+ /**
223
+ * List of FQDNs allowed for the AI Services Account.
224
+ */
225
+ fqdns?: pulumi.Input<pulumi.Input<string>[]>;
226
+ /**
227
+ * An `identity` block as defined below.
228
+ */
229
+ identity?: pulumi.Input<inputs.cognitive.AIServicesIdentity>;
230
+ /**
231
+ * Whether local authentication is enabled for the AI Services Account. Defaults to `true`.
232
+ */
233
+ localAuthenticationEnabled?: pulumi.Input<boolean>;
234
+ /**
235
+ * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
236
+ */
237
+ location?: pulumi.Input<string>;
238
+ /**
239
+ * Specifies the name of the AI Services Account. Changing this forces a new resource to be created.
240
+ */
241
+ name?: pulumi.Input<string>;
242
+ /**
243
+ * A `networkAcls` block as defined below. When this property is specified, `customSubdomainName` is also required to be set.
244
+ */
245
+ networkAcls?: pulumi.Input<inputs.cognitive.AIServicesNetworkAcls>;
246
+ /**
247
+ * Whether outbound network access is restricted for the AI Services Account. Defaults to `false`.
248
+ */
249
+ outboundNetworkAccessRestricted?: pulumi.Input<boolean>;
250
+ /**
251
+ * Whether public network access is allowed for the AI Services Account. Possible values are `Enabled` and `Disabled`. Defaults to `Enabled`.
252
+ */
253
+ publicNetworkAccess?: pulumi.Input<string>;
254
+ /**
255
+ * The name of the resource group in which the AI Services Account is created. Changing this forces a new resource to be created.
256
+ */
257
+ resourceGroupName: pulumi.Input<string>;
258
+ /**
259
+ * Specifies the SKU Name for this AI Services Account. Possible values are `F0`, `F1`, `S0`, `S`, `S1`, `S2`, `S3`, `S4`, `S5`, `S6`, `P0`, `P1`, `P2`, `E0` and `DC0`.
260
+ *
261
+ * > **NOTE:** SKU `DC0` is the commitment tier for AI Services Account containers running in disconnected environments. You must obtain approval from Microsoft by submitting the [request form](https://aka.ms/csdisconnectedcontainers) first, before you can use this SKU. More information on [Purchase a commitment plan to use containers in disconnected environments](https://learn.microsoft.com/en-us/azure/cognitive-services/containers/disconnected-containers?tabs=stt#purchase-a-commitment-plan-to-use-containers-in-disconnected-environments).
262
+ */
263
+ skuName: pulumi.Input<string>;
264
+ /**
265
+ * A `storage` block as defined below.
266
+ */
267
+ storages?: pulumi.Input<pulumi.Input<inputs.cognitive.AIServicesStorage>[]>;
268
+ /**
269
+ * A mapping of tags to assign to the resource.
270
+ */
271
+ tags?: pulumi.Input<{
272
+ [key: string]: pulumi.Input<string>;
273
+ }>;
274
+ }
@@ -0,0 +1,121 @@
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.AIServices = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Manages an AI Services 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-resources",
19
+ * location: "West Europe",
20
+ * });
21
+ * const exampleAIServices = new azure.cognitive.AIServices("example", {
22
+ * name: "example-account",
23
+ * location: example.location,
24
+ * resourceGroupName: example.name,
25
+ * skuName: "S0",
26
+ * tags: {
27
+ * Acceptance: "Test",
28
+ * },
29
+ * });
30
+ * ```
31
+ *
32
+ * ## Import
33
+ *
34
+ * AI Services Account can be imported using the `resource id`, e.g.
35
+ *
36
+ * ```sh
37
+ * $ pulumi import azure:cognitive/aIServices:AIServices account1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.CognitiveServices/accounts/account1
38
+ * ```
39
+ */
40
+ class AIServices extends pulumi.CustomResource {
41
+ constructor(name, argsOrState, opts) {
42
+ let resourceInputs = {};
43
+ opts = opts || {};
44
+ if (opts.id) {
45
+ const state = argsOrState;
46
+ resourceInputs["customSubdomainName"] = state ? state.customSubdomainName : undefined;
47
+ resourceInputs["customerManagedKey"] = state ? state.customerManagedKey : undefined;
48
+ resourceInputs["endpoint"] = state ? state.endpoint : undefined;
49
+ resourceInputs["fqdns"] = state ? state.fqdns : undefined;
50
+ resourceInputs["identity"] = state ? state.identity : undefined;
51
+ resourceInputs["localAuthenticationEnabled"] = state ? state.localAuthenticationEnabled : undefined;
52
+ resourceInputs["location"] = state ? state.location : undefined;
53
+ resourceInputs["name"] = state ? state.name : undefined;
54
+ resourceInputs["networkAcls"] = state ? state.networkAcls : undefined;
55
+ resourceInputs["outboundNetworkAccessRestricted"] = state ? state.outboundNetworkAccessRestricted : undefined;
56
+ resourceInputs["primaryAccessKey"] = state ? state.primaryAccessKey : undefined;
57
+ resourceInputs["publicNetworkAccess"] = state ? state.publicNetworkAccess : undefined;
58
+ resourceInputs["resourceGroupName"] = state ? state.resourceGroupName : undefined;
59
+ resourceInputs["secondaryAccessKey"] = state ? state.secondaryAccessKey : undefined;
60
+ resourceInputs["skuName"] = state ? state.skuName : undefined;
61
+ resourceInputs["storages"] = state ? state.storages : undefined;
62
+ resourceInputs["tags"] = state ? state.tags : undefined;
63
+ }
64
+ else {
65
+ const args = argsOrState;
66
+ if ((!args || args.resourceGroupName === undefined) && !opts.urn) {
67
+ throw new Error("Missing required property 'resourceGroupName'");
68
+ }
69
+ if ((!args || args.skuName === undefined) && !opts.urn) {
70
+ throw new Error("Missing required property 'skuName'");
71
+ }
72
+ resourceInputs["customSubdomainName"] = args ? args.customSubdomainName : undefined;
73
+ resourceInputs["customerManagedKey"] = args ? args.customerManagedKey : undefined;
74
+ resourceInputs["fqdns"] = args ? args.fqdns : undefined;
75
+ resourceInputs["identity"] = args ? args.identity : undefined;
76
+ resourceInputs["localAuthenticationEnabled"] = args ? args.localAuthenticationEnabled : undefined;
77
+ resourceInputs["location"] = args ? args.location : undefined;
78
+ resourceInputs["name"] = args ? args.name : undefined;
79
+ resourceInputs["networkAcls"] = args ? args.networkAcls : undefined;
80
+ resourceInputs["outboundNetworkAccessRestricted"] = args ? args.outboundNetworkAccessRestricted : undefined;
81
+ resourceInputs["publicNetworkAccess"] = args ? args.publicNetworkAccess : undefined;
82
+ resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
83
+ resourceInputs["skuName"] = args ? args.skuName : undefined;
84
+ resourceInputs["storages"] = args ? args.storages : undefined;
85
+ resourceInputs["tags"] = args ? args.tags : undefined;
86
+ resourceInputs["endpoint"] = undefined /*out*/;
87
+ resourceInputs["primaryAccessKey"] = undefined /*out*/;
88
+ resourceInputs["secondaryAccessKey"] = undefined /*out*/;
89
+ }
90
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
91
+ const secretOpts = { additionalSecretOutputs: ["primaryAccessKey", "secondaryAccessKey"] };
92
+ opts = pulumi.mergeOptions(opts, secretOpts);
93
+ super(AIServices.__pulumiType, name, resourceInputs, opts);
94
+ }
95
+ /**
96
+ * Get an existing AIServices resource's state with the given name, ID, and optional extra
97
+ * properties used to qualify the lookup.
98
+ *
99
+ * @param name The _unique_ name of the resulting resource.
100
+ * @param id The _unique_ provider ID of the resource to lookup.
101
+ * @param state Any extra arguments used during the lookup.
102
+ * @param opts Optional settings to control the behavior of the CustomResource.
103
+ */
104
+ static get(name, id, state, opts) {
105
+ return new AIServices(name, state, Object.assign(Object.assign({}, opts), { id: id }));
106
+ }
107
+ /**
108
+ * Returns true if the given object is an instance of AIServices. This is designed to work even
109
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
110
+ */
111
+ static isInstance(obj) {
112
+ if (obj === undefined || obj === null) {
113
+ return false;
114
+ }
115
+ return obj['__pulumiType'] === AIServices.__pulumiType;
116
+ }
117
+ }
118
+ exports.AIServices = AIServices;
119
+ /** @internal */
120
+ AIServices.__pulumiType = 'azure:cognitive/aIServices:AIServices';
121
+ //# sourceMappingURL=aiservices.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"aiservices.js","sourceRoot":"","sources":["../../cognitive/aiservices.ts"],"names":[],"mappings":"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"}
@@ -4,6 +4,9 @@ export declare const Account: typeof import("./account").Account;
4
4
  export { AccountCustomerManagedKeyArgs, AccountCustomerManagedKeyState } from "./accountCustomerManagedKey";
5
5
  export declare type AccountCustomerManagedKey = import("./accountCustomerManagedKey").AccountCustomerManagedKey;
6
6
  export declare const AccountCustomerManagedKey: typeof import("./accountCustomerManagedKey").AccountCustomerManagedKey;
7
+ export { AIServicesArgs, AIServicesState } from "./aiservices";
8
+ export declare type AIServices = import("./aiservices").AIServices;
9
+ export declare const AIServices: typeof import("./aiservices").AIServices;
7
10
  export { DeploymentArgs, DeploymentState } from "./deployment";
8
11
  export declare type Deployment = import("./deployment").Deployment;
9
12
  export declare const Deployment: typeof import("./deployment").Deployment;
@@ -2,13 +2,15 @@
2
2
  // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.getAccountOutput = exports.getAccount = exports.Deployment = exports.AccountCustomerManagedKey = exports.Account = void 0;
5
+ exports.getAccountOutput = exports.getAccount = exports.Deployment = exports.AIServices = exports.AccountCustomerManagedKey = exports.Account = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  exports.Account = null;
9
9
  utilities.lazyLoad(exports, ["Account"], () => require("./account"));
10
10
  exports.AccountCustomerManagedKey = null;
11
11
  utilities.lazyLoad(exports, ["AccountCustomerManagedKey"], () => require("./accountCustomerManagedKey"));
12
+ exports.AIServices = null;
13
+ utilities.lazyLoad(exports, ["AIServices"], () => require("./aiservices"));
12
14
  exports.Deployment = null;
13
15
  utilities.lazyLoad(exports, ["Deployment"], () => require("./deployment"));
14
16
  exports.getAccount = null;
@@ -18,6 +20,8 @@ const _module = {
18
20
  version: utilities.getVersion(),
19
21
  construct: (name, type, urn) => {
20
22
  switch (type) {
23
+ case "azure:cognitive/aIServices:AIServices":
24
+ return new exports.AIServices(name, undefined, { urn });
21
25
  case "azure:cognitive/account:Account":
22
26
  return new exports.Account(name, undefined, { urn });
23
27
  case "azure:cognitive/accountCustomerManagedKey:AccountCustomerManagedKey":
@@ -29,6 +33,7 @@ const _module = {
29
33
  }
30
34
  },
31
35
  };
36
+ pulumi.runtime.registerResourceModule("azure", "cognitive/aIServices", _module);
32
37
  pulumi.runtime.registerResourceModule("azure", "cognitive/account", _module);
33
38
  pulumi.runtime.registerResourceModule("azure", "cognitive/accountCustomerManagedKey", _module);
34
39
  pulumi.runtime.registerResourceModule("azure", "cognitive/deployment", _module);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../cognitive/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;AAIxD,QAAA,yBAAyB,GAA2E,IAAW,CAAC;AAC7H,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,2BAA2B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,6BAA6B,CAAC,CAAC,CAAC;AAI5F,QAAA,UAAU,GAA6C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAG9D,QAAA,UAAU,GAA6C,IAAW,CAAC;AACnE,QAAA,gBAAgB,GAAmD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,EAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAG9F,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,iCAAiC;gBAClC,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD,KAAK,qEAAqE;gBACtE,OAAO,IAAI,iCAAyB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvE,KAAK,uCAAuC;gBACxC,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,qCAAqC,EAAE,OAAO,CAAC,CAAA;AAC9F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../cognitive/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;AAIxD,QAAA,yBAAyB,GAA2E,IAAW,CAAC;AAC7H,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,2BAA2B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,6BAA6B,CAAC,CAAC,CAAC;AAI5F,QAAA,UAAU,GAA6C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAI9D,QAAA,UAAU,GAA6C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAG9D,QAAA,UAAU,GAA6C,IAAW,CAAC;AACnE,QAAA,gBAAgB,GAAmD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,EAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAG9F,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,uCAAuC;gBACxC,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,iCAAiC;gBAClC,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD,KAAK,qEAAqE;gBACtE,OAAO,IAAI,iCAAyB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvE,KAAK,uCAAuC;gBACxC,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD;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;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,qCAAqC,EAAE,OAAO,CAAC,CAAA;AAC9F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA"}
@@ -10,3 +10,6 @@ export declare const getServiceOutput: typeof import("./getService").getServiceO
10
10
  export { ServiceArgs, ServiceState } from "./service";
11
11
  export declare type Service = import("./service").Service;
12
12
  export declare const Service: typeof import("./service").Service;
13
+ export { ServiceEmailDomainAssociationArgs, ServiceEmailDomainAssociationState } from "./serviceEmailDomainAssociation";
14
+ export declare type ServiceEmailDomainAssociation = import("./serviceEmailDomainAssociation").ServiceEmailDomainAssociation;
15
+ export declare const ServiceEmailDomainAssociation: typeof import("./serviceEmailDomainAssociation").ServiceEmailDomainAssociation;
@@ -2,7 +2,7 @@
2
2
  // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.Service = exports.getServiceOutput = exports.getService = exports.EmailServiceDomain = exports.EmailService = void 0;
5
+ exports.ServiceEmailDomainAssociation = exports.Service = exports.getServiceOutput = exports.getService = exports.EmailServiceDomain = exports.EmailService = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  exports.EmailService = null;
@@ -14,6 +14,8 @@ exports.getServiceOutput = null;
14
14
  utilities.lazyLoad(exports, ["getService", "getServiceOutput"], () => require("./getService"));
15
15
  exports.Service = null;
16
16
  utilities.lazyLoad(exports, ["Service"], () => require("./service"));
17
+ exports.ServiceEmailDomainAssociation = null;
18
+ utilities.lazyLoad(exports, ["ServiceEmailDomainAssociation"], () => require("./serviceEmailDomainAssociation"));
17
19
  const _module = {
18
20
  version: utilities.getVersion(),
19
21
  construct: (name, type, urn) => {
@@ -24,6 +26,8 @@ const _module = {
24
26
  return new exports.EmailServiceDomain(name, undefined, { urn });
25
27
  case "azure:communication/service:Service":
26
28
  return new exports.Service(name, undefined, { urn });
29
+ case "azure:communication/serviceEmailDomainAssociation:ServiceEmailDomainAssociation":
30
+ return new exports.ServiceEmailDomainAssociation(name, undefined, { urn });
27
31
  default:
28
32
  throw new Error(`unknown resource type ${type}`);
29
33
  }
@@ -32,4 +36,5 @@ const _module = {
32
36
  pulumi.runtime.registerResourceModule("azure", "communication/emailService", _module);
33
37
  pulumi.runtime.registerResourceModule("azure", "communication/emailServiceDomain", _module);
34
38
  pulumi.runtime.registerResourceModule("azure", "communication/service", _module);
39
+ pulumi.runtime.registerResourceModule("azure", "communication/serviceEmailDomainAssociation", _module);
35
40
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../communication/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,YAAY,GAAiD,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAIlE,QAAA,kBAAkB,GAA6D,IAAW,CAAC;AACxG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,oBAAoB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,sBAAsB,CAAC,CAAC,CAAC;AAG9E,QAAA,UAAU,GAA6C,IAAW,CAAC;AACnE,QAAA,gBAAgB,GAAmD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,EAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAIjF,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,+CAA+C;gBAChD,OAAO,IAAI,oBAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D,KAAK,2DAA2D;gBAC5D,OAAO,IAAI,0BAAkB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAChE,KAAK,qCAAqC;gBACtC,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,4BAA4B,EAAE,OAAO,CAAC,CAAA;AACrF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,kCAAkC,EAAE,OAAO,CAAC,CAAA;AAC3F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../communication/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,YAAY,GAAiD,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAIlE,QAAA,kBAAkB,GAA6D,IAAW,CAAC;AACxG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,oBAAoB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,sBAAsB,CAAC,CAAC,CAAC;AAG9E,QAAA,UAAU,GAA6C,IAAW,CAAC;AACnE,QAAA,gBAAgB,GAAmD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,EAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAIjF,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;AAIxD,QAAA,6BAA6B,GAAmF,IAAW,CAAC;AACzI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,+BAA+B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iCAAiC,CAAC,CAAC,CAAC;AAGjH,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,+CAA+C;gBAChD,OAAO,IAAI,oBAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D,KAAK,2DAA2D;gBAC5D,OAAO,IAAI,0BAAkB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAChE,KAAK,qCAAqC;gBACtC,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD,KAAK,iFAAiF;gBAClF,OAAO,IAAI,qCAA6B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3E;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,4BAA4B,EAAE,OAAO,CAAC,CAAA;AACrF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,kCAAkC,EAAE,OAAO,CAAC,CAAA;AAC3F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA;AAChF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,6CAA6C,EAAE,OAAO,CAAC,CAAA"}
@@ -0,0 +1,102 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Manages a communication service email domain association.
4
+ *
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as azure from "@pulumi/azure";
10
+ *
11
+ * const example = new azure.core.ResourceGroup("example", {
12
+ * name: "group1",
13
+ * location: "West Europe",
14
+ * });
15
+ * const exampleService = new azure.communication.Service("example", {
16
+ * name: "CommunicationService1",
17
+ * resourceGroupName: example.name,
18
+ * dataLocation: "United States",
19
+ * });
20
+ * const exampleEmailService = new azure.communication.EmailService("example", {
21
+ * name: "emailCommunicationService1",
22
+ * resourceGroupName: example.name,
23
+ * dataLocation: "United States",
24
+ * });
25
+ * const exampleEmailServiceDomain = new azure.communication.EmailServiceDomain("example", {
26
+ * name: "AzureManagedDomain",
27
+ * emailServiceId: exampleEmailService.id,
28
+ * domainManagement: "AzureManaged",
29
+ * });
30
+ * const exampleServiceEmailDomainAssociation = new azure.communication.ServiceEmailDomainAssociation("example", {
31
+ * communicationServiceId: exampleService.id,
32
+ * emailServiceDomainId: exampleEmailServiceDomain.id,
33
+ * });
34
+ * ```
35
+ *
36
+ * ## Import
37
+ *
38
+ * Communication service email domain association can be imported using the `resource id`, e.g.
39
+ *
40
+ * ```sh
41
+ * $ pulumi import azure:communication/serviceEmailDomainAssociation:ServiceEmailDomainAssociation example "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Communication/communicationServices/communicationService1|/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Communication/emailServices/emailCommunicationService1/domains/domain1"
42
+ * ```
43
+ */
44
+ export declare class ServiceEmailDomainAssociation extends pulumi.CustomResource {
45
+ /**
46
+ * Get an existing ServiceEmailDomainAssociation resource's state with the given name, ID, and optional extra
47
+ * properties used to qualify the lookup.
48
+ *
49
+ * @param name The _unique_ name of the resulting resource.
50
+ * @param id The _unique_ provider ID of the resource to lookup.
51
+ * @param state Any extra arguments used during the lookup.
52
+ * @param opts Optional settings to control the behavior of the CustomResource.
53
+ */
54
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ServiceEmailDomainAssociationState, opts?: pulumi.CustomResourceOptions): ServiceEmailDomainAssociation;
55
+ /**
56
+ * Returns true if the given object is an instance of ServiceEmailDomainAssociation. This is designed to work even
57
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
58
+ */
59
+ static isInstance(obj: any): obj is ServiceEmailDomainAssociation;
60
+ /**
61
+ * The ID of the Communication Service. Changing this forces a new communication service email domain association to be created.
62
+ */
63
+ readonly communicationServiceId: pulumi.Output<string>;
64
+ /**
65
+ * The ID of the EMail Service Domain. Changing this forces a new communication service email domain association to be created.
66
+ */
67
+ readonly emailServiceDomainId: pulumi.Output<string>;
68
+ /**
69
+ * Create a ServiceEmailDomainAssociation resource with the given unique name, arguments, and options.
70
+ *
71
+ * @param name The _unique_ name of the resource.
72
+ * @param args The arguments to use to populate this resource's properties.
73
+ * @param opts A bag of options that control this resource's behavior.
74
+ */
75
+ constructor(name: string, args: ServiceEmailDomainAssociationArgs, opts?: pulumi.CustomResourceOptions);
76
+ }
77
+ /**
78
+ * Input properties used for looking up and filtering ServiceEmailDomainAssociation resources.
79
+ */
80
+ export interface ServiceEmailDomainAssociationState {
81
+ /**
82
+ * The ID of the Communication Service. Changing this forces a new communication service email domain association to be created.
83
+ */
84
+ communicationServiceId?: pulumi.Input<string>;
85
+ /**
86
+ * The ID of the EMail Service Domain. Changing this forces a new communication service email domain association to be created.
87
+ */
88
+ emailServiceDomainId?: pulumi.Input<string>;
89
+ }
90
+ /**
91
+ * The set of arguments for constructing a ServiceEmailDomainAssociation resource.
92
+ */
93
+ export interface ServiceEmailDomainAssociationArgs {
94
+ /**
95
+ * The ID of the Communication Service. Changing this forces a new communication service email domain association to be created.
96
+ */
97
+ communicationServiceId: pulumi.Input<string>;
98
+ /**
99
+ * The ID of the EMail Service Domain. Changing this forces a new communication service email domain association to be created.
100
+ */
101
+ emailServiceDomainId: pulumi.Input<string>;
102
+ }