@pulumi/azure 5.76.0-alpha.1715338557 → 5.76.0-alpha.1715400990

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 (62) hide show
  1. package/compute/automanageConfigurationAssignment.d.ts +134 -0
  2. package/compute/automanageConfigurationAssignment.js +131 -0
  3. package/compute/automanageConfigurationAssignment.js.map +1 -0
  4. package/compute/bastionHost.d.ts +18 -0
  5. package/compute/bastionHost.js +2 -0
  6. package/compute/bastionHost.js.map +1 -1
  7. package/compute/galleryApplicationAssignment.d.ts +174 -0
  8. package/compute/galleryApplicationAssignment.js +141 -0
  9. package/compute/galleryApplicationAssignment.js.map +1 -0
  10. package/compute/index.d.ts +6 -0
  11. package/compute/index.js +12 -2
  12. package/compute/index.js.map +1 -1
  13. package/compute/linuxVirtualMachine.d.ts +9 -3
  14. package/compute/linuxVirtualMachine.js.map +1 -1
  15. package/compute/windowsVirtualMachine.d.ts +6 -0
  16. package/compute/windowsVirtualMachine.js.map +1 -1
  17. package/containerapp/environment.d.ts +8 -0
  18. package/containerapp/environment.js +2 -0
  19. package/containerapp/environment.js.map +1 -1
  20. package/containerapp/environmentCustomDomain.d.ts +129 -0
  21. package/containerapp/environmentCustomDomain.js +114 -0
  22. package/containerapp/environmentCustomDomain.js.map +1 -0
  23. package/containerapp/getEnvironment.d.ts +4 -0
  24. package/containerapp/getEnvironment.js.map +1 -1
  25. package/containerapp/index.d.ts +6 -0
  26. package/containerapp/index.js +11 -1
  27. package/containerapp/index.js.map +1 -1
  28. package/containerapp/job.d.ts +323 -0
  29. package/containerapp/job.js +172 -0
  30. package/containerapp/job.js.map +1 -0
  31. package/datafactory/credentialServicePrincipal.d.ts +200 -0
  32. package/datafactory/credentialServicePrincipal.js +148 -0
  33. package/datafactory/credentialServicePrincipal.js.map +1 -0
  34. package/datafactory/index.d.ts +3 -0
  35. package/datafactory/index.js +7 -2
  36. package/datafactory/index.js.map +1 -1
  37. package/kusto/cluster.d.ts +1 -1
  38. package/maintenance/assignmentDynamicScope.d.ts +93 -0
  39. package/maintenance/assignmentDynamicScope.js +72 -0
  40. package/maintenance/assignmentDynamicScope.js.map +1 -0
  41. package/maintenance/index.d.ts +3 -0
  42. package/maintenance/index.js +6 -1
  43. package/maintenance/index.js.map +1 -1
  44. package/mssql/database.d.ts +6 -0
  45. package/mssql/database.js.map +1 -1
  46. package/network/getNetworkManagerConnectivityConfiguration.d.ts +97 -0
  47. package/network/getNetworkManagerConnectivityConfiguration.js +52 -0
  48. package/network/getNetworkManagerConnectivityConfiguration.js.map +1 -0
  49. package/network/getSubnet.d.ts +4 -0
  50. package/network/getSubnet.js.map +1 -1
  51. package/network/index.d.ts +3 -0
  52. package/network/index.js +7 -3
  53. package/network/index.js.map +1 -1
  54. package/network/profile.d.ts +3 -3
  55. package/network/subnet.d.ts +24 -12
  56. package/network/subnet.js +2 -0
  57. package/network/subnet.js.map +1 -1
  58. package/package.json +1 -1
  59. package/postgresql/flexibleServer.d.ts +9 -3
  60. package/postgresql/flexibleServer.js.map +1 -1
  61. package/types/input.d.ts +670 -16
  62. package/types/output.d.ts +753 -23
@@ -0,0 +1,114 @@
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.EnvironmentCustomDomain = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Manages a Container App Environment Custom Domain Suffix.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as azure from "@pulumi/azure";
16
+ * import * as std from "@pulumi/std";
17
+ *
18
+ * const example = new azure.core.ResourceGroup("example", {
19
+ * name: "example-resources",
20
+ * location: "West Europe",
21
+ * });
22
+ * const exampleAnalyticsWorkspace = new azure.operationalinsights.AnalyticsWorkspace("example", {
23
+ * name: "acctest-01",
24
+ * location: example.location,
25
+ * resourceGroupName: example.name,
26
+ * sku: "PerGB2018",
27
+ * retentionInDays: 30,
28
+ * });
29
+ * const exampleEnvironment = new azure.containerapp.Environment("example", {
30
+ * name: "my-environment",
31
+ * location: example.location,
32
+ * resourceGroupName: example.name,
33
+ * logAnalyticsWorkspaceId: exampleAnalyticsWorkspace.id,
34
+ * });
35
+ * const exampleEnvironmentCustomDomain = new azure.containerapp.EnvironmentCustomDomain("example", {
36
+ * containerAppEnvironmentId: exampleEnvironment.id,
37
+ * certificateBlobBase64: std.filebase64({
38
+ * input: "testacc.pfx",
39
+ * }).then(invoke => invoke.result),
40
+ * certificatePassword: "TestAcc",
41
+ * dnsSuffix: "acceptancetest.contoso.com",
42
+ * });
43
+ * ```
44
+ *
45
+ * ## Import
46
+ *
47
+ * A Container App Environment Custom Domain Suffix can be imported using the `resource id` of its parent container ontainer App Environment , e.g.
48
+ *
49
+ * ```sh
50
+ * $ pulumi import azure:containerapp/environmentCustomDomain:EnvironmentCustomDomain example "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resGroup1/providers/Microsoft.App/managedEnvironments/myEnvironment"
51
+ * ```
52
+ */
53
+ class EnvironmentCustomDomain extends pulumi.CustomResource {
54
+ constructor(name, argsOrState, opts) {
55
+ let resourceInputs = {};
56
+ opts = opts || {};
57
+ if (opts.id) {
58
+ const state = argsOrState;
59
+ resourceInputs["certificateBlobBase64"] = state ? state.certificateBlobBase64 : undefined;
60
+ resourceInputs["certificatePassword"] = state ? state.certificatePassword : undefined;
61
+ resourceInputs["containerAppEnvironmentId"] = state ? state.containerAppEnvironmentId : undefined;
62
+ resourceInputs["dnsSuffix"] = state ? state.dnsSuffix : undefined;
63
+ }
64
+ else {
65
+ const args = argsOrState;
66
+ if ((!args || args.certificateBlobBase64 === undefined) && !opts.urn) {
67
+ throw new Error("Missing required property 'certificateBlobBase64'");
68
+ }
69
+ if ((!args || args.certificatePassword === undefined) && !opts.urn) {
70
+ throw new Error("Missing required property 'certificatePassword'");
71
+ }
72
+ if ((!args || args.containerAppEnvironmentId === undefined) && !opts.urn) {
73
+ throw new Error("Missing required property 'containerAppEnvironmentId'");
74
+ }
75
+ if ((!args || args.dnsSuffix === undefined) && !opts.urn) {
76
+ throw new Error("Missing required property 'dnsSuffix'");
77
+ }
78
+ resourceInputs["certificateBlobBase64"] = args ? args.certificateBlobBase64 : undefined;
79
+ resourceInputs["certificatePassword"] = (args === null || args === void 0 ? void 0 : args.certificatePassword) ? pulumi.secret(args.certificatePassword) : undefined;
80
+ resourceInputs["containerAppEnvironmentId"] = args ? args.containerAppEnvironmentId : undefined;
81
+ resourceInputs["dnsSuffix"] = args ? args.dnsSuffix : undefined;
82
+ }
83
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
84
+ const secretOpts = { additionalSecretOutputs: ["certificatePassword"] };
85
+ opts = pulumi.mergeOptions(opts, secretOpts);
86
+ super(EnvironmentCustomDomain.__pulumiType, name, resourceInputs, opts);
87
+ }
88
+ /**
89
+ * Get an existing EnvironmentCustomDomain resource's state with the given name, ID, and optional extra
90
+ * properties used to qualify the lookup.
91
+ *
92
+ * @param name The _unique_ name of the resulting resource.
93
+ * @param id The _unique_ provider ID of the resource to lookup.
94
+ * @param state Any extra arguments used during the lookup.
95
+ * @param opts Optional settings to control the behavior of the CustomResource.
96
+ */
97
+ static get(name, id, state, opts) {
98
+ return new EnvironmentCustomDomain(name, state, Object.assign(Object.assign({}, opts), { id: id }));
99
+ }
100
+ /**
101
+ * Returns true if the given object is an instance of EnvironmentCustomDomain. This is designed to work even
102
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
103
+ */
104
+ static isInstance(obj) {
105
+ if (obj === undefined || obj === null) {
106
+ return false;
107
+ }
108
+ return obj['__pulumiType'] === EnvironmentCustomDomain.__pulumiType;
109
+ }
110
+ }
111
+ exports.EnvironmentCustomDomain = EnvironmentCustomDomain;
112
+ /** @internal */
113
+ EnvironmentCustomDomain.__pulumiType = 'azure:containerapp/environmentCustomDomain:EnvironmentCustomDomain';
114
+ //# sourceMappingURL=environmentCustomDomain.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"environmentCustomDomain.js","sourceRoot":"","sources":["../../containerapp/environmentCustomDomain.ts"],"names":[],"mappings":"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"}
@@ -32,6 +32,10 @@ export interface GetEnvironmentArgs {
32
32
  * A collection of values returned by getEnvironment.
33
33
  */
34
34
  export interface GetEnvironmentResult {
35
+ /**
36
+ * The ID of the Custom Domain Verification for this Container App Environment.
37
+ */
38
+ readonly customDomainVerificationId: string;
35
39
  /**
36
40
  * The default publicly resolvable name of this Container App Environment. This is generated at creation time to be globally unique.
37
41
  */
@@ -1 +1 @@
1
- {"version":3,"file":"getEnvironment.js","sourceRoot":"","sources":["../../containerapp/getEnvironment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;GAcG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kDAAkD,EAAE;QAC7E,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC;AAmED;;;;;;;;;;;;;;GAcG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
1
+ {"version":3,"file":"getEnvironment.js","sourceRoot":"","sources":["../../containerapp/getEnvironment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;GAcG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kDAAkD,EAAE;QAC7E,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC;AAuED;;;;;;;;;;;;;;GAcG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
@@ -10,6 +10,9 @@ export declare const Environment: typeof import("./environment").Environment;
10
10
  export { EnvironmentCertificateArgs, EnvironmentCertificateState } from "./environmentCertificate";
11
11
  export declare type EnvironmentCertificate = import("./environmentCertificate").EnvironmentCertificate;
12
12
  export declare const EnvironmentCertificate: typeof import("./environmentCertificate").EnvironmentCertificate;
13
+ export { EnvironmentCustomDomainArgs, EnvironmentCustomDomainState } from "./environmentCustomDomain";
14
+ export declare type EnvironmentCustomDomain = import("./environmentCustomDomain").EnvironmentCustomDomain;
15
+ export declare const EnvironmentCustomDomain: typeof import("./environmentCustomDomain").EnvironmentCustomDomain;
13
16
  export { EnvironmentDaprComponentArgs, EnvironmentDaprComponentState } from "./environmentDaprComponent";
14
17
  export declare type EnvironmentDaprComponent = import("./environmentDaprComponent").EnvironmentDaprComponent;
15
18
  export declare const EnvironmentDaprComponent: typeof import("./environmentDaprComponent").EnvironmentDaprComponent;
@@ -25,3 +28,6 @@ export declare const getEnvironmentOutput: typeof import("./getEnvironment").get
25
28
  export { GetEnvironmentCertificateArgs, GetEnvironmentCertificateResult, GetEnvironmentCertificateOutputArgs } from "./getEnvironmentCertificate";
26
29
  export declare const getEnvironmentCertificate: typeof import("./getEnvironmentCertificate").getEnvironmentCertificate;
27
30
  export declare const getEnvironmentCertificateOutput: typeof import("./getEnvironmentCertificate").getEnvironmentCertificateOutput;
31
+ export { JobArgs, JobState } from "./job";
32
+ export declare type Job = import("./job").Job;
33
+ export declare const Job: typeof import("./job").Job;
@@ -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.getEnvironmentCertificateOutput = exports.getEnvironmentCertificate = exports.getEnvironmentOutput = exports.getEnvironment = exports.getAppOutput = exports.getApp = exports.EnvironmentStorage = exports.EnvironmentDaprComponent = exports.EnvironmentCertificate = exports.Environment = exports.CustomDomain = exports.App = void 0;
5
+ exports.Job = exports.getEnvironmentCertificateOutput = exports.getEnvironmentCertificate = exports.getEnvironmentOutput = exports.getEnvironment = exports.getAppOutput = exports.getApp = exports.EnvironmentStorage = exports.EnvironmentDaprComponent = exports.EnvironmentCustomDomain = exports.EnvironmentCertificate = exports.Environment = exports.CustomDomain = exports.App = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  exports.App = null;
@@ -13,6 +13,8 @@ exports.Environment = null;
13
13
  utilities.lazyLoad(exports, ["Environment"], () => require("./environment"));
14
14
  exports.EnvironmentCertificate = null;
15
15
  utilities.lazyLoad(exports, ["EnvironmentCertificate"], () => require("./environmentCertificate"));
16
+ exports.EnvironmentCustomDomain = null;
17
+ utilities.lazyLoad(exports, ["EnvironmentCustomDomain"], () => require("./environmentCustomDomain"));
16
18
  exports.EnvironmentDaprComponent = null;
17
19
  utilities.lazyLoad(exports, ["EnvironmentDaprComponent"], () => require("./environmentDaprComponent"));
18
20
  exports.EnvironmentStorage = null;
@@ -26,6 +28,8 @@ utilities.lazyLoad(exports, ["getEnvironment", "getEnvironmentOutput"], () => re
26
28
  exports.getEnvironmentCertificate = null;
27
29
  exports.getEnvironmentCertificateOutput = null;
28
30
  utilities.lazyLoad(exports, ["getEnvironmentCertificate", "getEnvironmentCertificateOutput"], () => require("./getEnvironmentCertificate"));
31
+ exports.Job = null;
32
+ utilities.lazyLoad(exports, ["Job"], () => require("./job"));
29
33
  const _module = {
30
34
  version: utilities.getVersion(),
31
35
  construct: (name, type, urn) => {
@@ -38,10 +42,14 @@ const _module = {
38
42
  return new exports.Environment(name, undefined, { urn });
39
43
  case "azure:containerapp/environmentCertificate:EnvironmentCertificate":
40
44
  return new exports.EnvironmentCertificate(name, undefined, { urn });
45
+ case "azure:containerapp/environmentCustomDomain:EnvironmentCustomDomain":
46
+ return new exports.EnvironmentCustomDomain(name, undefined, { urn });
41
47
  case "azure:containerapp/environmentDaprComponent:EnvironmentDaprComponent":
42
48
  return new exports.EnvironmentDaprComponent(name, undefined, { urn });
43
49
  case "azure:containerapp/environmentStorage:EnvironmentStorage":
44
50
  return new exports.EnvironmentStorage(name, undefined, { urn });
51
+ case "azure:containerapp/job:Job":
52
+ return new exports.Job(name, undefined, { urn });
45
53
  default:
46
54
  throw new Error(`unknown resource type ${type}`);
47
55
  }
@@ -51,6 +59,8 @@ pulumi.runtime.registerResourceModule("azure", "containerapp/app", _module);
51
59
  pulumi.runtime.registerResourceModule("azure", "containerapp/customDomain", _module);
52
60
  pulumi.runtime.registerResourceModule("azure", "containerapp/environment", _module);
53
61
  pulumi.runtime.registerResourceModule("azure", "containerapp/environmentCertificate", _module);
62
+ pulumi.runtime.registerResourceModule("azure", "containerapp/environmentCustomDomain", _module);
54
63
  pulumi.runtime.registerResourceModule("azure", "containerapp/environmentDaprComponent", _module);
55
64
  pulumi.runtime.registerResourceModule("azure", "containerapp/environmentStorage", _module);
65
+ pulumi.runtime.registerResourceModule("azure", "containerapp/job", _module);
56
66
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../containerapp/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../containerapp/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,323 @@
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 Container App Job.
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 exampleAnalyticsWorkspace = new azure.operationalinsights.AnalyticsWorkspace("example", {
18
+ * name: "example-log-analytics-workspace",
19
+ * location: example.location,
20
+ * resourceGroupName: example.name,
21
+ * sku: "PerGB2018",
22
+ * retentionInDays: 30,
23
+ * });
24
+ * const exampleEnvironment = new azure.containerapp.Environment("example", {
25
+ * name: "example-container-app-environment",
26
+ * location: example.location,
27
+ * resourceGroupName: example.name,
28
+ * logAnalyticsWorkspaceId: exampleAnalyticsWorkspace.id,
29
+ * });
30
+ * const exampleJob = new azure.containerapp.Job("example", {
31
+ * name: "example-container-app-job",
32
+ * location: example.location,
33
+ * resourceGroupName: example.name,
34
+ * containerAppEnvironmentId: exampleEnvironment.id,
35
+ * replicaTimeoutInSeconds: 10,
36
+ * replicaRetryLimit: 10,
37
+ * manualTriggerConfig: {
38
+ * parallelism: 4,
39
+ * replicaCompletionCount: 1,
40
+ * },
41
+ * template: {
42
+ * containers: [{
43
+ * image: "repo/testcontainerAppsJob0:v1",
44
+ * name: "testcontainerappsjob0",
45
+ * readinessProbes: [{
46
+ * transport: "HTTP",
47
+ * port: 5000,
48
+ * }],
49
+ * livenessProbes: [{
50
+ * transport: "HTTP",
51
+ * port: 5000,
52
+ * path: "/health",
53
+ * headers: [{
54
+ * name: "Cache-Control",
55
+ * value: "no-cache",
56
+ * }],
57
+ * initialDelay: 5,
58
+ * intervalSeconds: 20,
59
+ * timeout: 2,
60
+ * failureCountThreshold: 1,
61
+ * }],
62
+ * startupProbes: [{
63
+ * transport: "TCP",
64
+ * port: 5000,
65
+ * }],
66
+ * cpu: 0.5,
67
+ * memory: "1Gi",
68
+ * }],
69
+ * },
70
+ * });
71
+ * ```
72
+ *
73
+ * ## Import
74
+ *
75
+ * A Container App Job can be imported using the resource id, e.g.
76
+ *
77
+ * ```sh
78
+ * $ pulumi import azure:containerapp/job:Job example "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example-resources/providers/Microsoft.App/jobs/example-container-app-job"
79
+ * ```
80
+ */
81
+ export declare class Job extends pulumi.CustomResource {
82
+ /**
83
+ * Get an existing Job resource's state with the given name, ID, and optional extra
84
+ * properties used to qualify the lookup.
85
+ *
86
+ * @param name The _unique_ name of the resulting resource.
87
+ * @param id The _unique_ provider ID of the resource to lookup.
88
+ * @param state Any extra arguments used during the lookup.
89
+ * @param opts Optional settings to control the behavior of the CustomResource.
90
+ */
91
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: JobState, opts?: pulumi.CustomResourceOptions): Job;
92
+ /**
93
+ * Returns true if the given object is an instance of Job. This is designed to work even
94
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
95
+ */
96
+ static isInstance(obj: any): obj is Job;
97
+ /**
98
+ * The ID of the Container App Environment in which to create the Container App Job. Changing this forces a new resource to be created.
99
+ */
100
+ readonly containerAppEnvironmentId: pulumi.Output<string>;
101
+ /**
102
+ * The endpoint for the Container App Job event stream.
103
+ */
104
+ readonly eventStreamEndpoint: pulumi.Output<string>;
105
+ /**
106
+ * A `eventTriggerConfig` block as defined below.
107
+ */
108
+ readonly eventTriggerConfig: pulumi.Output<outputs.containerapp.JobEventTriggerConfig | undefined>;
109
+ /**
110
+ * A `identity` block as defined below.
111
+ */
112
+ readonly identity: pulumi.Output<outputs.containerapp.JobIdentity | undefined>;
113
+ /**
114
+ * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
115
+ */
116
+ readonly location: pulumi.Output<string>;
117
+ /**
118
+ * A `manualTriggerConfig` block as defined below.
119
+ */
120
+ readonly manualTriggerConfig: pulumi.Output<outputs.containerapp.JobManualTriggerConfig | undefined>;
121
+ /**
122
+ * Specifies the name of the Container App Job resource. Changing this forces a new resource to be created.
123
+ */
124
+ readonly name: pulumi.Output<string>;
125
+ /**
126
+ * A list of the Public IP Addresses which the Container App uses for outbound network access.
127
+ */
128
+ readonly outboundIpAddresses: pulumi.Output<string[]>;
129
+ /**
130
+ * A `registries` block as defined below.
131
+ */
132
+ readonly registries: pulumi.Output<outputs.containerapp.JobRegistry[] | undefined>;
133
+ /**
134
+ * The maximum number of times a replica is allowed to retry.
135
+ */
136
+ readonly replicaRetryLimit: pulumi.Output<number | undefined>;
137
+ /**
138
+ * The maximum number of seconds a replica is allowed to run.
139
+ */
140
+ readonly replicaTimeoutInSeconds: pulumi.Output<number>;
141
+ /**
142
+ * The name of the resource group in which to create the Container App Job. Changing this forces a new resource to be created.
143
+ */
144
+ readonly resourceGroupName: pulumi.Output<string>;
145
+ /**
146
+ * A `scheduleTriggerConfig` block as defined below.
147
+ *
148
+ * > ** NOTE **: Only one of `manualTriggerConfig`, `eventTriggerConfig` or `scheduleTriggerConfig` can be specified.
149
+ */
150
+ readonly scheduleTriggerConfig: pulumi.Output<outputs.containerapp.JobScheduleTriggerConfig | undefined>;
151
+ /**
152
+ * A `secrets` block as defined below.
153
+ */
154
+ readonly secrets: pulumi.Output<outputs.containerapp.JobSecret[] | undefined>;
155
+ /**
156
+ * A mapping of tags to assign to the resource.
157
+ */
158
+ readonly tags: pulumi.Output<{
159
+ [key: string]: string;
160
+ } | undefined>;
161
+ /**
162
+ * A `template` block as defined below.
163
+ */
164
+ readonly template: pulumi.Output<outputs.containerapp.JobTemplate>;
165
+ /**
166
+ * The name of the workload profile to use for the Container App Job.
167
+ */
168
+ readonly workloadProfileName: pulumi.Output<string | undefined>;
169
+ /**
170
+ * Create a Job resource with the given unique name, arguments, and options.
171
+ *
172
+ * @param name The _unique_ name of the resource.
173
+ * @param args The arguments to use to populate this resource's properties.
174
+ * @param opts A bag of options that control this resource's behavior.
175
+ */
176
+ constructor(name: string, args: JobArgs, opts?: pulumi.CustomResourceOptions);
177
+ }
178
+ /**
179
+ * Input properties used for looking up and filtering Job resources.
180
+ */
181
+ export interface JobState {
182
+ /**
183
+ * The ID of the Container App Environment in which to create the Container App Job. Changing this forces a new resource to be created.
184
+ */
185
+ containerAppEnvironmentId?: pulumi.Input<string>;
186
+ /**
187
+ * The endpoint for the Container App Job event stream.
188
+ */
189
+ eventStreamEndpoint?: pulumi.Input<string>;
190
+ /**
191
+ * A `eventTriggerConfig` block as defined below.
192
+ */
193
+ eventTriggerConfig?: pulumi.Input<inputs.containerapp.JobEventTriggerConfig>;
194
+ /**
195
+ * A `identity` block as defined below.
196
+ */
197
+ identity?: pulumi.Input<inputs.containerapp.JobIdentity>;
198
+ /**
199
+ * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
200
+ */
201
+ location?: pulumi.Input<string>;
202
+ /**
203
+ * A `manualTriggerConfig` block as defined below.
204
+ */
205
+ manualTriggerConfig?: pulumi.Input<inputs.containerapp.JobManualTriggerConfig>;
206
+ /**
207
+ * Specifies the name of the Container App Job resource. Changing this forces a new resource to be created.
208
+ */
209
+ name?: pulumi.Input<string>;
210
+ /**
211
+ * A list of the Public IP Addresses which the Container App uses for outbound network access.
212
+ */
213
+ outboundIpAddresses?: pulumi.Input<pulumi.Input<string>[]>;
214
+ /**
215
+ * A `registries` block as defined below.
216
+ */
217
+ registries?: pulumi.Input<pulumi.Input<inputs.containerapp.JobRegistry>[]>;
218
+ /**
219
+ * The maximum number of times a replica is allowed to retry.
220
+ */
221
+ replicaRetryLimit?: pulumi.Input<number>;
222
+ /**
223
+ * The maximum number of seconds a replica is allowed to run.
224
+ */
225
+ replicaTimeoutInSeconds?: pulumi.Input<number>;
226
+ /**
227
+ * The name of the resource group in which to create the Container App Job. Changing this forces a new resource to be created.
228
+ */
229
+ resourceGroupName?: pulumi.Input<string>;
230
+ /**
231
+ * A `scheduleTriggerConfig` block as defined below.
232
+ *
233
+ * > ** NOTE **: Only one of `manualTriggerConfig`, `eventTriggerConfig` or `scheduleTriggerConfig` can be specified.
234
+ */
235
+ scheduleTriggerConfig?: pulumi.Input<inputs.containerapp.JobScheduleTriggerConfig>;
236
+ /**
237
+ * A `secrets` block as defined below.
238
+ */
239
+ secrets?: pulumi.Input<pulumi.Input<inputs.containerapp.JobSecret>[]>;
240
+ /**
241
+ * A mapping of tags to assign to the resource.
242
+ */
243
+ tags?: pulumi.Input<{
244
+ [key: string]: pulumi.Input<string>;
245
+ }>;
246
+ /**
247
+ * A `template` block as defined below.
248
+ */
249
+ template?: pulumi.Input<inputs.containerapp.JobTemplate>;
250
+ /**
251
+ * The name of the workload profile to use for the Container App Job.
252
+ */
253
+ workloadProfileName?: pulumi.Input<string>;
254
+ }
255
+ /**
256
+ * The set of arguments for constructing a Job resource.
257
+ */
258
+ export interface JobArgs {
259
+ /**
260
+ * The ID of the Container App Environment in which to create the Container App Job. Changing this forces a new resource to be created.
261
+ */
262
+ containerAppEnvironmentId: pulumi.Input<string>;
263
+ /**
264
+ * A `eventTriggerConfig` block as defined below.
265
+ */
266
+ eventTriggerConfig?: pulumi.Input<inputs.containerapp.JobEventTriggerConfig>;
267
+ /**
268
+ * A `identity` block as defined below.
269
+ */
270
+ identity?: pulumi.Input<inputs.containerapp.JobIdentity>;
271
+ /**
272
+ * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
273
+ */
274
+ location?: pulumi.Input<string>;
275
+ /**
276
+ * A `manualTriggerConfig` block as defined below.
277
+ */
278
+ manualTriggerConfig?: pulumi.Input<inputs.containerapp.JobManualTriggerConfig>;
279
+ /**
280
+ * Specifies the name of the Container App Job resource. Changing this forces a new resource to be created.
281
+ */
282
+ name?: pulumi.Input<string>;
283
+ /**
284
+ * A `registries` block as defined below.
285
+ */
286
+ registries?: pulumi.Input<pulumi.Input<inputs.containerapp.JobRegistry>[]>;
287
+ /**
288
+ * The maximum number of times a replica is allowed to retry.
289
+ */
290
+ replicaRetryLimit?: pulumi.Input<number>;
291
+ /**
292
+ * The maximum number of seconds a replica is allowed to run.
293
+ */
294
+ replicaTimeoutInSeconds: pulumi.Input<number>;
295
+ /**
296
+ * The name of the resource group in which to create the Container App Job. Changing this forces a new resource to be created.
297
+ */
298
+ resourceGroupName: pulumi.Input<string>;
299
+ /**
300
+ * A `scheduleTriggerConfig` block as defined below.
301
+ *
302
+ * > ** NOTE **: Only one of `manualTriggerConfig`, `eventTriggerConfig` or `scheduleTriggerConfig` can be specified.
303
+ */
304
+ scheduleTriggerConfig?: pulumi.Input<inputs.containerapp.JobScheduleTriggerConfig>;
305
+ /**
306
+ * A `secrets` block as defined below.
307
+ */
308
+ secrets?: pulumi.Input<pulumi.Input<inputs.containerapp.JobSecret>[]>;
309
+ /**
310
+ * A mapping of tags to assign to the resource.
311
+ */
312
+ tags?: pulumi.Input<{
313
+ [key: string]: pulumi.Input<string>;
314
+ }>;
315
+ /**
316
+ * A `template` block as defined below.
317
+ */
318
+ template: pulumi.Input<inputs.containerapp.JobTemplate>;
319
+ /**
320
+ * The name of the workload profile to use for the Container App Job.
321
+ */
322
+ workloadProfileName?: pulumi.Input<string>;
323
+ }