@pulumi/dnsimple 5.3.0 → 5.3.1-alpha.1789640437

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 (2) hide show
  1. package/package.json +2 -2
  2. package/zoneRecord.d.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/dnsimple",
3
- "version": "5.3.0",
3
+ "version": "5.3.1-alpha.1789640437",
4
4
  "description": "A Pulumi package for creating and managing dnsimple cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "dnsimple",
26
- "version": "5.3.0"
26
+ "version": "5.3.1-alpha.1789640437"
27
27
  }
28
28
  }
package/zoneRecord.d.ts CHANGED
@@ -69,7 +69,7 @@ export declare class ZoneRecord extends pulumi.CustomResource {
69
69
  readonly name: pulumi.Output<string>;
70
70
  readonly nameNormalized: pulumi.Output<string>;
71
71
  /**
72
- * The priority of the record. Only used for certain record types (e.g., `MX`, `SRV`).
72
+ * The priority of the record. DNSimple stores a priority for `MX` and `SRV` records only, and discards it for every other type. Setting a non-zero priority on any other record type is rejected during validation.
73
73
  */
74
74
  readonly priority: pulumi.Output<number>;
75
75
  /**
@@ -123,7 +123,7 @@ export interface ZoneRecordState {
123
123
  name?: pulumi.Input<string | undefined>;
124
124
  nameNormalized?: pulumi.Input<string | undefined>;
125
125
  /**
126
- * The priority of the record. Only used for certain record types (e.g., `MX`, `SRV`).
126
+ * The priority of the record. DNSimple stores a priority for `MX` and `SRV` records only, and discards it for every other type. Setting a non-zero priority on any other record type is rejected during validation.
127
127
  */
128
128
  priority?: pulumi.Input<number | undefined>;
129
129
  /**
@@ -168,7 +168,7 @@ export interface ZoneRecordArgs {
168
168
  */
169
169
  name: pulumi.Input<string>;
170
170
  /**
171
- * The priority of the record. Only used for certain record types (e.g., `MX`, `SRV`).
171
+ * The priority of the record. DNSimple stores a priority for `MX` and `SRV` records only, and discards it for every other type. Setting a non-zero priority on any other record type is rejected during validation.
172
172
  */
173
173
  priority?: pulumi.Input<number | undefined>;
174
174
  /**