@pulumi/mailgun 3.6.0 → 3.6.1

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.
@@ -60,7 +60,7 @@ export declare class DomainCredential extends pulumi.CustomResource {
60
60
  */
61
61
  readonly password: pulumi.Output<string>;
62
62
  /**
63
- * The region where domain will be created. Default value is `us`.
63
+ * The region where domain credential will be created. Default value is `us`.
64
64
  */
65
65
  readonly region: pulumi.Output<string | undefined>;
66
66
  /**
@@ -89,7 +89,7 @@ export interface DomainCredentialState {
89
89
  */
90
90
  password?: pulumi.Input<string>;
91
91
  /**
92
- * The region where domain will be created. Default value is `us`.
92
+ * The region where domain credential will be created. Default value is `us`.
93
93
  */
94
94
  region?: pulumi.Input<string>;
95
95
  }
@@ -110,7 +110,7 @@ export interface DomainCredentialArgs {
110
110
  */
111
111
  password: pulumi.Input<string>;
112
112
  /**
113
- * The region where domain will be created. Default value is `us`.
113
+ * The region where domain credential will be created. Default value is `us`.
114
114
  */
115
115
  region?: pulumi.Input<string>;
116
116
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/mailgun",
3
- "version": "3.6.0",
3
+ "version": "3.6.1",
4
4
  "description": "A Pulumi package for creating and managing Mailgun resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "mailgun",
26
- "version": "3.6.0"
26
+ "version": "3.6.1"
27
27
  }
28
28
  }
package/route.d.ts CHANGED
@@ -57,7 +57,7 @@ export declare class Route extends pulumi.CustomResource {
57
57
  */
58
58
  readonly priority: pulumi.Output<number>;
59
59
  /**
60
- * The region where domain will be created. Default value is `us`.
60
+ * The region where route will be created. Default value is `us`.
61
61
  */
62
62
  readonly region: pulumi.Output<string | undefined>;
63
63
  /**
@@ -84,7 +84,7 @@ export interface RouteState {
84
84
  */
85
85
  priority?: pulumi.Input<number>;
86
86
  /**
87
- * The region where domain will be created. Default value is `us`.
87
+ * The region where route will be created. Default value is `us`.
88
88
  */
89
89
  region?: pulumi.Input<string>;
90
90
  }
@@ -103,7 +103,7 @@ export interface RouteArgs {
103
103
  */
104
104
  priority: pulumi.Input<number>;
105
105
  /**
106
- * The region where domain will be created. Default value is `us`.
106
+ * The region where route will be created. Default value is `us`.
107
107
  */
108
108
  region?: pulumi.Input<string>;
109
109
  }
package/webhook.d.ts CHANGED
@@ -43,7 +43,7 @@ export declare class Webhook extends pulumi.CustomResource {
43
43
  */
44
44
  readonly kind: pulumi.Output<string>;
45
45
  /**
46
- * The region where domain will be created. Default value is `us`.
46
+ * The region where webhook will be created. Default value is `us`.
47
47
  */
48
48
  readonly region: pulumi.Output<string | undefined>;
49
49
  /**
@@ -72,7 +72,7 @@ export interface WebhookState {
72
72
  */
73
73
  kind?: pulumi.Input<string>;
74
74
  /**
75
- * The region where domain will be created. Default value is `us`.
75
+ * The region where webhook will be created. Default value is `us`.
76
76
  */
77
77
  region?: pulumi.Input<string>;
78
78
  /**
@@ -93,7 +93,7 @@ export interface WebhookArgs {
93
93
  */
94
94
  kind: pulumi.Input<string>;
95
95
  /**
96
- * The region where domain will be created. Default value is `us`.
96
+ * The region where webhook will be created. Default value is `us`.
97
97
  */
98
98
  region?: pulumi.Input<string>;
99
99
  /**