Resolve remaining path conflicts in v3 #2047
Annotations
10 errors and 1 warning
Check worktree clean:
sdk/nodejs/mobilenetwork/getSim.ts#L1
File deleted:
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
import * as utilities from "../utilities";
/**
* Gets information about the specified SIM.
* Azure REST API version: 2023-06-01.
*
* Other available API versions: 2022-03-01-preview, 2022-04-01-preview, 2022-11-01, 2023-09-01, 2024-02-01, 2024-04-01.
*/
export function getSim(args: GetSimArgs, opts?: pulumi.InvokeOptions): Promise<GetSimResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("azure-native:mobilenetwork:getSim", {
"resourceGroupName": args.resourceGroupName,
"simGroupName": args.simGroupName,
"simName": args.simName,
}, opts);
}
export interface GetSimArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The name of the SIM Group.
*/
simGroupName: string;
/**
* The name of the SIM.
*/
simName: string;
}
/**
* SIM resource.
*/
export interface GetSimResult {
/**
* An optional free-form text field that can be used to record the device type this SIM is associated with, for example 'Video camera'. The Azure portal allows SIMs to be grouped and filtered based on this value.
*/
readonly deviceType?: string;
/**
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*/
readonly id: string;
/**
* The integrated circuit card ID (ICCID) for the SIM.
*/
readonly integratedCircuitCardIdentifier?: string;
/**
* The international mobile subscriber identity (IMSI) for the SIM.
*/
readonly internationalMobileSubscriberIdentity: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* The provisioning state of the SIM resource.
*/
readonly provisioningState: string;
/**
* The SIM policy used by this SIM. The SIM policy must be in the same location as the SIM.
*/
readonly simPolicy?: outputs.mobilenetwork.SimPolicyResourceIdResponse;
/**
* The state of the SIM resource.
*/
readonly simState: string;
/**
* A dictionary of sites to the provisioning state of this SIM on that site.
*/
readonly siteProvisioningState: {[key: string]: string};
/**
* A list of static IP addresses assigned to this SIM. Each address is assigned at a defined network scope, made up of {attached data network, slice}.
*/
readonly staticIpConfiguration?: outputs.mobilenetwork.SimStaticIpPropertiesResponse[];
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.mobilenetwork.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
/**
* The public key fingerprint of the SIM vendor who provided this SIM, if any.
*/
readonly vendorKeyFingerprint: string;
/**
* The name of the SIM vendor who provided this SIM, if any.
*/
readonly vendorName: string;
}
/**
* Gets information about the specified SIM.
* Azure REST API version: 2023-06-01.
*
* Other available API versions: 2022-03-01-preview, 2022-04-01-preview, 2022-11-01, 2023-09-01, 2024-02-01, 2024-04-01.
*/
export function getSimOutput(args: GetSimOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSimResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("azure-native:mobilenetwork:getSim", {
"resourceGroupName":
|
Check worktree clean:
sdk/nodejs/mobilenetwork/index.ts#L1
File modified:
@@ -60,16 +60,16 @@ export const getService: typeof import("./getService").getService = null as any;
export const getServiceOutput: typeof import("./getService").getServiceOutput = null as any;
utilities.lazyLoad(exports, ["getService","getServiceOutput"], () => require("./getService"));
-export { GetSimArgs, GetSimResult, GetSimOutputArgs } from "./getSim";
-export const getSim: typeof import("./getSim").getSim = null as any;
-export const getSimOutput: typeof import("./getSim").getSimOutput = null as any;
-utilities.lazyLoad(exports, ["getSim","getSimOutput"], () => require("./getSim"));
-
export { GetSimGroupArgs, GetSimGroupResult, GetSimGroupOutputArgs } from "./getSimGroup";
export const getSimGroup: typeof import("./getSimGroup").getSimGroup = null as any;
export const getSimGroupOutput: typeof import("./getSimGroup").getSimGroupOutput = null as any;
utilities.lazyLoad(exports, ["getSimGroup","getSimGroupOutput"], () => require("./getSimGroup"));
+export { GetSimGroupSimArgs, GetSimGroupSimResult, GetSimGroupSimOutputArgs } from "./getSimGroupSim";
+export const getSimGroupSim: typeof import("./getSimGroupSim").getSimGroupSim = null as any;
+export const getSimGroupSimOutput: typeof import("./getSimGroupSim").getSimGroupSimOutput = null as any;
+utilities.lazyLoad(exports, ["getSimGroupSim","getSimGroupSimOutput"], () => require("./getSimGroupSim"));
+
export { GetSimPolicyArgs, GetSimPolicyResult, GetSimPolicyOutputArgs } from "./getSimPolicy";
export const getSimPolicy: typeof import("./getSimPolicy").getSimPolicy = null as any;
export const getSimPolicyOutput: typeof import("./getSimPolicy").getSimPolicyOutput = null as any;
@@ -120,16 +120,16 @@ export type Service = import("./service").Service;
export const Service: typeof import("./service").Service = null as any;
utilities.lazyLoad(exports, ["Service"], () => require("./service"));
-export { SimArgs } from "./sim";
-export type Sim = import("./sim").Sim;
-export const Sim: typeof import("./sim").Sim = null as any;
-utilities.lazyLoad(exports, ["Sim"], () => require("./sim"));
-
export { SimGroupArgs } from "./simGroup";
export type SimGroup = import("./simGroup").SimGroup;
export const SimGroup: typeof import("./simGroup").SimGroup = null as any;
utilities.lazyLoad(exports, ["SimGroup"], () => require("./simGroup"));
+export { SimGroupSimArgs } from "./simGroupSim";
+export type SimGroupSim = import("./simGroupSim").SimGroupSim;
+export const SimGroupSim: typeof import("./simGroupSim").SimGroupSim = null as any;
+utilities.lazyLoad(exports, ["SimGroupSim"], () => require("./simGroupSim"));
+
export { SimPolicyArgs } from "./simPolicy";
export type SimPolicy = import("./simPolicy").SimPolicy;
export const SimPolicy: typeof import("./simPolicy").SimPolicy = null as any;
@@ -188,10 +188,10 @@ const _module = {
return new PacketCoreDataPlane(name, <any>undefined, { urn })
case "azure-native:mobilenetwork:Service":
return new Service(name, <any>undefined, { urn })
- case "azure-native:mobilenetwork:Sim":
- return new Sim(name, <any>undefined, { urn })
case "azure-native:mobilenetwork:SimGroup":
return new SimGroup(name, <any>undefined, { urn })
+ case "azure-native:mobilenetwork:SimGroupSim":
+ return new SimGroupSim(name, <any>undefined, { urn })
case "azure-native:mobilenetwork:SimPolicy":
return new SimPolicy(name, <any>undefined, { urn })
case "azure-native:mobilenetwork:Site":
|
Check worktree clean:
sdk/nodejs/mobilenetwork/sim.ts#L1
File deleted:
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
import * as utilities from "../utilities";
/**
* SIM resource.
* Azure REST API version: 2023-06-01. Prior API version in Azure Native 1.x: 2022-04-01-preview.
*
* Other available API versions: 2022-03-01-preview, 2022-04-01-preview, 2022-11-01, 2023-09-01, 2024-02-01, 2024-04-01.
*/
export class Sim extends pulumi.CustomResource {
/**
* Get an existing Sim resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
public static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): Sim {
return new Sim(name, undefined as any, { ...opts, id: id });
}
/** @internal */
public static readonly __pulumiType = 'azure-native:mobilenetwork:Sim';
/**
* Returns true if the given object is an instance of Sim. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
public static isInstance(obj: any): obj is Sim {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === Sim.__pulumiType;
}
/**
* An optional free-form text field that can be used to record the device type this SIM is associated with, for example 'Video camera'. The Azure portal allows SIMs to be grouped and filtered based on this value.
*/
public readonly deviceType!: pulumi.Output<string | undefined>;
/**
* The integrated circuit card ID (ICCID) for the SIM.
*/
public readonly integratedCircuitCardIdentifier!: pulumi.Output<string | undefined>;
/**
* The international mobile subscriber identity (IMSI) for the SIM.
*/
public readonly internationalMobileSubscriberIdentity!: pulumi.Output<string>;
/**
* The name of the resource
*/
public /*out*/ readonly name!: pulumi.Output<string>;
/**
* The provisioning state of the SIM resource.
*/
public /*out*/ readonly provisioningState!: pulumi.Output<string>;
/**
* The SIM policy used by this SIM. The SIM policy must be in the same location as the SIM.
*/
public readonly simPolicy!: pulumi.Output<outputs.mobilenetwork.SimPolicyResourceIdResponse | undefined>;
/**
* The state of the SIM resource.
*/
public /*out*/ readonly simState!: pulumi.Output<string>;
/**
* A dictionary of sites to the provisioning state of this SIM on that site.
*/
public /*out*/ readonly siteProvisioningState!: pulumi.Output<{[key: string]: string}>;
/**
* A list of static IP addresses assigned to this SIM. Each address is assigned at a defined network scope, made up of {attached data network, slice}.
*/
public readonly staticIpConfiguration!: pulumi.Output<outputs.mobilenetwork.SimStaticIpPropertiesResponse[] | undefined>;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
public /*out*/ readonly systemData!: pulumi.Output<outputs.mobilenetwork.SystemDataResponse>;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
public /*out*/ readonly type!: pulumi.Output<string>;
/**
* The public key fingerprint of the SIM vendor who provided this SIM, if any.
*/
public /*out*/ readonly vendorKeyFingerprint!: pulumi.Output<string>;
/**
* The name of the SIM vendor who provided this SIM, if any.
*/
public /*out*
|
Check worktree clean:
sdk/nodejs/mobilenetwork/v20220401preview/getSim.ts#L1
File deleted:
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../../types/input";
import * as outputs from "../../types/output";
import * as enums from "../../types/enums";
import * as utilities from "../../utilities";
/**
* Gets information about the specified SIM.
*/
export function getSim(args: GetSimArgs, opts?: pulumi.InvokeOptions): Promise<GetSimResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("azure-native:mobilenetwork/v20220401preview:getSim", {
"resourceGroupName": args.resourceGroupName,
"simGroupName": args.simGroupName,
"simName": args.simName,
}, opts);
}
export interface GetSimArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The name of the SIM Group.
*/
simGroupName: string;
/**
* The name of the SIM.
*/
simName: string;
}
/**
* SIM resource.
*/
export interface GetSimResult {
/**
* The timestamp of resource creation (UTC).
*/
readonly createdAt?: string;
/**
* The identity that created the resource.
*/
readonly createdBy?: string;
/**
* The type of identity that created the resource.
*/
readonly createdByType?: string;
/**
* An optional free-form text field that can be used to record the device type this SIM is associated with, for example 'Video camera'. The Azure portal allows SIMs to be grouped and filtered based on this value.
*/
readonly deviceType?: string;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The integrated circuit card ID (ICCID) for the SIM.
*/
readonly integratedCircuitCardIdentifier?: string;
/**
* The international mobile subscriber identity (IMSI) for the SIM.
*/
readonly internationalMobileSubscriberIdentity: string;
/**
* The timestamp of resource last modification (UTC)
*/
readonly lastModifiedAt?: string;
/**
* The identity that last modified the resource.
*/
readonly lastModifiedBy?: string;
/**
* The type of identity that last modified the resource.
*/
readonly lastModifiedByType?: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* The provisioning state of the SIM resource.
*/
readonly provisioningState: string;
/**
* The SIM policy used by this SIM.
*/
readonly simPolicy?: outputs.mobilenetwork.v20220401preview.SimPolicyResourceIdResponse;
/**
* The state of the SIM resource.
*/
readonly simState: string;
/**
* A list of static IP addresses assigned to this SIM. Each address is assigned at a defined network scope, made up of {attached data network, slice}.
*/
readonly staticIpConfiguration?: outputs.mobilenetwork.v20220401preview.SimStaticIpPropertiesResponse[];
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.mobilenetwork.v20220401preview.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Gets information about the specified SIM.
*/
export function getSimOutput(args: GetSimOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSimResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("azure-native:mobilenetwork/v20220401preview:getSim", {
"resourceGroupName": args.resourceGroupName,
"simGroupName": args.simGroup
|
Check worktree clean:
sdk/nodejs/mobilenetwork/v20220401preview/index.ts#L1
File modified:
@@ -45,16 +45,16 @@ export const getService: typeof import("./getService").getService = null as any;
export const getServiceOutput: typeof import("./getService").getServiceOutput = null as any;
utilities.lazyLoad(exports, ["getService","getServiceOutput"], () => require("./getService"));
-export { GetSimArgs, GetSimResult, GetSimOutputArgs } from "./getSim";
-export const getSim: typeof import("./getSim").getSim = null as any;
-export const getSimOutput: typeof import("./getSim").getSimOutput = null as any;
-utilities.lazyLoad(exports, ["getSim","getSimOutput"], () => require("./getSim"));
-
export { GetSimGroupArgs, GetSimGroupResult, GetSimGroupOutputArgs } from "./getSimGroup";
export const getSimGroup: typeof import("./getSimGroup").getSimGroup = null as any;
export const getSimGroupOutput: typeof import("./getSimGroup").getSimGroupOutput = null as any;
utilities.lazyLoad(exports, ["getSimGroup","getSimGroupOutput"], () => require("./getSimGroup"));
+export { GetSimGroupSimArgs, GetSimGroupSimResult, GetSimGroupSimOutputArgs } from "./getSimGroupSim";
+export const getSimGroupSim: typeof import("./getSimGroupSim").getSimGroupSim = null as any;
+export const getSimGroupSimOutput: typeof import("./getSimGroupSim").getSimGroupSimOutput = null as any;
+utilities.lazyLoad(exports, ["getSimGroupSim","getSimGroupSimOutput"], () => require("./getSimGroupSim"));
+
export { GetSimPolicyArgs, GetSimPolicyResult, GetSimPolicyOutputArgs } from "./getSimPolicy";
export const getSimPolicy: typeof import("./getSimPolicy").getSimPolicy = null as any;
export const getSimPolicyOutput: typeof import("./getSimPolicy").getSimPolicyOutput = null as any;
@@ -95,16 +95,16 @@ export type Service = import("./service").Service;
export const Service: typeof import("./service").Service = null as any;
utilities.lazyLoad(exports, ["Service"], () => require("./service"));
-export { SimArgs } from "./sim";
-export type Sim = import("./sim").Sim;
-export const Sim: typeof import("./sim").Sim = null as any;
-utilities.lazyLoad(exports, ["Sim"], () => require("./sim"));
-
export { SimGroupArgs } from "./simGroup";
export type SimGroup = import("./simGroup").SimGroup;
export const SimGroup: typeof import("./simGroup").SimGroup = null as any;
utilities.lazyLoad(exports, ["SimGroup"], () => require("./simGroup"));
+export { SimGroupSimArgs } from "./simGroupSim";
+export type SimGroupSim = import("./simGroupSim").SimGroupSim;
+export const SimGroupSim: typeof import("./simGroupSim").SimGroupSim = null as any;
+utilities.lazyLoad(exports, ["SimGroupSim"], () => require("./simGroupSim"));
+
export { SimPolicyArgs } from "./simPolicy";
export type SimPolicy = import("./simPolicy").SimPolicy;
export const SimPolicy: typeof import("./simPolicy").SimPolicy = null as any;
@@ -140,10 +140,10 @@ const _module = {
return new PacketCoreDataPlane(name, <any>undefined, { urn })
case "azure-native:mobilenetwork/v20220401preview:Service":
return new Service(name, <any>undefined, { urn })
- case "azure-native:mobilenetwork/v20220401preview:Sim":
- return new Sim(name, <any>undefined, { urn })
case "azure-native:mobilenetwork/v20220401preview:SimGroup":
return new SimGroup(name, <any>undefined, { urn })
+ case "azure-native:mobilenetwork/v20220401preview:SimGroupSim":
+ return new SimGroupSim(name, <any>undefined, { urn })
case "azure-native:mobilenetwork/v20220401preview:SimPolicy":
return new SimPolicy(name, <any>undefined, { urn })
case "azure-native:mobilenetwork/v20220401preview:Site":
|
Check worktree clean:
sdk/nodejs/mobilenetwork/v20220401preview/sim.ts#L1
File deleted:
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../../types/input";
import * as outputs from "../../types/output";
import * as enums from "../../types/enums";
import * as utilities from "../../utilities";
/**
* SIM resource.
*/
export class Sim extends pulumi.CustomResource {
/**
* Get an existing Sim resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
public static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): Sim {
return new Sim(name, undefined as any, { ...opts, id: id });
}
/** @internal */
public static readonly __pulumiType = 'azure-native:mobilenetwork/v20220401preview:Sim';
/**
* Returns true if the given object is an instance of Sim. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
public static isInstance(obj: any): obj is Sim {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === Sim.__pulumiType;
}
/**
* The timestamp of resource creation (UTC).
*/
public readonly createdAt!: pulumi.Output<string | undefined>;
/**
* The identity that created the resource.
*/
public readonly createdBy!: pulumi.Output<string | undefined>;
/**
* The type of identity that created the resource.
*/
public readonly createdByType!: pulumi.Output<string | undefined>;
/**
* An optional free-form text field that can be used to record the device type this SIM is associated with, for example 'Video camera'. The Azure portal allows SIMs to be grouped and filtered based on this value.
*/
public readonly deviceType!: pulumi.Output<string | undefined>;
/**
* The integrated circuit card ID (ICCID) for the SIM.
*/
public readonly integratedCircuitCardIdentifier!: pulumi.Output<string | undefined>;
/**
* The international mobile subscriber identity (IMSI) for the SIM.
*/
public readonly internationalMobileSubscriberIdentity!: pulumi.Output<string>;
/**
* The timestamp of resource last modification (UTC)
*/
public readonly lastModifiedAt!: pulumi.Output<string | undefined>;
/**
* The identity that last modified the resource.
*/
public readonly lastModifiedBy!: pulumi.Output<string | undefined>;
/**
* The type of identity that last modified the resource.
*/
public readonly lastModifiedByType!: pulumi.Output<string | undefined>;
/**
* The name of the resource
*/
public /*out*/ readonly name!: pulumi.Output<string>;
/**
* The provisioning state of the SIM resource.
*/
public /*out*/ readonly provisioningState!: pulumi.Output<string>;
/**
* The SIM policy used by this SIM.
*/
public readonly simPolicy!: pulumi.Output<outputs.mobilenetwork.v20220401preview.SimPolicyResourceIdResponse | undefined>;
/**
* The state of the SIM resource.
*/
public /*out*/ readonly simState!: pulumi.Output<string>;
/**
* A list of static IP addresses assigned to this SIM. Each address is assigned at a defined network scope, made up of {attached data network, slice}.
*/
public readonly staticIpConfiguration!: pulumi.Output<outputs.mobilenetwork.v20220401preview.SimStaticIpPropertiesResponse[] | undefined>;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
public /*out*/ readonly systemData!: pulumi.Output<outputs.mobilenetwork.v20220401preview.SystemDataResponse>;
|
Check worktree clean:
sdk/nodejs/mobilenetwork/v20221101/getSim.ts#L1
File deleted:
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../../types/input";
import * as outputs from "../../types/output";
import * as enums from "../../types/enums";
import * as utilities from "../../utilities";
/**
* Gets information about the specified SIM.
*/
export function getSim(args: GetSimArgs, opts?: pulumi.InvokeOptions): Promise<GetSimResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("azure-native:mobilenetwork/v20221101:getSim", {
"resourceGroupName": args.resourceGroupName,
"simGroupName": args.simGroupName,
"simName": args.simName,
}, opts);
}
export interface GetSimArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The name of the SIM Group.
*/
simGroupName: string;
/**
* The name of the SIM.
*/
simName: string;
}
/**
* SIM resource.
*/
export interface GetSimResult {
/**
* An optional free-form text field that can be used to record the device type this SIM is associated with, for example 'Video camera'. The Azure portal allows SIMs to be grouped and filtered based on this value.
*/
readonly deviceType?: string;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The integrated circuit card ID (ICCID) for the SIM.
*/
readonly integratedCircuitCardIdentifier?: string;
/**
* The international mobile subscriber identity (IMSI) for the SIM.
*/
readonly internationalMobileSubscriberIdentity: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* The provisioning state of the SIM resource.
*/
readonly provisioningState: string;
/**
* The SIM policy used by this SIM. The SIM policy must be in the same location as the SIM.
*/
readonly simPolicy?: outputs.mobilenetwork.v20221101.SimPolicyResourceIdResponse;
/**
* The state of the SIM resource.
*/
readonly simState: string;
/**
* A dictionary of sites to the provisioning state of this SIM on that site.
*/
readonly siteProvisioningState: {[key: string]: string};
/**
* A list of static IP addresses assigned to this SIM. Each address is assigned at a defined network scope, made up of {attached data network, slice}.
*/
readonly staticIpConfiguration?: outputs.mobilenetwork.v20221101.SimStaticIpPropertiesResponse[];
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.mobilenetwork.v20221101.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
/**
* The public key fingerprint of the SIM vendor who provided this SIM, if any.
*/
readonly vendorKeyFingerprint: string;
/**
* The name of the SIM vendor who provided this SIM, if any.
*/
readonly vendorName: string;
}
/**
* Gets information about the specified SIM.
*/
export function getSimOutput(args: GetSimOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSimResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("azure-native:mobilenetwork/v20221101:getSim", {
"resourceGroupName": args.resourceGroupName,
"simGroupName": args.simGroupName,
"simName": args.simName,
}, opts);
}
export interface GetSimOutputArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulu
|
Check worktree clean:
sdk/nodejs/mobilenetwork/v20221101/index.ts#L1
File modified:
@@ -45,16 +45,16 @@ export const getService: typeof import("./getService").getService = null as any;
export const getServiceOutput: typeof import("./getService").getServiceOutput = null as any;
utilities.lazyLoad(exports, ["getService","getServiceOutput"], () => require("./getService"));
-export { GetSimArgs, GetSimResult, GetSimOutputArgs } from "./getSim";
-export const getSim: typeof import("./getSim").getSim = null as any;
-export const getSimOutput: typeof import("./getSim").getSimOutput = null as any;
-utilities.lazyLoad(exports, ["getSim","getSimOutput"], () => require("./getSim"));
-
export { GetSimGroupArgs, GetSimGroupResult, GetSimGroupOutputArgs } from "./getSimGroup";
export const getSimGroup: typeof import("./getSimGroup").getSimGroup = null as any;
export const getSimGroupOutput: typeof import("./getSimGroup").getSimGroupOutput = null as any;
utilities.lazyLoad(exports, ["getSimGroup","getSimGroupOutput"], () => require("./getSimGroup"));
+export { GetSimGroupSimArgs, GetSimGroupSimResult, GetSimGroupSimOutputArgs } from "./getSimGroupSim";
+export const getSimGroupSim: typeof import("./getSimGroupSim").getSimGroupSim = null as any;
+export const getSimGroupSimOutput: typeof import("./getSimGroupSim").getSimGroupSimOutput = null as any;
+utilities.lazyLoad(exports, ["getSimGroupSim","getSimGroupSimOutput"], () => require("./getSimGroupSim"));
+
export { GetSimPolicyArgs, GetSimPolicyResult, GetSimPolicyOutputArgs } from "./getSimPolicy";
export const getSimPolicy: typeof import("./getSimPolicy").getSimPolicy = null as any;
export const getSimPolicyOutput: typeof import("./getSimPolicy").getSimPolicyOutput = null as any;
@@ -90,16 +90,16 @@ export type Service = import("./service").Service;
export const Service: typeof import("./service").Service = null as any;
utilities.lazyLoad(exports, ["Service"], () => require("./service"));
-export { SimArgs } from "./sim";
-export type Sim = import("./sim").Sim;
-export const Sim: typeof import("./sim").Sim = null as any;
-utilities.lazyLoad(exports, ["Sim"], () => require("./sim"));
-
export { SimGroupArgs } from "./simGroup";
export type SimGroup = import("./simGroup").SimGroup;
export const SimGroup: typeof import("./simGroup").SimGroup = null as any;
utilities.lazyLoad(exports, ["SimGroup"], () => require("./simGroup"));
+export { SimGroupSimArgs } from "./simGroupSim";
+export type SimGroupSim = import("./simGroupSim").SimGroupSim;
+export const SimGroupSim: typeof import("./simGroupSim").SimGroupSim = null as any;
+utilities.lazyLoad(exports, ["SimGroupSim"], () => require("./simGroupSim"));
+
export { SimPolicyArgs } from "./simPolicy";
export type SimPolicy = import("./simPolicy").SimPolicy;
export const SimPolicy: typeof import("./simPolicy").SimPolicy = null as any;
@@ -135,10 +135,10 @@ const _module = {
return new PacketCoreDataPlane(name, <any>undefined, { urn })
case "azure-native:mobilenetwork/v20221101:Service":
return new Service(name, <any>undefined, { urn })
- case "azure-native:mobilenetwork/v20221101:Sim":
- return new Sim(name, <any>undefined, { urn })
case "azure-native:mobilenetwork/v20221101:SimGroup":
return new SimGroup(name, <any>undefined, { urn })
+ case "azure-native:mobilenetwork/v20221101:SimGroupSim":
+ return new SimGroupSim(name, <any>undefined, { urn })
case "azure-native:mobilenetwork/v20221101:SimPolicy":
return new SimPolicy(name, <any>undefined, { urn })
case "azure-native:mobilenetwork/v20221101:Site":
|
Check worktree clean:
sdk/nodejs/mobilenetwork/v20221101/sim.ts#L1
File deleted:
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../../types/input";
import * as outputs from "../../types/output";
import * as enums from "../../types/enums";
import * as utilities from "../../utilities";
/**
* SIM resource.
*/
export class Sim extends pulumi.CustomResource {
/**
* Get an existing Sim resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
public static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): Sim {
return new Sim(name, undefined as any, { ...opts, id: id });
}
/** @internal */
public static readonly __pulumiType = 'azure-native:mobilenetwork/v20221101:Sim';
/**
* Returns true if the given object is an instance of Sim. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
public static isInstance(obj: any): obj is Sim {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === Sim.__pulumiType;
}
/**
* An optional free-form text field that can be used to record the device type this SIM is associated with, for example 'Video camera'. The Azure portal allows SIMs to be grouped and filtered based on this value.
*/
public readonly deviceType!: pulumi.Output<string | undefined>;
/**
* The integrated circuit card ID (ICCID) for the SIM.
*/
public readonly integratedCircuitCardIdentifier!: pulumi.Output<string | undefined>;
/**
* The international mobile subscriber identity (IMSI) for the SIM.
*/
public readonly internationalMobileSubscriberIdentity!: pulumi.Output<string>;
/**
* The name of the resource
*/
public /*out*/ readonly name!: pulumi.Output<string>;
/**
* The provisioning state of the SIM resource.
*/
public /*out*/ readonly provisioningState!: pulumi.Output<string>;
/**
* The SIM policy used by this SIM. The SIM policy must be in the same location as the SIM.
*/
public readonly simPolicy!: pulumi.Output<outputs.mobilenetwork.v20221101.SimPolicyResourceIdResponse | undefined>;
/**
* The state of the SIM resource.
*/
public /*out*/ readonly simState!: pulumi.Output<string>;
/**
* A dictionary of sites to the provisioning state of this SIM on that site.
*/
public /*out*/ readonly siteProvisioningState!: pulumi.Output<{[key: string]: string}>;
/**
* A list of static IP addresses assigned to this SIM. Each address is assigned at a defined network scope, made up of {attached data network, slice}.
*/
public readonly staticIpConfiguration!: pulumi.Output<outputs.mobilenetwork.v20221101.SimStaticIpPropertiesResponse[] | undefined>;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
public /*out*/ readonly systemData!: pulumi.Output<outputs.mobilenetwork.v20221101.SystemDataResponse>;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
public /*out*/ readonly type!: pulumi.Output<string>;
/**
* The public key fingerprint of the SIM vendor who provided this SIM, if any.
*/
public /*out*/ readonly vendorKeyFingerprint!: pulumi.Output<string>;
/**
* The name of the SIM vendor who provided this SIM, if any.
*/
public /*out*/ readonly vendorName!: pulumi.Output<string>;
/**
* Create a Sim resource with the given unique name, arguments, and options.
*
* @param name The _un
|
Check worktree clean:
sdk/nodejs/mobilenetwork/v20230601/getSim.ts#L1
File deleted:
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../../types/input";
import * as outputs from "../../types/output";
import * as enums from "../../types/enums";
import * as utilities from "../../utilities";
/**
* Gets information about the specified SIM.
*/
export function getSim(args: GetSimArgs, opts?: pulumi.InvokeOptions): Promise<GetSimResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("azure-native:mobilenetwork/v20230601:getSim", {
"resourceGroupName": args.resourceGroupName,
"simGroupName": args.simGroupName,
"simName": args.simName,
}, opts);
}
export interface GetSimArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The name of the SIM Group.
*/
simGroupName: string;
/**
* The name of the SIM.
*/
simName: string;
}
/**
* SIM resource.
*/
export interface GetSimResult {
/**
* An optional free-form text field that can be used to record the device type this SIM is associated with, for example 'Video camera'. The Azure portal allows SIMs to be grouped and filtered based on this value.
*/
readonly deviceType?: string;
/**
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*/
readonly id: string;
/**
* The integrated circuit card ID (ICCID) for the SIM.
*/
readonly integratedCircuitCardIdentifier?: string;
/**
* The international mobile subscriber identity (IMSI) for the SIM.
*/
readonly internationalMobileSubscriberIdentity: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* The provisioning state of the SIM resource.
*/
readonly provisioningState: string;
/**
* The SIM policy used by this SIM. The SIM policy must be in the same location as the SIM.
*/
readonly simPolicy?: outputs.mobilenetwork.v20230601.SimPolicyResourceIdResponse;
/**
* The state of the SIM resource.
*/
readonly simState: string;
/**
* A dictionary of sites to the provisioning state of this SIM on that site.
*/
readonly siteProvisioningState: {[key: string]: string};
/**
* A list of static IP addresses assigned to this SIM. Each address is assigned at a defined network scope, made up of {attached data network, slice}.
*/
readonly staticIpConfiguration?: outputs.mobilenetwork.v20230601.SimStaticIpPropertiesResponse[];
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.mobilenetwork.v20230601.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
/**
* The public key fingerprint of the SIM vendor who provided this SIM, if any.
*/
readonly vendorKeyFingerprint: string;
/**
* The name of the SIM vendor who provided this SIM, if any.
*/
readonly vendorName: string;
}
/**
* Gets information about the specified SIM.
*/
export function getSimOutput(args: GetSimOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSimResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("azure-native:mobilenetwork/v20230601:getSim", {
"resourceGroupName": args.resourceGroupName,
"simGroupName": args.simGroupName,
"simName": args.simName,
}, opts);
}
export interface GetSimOutputArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pu
|
Post Install Languages & Frameworks
This job uses deprecated functionality from the 'gradle/gradle-build-action' action. Consult the Job Summary for more details.
|
Loading