@pulumi/azure 6.8.0-alpha.1730527455 → 6.8.0

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 (58) hide show
  1. package/authorization/roleDefinition.d.ts +28 -6
  2. package/authorization/roleDefinition.js +22 -0
  3. package/authorization/roleDefinition.js.map +1 -1
  4. package/compute/orchestratedVirtualMachineScaleSet.d.ts +18 -0
  5. package/compute/orchestratedVirtualMachineScaleSet.js +2 -0
  6. package/compute/orchestratedVirtualMachineScaleSet.js.map +1 -1
  7. package/containerapp/environment.d.ts +3 -3
  8. package/containerservice/registry.d.ts +35 -0
  9. package/containerservice/registry.js +35 -0
  10. package/containerservice/registry.js.map +1 -1
  11. package/cosmosdb/account.d.ts +3 -0
  12. package/cosmosdb/account.js +2 -0
  13. package/cosmosdb/account.js.map +1 -1
  14. package/datafactory/linkedServiceAzureSqlDatabase.d.ts +12 -0
  15. package/datafactory/linkedServiceAzureSqlDatabase.js +2 -0
  16. package/datafactory/linkedServiceAzureSqlDatabase.js.map +1 -1
  17. package/index.d.ts +2 -1
  18. package/index.js +3 -1
  19. package/index.js.map +1 -1
  20. package/keyvault/key.d.ts +9 -3
  21. package/keyvault/key.js.map +1 -1
  22. package/loadtest/loadTest.d.ts +3 -3
  23. package/machinelearning/index.d.ts +3 -0
  24. package/machinelearning/index.js +6 -1
  25. package/machinelearning/index.js.map +1 -1
  26. package/machinelearning/workspaceNetworkOutboundRuleFqdn.d.ts +135 -0
  27. package/machinelearning/workspaceNetworkOutboundRuleFqdn.js +122 -0
  28. package/machinelearning/workspaceNetworkOutboundRuleFqdn.js.map +1 -0
  29. package/network/getVirtualNetworkPeering.d.ts +108 -0
  30. package/network/getVirtualNetworkPeering.js +64 -0
  31. package/network/getVirtualNetworkPeering.js.map +1 -0
  32. package/network/index.d.ts +3 -0
  33. package/network/index.js +6 -3
  34. package/network/index.js.map +1 -1
  35. package/oracle/cloudVmCluster.d.ts +8 -0
  36. package/oracle/cloudVmCluster.js +2 -0
  37. package/oracle/cloudVmCluster.js.map +1 -1
  38. package/package.json +2 -2
  39. package/role/definition.d.ts +28 -6
  40. package/role/definition.js +22 -0
  41. package/role/definition.js.map +1 -1
  42. package/stack/hciExtension.d.ts +182 -0
  43. package/stack/hciExtension.js +108 -0
  44. package/stack/hciExtension.js.map +1 -0
  45. package/stack/hciMarketplaceGalleryImage.d.ts +216 -0
  46. package/stack/hciMarketplaceGalleryImage.js +137 -0
  47. package/stack/hciMarketplaceGalleryImage.js.map +1 -0
  48. package/stack/index.d.ts +6 -0
  49. package/stack/index.js +11 -1
  50. package/stack/index.js.map +1 -1
  51. package/trustedsigning/account.d.ts +121 -0
  52. package/trustedsigning/account.js +76 -0
  53. package/trustedsigning/account.js.map +1 -0
  54. package/trustedsigning/index.d.ts +3 -0
  55. package/trustedsigning/index.js +22 -0
  56. package/trustedsigning/index.js.map +1 -0
  57. package/types/input.d.ts +57 -9
  58. package/types/output.d.ts +57 -9
@@ -0,0 +1,108 @@
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.HciExtension = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Manages an Azure Stack HCI Extension.
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-hci-ext",
19
+ * location: "West Europe",
20
+ * });
21
+ * const exampleHciExtension = new azure.stack.HciExtension("example", {
22
+ * name: "AzureMonitorWindowsAgent",
23
+ * arcSettingId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example-hci/providers/Microsoft.AzureStackHCI/clusters/hci-cl/arcSettings/default",
24
+ * publisher: "Microsoft.Azure.Monitor",
25
+ * type: "MicrosoftMonitoringAgent",
26
+ * autoUpgradeMinorVersionEnabled: true,
27
+ * automaticUpgradeEnabled: true,
28
+ * typeHandlerVersion: "1.22.0",
29
+ * });
30
+ * ```
31
+ *
32
+ * ## Import
33
+ *
34
+ * Azure Stack HCI Extension can be imported using the `resource id`, e.g.
35
+ *
36
+ * ```sh
37
+ * $ pulumi import azure:stack/hciExtension:HciExtension example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.AzureStackHCI/clusters/cluster1/arcSettings/default/extensions/extension1
38
+ * ```
39
+ */
40
+ class HciExtension extends pulumi.CustomResource {
41
+ constructor(name, argsOrState, opts) {
42
+ let resourceInputs = {};
43
+ opts = opts || {};
44
+ if (opts.id) {
45
+ const state = argsOrState;
46
+ resourceInputs["arcSettingId"] = state ? state.arcSettingId : undefined;
47
+ resourceInputs["autoUpgradeMinorVersionEnabled"] = state ? state.autoUpgradeMinorVersionEnabled : undefined;
48
+ resourceInputs["automaticUpgradeEnabled"] = state ? state.automaticUpgradeEnabled : undefined;
49
+ resourceInputs["name"] = state ? state.name : undefined;
50
+ resourceInputs["protectedSettings"] = state ? state.protectedSettings : undefined;
51
+ resourceInputs["publisher"] = state ? state.publisher : undefined;
52
+ resourceInputs["settings"] = state ? state.settings : undefined;
53
+ resourceInputs["type"] = state ? state.type : undefined;
54
+ resourceInputs["typeHandlerVersion"] = state ? state.typeHandlerVersion : undefined;
55
+ }
56
+ else {
57
+ const args = argsOrState;
58
+ if ((!args || args.arcSettingId === undefined) && !opts.urn) {
59
+ throw new Error("Missing required property 'arcSettingId'");
60
+ }
61
+ if ((!args || args.publisher === undefined) && !opts.urn) {
62
+ throw new Error("Missing required property 'publisher'");
63
+ }
64
+ if ((!args || args.type === undefined) && !opts.urn) {
65
+ throw new Error("Missing required property 'type'");
66
+ }
67
+ resourceInputs["arcSettingId"] = args ? args.arcSettingId : undefined;
68
+ resourceInputs["autoUpgradeMinorVersionEnabled"] = args ? args.autoUpgradeMinorVersionEnabled : undefined;
69
+ resourceInputs["automaticUpgradeEnabled"] = args ? args.automaticUpgradeEnabled : undefined;
70
+ resourceInputs["name"] = args ? args.name : undefined;
71
+ resourceInputs["protectedSettings"] = (args === null || args === void 0 ? void 0 : args.protectedSettings) ? pulumi.secret(args.protectedSettings) : undefined;
72
+ resourceInputs["publisher"] = args ? args.publisher : undefined;
73
+ resourceInputs["settings"] = args ? args.settings : undefined;
74
+ resourceInputs["type"] = args ? args.type : undefined;
75
+ resourceInputs["typeHandlerVersion"] = args ? args.typeHandlerVersion : undefined;
76
+ }
77
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
78
+ const secretOpts = { additionalSecretOutputs: ["protectedSettings"] };
79
+ opts = pulumi.mergeOptions(opts, secretOpts);
80
+ super(HciExtension.__pulumiType, name, resourceInputs, opts);
81
+ }
82
+ /**
83
+ * Get an existing HciExtension 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, id, state, opts) {
92
+ return new HciExtension(name, state, Object.assign(Object.assign({}, opts), { id: id }));
93
+ }
94
+ /**
95
+ * Returns true if the given object is an instance of HciExtension. This is designed to work even
96
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
97
+ */
98
+ static isInstance(obj) {
99
+ if (obj === undefined || obj === null) {
100
+ return false;
101
+ }
102
+ return obj['__pulumiType'] === HciExtension.__pulumiType;
103
+ }
104
+ }
105
+ exports.HciExtension = HciExtension;
106
+ /** @internal */
107
+ HciExtension.__pulumiType = 'azure:stack/hciExtension:HciExtension';
108
+ //# sourceMappingURL=hciExtension.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hciExtension.js","sourceRoot":"","sources":["../../stack/hciExtension.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,216 @@
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 Azure Stack HCI Marketplace Gallery Image.
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * ```typescript
10
+ * import * as pulumi from "@pulumi/pulumi";
11
+ * import * as azure from "@pulumi/azure";
12
+ * import * as azuread from "@pulumi/azuread";
13
+ *
14
+ * const exampleResourceGroup = new azure.core.ResourceGroup("example", {
15
+ * name: "examples",
16
+ * location: "West Europe",
17
+ * });
18
+ * const example = azure.core.getClientConfig({});
19
+ * // service principal of 'Microsoft.AzureStackHCI Resource Provider'
20
+ * const hciRp = azuread.getServicePrincipal({
21
+ * clientId: "1412d89f-b8a8-4111-b4fd-e82905cbd85d",
22
+ * });
23
+ * const exampleAssignment = new azure.authorization.Assignment("example", {
24
+ * scope: exampleResourceGroup.id,
25
+ * roleDefinitionName: "Azure Connected Machine Resource Manager",
26
+ * principalId: hciRp.then(hciRp => hciRp.objectId),
27
+ * });
28
+ * const exampleHciMarketplaceGalleryImage = new azure.stack.HciMarketplaceGalleryImage("example", {
29
+ * name: "example-mgi",
30
+ * resourceGroupName: exampleResourceGroup.name,
31
+ * location: exampleResourceGroup.location,
32
+ * customLocationId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ExtendedLocation/customLocations/cl1",
33
+ * hypervGeneration: "V2",
34
+ * osType: "Windows",
35
+ * version: "20348.2655.240905",
36
+ * identifier: {
37
+ * publisher: "MicrosoftWindowsServer",
38
+ * offer: "WindowsServer",
39
+ * sku: "2022-datacenter-azure-edition-core",
40
+ * },
41
+ * tags: {
42
+ * foo: "bar",
43
+ * env: "example",
44
+ * },
45
+ * });
46
+ * ```
47
+ *
48
+ * ## Import
49
+ *
50
+ * Azure Stack HCI Marketplace Gallery Images can be imported using the `resource id`, e.g.
51
+ *
52
+ * ```sh
53
+ * $ pulumi import azure:stack/hciMarketplaceGalleryImage:HciMarketplaceGalleryImage example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.AzureStackHCI/marketplaceGalleryImages/image1
54
+ * ```
55
+ */
56
+ export declare class HciMarketplaceGalleryImage extends pulumi.CustomResource {
57
+ /**
58
+ * Get an existing HciMarketplaceGalleryImage resource's state with the given name, ID, and optional extra
59
+ * properties used to qualify the lookup.
60
+ *
61
+ * @param name The _unique_ name of the resulting resource.
62
+ * @param id The _unique_ provider ID of the resource to lookup.
63
+ * @param state Any extra arguments used during the lookup.
64
+ * @param opts Optional settings to control the behavior of the CustomResource.
65
+ */
66
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: HciMarketplaceGalleryImageState, opts?: pulumi.CustomResourceOptions): HciMarketplaceGalleryImage;
67
+ /**
68
+ * Returns true if the given object is an instance of HciMarketplaceGalleryImage. This is designed to work even
69
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
70
+ */
71
+ static isInstance(obj: any): obj is HciMarketplaceGalleryImage;
72
+ /**
73
+ * The ID of the Custom Location where the Azure Stack HCI Marketplace Gallery Image should exist. Changing this forces a new resource to be created.
74
+ */
75
+ readonly customLocationId: pulumi.Output<string>;
76
+ /**
77
+ * The hypervisor generation of the Azure Stack HCI Marketplace Gallery Image. Possible values are `V1` and `V2`. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
78
+ */
79
+ readonly hypervGeneration: pulumi.Output<string>;
80
+ /**
81
+ * An `identifier` block as defined below. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
82
+ */
83
+ readonly identifier: pulumi.Output<outputs.stack.HciMarketplaceGalleryImageIdentifier>;
84
+ /**
85
+ * The Azure Region where the Azure Stack HCI Marketplace Gallery Image should exist. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
86
+ */
87
+ readonly location: pulumi.Output<string>;
88
+ /**
89
+ * The name which should be used for this Azure Stack HCI Marketplace Gallery Image. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
90
+ */
91
+ readonly name: pulumi.Output<string>;
92
+ /**
93
+ * The Operating System type of the Azure Stack HCI Marketplace Gallery Image. Possible values are `Windows` and `Linux`. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
94
+ */
95
+ readonly osType: pulumi.Output<string>;
96
+ /**
97
+ * The name of the Resource Group where the Azure Stack HCI Marketplace Gallery Image should exist. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
98
+ */
99
+ readonly resourceGroupName: pulumi.Output<string>;
100
+ /**
101
+ * The ID of the Azure Stack HCI Storage Path used for this Marketplace Gallery Image. Changing this forces a new Azure Stack HCI Virtual Hard Disk to be created.
102
+ */
103
+ readonly storagePathId: pulumi.Output<string | undefined>;
104
+ /**
105
+ * A mapping of tags which should be assigned to the Azure Stack HCI Marketplace Gallery Image.
106
+ */
107
+ readonly tags: pulumi.Output<{
108
+ [key: string]: string;
109
+ } | undefined>;
110
+ /**
111
+ * The version of the Azure Stack HCI Marketplace Gallery Image. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
112
+ */
113
+ readonly version: pulumi.Output<string>;
114
+ /**
115
+ * Create a HciMarketplaceGalleryImage resource with the given unique name, arguments, and options.
116
+ *
117
+ * @param name The _unique_ name of the resource.
118
+ * @param args The arguments to use to populate this resource's properties.
119
+ * @param opts A bag of options that control this resource's behavior.
120
+ */
121
+ constructor(name: string, args: HciMarketplaceGalleryImageArgs, opts?: pulumi.CustomResourceOptions);
122
+ }
123
+ /**
124
+ * Input properties used for looking up and filtering HciMarketplaceGalleryImage resources.
125
+ */
126
+ export interface HciMarketplaceGalleryImageState {
127
+ /**
128
+ * The ID of the Custom Location where the Azure Stack HCI Marketplace Gallery Image should exist. Changing this forces a new resource to be created.
129
+ */
130
+ customLocationId?: pulumi.Input<string>;
131
+ /**
132
+ * The hypervisor generation of the Azure Stack HCI Marketplace Gallery Image. Possible values are `V1` and `V2`. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
133
+ */
134
+ hypervGeneration?: pulumi.Input<string>;
135
+ /**
136
+ * An `identifier` block as defined below. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
137
+ */
138
+ identifier?: pulumi.Input<inputs.stack.HciMarketplaceGalleryImageIdentifier>;
139
+ /**
140
+ * The Azure Region where the Azure Stack HCI Marketplace Gallery Image should exist. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
141
+ */
142
+ location?: pulumi.Input<string>;
143
+ /**
144
+ * The name which should be used for this Azure Stack HCI Marketplace Gallery Image. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
145
+ */
146
+ name?: pulumi.Input<string>;
147
+ /**
148
+ * The Operating System type of the Azure Stack HCI Marketplace Gallery Image. Possible values are `Windows` and `Linux`. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
149
+ */
150
+ osType?: pulumi.Input<string>;
151
+ /**
152
+ * The name of the Resource Group where the Azure Stack HCI Marketplace Gallery Image should exist. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
153
+ */
154
+ resourceGroupName?: pulumi.Input<string>;
155
+ /**
156
+ * The ID of the Azure Stack HCI Storage Path used for this Marketplace Gallery Image. Changing this forces a new Azure Stack HCI Virtual Hard Disk to be created.
157
+ */
158
+ storagePathId?: pulumi.Input<string>;
159
+ /**
160
+ * A mapping of tags which should be assigned to the Azure Stack HCI Marketplace Gallery Image.
161
+ */
162
+ tags?: pulumi.Input<{
163
+ [key: string]: pulumi.Input<string>;
164
+ }>;
165
+ /**
166
+ * The version of the Azure Stack HCI Marketplace Gallery Image. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
167
+ */
168
+ version?: pulumi.Input<string>;
169
+ }
170
+ /**
171
+ * The set of arguments for constructing a HciMarketplaceGalleryImage resource.
172
+ */
173
+ export interface HciMarketplaceGalleryImageArgs {
174
+ /**
175
+ * The ID of the Custom Location where the Azure Stack HCI Marketplace Gallery Image should exist. Changing this forces a new resource to be created.
176
+ */
177
+ customLocationId: pulumi.Input<string>;
178
+ /**
179
+ * The hypervisor generation of the Azure Stack HCI Marketplace Gallery Image. Possible values are `V1` and `V2`. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
180
+ */
181
+ hypervGeneration: pulumi.Input<string>;
182
+ /**
183
+ * An `identifier` block as defined below. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
184
+ */
185
+ identifier: pulumi.Input<inputs.stack.HciMarketplaceGalleryImageIdentifier>;
186
+ /**
187
+ * The Azure Region where the Azure Stack HCI Marketplace Gallery Image should exist. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
188
+ */
189
+ location?: pulumi.Input<string>;
190
+ /**
191
+ * The name which should be used for this Azure Stack HCI Marketplace Gallery Image. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
192
+ */
193
+ name?: pulumi.Input<string>;
194
+ /**
195
+ * The Operating System type of the Azure Stack HCI Marketplace Gallery Image. Possible values are `Windows` and `Linux`. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
196
+ */
197
+ osType: pulumi.Input<string>;
198
+ /**
199
+ * The name of the Resource Group where the Azure Stack HCI Marketplace Gallery Image should exist. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
200
+ */
201
+ resourceGroupName: pulumi.Input<string>;
202
+ /**
203
+ * The ID of the Azure Stack HCI Storage Path used for this Marketplace Gallery Image. Changing this forces a new Azure Stack HCI Virtual Hard Disk to be created.
204
+ */
205
+ storagePathId?: pulumi.Input<string>;
206
+ /**
207
+ * A mapping of tags which should be assigned to the Azure Stack HCI Marketplace Gallery Image.
208
+ */
209
+ tags?: pulumi.Input<{
210
+ [key: string]: pulumi.Input<string>;
211
+ }>;
212
+ /**
213
+ * The version of the Azure Stack HCI Marketplace Gallery Image. Changing this forces a new Azure Stack HCI Marketplace Gallery Image to be created.
214
+ */
215
+ version: pulumi.Input<string>;
216
+ }
@@ -0,0 +1,137 @@
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.HciMarketplaceGalleryImage = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Manages an Azure Stack HCI Marketplace Gallery Image.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as azure from "@pulumi/azure";
16
+ * import * as azuread from "@pulumi/azuread";
17
+ *
18
+ * const exampleResourceGroup = new azure.core.ResourceGroup("example", {
19
+ * name: "examples",
20
+ * location: "West Europe",
21
+ * });
22
+ * const example = azure.core.getClientConfig({});
23
+ * // service principal of 'Microsoft.AzureStackHCI Resource Provider'
24
+ * const hciRp = azuread.getServicePrincipal({
25
+ * clientId: "1412d89f-b8a8-4111-b4fd-e82905cbd85d",
26
+ * });
27
+ * const exampleAssignment = new azure.authorization.Assignment("example", {
28
+ * scope: exampleResourceGroup.id,
29
+ * roleDefinitionName: "Azure Connected Machine Resource Manager",
30
+ * principalId: hciRp.then(hciRp => hciRp.objectId),
31
+ * });
32
+ * const exampleHciMarketplaceGalleryImage = new azure.stack.HciMarketplaceGalleryImage("example", {
33
+ * name: "example-mgi",
34
+ * resourceGroupName: exampleResourceGroup.name,
35
+ * location: exampleResourceGroup.location,
36
+ * customLocationId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ExtendedLocation/customLocations/cl1",
37
+ * hypervGeneration: "V2",
38
+ * osType: "Windows",
39
+ * version: "20348.2655.240905",
40
+ * identifier: {
41
+ * publisher: "MicrosoftWindowsServer",
42
+ * offer: "WindowsServer",
43
+ * sku: "2022-datacenter-azure-edition-core",
44
+ * },
45
+ * tags: {
46
+ * foo: "bar",
47
+ * env: "example",
48
+ * },
49
+ * });
50
+ * ```
51
+ *
52
+ * ## Import
53
+ *
54
+ * Azure Stack HCI Marketplace Gallery Images can be imported using the `resource id`, e.g.
55
+ *
56
+ * ```sh
57
+ * $ pulumi import azure:stack/hciMarketplaceGalleryImage:HciMarketplaceGalleryImage example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.AzureStackHCI/marketplaceGalleryImages/image1
58
+ * ```
59
+ */
60
+ class HciMarketplaceGalleryImage extends pulumi.CustomResource {
61
+ constructor(name, argsOrState, opts) {
62
+ let resourceInputs = {};
63
+ opts = opts || {};
64
+ if (opts.id) {
65
+ const state = argsOrState;
66
+ resourceInputs["customLocationId"] = state ? state.customLocationId : undefined;
67
+ resourceInputs["hypervGeneration"] = state ? state.hypervGeneration : undefined;
68
+ resourceInputs["identifier"] = state ? state.identifier : undefined;
69
+ resourceInputs["location"] = state ? state.location : undefined;
70
+ resourceInputs["name"] = state ? state.name : undefined;
71
+ resourceInputs["osType"] = state ? state.osType : undefined;
72
+ resourceInputs["resourceGroupName"] = state ? state.resourceGroupName : undefined;
73
+ resourceInputs["storagePathId"] = state ? state.storagePathId : undefined;
74
+ resourceInputs["tags"] = state ? state.tags : undefined;
75
+ resourceInputs["version"] = state ? state.version : undefined;
76
+ }
77
+ else {
78
+ const args = argsOrState;
79
+ if ((!args || args.customLocationId === undefined) && !opts.urn) {
80
+ throw new Error("Missing required property 'customLocationId'");
81
+ }
82
+ if ((!args || args.hypervGeneration === undefined) && !opts.urn) {
83
+ throw new Error("Missing required property 'hypervGeneration'");
84
+ }
85
+ if ((!args || args.identifier === undefined) && !opts.urn) {
86
+ throw new Error("Missing required property 'identifier'");
87
+ }
88
+ if ((!args || args.osType === undefined) && !opts.urn) {
89
+ throw new Error("Missing required property 'osType'");
90
+ }
91
+ if ((!args || args.resourceGroupName === undefined) && !opts.urn) {
92
+ throw new Error("Missing required property 'resourceGroupName'");
93
+ }
94
+ if ((!args || args.version === undefined) && !opts.urn) {
95
+ throw new Error("Missing required property 'version'");
96
+ }
97
+ resourceInputs["customLocationId"] = args ? args.customLocationId : undefined;
98
+ resourceInputs["hypervGeneration"] = args ? args.hypervGeneration : undefined;
99
+ resourceInputs["identifier"] = args ? args.identifier : undefined;
100
+ resourceInputs["location"] = args ? args.location : undefined;
101
+ resourceInputs["name"] = args ? args.name : undefined;
102
+ resourceInputs["osType"] = args ? args.osType : undefined;
103
+ resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
104
+ resourceInputs["storagePathId"] = args ? args.storagePathId : undefined;
105
+ resourceInputs["tags"] = args ? args.tags : undefined;
106
+ resourceInputs["version"] = args ? args.version : undefined;
107
+ }
108
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
109
+ super(HciMarketplaceGalleryImage.__pulumiType, name, resourceInputs, opts);
110
+ }
111
+ /**
112
+ * Get an existing HciMarketplaceGalleryImage resource's state with the given name, ID, and optional extra
113
+ * properties used to qualify the lookup.
114
+ *
115
+ * @param name The _unique_ name of the resulting resource.
116
+ * @param id The _unique_ provider ID of the resource to lookup.
117
+ * @param state Any extra arguments used during the lookup.
118
+ * @param opts Optional settings to control the behavior of the CustomResource.
119
+ */
120
+ static get(name, id, state, opts) {
121
+ return new HciMarketplaceGalleryImage(name, state, Object.assign(Object.assign({}, opts), { id: id }));
122
+ }
123
+ /**
124
+ * Returns true if the given object is an instance of HciMarketplaceGalleryImage. This is designed to work even
125
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
126
+ */
127
+ static isInstance(obj) {
128
+ if (obj === undefined || obj === null) {
129
+ return false;
130
+ }
131
+ return obj['__pulumiType'] === HciMarketplaceGalleryImage.__pulumiType;
132
+ }
133
+ }
134
+ exports.HciMarketplaceGalleryImage = HciMarketplaceGalleryImage;
135
+ /** @internal */
136
+ HciMarketplaceGalleryImage.__pulumiType = 'azure:stack/hciMarketplaceGalleryImage:HciMarketplaceGalleryImage';
137
+ //# sourceMappingURL=hciMarketplaceGalleryImage.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hciMarketplaceGalleryImage.js","sourceRoot":"","sources":["../../stack/hciMarketplaceGalleryImage.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmDG;AACH,MAAa,0BAA2B,SAAQ,MAAM,CAAC,cAAc;IA6EjE,YAAY,IAAY,EAAE,WAA8E,EAAE,IAAmC;QACzI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0D,CAAC;YACzE,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;aAAM;YACH,MAAM,IAAI,GAAG,WAAyD,CAAC;YACvE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,gBAAgB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7D,MAAM,IAAI,KAAK,CAAC,8CAA8C,CAAC,CAAC;aACnE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,gBAAgB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7D,MAAM,IAAI,KAAK,CAAC,8CAA8C,CAAC,CAAC;aACnE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,iBAAiB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9D,MAAM,IAAI,KAAK,CAAC,+CAA+C,CAAC,CAAC;aACpE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,0BAA0B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/E,CAAC;IA5HD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuC,EAAE,IAAmC;QACrI,OAAO,IAAI,0BAA0B,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACjF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,0BAA0B,CAAC,YAAY,CAAC;IAC3E,CAAC;;AA1BL,gEA8HC;AAhHG,gBAAgB;AACO,uCAAY,GAAG,mEAAmE,CAAC"}
package/stack/index.d.ts CHANGED
@@ -7,9 +7,15 @@ export declare const HciCluster: typeof import("./hciCluster").HciCluster;
7
7
  export { HciDeploymentSettingArgs, HciDeploymentSettingState } from "./hciDeploymentSetting";
8
8
  export declare type HciDeploymentSetting = import("./hciDeploymentSetting").HciDeploymentSetting;
9
9
  export declare const HciDeploymentSetting: typeof import("./hciDeploymentSetting").HciDeploymentSetting;
10
+ export { HciExtensionArgs, HciExtensionState } from "./hciExtension";
11
+ export declare type HciExtension = import("./hciExtension").HciExtension;
12
+ export declare const HciExtension: typeof import("./hciExtension").HciExtension;
10
13
  export { HciLogicalNetworkArgs, HciLogicalNetworkState } from "./hciLogicalNetwork";
11
14
  export declare type HciLogicalNetwork = import("./hciLogicalNetwork").HciLogicalNetwork;
12
15
  export declare const HciLogicalNetwork: typeof import("./hciLogicalNetwork").HciLogicalNetwork;
16
+ export { HciMarketplaceGalleryImageArgs, HciMarketplaceGalleryImageState } from "./hciMarketplaceGalleryImage";
17
+ export declare type HciMarketplaceGalleryImage = import("./hciMarketplaceGalleryImage").HciMarketplaceGalleryImage;
18
+ export declare const HciMarketplaceGalleryImage: typeof import("./hciMarketplaceGalleryImage").HciMarketplaceGalleryImage;
13
19
  export { HciStoragePathArgs, HciStoragePathState } from "./hciStoragePath";
14
20
  export declare type HciStoragePath = import("./hciStoragePath").HciStoragePath;
15
21
  export declare const HciStoragePath: typeof import("./hciStoragePath").HciStoragePath;
package/stack/index.js CHANGED
@@ -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.HciVirtualHardDisk = exports.HciStoragePath = exports.HciLogicalNetwork = exports.HciDeploymentSetting = exports.HciCluster = exports.getHciClusterOutput = exports.getHciCluster = void 0;
5
+ exports.HciVirtualHardDisk = exports.HciStoragePath = exports.HciMarketplaceGalleryImage = exports.HciLogicalNetwork = exports.HciExtension = exports.HciDeploymentSetting = exports.HciCluster = exports.getHciClusterOutput = exports.getHciCluster = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  exports.getHciCluster = null;
@@ -12,8 +12,12 @@ exports.HciCluster = null;
12
12
  utilities.lazyLoad(exports, ["HciCluster"], () => require("./hciCluster"));
13
13
  exports.HciDeploymentSetting = null;
14
14
  utilities.lazyLoad(exports, ["HciDeploymentSetting"], () => require("./hciDeploymentSetting"));
15
+ exports.HciExtension = null;
16
+ utilities.lazyLoad(exports, ["HciExtension"], () => require("./hciExtension"));
15
17
  exports.HciLogicalNetwork = null;
16
18
  utilities.lazyLoad(exports, ["HciLogicalNetwork"], () => require("./hciLogicalNetwork"));
19
+ exports.HciMarketplaceGalleryImage = null;
20
+ utilities.lazyLoad(exports, ["HciMarketplaceGalleryImage"], () => require("./hciMarketplaceGalleryImage"));
17
21
  exports.HciStoragePath = null;
18
22
  utilities.lazyLoad(exports, ["HciStoragePath"], () => require("./hciStoragePath"));
19
23
  exports.HciVirtualHardDisk = null;
@@ -26,8 +30,12 @@ const _module = {
26
30
  return new exports.HciCluster(name, undefined, { urn });
27
31
  case "azure:stack/hciDeploymentSetting:HciDeploymentSetting":
28
32
  return new exports.HciDeploymentSetting(name, undefined, { urn });
33
+ case "azure:stack/hciExtension:HciExtension":
34
+ return new exports.HciExtension(name, undefined, { urn });
29
35
  case "azure:stack/hciLogicalNetwork:HciLogicalNetwork":
30
36
  return new exports.HciLogicalNetwork(name, undefined, { urn });
37
+ case "azure:stack/hciMarketplaceGalleryImage:HciMarketplaceGalleryImage":
38
+ return new exports.HciMarketplaceGalleryImage(name, undefined, { urn });
31
39
  case "azure:stack/hciStoragePath:HciStoragePath":
32
40
  return new exports.HciStoragePath(name, undefined, { urn });
33
41
  case "azure:stack/hciVirtualHardDisk:HciVirtualHardDisk":
@@ -39,7 +47,9 @@ const _module = {
39
47
  };
40
48
  pulumi.runtime.registerResourceModule("azure", "stack/hciCluster", _module);
41
49
  pulumi.runtime.registerResourceModule("azure", "stack/hciDeploymentSetting", _module);
50
+ pulumi.runtime.registerResourceModule("azure", "stack/hciExtension", _module);
42
51
  pulumi.runtime.registerResourceModule("azure", "stack/hciLogicalNetwork", _module);
52
+ pulumi.runtime.registerResourceModule("azure", "stack/hciMarketplaceGalleryImage", _module);
43
53
  pulumi.runtime.registerResourceModule("azure", "stack/hciStoragePath", _module);
44
54
  pulumi.runtime.registerResourceModule("azure", "stack/hciVirtualHardDisk", _module);
45
55
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../stack/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAI7B,QAAA,aAAa,GAAmD,IAAW,CAAC;AAC5E,QAAA,mBAAmB,GAAyD,IAAW,CAAC;AACrG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,EAAC,qBAAqB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAI1F,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,oBAAoB,GAAiE,IAAW,CAAC;AAC9G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,sBAAsB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,wBAAwB,CAAC,CAAC,CAAC;AAIlF,QAAA,iBAAiB,GAA2D,IAAW,CAAC;AACrG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,CAAC;AAI5E,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAItE,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;AAG3F,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,mCAAmC;gBACpC,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,uDAAuD;gBACxD,OAAO,IAAI,4BAAoB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClE,KAAK,iDAAiD;gBAClD,OAAO,IAAI,yBAAiB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC/D,KAAK,2CAA2C;gBAC5C,OAAO,IAAI,sBAAc,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC5D,KAAK,mDAAmD;gBACpD,OAAO,IAAI,0BAAkB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAChE;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,kBAAkB,EAAE,OAAO,CAAC,CAAA;AAC3E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,4BAA4B,EAAE,OAAO,CAAC,CAAA;AACrF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,0BAA0B,EAAE,OAAO,CAAC,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../stack/index.ts"],"names":[],"mappings":"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"}