@pulumi/azure-native 2.1.0 → 2.1.1-alpha.1689851370
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/devices/certificate.d.ts +1 -1
- package/devices/certificate.js +1 -1
- package/devices/getCertificate.d.ts +2 -2
- package/devices/getCertificate.js +2 -2
- package/devices/getIotHubResource.d.ts +2 -2
- package/devices/getIotHubResource.js +2 -2
- package/devices/getIotHubResourceEventHubConsumerGroup.d.ts +2 -2
- package/devices/getIotHubResourceEventHubConsumerGroup.js +2 -2
- package/devices/getPrivateEndpointConnection.d.ts +2 -2
- package/devices/getPrivateEndpointConnection.js +2 -2
- package/devices/index.d.ts +2 -1
- package/devices/index.js +4 -2
- package/devices/iotHubResource.d.ts +1 -1
- package/devices/iotHubResource.js +1 -1
- package/devices/iotHubResourceEventHubConsumerGroup.d.ts +1 -1
- package/devices/iotHubResourceEventHubConsumerGroup.js +1 -1
- package/devices/listIotHubResourceKeys.d.ts +2 -2
- package/devices/listIotHubResourceKeys.js +2 -2
- package/devices/listIotHubResourceKeysForKeyName.d.ts +2 -2
- package/devices/listIotHubResourceKeysForKeyName.js +2 -2
- package/devices/privateEndpointConnection.d.ts +1 -1
- package/devices/privateEndpointConnection.js +1 -1
- package/devices/v20220430preview/certificate.d.ts +67 -0
- package/devices/v20220430preview/certificate.js +73 -0
- package/devices/v20220430preview/getCertificate.d.ts +63 -0
- package/devices/v20220430preview/getCertificate.js +27 -0
- package/devices/v20220430preview/getIotHubResource.d.ts +77 -0
- package/devices/v20220430preview/getIotHubResource.js +26 -0
- package/devices/v20220430preview/getIotHubResourceEventHubConsumerGroup.d.ts +70 -0
- package/devices/v20220430preview/getIotHubResourceEventHubConsumerGroup.js +28 -0
- package/devices/v20220430preview/getPrivateEndpointConnection.d.ts +59 -0
- package/devices/v20220430preview/getPrivateEndpointConnection.js +27 -0
- package/devices/v20220430preview/index.d.ts +31 -0
- package/devices/v20220430preview/index.js +68 -0
- package/devices/v20220430preview/iotHubResource.d.ts +103 -0
- package/devices/v20220430preview/iotHubResource.js +83 -0
- package/devices/v20220430preview/iotHubResourceEventHubConsumerGroup.d.ts +70 -0
- package/devices/v20220430preview/iotHubResourceEventHubConsumerGroup.js +79 -0
- package/devices/v20220430preview/listIotHubResourceKeys.d.ts +43 -0
- package/devices/v20220430preview/listIotHubResourceKeys.js +26 -0
- package/devices/v20220430preview/listIotHubResourceKeysForKeyName.d.ts +58 -0
- package/devices/v20220430preview/listIotHubResourceKeysForKeyName.js +27 -0
- package/devices/v20220430preview/privateEndpointConnection.d.ts +63 -0
- package/devices/v20220430preview/privateEndpointConnection.js +74 -0
- package/network/getDnsResourceReferenceByTarResources.d.ts +2 -2
- package/network/getDnsResourceReferenceByTarResources.js +2 -2
- package/network/getRecordSet.d.ts +4 -16
- package/network/getRecordSet.js +3 -3
- package/network/getZone.d.ts +4 -12
- package/network/getZone.js +3 -3
- package/network/index.d.ts +0 -6
- package/network/index.js +10 -17
- package/network/recordSet.d.ts +3 -27
- package/network/recordSet.js +2 -8
- package/network/v20180501/getRecordSet.d.ts +129 -0
- package/network/v20180501/getRecordSet.js +28 -0
- package/network/v20180501/getZone.d.ts +89 -0
- package/network/v20180501/getZone.js +26 -0
- package/network/v20180501/index.d.ts +13 -0
- package/network/v20180501/index.js +43 -2
- package/network/v20180501/recordSet.d.ts +179 -0
- package/network/v20180501/recordSet.js +105 -0
- package/network/v20180501/zone.d.ts +116 -0
- package/network/v20180501/zone.js +86 -0
- package/network/v20230701preview/dnssecConfig.js +1 -3
- package/network/zone.d.ts +2 -10
- package/network/zone.js +2 -6
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/types/enums/devices/index.d.ts +2 -10
- package/types/enums/devices/index.js +4 -7
- package/types/enums/devices/v20220430preview/index.d.ts +115 -0
- package/types/enums/devices/v20220430preview/index.js +77 -0
- package/types/enums/network/index.d.ts +2 -1
- package/types/enums/network/index.js +8 -6
- package/types/enums/network/v20180501/index.d.ts +8 -0
- package/types/enums/network/v20180501/index.js +10 -0
- package/types/input.d.ts +896 -84
- package/types/input.js +27 -1
- package/types/output.d.ts +1331 -437
- package/types/output.js +27 -1
- package/network/dnssecConfig.d.ts +0 -67
- package/network/dnssecConfig.js +0 -77
- package/network/getDnssecConfig.d.ts +0 -65
- package/network/getDnssecConfig.js +0 -28
package/network/recordSet.js
CHANGED
|
@@ -7,7 +7,7 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
9
|
* Describes a DNS record set (a collection of DNS records with the same name and type).
|
|
10
|
-
* Azure REST API version:
|
|
10
|
+
* Azure REST API version: 2018-05-01. Prior API version in Azure Native 1.x: 2018-05-01
|
|
11
11
|
*/
|
|
12
12
|
class RecordSet extends pulumi.CustomResource {
|
|
13
13
|
/**
|
|
@@ -55,10 +55,8 @@ class RecordSet extends pulumi.CustomResource {
|
|
|
55
55
|
resourceInputs["aaaaRecords"] = args ? args.aaaaRecords : undefined;
|
|
56
56
|
resourceInputs["caaRecords"] = args ? args.caaRecords : undefined;
|
|
57
57
|
resourceInputs["cnameRecord"] = args ? args.cnameRecord : undefined;
|
|
58
|
-
resourceInputs["dsRecords"] = args ? args.dsRecords : undefined;
|
|
59
58
|
resourceInputs["metadata"] = args ? args.metadata : undefined;
|
|
60
59
|
resourceInputs["mxRecords"] = args ? args.mxRecords : undefined;
|
|
61
|
-
resourceInputs["naptrRecords"] = args ? args.naptrRecords : undefined;
|
|
62
60
|
resourceInputs["nsRecords"] = args ? args.nsRecords : undefined;
|
|
63
61
|
resourceInputs["ptrRecords"] = args ? args.ptrRecords : undefined;
|
|
64
62
|
resourceInputs["recordType"] = args ? args.recordType : undefined;
|
|
@@ -67,7 +65,6 @@ class RecordSet extends pulumi.CustomResource {
|
|
|
67
65
|
resourceInputs["soaRecord"] = args ? args.soaRecord : undefined;
|
|
68
66
|
resourceInputs["srvRecords"] = args ? args.srvRecords : undefined;
|
|
69
67
|
resourceInputs["targetResource"] = args ? args.targetResource : undefined;
|
|
70
|
-
resourceInputs["tlsaRecords"] = args ? args.tlsaRecords : undefined;
|
|
71
68
|
resourceInputs["ttl"] = args ? args.ttl : undefined;
|
|
72
69
|
resourceInputs["txtRecords"] = args ? args.txtRecords : undefined;
|
|
73
70
|
resourceInputs["zoneName"] = args ? args.zoneName : undefined;
|
|
@@ -82,20 +79,17 @@ class RecordSet extends pulumi.CustomResource {
|
|
|
82
79
|
resourceInputs["aaaaRecords"] = undefined /*out*/;
|
|
83
80
|
resourceInputs["caaRecords"] = undefined /*out*/;
|
|
84
81
|
resourceInputs["cnameRecord"] = undefined /*out*/;
|
|
85
|
-
resourceInputs["dsRecords"] = undefined /*out*/;
|
|
86
82
|
resourceInputs["etag"] = undefined /*out*/;
|
|
87
83
|
resourceInputs["fqdn"] = undefined /*out*/;
|
|
88
84
|
resourceInputs["metadata"] = undefined /*out*/;
|
|
89
85
|
resourceInputs["mxRecords"] = undefined /*out*/;
|
|
90
86
|
resourceInputs["name"] = undefined /*out*/;
|
|
91
|
-
resourceInputs["naptrRecords"] = undefined /*out*/;
|
|
92
87
|
resourceInputs["nsRecords"] = undefined /*out*/;
|
|
93
88
|
resourceInputs["provisioningState"] = undefined /*out*/;
|
|
94
89
|
resourceInputs["ptrRecords"] = undefined /*out*/;
|
|
95
90
|
resourceInputs["soaRecord"] = undefined /*out*/;
|
|
96
91
|
resourceInputs["srvRecords"] = undefined /*out*/;
|
|
97
92
|
resourceInputs["targetResource"] = undefined /*out*/;
|
|
98
|
-
resourceInputs["tlsaRecords"] = undefined /*out*/;
|
|
99
93
|
resourceInputs["ttl"] = undefined /*out*/;
|
|
100
94
|
resourceInputs["txtRecords"] = undefined /*out*/;
|
|
101
95
|
resourceInputs["type"] = undefined /*out*/;
|
|
@@ -109,4 +103,4 @@ class RecordSet extends pulumi.CustomResource {
|
|
|
109
103
|
exports.RecordSet = RecordSet;
|
|
110
104
|
/** @internal */
|
|
111
105
|
RecordSet.__pulumiType = 'azure-native:network:RecordSet';
|
|
112
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
106
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVjb3JkU2V0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vbmV0d29yay9yZWNvcmRTZXQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLHNEQUFzRDtBQUN0RCxpRkFBaUY7OztBQUVqRix5Q0FBeUM7QUFJekMsMENBQTBDO0FBRTFDOzs7R0FHRztBQUNILE1BQWEsU0FBVSxTQUFRLE1BQU0sQ0FBQyxjQUFjO0lBQ2hEOzs7Ozs7O09BT0c7SUFDSSxNQUFNLENBQUMsR0FBRyxDQUFDLElBQVksRUFBRSxFQUEyQixFQUFFLElBQW1DO1FBQzVGLE9BQU8sSUFBSSxTQUFTLENBQUMsSUFBSSxFQUFFLFNBQWdCLGtDQUFPLElBQUksS0FBRSxFQUFFLEVBQUUsRUFBRSxJQUFHLENBQUM7SUFDdEUsQ0FBQztJQUtEOzs7T0FHRztJQUNJLE1BQU0sQ0FBQyxVQUFVLENBQUMsR0FBUTtRQUM3QixJQUFJLEdBQUcsS0FBSyxTQUFTLElBQUksR0FBRyxLQUFLLElBQUksRUFBRTtZQUNuQyxPQUFPLEtBQUssQ0FBQztTQUNoQjtRQUNELE9BQU8sR0FBRyxDQUFDLGNBQWMsQ0FBQyxLQUFLLFNBQVMsQ0FBQyxZQUFZLENBQUM7SUFDMUQsQ0FBQztJQTJFRDs7Ozs7O09BTUc7SUFDSCxZQUFZLElBQVksRUFBRSxJQUFtQixFQUFFLElBQW1DO1FBQzlFLElBQUksY0FBYyxHQUFrQixFQUFFLENBQUM7UUFDdkMsSUFBSSxHQUFHLElBQUksSUFBSSxFQUFFLENBQUM7UUFDbEIsSUFBSSxDQUFDLElBQUksQ0FBQyxFQUFFLEVBQUU7WUFDVixJQUFJLENBQUMsQ0FBQyxJQUFJLElBQUksSUFBSSxDQUFDLFVBQVUsS0FBSyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUU7Z0JBQ3ZELE1BQU0sSUFBSSxLQUFLLENBQUMsd0NBQXdDLENBQUMsQ0FBQzthQUM3RDtZQUNELElBQUksQ0FBQyxDQUFDLElBQUksSUFBSSxJQUFJLENB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O1lBQzlELGNBQWMsQ0FBQyxNQUFNLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQzNDLGNBQWMsQ0FBQyxNQUFNLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQzNDLGNBQWMsQ0FBQyxNQUFNLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQzNDLGNBQWMsQ0FBQyxtQkFBbUIsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDeEQsY0FBYyxDQUFDLE1BQU0sQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7U0FDOUM7YUFBTTtZQUNILGNBQWMsQ0FBQyxVQUFVLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQy9DLGNBQWMsQ0FBQyxhQUFhLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ2xELGNBQWMsQ0FBQyxZQUFZLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ2pELGNBQWMsQ0FBQyxhQUFhLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ2xELGNBQWMsQ0FBQyxNQUFNLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQzNDLGNBQWMsQ0FBQyxNQUFNLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQzNDLGNBQWMsQ0FBQyxVQUFVLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQy9DLGNBQWMsQ0FBQyxXQUFXLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ2hELGNBQWMsQ0FBQyxNQUFNLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQzNDLGNBQWMsQ0FBQyxXQUFXLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ2hELGNBQWMsQ0FBQyxtQkFBbUIsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDeEQsY0FBYyxDQUFDLFlBQVksQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDakQsY0FBYyxDQUFDLFdBQVcsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDaEQsY0FBYyxDQUFDLFlBQVksQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDakQsY0FBYyxDQUFDLGdCQUFnQixDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUNyRCxjQUFjLENBQUMsS0FBSyxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUMxQyxjQUFjLENBQUMsWUFBWSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUNqRCxjQUFjLENBQUMsTUFBTSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztTQUM5QztRQUNELElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksQ0FBQyxDQUFDO1FBQ25FLE1BQU0sU0FBUyxHQUFHLEVBQUUsT0FBTyxFQUFFLENBQUMsRUFBRSxJQUFJLEVBQUUsaURBQWlELEVBQUUsRUFBRSxFQUFFLElBQUksRUFBRSwwQ0FBMEMsRUFBRSxFQUFFLEVBQUUsSUFBSSxFQUFFLDBDQUEwQyxFQUFFLEVBQUUsRUFBRSxJQUFJLEVBQUUsMENBQTBDLEVBQUUsRUFBRSxFQUFFLElBQUksRUFBRSxpREFBaUQsRUFBRSxFQUFFLEVBQUUsSUFBSSxFQUFFLDBDQUEwQyxFQUFFLEVBQUUsRUFBRSxJQUFJLEVBQUUsaURBQWlELEVBQUUsQ0FBQyxFQUFFLENBQUM7UUFDL2EsSUFBSSxHQUFHLE1BQU0sQ0FBQyxZQUFZLENBQUMsSUFBSSxFQUFFLFNBQVMsQ0FBQyxDQUFDO1FBQzVDLEtBQUssQ0FBQyxTQUFTLENBQUMsWUFBWSxFQUFFLElBQUksRUFBRSxjQUFjLEVBQUUsSUFBSSxDQUFDLENBQUM7SUFDOUQsQ0FBQzs7QUF0S0wsOEJBdUtDO0FBMUpHLGdCQUFnQjtBQUNPLHNCQUFZLEdBQUcsZ0NBQWdDLENBQUMifQ==
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Gets a record set.
|
|
5
|
+
*/
|
|
6
|
+
export declare function getRecordSet(args: GetRecordSetArgs, opts?: pulumi.InvokeOptions): Promise<GetRecordSetResult>;
|
|
7
|
+
export interface GetRecordSetArgs {
|
|
8
|
+
/**
|
|
9
|
+
* The type of DNS record in this record set.
|
|
10
|
+
*/
|
|
11
|
+
recordType: string;
|
|
12
|
+
/**
|
|
13
|
+
* The name of the record set, relative to the name of the zone.
|
|
14
|
+
*/
|
|
15
|
+
relativeRecordSetName: string;
|
|
16
|
+
/**
|
|
17
|
+
* The name of the resource group.
|
|
18
|
+
*/
|
|
19
|
+
resourceGroupName: string;
|
|
20
|
+
/**
|
|
21
|
+
* The name of the DNS zone (without a terminating dot).
|
|
22
|
+
*/
|
|
23
|
+
zoneName: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Describes a DNS record set (a collection of DNS records with the same name and type).
|
|
27
|
+
*/
|
|
28
|
+
export interface GetRecordSetResult {
|
|
29
|
+
/**
|
|
30
|
+
* The list of A records in the record set.
|
|
31
|
+
*/
|
|
32
|
+
readonly aRecords?: outputs.network.v20180501.ARecordResponse[];
|
|
33
|
+
/**
|
|
34
|
+
* The list of AAAA records in the record set.
|
|
35
|
+
*/
|
|
36
|
+
readonly aaaaRecords?: outputs.network.v20180501.AaaaRecordResponse[];
|
|
37
|
+
/**
|
|
38
|
+
* The list of CAA records in the record set.
|
|
39
|
+
*/
|
|
40
|
+
readonly caaRecords?: outputs.network.v20180501.CaaRecordResponse[];
|
|
41
|
+
/**
|
|
42
|
+
* The CNAME record in the record set.
|
|
43
|
+
*/
|
|
44
|
+
readonly cnameRecord?: outputs.network.v20180501.CnameRecordResponse;
|
|
45
|
+
/**
|
|
46
|
+
* The etag of the record set.
|
|
47
|
+
*/
|
|
48
|
+
readonly etag?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Fully qualified domain name of the record set.
|
|
51
|
+
*/
|
|
52
|
+
readonly fqdn: string;
|
|
53
|
+
/**
|
|
54
|
+
* The ID of the record set.
|
|
55
|
+
*/
|
|
56
|
+
readonly id: string;
|
|
57
|
+
/**
|
|
58
|
+
* The metadata attached to the record set.
|
|
59
|
+
*/
|
|
60
|
+
readonly metadata?: {
|
|
61
|
+
[key: string]: string;
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* The list of MX records in the record set.
|
|
65
|
+
*/
|
|
66
|
+
readonly mxRecords?: outputs.network.v20180501.MxRecordResponse[];
|
|
67
|
+
/**
|
|
68
|
+
* The name of the record set.
|
|
69
|
+
*/
|
|
70
|
+
readonly name: string;
|
|
71
|
+
/**
|
|
72
|
+
* The list of NS records in the record set.
|
|
73
|
+
*/
|
|
74
|
+
readonly nsRecords?: outputs.network.v20180501.NsRecordResponse[];
|
|
75
|
+
/**
|
|
76
|
+
* provisioning State of the record set.
|
|
77
|
+
*/
|
|
78
|
+
readonly provisioningState: string;
|
|
79
|
+
/**
|
|
80
|
+
* The list of PTR records in the record set.
|
|
81
|
+
*/
|
|
82
|
+
readonly ptrRecords?: outputs.network.v20180501.PtrRecordResponse[];
|
|
83
|
+
/**
|
|
84
|
+
* The SOA record in the record set.
|
|
85
|
+
*/
|
|
86
|
+
readonly soaRecord?: outputs.network.v20180501.SoaRecordResponse;
|
|
87
|
+
/**
|
|
88
|
+
* The list of SRV records in the record set.
|
|
89
|
+
*/
|
|
90
|
+
readonly srvRecords?: outputs.network.v20180501.SrvRecordResponse[];
|
|
91
|
+
/**
|
|
92
|
+
* A reference to an azure resource from where the dns resource value is taken.
|
|
93
|
+
*/
|
|
94
|
+
readonly targetResource?: outputs.network.v20180501.SubResourceResponse;
|
|
95
|
+
/**
|
|
96
|
+
* The TTL (time-to-live) of the records in the record set.
|
|
97
|
+
*/
|
|
98
|
+
readonly ttl?: number;
|
|
99
|
+
/**
|
|
100
|
+
* The list of TXT records in the record set.
|
|
101
|
+
*/
|
|
102
|
+
readonly txtRecords?: outputs.network.v20180501.TxtRecordResponse[];
|
|
103
|
+
/**
|
|
104
|
+
* The type of the record set.
|
|
105
|
+
*/
|
|
106
|
+
readonly type: string;
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Gets a record set.
|
|
110
|
+
*/
|
|
111
|
+
export declare function getRecordSetOutput(args: GetRecordSetOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRecordSetResult>;
|
|
112
|
+
export interface GetRecordSetOutputArgs {
|
|
113
|
+
/**
|
|
114
|
+
* The type of DNS record in this record set.
|
|
115
|
+
*/
|
|
116
|
+
recordType: pulumi.Input<string>;
|
|
117
|
+
/**
|
|
118
|
+
* The name of the record set, relative to the name of the zone.
|
|
119
|
+
*/
|
|
120
|
+
relativeRecordSetName: pulumi.Input<string>;
|
|
121
|
+
/**
|
|
122
|
+
* The name of the resource group.
|
|
123
|
+
*/
|
|
124
|
+
resourceGroupName: pulumi.Input<string>;
|
|
125
|
+
/**
|
|
126
|
+
* The name of the DNS zone (without a terminating dot).
|
|
127
|
+
*/
|
|
128
|
+
zoneName: pulumi.Input<string>;
|
|
129
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi. ***
|
|
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.getRecordSetOutput = exports.getRecordSet = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Gets a record set.
|
|
10
|
+
*/
|
|
11
|
+
function getRecordSet(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("azure-native:network/v20180501:getRecordSet", {
|
|
14
|
+
"recordType": args.recordType,
|
|
15
|
+
"relativeRecordSetName": args.relativeRecordSetName,
|
|
16
|
+
"resourceGroupName": args.resourceGroupName,
|
|
17
|
+
"zoneName": args.zoneName,
|
|
18
|
+
}, opts);
|
|
19
|
+
}
|
|
20
|
+
exports.getRecordSet = getRecordSet;
|
|
21
|
+
/**
|
|
22
|
+
* Gets a record set.
|
|
23
|
+
*/
|
|
24
|
+
function getRecordSetOutput(args, opts) {
|
|
25
|
+
return pulumi.output(args).apply((a) => getRecordSet(a, opts));
|
|
26
|
+
}
|
|
27
|
+
exports.getRecordSetOutput = getRecordSetOutput;
|
|
28
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0UmVjb3JkU2V0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vbmV0d29yay92MjAxODA1MDEvZ2V0UmVjb3JkU2V0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxzREFBc0Q7QUFDdEQsaUZBQWlGOzs7QUFFakYseUNBQXlDO0FBSXpDLDZDQUE2QztBQUU3Qzs7R0FFRztBQUNILFNBQWdCLFlBQVksQ0FBQyxJQUFzQixFQUFFLElBQTJCO0lBRTVFLElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN6RSxPQUFPLE1BQU0sQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDLDZDQUE2QyxFQUFFO1FBQ3hFLFlBQVksRUFBRSxJQUFJLENBQUMsVUFBVTtRQUM3Qix1QkFBdUIsRUFBRSxJQUFJLENBQUMscUJBQXFCO1FBQ25ELG1CQUFtQixFQUFFLElBQUksQ0FBQyxpQkFBaUI7UUFDM0MsVUFBVSxFQUFFLElBQUksQ0FBQyxRQUFRO0tBQzVCLEVBQUUsSUFBSSxDQUFDLENBQUM7QUFDYixDQUFDO0FBVEQsb0NBU0M7QUFzR0Q7O0dBRUc7QUFDSCxTQUFnQixrQkFBa0IsQ0FBQyxJQUE0QixFQUFFLElBQTJCO0lBQ3hGLE9BQU8sTUFBTSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFNLEVBQUUsRUFBRSxDQUFDLFlBQVksQ0FBQyxDQUFDLEVBQUUsSUFBSSxDQUFDLENBQUMsQ0FBQTtBQUN2RSxDQUFDO0FBRkQsZ0RBRUMifQ==
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Gets a DNS zone. Retrieves the zone properties, but not the record sets within the zone.
|
|
5
|
+
*/
|
|
6
|
+
export declare function getZone(args: GetZoneArgs, opts?: pulumi.InvokeOptions): Promise<GetZoneResult>;
|
|
7
|
+
export interface GetZoneArgs {
|
|
8
|
+
/**
|
|
9
|
+
* The name of the resource group.
|
|
10
|
+
*/
|
|
11
|
+
resourceGroupName: string;
|
|
12
|
+
/**
|
|
13
|
+
* The name of the DNS zone (without a terminating dot).
|
|
14
|
+
*/
|
|
15
|
+
zoneName: string;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Describes a DNS zone.
|
|
19
|
+
*/
|
|
20
|
+
export interface GetZoneResult {
|
|
21
|
+
/**
|
|
22
|
+
* The etag of the zone.
|
|
23
|
+
*/
|
|
24
|
+
readonly etag?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Resource ID.
|
|
27
|
+
*/
|
|
28
|
+
readonly id: string;
|
|
29
|
+
/**
|
|
30
|
+
* Resource location.
|
|
31
|
+
*/
|
|
32
|
+
readonly location: string;
|
|
33
|
+
/**
|
|
34
|
+
* The maximum number of record sets that can be created in this DNS zone. This is a read-only property and any attempt to set this value will be ignored.
|
|
35
|
+
*/
|
|
36
|
+
readonly maxNumberOfRecordSets: number;
|
|
37
|
+
/**
|
|
38
|
+
* The maximum number of records per record set that can be created in this DNS zone. This is a read-only property and any attempt to set this value will be ignored.
|
|
39
|
+
*/
|
|
40
|
+
readonly maxNumberOfRecordsPerRecordSet: number;
|
|
41
|
+
/**
|
|
42
|
+
* Resource name.
|
|
43
|
+
*/
|
|
44
|
+
readonly name: string;
|
|
45
|
+
/**
|
|
46
|
+
* The name servers for this DNS zone. This is a read-only property and any attempt to set this value will be ignored.
|
|
47
|
+
*/
|
|
48
|
+
readonly nameServers: string[];
|
|
49
|
+
/**
|
|
50
|
+
* The current number of record sets in this DNS zone. This is a read-only property and any attempt to set this value will be ignored.
|
|
51
|
+
*/
|
|
52
|
+
readonly numberOfRecordSets: number;
|
|
53
|
+
/**
|
|
54
|
+
* A list of references to virtual networks that register hostnames in this DNS zone. This is a only when ZoneType is Private.
|
|
55
|
+
*/
|
|
56
|
+
readonly registrationVirtualNetworks?: outputs.network.v20180501.SubResourceResponse[];
|
|
57
|
+
/**
|
|
58
|
+
* A list of references to virtual networks that resolve records in this DNS zone. This is a only when ZoneType is Private.
|
|
59
|
+
*/
|
|
60
|
+
readonly resolutionVirtualNetworks?: outputs.network.v20180501.SubResourceResponse[];
|
|
61
|
+
/**
|
|
62
|
+
* Resource tags.
|
|
63
|
+
*/
|
|
64
|
+
readonly tags?: {
|
|
65
|
+
[key: string]: string;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Resource type.
|
|
69
|
+
*/
|
|
70
|
+
readonly type: string;
|
|
71
|
+
/**
|
|
72
|
+
* The type of this DNS zone (Public or Private).
|
|
73
|
+
*/
|
|
74
|
+
readonly zoneType?: string;
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Gets a DNS zone. Retrieves the zone properties, but not the record sets within the zone.
|
|
78
|
+
*/
|
|
79
|
+
export declare function getZoneOutput(args: GetZoneOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetZoneResult>;
|
|
80
|
+
export interface GetZoneOutputArgs {
|
|
81
|
+
/**
|
|
82
|
+
* The name of the resource group.
|
|
83
|
+
*/
|
|
84
|
+
resourceGroupName: pulumi.Input<string>;
|
|
85
|
+
/**
|
|
86
|
+
* The name of the DNS zone (without a terminating dot).
|
|
87
|
+
*/
|
|
88
|
+
zoneName: pulumi.Input<string>;
|
|
89
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi. ***
|
|
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.getZoneOutput = exports.getZone = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Gets a DNS zone. Retrieves the zone properties, but not the record sets within the zone.
|
|
10
|
+
*/
|
|
11
|
+
function getZone(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("azure-native:network/v20180501:getZone", {
|
|
14
|
+
"resourceGroupName": args.resourceGroupName,
|
|
15
|
+
"zoneName": args.zoneName,
|
|
16
|
+
}, opts);
|
|
17
|
+
}
|
|
18
|
+
exports.getZone = getZone;
|
|
19
|
+
/**
|
|
20
|
+
* Gets a DNS zone. Retrieves the zone properties, but not the record sets within the zone.
|
|
21
|
+
*/
|
|
22
|
+
function getZoneOutput(args, opts) {
|
|
23
|
+
return pulumi.output(args).apply((a) => getZone(a, opts));
|
|
24
|
+
}
|
|
25
|
+
exports.getZoneOutput = getZoneOutput;
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0Wm9uZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL25ldHdvcmsvdjIwMTgwNTAxL2dldFpvbmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLHNEQUFzRDtBQUN0RCxpRkFBaUY7OztBQUVqRix5Q0FBeUM7QUFJekMsNkNBQTZDO0FBRTdDOztHQUVHO0FBQ0gsU0FBZ0IsT0FBTyxDQUFDLElBQWlCLEVBQUUsSUFBMkI7SUFFbEUsSUFBSSxHQUFHLE1BQU0sQ0FBQyxZQUFZLENBQUMsU0FBUyxDQUFDLG9CQUFvQixFQUFFLEVBQUUsSUFBSSxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQ3pFLE9BQU8sTUFBTSxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMsd0NBQXdDLEVBQUU7UUFDbkUsbUJBQW1CLEVBQUUsSUFBSSxDQUFDLGlCQUFpQjtRQUMzQyxVQUFVLEVBQUUsSUFBSSxDQUFDLFFBQVE7S0FDNUIsRUFBRSxJQUFJLENBQUMsQ0FBQztBQUNiLENBQUM7QUFQRCwwQkFPQztBQXNFRDs7R0FFRztBQUNILFNBQWdCLGFBQWEsQ0FBQyxJQUF1QixFQUFFLElBQTJCO0lBQzlFLE9BQU8sTUFBTSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFNLEVBQUUsRUFBRSxDQUFDLE9BQU8sQ0FBQyxDQUFDLEVBQUUsSUFBSSxDQUFDLENBQUMsQ0FBQTtBQUNsRSxDQUFDO0FBRkQsc0NBRUMifQ==
|
|
@@ -1,3 +1,16 @@
|
|
|
1
1
|
export { GetDnsResourceReferenceByTarResourcesArgs, GetDnsResourceReferenceByTarResourcesResult, GetDnsResourceReferenceByTarResourcesOutputArgs } from "./getDnsResourceReferenceByTarResources";
|
|
2
2
|
export declare const getDnsResourceReferenceByTarResources: typeof import("./getDnsResourceReferenceByTarResources").getDnsResourceReferenceByTarResources;
|
|
3
3
|
export declare const getDnsResourceReferenceByTarResourcesOutput: typeof import("./getDnsResourceReferenceByTarResources").getDnsResourceReferenceByTarResourcesOutput;
|
|
4
|
+
export { GetRecordSetArgs, GetRecordSetResult, GetRecordSetOutputArgs } from "./getRecordSet";
|
|
5
|
+
export declare const getRecordSet: typeof import("./getRecordSet").getRecordSet;
|
|
6
|
+
export declare const getRecordSetOutput: typeof import("./getRecordSet").getRecordSetOutput;
|
|
7
|
+
export { GetZoneArgs, GetZoneResult, GetZoneOutputArgs } from "./getZone";
|
|
8
|
+
export declare const getZone: typeof import("./getZone").getZone;
|
|
9
|
+
export declare const getZoneOutput: typeof import("./getZone").getZoneOutput;
|
|
10
|
+
export { RecordSetArgs } from "./recordSet";
|
|
11
|
+
export type RecordSet = import("./recordSet").RecordSet;
|
|
12
|
+
export declare const RecordSet: typeof import("./recordSet").RecordSet;
|
|
13
|
+
export { ZoneArgs } from "./zone";
|
|
14
|
+
export type Zone = import("./zone").Zone;
|
|
15
|
+
export declare const Zone: typeof import("./zone").Zone;
|
|
16
|
+
export * from "../../types/enums/network/v20180501";
|
|
@@ -1,10 +1,51 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// *** WARNING: this file was generated by pulumi. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
16
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
|
+
};
|
|
4
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getDnsResourceReferenceByTarResourcesOutput = exports.getDnsResourceReferenceByTarResources = void 0;
|
|
19
|
+
exports.Zone = exports.RecordSet = exports.getZoneOutput = exports.getZone = exports.getRecordSetOutput = exports.getRecordSet = exports.getDnsResourceReferenceByTarResourcesOutput = exports.getDnsResourceReferenceByTarResources = void 0;
|
|
20
|
+
const pulumi = require("@pulumi/pulumi");
|
|
6
21
|
const utilities = require("../../utilities");
|
|
7
22
|
exports.getDnsResourceReferenceByTarResources = null;
|
|
8
23
|
exports.getDnsResourceReferenceByTarResourcesOutput = null;
|
|
9
24
|
utilities.lazyLoad(exports, ["getDnsResourceReferenceByTarResources", "getDnsResourceReferenceByTarResourcesOutput"], () => require("./getDnsResourceReferenceByTarResources"));
|
|
10
|
-
|
|
25
|
+
exports.getRecordSet = null;
|
|
26
|
+
exports.getRecordSetOutput = null;
|
|
27
|
+
utilities.lazyLoad(exports, ["getRecordSet", "getRecordSetOutput"], () => require("./getRecordSet"));
|
|
28
|
+
exports.getZone = null;
|
|
29
|
+
exports.getZoneOutput = null;
|
|
30
|
+
utilities.lazyLoad(exports, ["getZone", "getZoneOutput"], () => require("./getZone"));
|
|
31
|
+
exports.RecordSet = null;
|
|
32
|
+
utilities.lazyLoad(exports, ["RecordSet"], () => require("./recordSet"));
|
|
33
|
+
exports.Zone = null;
|
|
34
|
+
utilities.lazyLoad(exports, ["Zone"], () => require("./zone"));
|
|
35
|
+
// Export enums:
|
|
36
|
+
__exportStar(require("../../types/enums/network/v20180501"), exports);
|
|
37
|
+
const _module = {
|
|
38
|
+
version: utilities.getVersion(),
|
|
39
|
+
construct: (name, type, urn) => {
|
|
40
|
+
switch (type) {
|
|
41
|
+
case "azure-native:network/v20180501:RecordSet":
|
|
42
|
+
return new exports.RecordSet(name, undefined, { urn });
|
|
43
|
+
case "azure-native:network/v20180501:Zone":
|
|
44
|
+
return new exports.Zone(name, undefined, { urn });
|
|
45
|
+
default:
|
|
46
|
+
throw new Error(`unknown resource type ${type}`);
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
};
|
|
50
|
+
pulumi.runtime.registerResourceModule("azure-native", "network/v20180501", _module);
|
|
51
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9uZXR3b3JrL3YyMDE4MDUwMS9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsc0RBQXNEO0FBQ3RELGlGQUFpRjs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFFakYseUNBQXlDO0FBQ3pDLDZDQUE2QztBQUloQyxRQUFBLHFDQUFxQyxHQUFtRyxJQUFXLENBQUM7QUFDcEosUUFBQSwyQ0FBMkMsR0FBeUcsSUFBVyxDQUFDO0FBQzdLLFNBQVMsQ0FBQyxRQUFRLENBQUMsT0FBTyxFQUFFLENBQUMsdUNBQXVDLEVBQUMsNkNBQTZDLENBQUMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxPQUFPLENBQUMseUNBQXlDLENBQUMsQ0FBQyxDQUFDO0FBR2xLLFFBQUEsWUFBWSxHQUFpRCxJQUFXLENBQUM7QUFDekUsUUFBQSxrQkFBa0IsR0FBdUQsSUFBVyxDQUFDO0FBQ2xHLFNBQVMsQ0FBQyxRQUFRLENBQUMsT0FBTyxFQUFFLENBQUMsY0FBYyxFQUFDLG9CQUFvQixDQUFDLEVBQUUsR0FBRyxFQUFFLENBQUMsT0FBTyxDQUFDLGdCQUFnQixDQUFDLENBQUMsQ0FBQztBQUd2RixRQUFBLE9BQU8sR0FBdUMsSUFBVyxDQUFDO0FBQzFELFFBQUEsYUFBYSxHQUE2QyxJQUFXLENBQUM7QUFDbkYsU0FBUyxDQUFDLFFBQVEsQ0FBQyxPQUFPLEVBQUUsQ0FBQyxTQUFTLEVBQUMsZUFBZSxDQUFDLEVBQUUsR0FBRyxFQUFFLENBQUMsT0FBTyxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUM7QUFJeEUsUUFBQSxTQUFTLEdBQTJDLElBQVcsQ0FBQztBQUM3RSxTQUFTLENBQUMsUUFBUSxDQUFDLE9BQU8sRUFBRSxDQUFDLFdBQVcsQ0FBQyxFQUFFLEdBQUcsRUFBRSxDQUFDLE9BQU8sQ0FBQyxhQUFhLENBQUMsQ0FBQyxDQUFDO0FBSTVELFFBQUEsSUFBSSxHQUFpQyxJQUFXLENBQUM7QUFDOUQsU0FBUyxDQUFDLFFBQVEsQ0FBQyxPQUFPLEVBQUUsQ0FBQyxNQUFNLENBQUMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQztBQUcvRCxnQkFBZ0I7QUFDaEIsc0VBQW9EO0FBRXBELE1BQU0sT0FBTyxHQUFHO0lBQ1osT0FBTyxFQUFFLFNBQVMsQ0FBQyxVQUFVLEVBQUU7SUFDL0IsU0FBUyxFQUFFLENBQUMsSUFBWSxFQUFFLElBQVksRUFBRSxHQUFXLEVBQW1CLEVBQUU7UUFDcEUsUUFBUSxJQUFJLEVBQUU7WUFDVixLQUFLLDBDQUEwQztnQkFDM0MsT0FBTyxJQUFJLGlCQUFTLENBQUMsSUFBSSxFQUFPLFNBQVMsRUFBRSxFQUFFLEdBQUcsRUFBRSxDQUFDLENBQUE7WUFDdkQsS0FBSyxxQ0FBcUM7Z0JBQ3RDLE9BQU8sSUFBSSxZQUFJLENBQUMsSUFBSSxFQUFPLFNBQVMsRUFBRSxFQUFFLEdBQUcsRUFBRSxDQUFDLENBQUE7WUFDbEQ7Z0JBQ0ksTUFBTSxJQUFJLEtBQUssQ0FBQyx5QkFBeUIsSUFBSSxFQUFFLENBQUMsQ0FBQztTQUN4RDtJQUNMLENBQUM7Q0FDSixDQUFDO0FBQ0YsTUFBTSxDQUFDLE9BQU8sQ0FBQyxzQkFBc0IsQ0FBQyxjQUFjLEVBQUUsbUJBQW1CLEVBQUUsT0FBTyxDQUFDLENBQUEifQ==
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../../types/input";
|
|
3
|
+
import * as outputs from "../../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Describes a DNS record set (a collection of DNS records with the same name and type).
|
|
6
|
+
*/
|
|
7
|
+
export declare class RecordSet extends pulumi.CustomResource {
|
|
8
|
+
/**
|
|
9
|
+
* Get an existing RecordSet resource's state with the given name, ID, and optional extra
|
|
10
|
+
* properties used to qualify the lookup.
|
|
11
|
+
*
|
|
12
|
+
* @param name The _unique_ name of the resulting resource.
|
|
13
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
14
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
15
|
+
*/
|
|
16
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): RecordSet;
|
|
17
|
+
/**
|
|
18
|
+
* Returns true if the given object is an instance of RecordSet. This is designed to work even
|
|
19
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
20
|
+
*/
|
|
21
|
+
static isInstance(obj: any): obj is RecordSet;
|
|
22
|
+
/**
|
|
23
|
+
* The list of A records in the record set.
|
|
24
|
+
*/
|
|
25
|
+
readonly aRecords: pulumi.Output<outputs.network.v20180501.ARecordResponse[] | undefined>;
|
|
26
|
+
/**
|
|
27
|
+
* The list of AAAA records in the record set.
|
|
28
|
+
*/
|
|
29
|
+
readonly aaaaRecords: pulumi.Output<outputs.network.v20180501.AaaaRecordResponse[] | undefined>;
|
|
30
|
+
/**
|
|
31
|
+
* The list of CAA records in the record set.
|
|
32
|
+
*/
|
|
33
|
+
readonly caaRecords: pulumi.Output<outputs.network.v20180501.CaaRecordResponse[] | undefined>;
|
|
34
|
+
/**
|
|
35
|
+
* The CNAME record in the record set.
|
|
36
|
+
*/
|
|
37
|
+
readonly cnameRecord: pulumi.Output<outputs.network.v20180501.CnameRecordResponse | undefined>;
|
|
38
|
+
/**
|
|
39
|
+
* The etag of the record set.
|
|
40
|
+
*/
|
|
41
|
+
readonly etag: pulumi.Output<string | undefined>;
|
|
42
|
+
/**
|
|
43
|
+
* Fully qualified domain name of the record set.
|
|
44
|
+
*/
|
|
45
|
+
readonly fqdn: pulumi.Output<string>;
|
|
46
|
+
/**
|
|
47
|
+
* The metadata attached to the record set.
|
|
48
|
+
*/
|
|
49
|
+
readonly metadata: pulumi.Output<{
|
|
50
|
+
[key: string]: string;
|
|
51
|
+
} | undefined>;
|
|
52
|
+
/**
|
|
53
|
+
* The list of MX records in the record set.
|
|
54
|
+
*/
|
|
55
|
+
readonly mxRecords: pulumi.Output<outputs.network.v20180501.MxRecordResponse[] | undefined>;
|
|
56
|
+
/**
|
|
57
|
+
* The name of the record set.
|
|
58
|
+
*/
|
|
59
|
+
readonly name: pulumi.Output<string>;
|
|
60
|
+
/**
|
|
61
|
+
* The list of NS records in the record set.
|
|
62
|
+
*/
|
|
63
|
+
readonly nsRecords: pulumi.Output<outputs.network.v20180501.NsRecordResponse[] | undefined>;
|
|
64
|
+
/**
|
|
65
|
+
* provisioning State of the record set.
|
|
66
|
+
*/
|
|
67
|
+
readonly provisioningState: pulumi.Output<string>;
|
|
68
|
+
/**
|
|
69
|
+
* The list of PTR records in the record set.
|
|
70
|
+
*/
|
|
71
|
+
readonly ptrRecords: pulumi.Output<outputs.network.v20180501.PtrRecordResponse[] | undefined>;
|
|
72
|
+
/**
|
|
73
|
+
* The SOA record in the record set.
|
|
74
|
+
*/
|
|
75
|
+
readonly soaRecord: pulumi.Output<outputs.network.v20180501.SoaRecordResponse | undefined>;
|
|
76
|
+
/**
|
|
77
|
+
* The list of SRV records in the record set.
|
|
78
|
+
*/
|
|
79
|
+
readonly srvRecords: pulumi.Output<outputs.network.v20180501.SrvRecordResponse[] | undefined>;
|
|
80
|
+
/**
|
|
81
|
+
* A reference to an azure resource from where the dns resource value is taken.
|
|
82
|
+
*/
|
|
83
|
+
readonly targetResource: pulumi.Output<outputs.network.v20180501.SubResourceResponse | undefined>;
|
|
84
|
+
/**
|
|
85
|
+
* The TTL (time-to-live) of the records in the record set.
|
|
86
|
+
*/
|
|
87
|
+
readonly ttl: pulumi.Output<number | undefined>;
|
|
88
|
+
/**
|
|
89
|
+
* The list of TXT records in the record set.
|
|
90
|
+
*/
|
|
91
|
+
readonly txtRecords: pulumi.Output<outputs.network.v20180501.TxtRecordResponse[] | undefined>;
|
|
92
|
+
/**
|
|
93
|
+
* The type of the record set.
|
|
94
|
+
*/
|
|
95
|
+
readonly type: pulumi.Output<string>;
|
|
96
|
+
/**
|
|
97
|
+
* Create a RecordSet resource with the given unique name, arguments, and options.
|
|
98
|
+
*
|
|
99
|
+
* @param name The _unique_ name of the resource.
|
|
100
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
101
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
102
|
+
*/
|
|
103
|
+
constructor(name: string, args: RecordSetArgs, opts?: pulumi.CustomResourceOptions);
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* The set of arguments for constructing a RecordSet resource.
|
|
107
|
+
*/
|
|
108
|
+
export interface RecordSetArgs {
|
|
109
|
+
/**
|
|
110
|
+
* The list of A records in the record set.
|
|
111
|
+
*/
|
|
112
|
+
aRecords?: pulumi.Input<pulumi.Input<inputs.network.v20180501.ARecordArgs>[]>;
|
|
113
|
+
/**
|
|
114
|
+
* The list of AAAA records in the record set.
|
|
115
|
+
*/
|
|
116
|
+
aaaaRecords?: pulumi.Input<pulumi.Input<inputs.network.v20180501.AaaaRecordArgs>[]>;
|
|
117
|
+
/**
|
|
118
|
+
* The list of CAA records in the record set.
|
|
119
|
+
*/
|
|
120
|
+
caaRecords?: pulumi.Input<pulumi.Input<inputs.network.v20180501.CaaRecordArgs>[]>;
|
|
121
|
+
/**
|
|
122
|
+
* The CNAME record in the record set.
|
|
123
|
+
*/
|
|
124
|
+
cnameRecord?: pulumi.Input<inputs.network.v20180501.CnameRecordArgs>;
|
|
125
|
+
/**
|
|
126
|
+
* The metadata attached to the record set.
|
|
127
|
+
*/
|
|
128
|
+
metadata?: pulumi.Input<{
|
|
129
|
+
[key: string]: pulumi.Input<string>;
|
|
130
|
+
}>;
|
|
131
|
+
/**
|
|
132
|
+
* The list of MX records in the record set.
|
|
133
|
+
*/
|
|
134
|
+
mxRecords?: pulumi.Input<pulumi.Input<inputs.network.v20180501.MxRecordArgs>[]>;
|
|
135
|
+
/**
|
|
136
|
+
* The list of NS records in the record set.
|
|
137
|
+
*/
|
|
138
|
+
nsRecords?: pulumi.Input<pulumi.Input<inputs.network.v20180501.NsRecordArgs>[]>;
|
|
139
|
+
/**
|
|
140
|
+
* The list of PTR records in the record set.
|
|
141
|
+
*/
|
|
142
|
+
ptrRecords?: pulumi.Input<pulumi.Input<inputs.network.v20180501.PtrRecordArgs>[]>;
|
|
143
|
+
/**
|
|
144
|
+
* The type of DNS record in this record set. Record sets of type SOA can be updated but not created (they are created when the DNS zone is created).
|
|
145
|
+
*/
|
|
146
|
+
recordType: pulumi.Input<string>;
|
|
147
|
+
/**
|
|
148
|
+
* The name of the record set, relative to the name of the zone.
|
|
149
|
+
*/
|
|
150
|
+
relativeRecordSetName?: pulumi.Input<string>;
|
|
151
|
+
/**
|
|
152
|
+
* The name of the resource group.
|
|
153
|
+
*/
|
|
154
|
+
resourceGroupName: pulumi.Input<string>;
|
|
155
|
+
/**
|
|
156
|
+
* The SOA record in the record set.
|
|
157
|
+
*/
|
|
158
|
+
soaRecord?: pulumi.Input<inputs.network.v20180501.SoaRecordArgs>;
|
|
159
|
+
/**
|
|
160
|
+
* The list of SRV records in the record set.
|
|
161
|
+
*/
|
|
162
|
+
srvRecords?: pulumi.Input<pulumi.Input<inputs.network.v20180501.SrvRecordArgs>[]>;
|
|
163
|
+
/**
|
|
164
|
+
* A reference to an azure resource from where the dns resource value is taken.
|
|
165
|
+
*/
|
|
166
|
+
targetResource?: pulumi.Input<inputs.network.v20180501.SubResourceArgs>;
|
|
167
|
+
/**
|
|
168
|
+
* The TTL (time-to-live) of the records in the record set.
|
|
169
|
+
*/
|
|
170
|
+
ttl?: pulumi.Input<number>;
|
|
171
|
+
/**
|
|
172
|
+
* The list of TXT records in the record set.
|
|
173
|
+
*/
|
|
174
|
+
txtRecords?: pulumi.Input<pulumi.Input<inputs.network.v20180501.TxtRecordArgs>[]>;
|
|
175
|
+
/**
|
|
176
|
+
* The name of the DNS zone (without a terminating dot).
|
|
177
|
+
*/
|
|
178
|
+
zoneName: pulumi.Input<string>;
|
|
179
|
+
}
|