@pulumi/pagerduty 4.13.2 → 4.13.3
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/getLicense.d.ts +0 -46
- package/getLicense.js +0 -8
- package/getLicense.js.map +1 -1
- package/getLicenses.d.ts +0 -9
- package/getLicenses.js +0 -1
- package/getLicenses.js.map +1 -1
- package/getPriority.d.ts +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +0 -74
package/getLicense.d.ts
CHANGED
|
@@ -28,19 +28,10 @@ export declare function getLicense(args?: GetLicenseArgs, opts?: pulumi.InvokeOp
|
|
|
28
28
|
* A collection of arguments for invoking getLicense.
|
|
29
29
|
*/
|
|
30
30
|
export interface GetLicenseArgs {
|
|
31
|
-
/**
|
|
32
|
-
* Available allocations to assign to users
|
|
33
|
-
*/
|
|
34
|
-
allocationsAvailable?: number;
|
|
35
|
-
/**
|
|
36
|
-
* The number of allocations already assigned to users
|
|
37
|
-
*/
|
|
38
|
-
currentValue?: number;
|
|
39
31
|
/**
|
|
40
32
|
* Used to determine if the data config *description* is a valid substring of a valid license description assigned to the account.
|
|
41
33
|
*/
|
|
42
34
|
description?: string;
|
|
43
|
-
htmlUrl?: string;
|
|
44
35
|
/**
|
|
45
36
|
* Used to match the data config *id* with an exact match of a valid license ID assigned to the account.
|
|
46
37
|
*/
|
|
@@ -49,20 +40,6 @@ export interface GetLicenseArgs {
|
|
|
49
40
|
* Used to determine if the data config *name* is a valid substring of a valid license name assigned to the account.
|
|
50
41
|
*/
|
|
51
42
|
name?: string;
|
|
52
|
-
/**
|
|
53
|
-
* The role group for the license that determines the available `validRoles`
|
|
54
|
-
*/
|
|
55
|
-
roleGroup?: string;
|
|
56
|
-
self?: string;
|
|
57
|
-
/**
|
|
58
|
-
* Summary of the license
|
|
59
|
-
*/
|
|
60
|
-
summary?: string;
|
|
61
|
-
type?: string;
|
|
62
|
-
/**
|
|
63
|
-
* List of allowed roles that may be assigned to a user with this license
|
|
64
|
-
*/
|
|
65
|
-
validRoles?: string[];
|
|
66
43
|
}
|
|
67
44
|
/**
|
|
68
45
|
* A collection of values returned by getLicense.
|
|
@@ -124,19 +101,10 @@ export declare function getLicenseOutput(args?: GetLicenseOutputArgs, opts?: pul
|
|
|
124
101
|
* A collection of arguments for invoking getLicense.
|
|
125
102
|
*/
|
|
126
103
|
export interface GetLicenseOutputArgs {
|
|
127
|
-
/**
|
|
128
|
-
* Available allocations to assign to users
|
|
129
|
-
*/
|
|
130
|
-
allocationsAvailable?: pulumi.Input<number>;
|
|
131
|
-
/**
|
|
132
|
-
* The number of allocations already assigned to users
|
|
133
|
-
*/
|
|
134
|
-
currentValue?: pulumi.Input<number>;
|
|
135
104
|
/**
|
|
136
105
|
* Used to determine if the data config *description* is a valid substring of a valid license description assigned to the account.
|
|
137
106
|
*/
|
|
138
107
|
description?: pulumi.Input<string>;
|
|
139
|
-
htmlUrl?: pulumi.Input<string>;
|
|
140
108
|
/**
|
|
141
109
|
* Used to match the data config *id* with an exact match of a valid license ID assigned to the account.
|
|
142
110
|
*/
|
|
@@ -145,18 +113,4 @@ export interface GetLicenseOutputArgs {
|
|
|
145
113
|
* Used to determine if the data config *name* is a valid substring of a valid license name assigned to the account.
|
|
146
114
|
*/
|
|
147
115
|
name?: pulumi.Input<string>;
|
|
148
|
-
/**
|
|
149
|
-
* The role group for the license that determines the available `validRoles`
|
|
150
|
-
*/
|
|
151
|
-
roleGroup?: pulumi.Input<string>;
|
|
152
|
-
self?: pulumi.Input<string>;
|
|
153
|
-
/**
|
|
154
|
-
* Summary of the license
|
|
155
|
-
*/
|
|
156
|
-
summary?: pulumi.Input<string>;
|
|
157
|
-
type?: pulumi.Input<string>;
|
|
158
|
-
/**
|
|
159
|
-
* List of allowed roles that may be assigned to a user with this license
|
|
160
|
-
*/
|
|
161
|
-
validRoles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
162
116
|
}
|
package/getLicense.js
CHANGED
|
@@ -33,17 +33,9 @@ function getLicense(args, opts) {
|
|
|
33
33
|
args = args || {};
|
|
34
34
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
35
35
|
return pulumi.runtime.invoke("pagerduty:index/getLicense:getLicense", {
|
|
36
|
-
"allocationsAvailable": args.allocationsAvailable,
|
|
37
|
-
"currentValue": args.currentValue,
|
|
38
36
|
"description": args.description,
|
|
39
|
-
"htmlUrl": args.htmlUrl,
|
|
40
37
|
"id": args.id,
|
|
41
38
|
"name": args.name,
|
|
42
|
-
"roleGroup": args.roleGroup,
|
|
43
|
-
"self": args.self,
|
|
44
|
-
"summary": args.summary,
|
|
45
|
-
"type": args.type,
|
|
46
|
-
"validRoles": args.validRoles,
|
|
47
39
|
}, opts);
|
|
48
40
|
}
|
|
49
41
|
exports.getLicense = getLicense;
|
package/getLicense.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getLicense.js","sourceRoot":"","sources":["../getLicense.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,UAAU,CAAC,IAAqB,EAAE,IAA2B;IACzE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uCAAuC,EAAE;QAClE,
|
|
1
|
+
{"version":3,"file":"getLicense.js","sourceRoot":"","sources":["../getLicense.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,UAAU,CAAC,IAAqB,EAAE,IAA2B;IACzE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uCAAuC,EAAE;QAClE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,gCASC;AAmDD;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
|
package/getLicenses.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import * as inputs from "./types/input";
|
|
3
2
|
import * as outputs from "./types/output";
|
|
4
3
|
/**
|
|
5
4
|
* Use this data source to get information about the purchased [licenses](https://developer.pagerduty.com/api-reference/4c10cb38f7381-list-licenses) that you can use for other managing PagerDuty user resources. To reference a unique license, see `pagerduty.getLicense` [data source](https://registry.terraform.io/providers/PagerDuty/pagerduty/latest/docs/data-sources/pagerduty_license). After applying changes to users' licenses, the `currentValue` and `allocationsAvailable` attributes of licenses will change.
|
|
@@ -29,10 +28,6 @@ export interface GetLicensesArgs {
|
|
|
29
28
|
* Allows to override the default behavior for setting the `id` attribute that is required for data sources.
|
|
30
29
|
*/
|
|
31
30
|
id?: string;
|
|
32
|
-
/**
|
|
33
|
-
* The list of purchased licenses.
|
|
34
|
-
*/
|
|
35
|
-
licenses?: inputs.GetLicensesLicense[];
|
|
36
31
|
}
|
|
37
32
|
/**
|
|
38
33
|
* A collection of values returned by getLicenses.
|
|
@@ -75,8 +70,4 @@ export interface GetLicensesOutputArgs {
|
|
|
75
70
|
* Allows to override the default behavior for setting the `id` attribute that is required for data sources.
|
|
76
71
|
*/
|
|
77
72
|
id?: pulumi.Input<string>;
|
|
78
|
-
/**
|
|
79
|
-
* The list of purchased licenses.
|
|
80
|
-
*/
|
|
81
|
-
licenses?: pulumi.Input<pulumi.Input<inputs.GetLicensesLicenseArgs>[]>;
|
|
82
73
|
}
|
package/getLicenses.js
CHANGED
|
@@ -29,7 +29,6 @@ function getLicenses(args, opts) {
|
|
|
29
29
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
30
30
|
return pulumi.runtime.invoke("pagerduty:index/getLicenses:getLicenses", {
|
|
31
31
|
"id": args.id,
|
|
32
|
-
"licenses": args.licenses,
|
|
33
32
|
}, opts);
|
|
34
33
|
}
|
|
35
34
|
exports.getLicenses = getLicenses;
|
package/getLicenses.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getLicenses.js","sourceRoot":"","sources":["../getLicenses.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yCAAyC,EAAE;QACpE,IAAI,EAAE,IAAI,CAAC,EAAE;
|
|
1
|
+
{"version":3,"file":"getLicenses.js","sourceRoot":"","sources":["../getLicenses.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yCAAyC,EAAE;QACpE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kCAOC;AAyBD;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
|
package/getPriority.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/pagerduty",
|
|
3
|
-
"version": "4.13.
|
|
3
|
+
"version": "4.13.3",
|
|
4
4
|
"description": "A Pulumi package for creating and managing pagerduty cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "pagerduty",
|
|
26
|
-
"version": "4.13.
|
|
26
|
+
"version": "4.13.3"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -1020,80 +1020,6 @@ export interface GetEventOrchestrationIntegrationDetailParameterArgs {
|
|
|
1020
1020
|
*/
|
|
1021
1021
|
type?: pulumi.Input<string>;
|
|
1022
1022
|
}
|
|
1023
|
-
export interface GetLicensesLicense {
|
|
1024
|
-
/**
|
|
1025
|
-
* Available allocations to assign to users
|
|
1026
|
-
*/
|
|
1027
|
-
allocationsAvailable?: number;
|
|
1028
|
-
/**
|
|
1029
|
-
* The number of allocations already assigned to users
|
|
1030
|
-
*/
|
|
1031
|
-
currentValue?: number;
|
|
1032
|
-
/**
|
|
1033
|
-
* Description of the license
|
|
1034
|
-
*/
|
|
1035
|
-
description?: string;
|
|
1036
|
-
htmlUrl?: string;
|
|
1037
|
-
/**
|
|
1038
|
-
* Allows to override the default behavior for setting the `id` attribute that is required for data sources.
|
|
1039
|
-
*/
|
|
1040
|
-
id?: string;
|
|
1041
|
-
/**
|
|
1042
|
-
* Name of the license
|
|
1043
|
-
*/
|
|
1044
|
-
name?: string;
|
|
1045
|
-
/**
|
|
1046
|
-
* The role group for the license that determines the available `validRoles`
|
|
1047
|
-
*/
|
|
1048
|
-
roleGroup?: string;
|
|
1049
|
-
self?: string;
|
|
1050
|
-
/**
|
|
1051
|
-
* Summary of the license
|
|
1052
|
-
*/
|
|
1053
|
-
summary?: string;
|
|
1054
|
-
type?: string;
|
|
1055
|
-
/**
|
|
1056
|
-
* List of allowed roles that may be assigned to a user with this license
|
|
1057
|
-
*/
|
|
1058
|
-
validRoles?: string[];
|
|
1059
|
-
}
|
|
1060
|
-
export interface GetLicensesLicenseArgs {
|
|
1061
|
-
/**
|
|
1062
|
-
* Available allocations to assign to users
|
|
1063
|
-
*/
|
|
1064
|
-
allocationsAvailable?: pulumi.Input<number>;
|
|
1065
|
-
/**
|
|
1066
|
-
* The number of allocations already assigned to users
|
|
1067
|
-
*/
|
|
1068
|
-
currentValue?: pulumi.Input<number>;
|
|
1069
|
-
/**
|
|
1070
|
-
* Description of the license
|
|
1071
|
-
*/
|
|
1072
|
-
description?: pulumi.Input<string>;
|
|
1073
|
-
htmlUrl?: pulumi.Input<string>;
|
|
1074
|
-
/**
|
|
1075
|
-
* Allows to override the default behavior for setting the `id` attribute that is required for data sources.
|
|
1076
|
-
*/
|
|
1077
|
-
id?: pulumi.Input<string>;
|
|
1078
|
-
/**
|
|
1079
|
-
* Name of the license
|
|
1080
|
-
*/
|
|
1081
|
-
name?: pulumi.Input<string>;
|
|
1082
|
-
/**
|
|
1083
|
-
* The role group for the license that determines the available `validRoles`
|
|
1084
|
-
*/
|
|
1085
|
-
roleGroup?: pulumi.Input<string>;
|
|
1086
|
-
self?: pulumi.Input<string>;
|
|
1087
|
-
/**
|
|
1088
|
-
* Summary of the license
|
|
1089
|
-
*/
|
|
1090
|
-
summary?: pulumi.Input<string>;
|
|
1091
|
-
type?: pulumi.Input<string>;
|
|
1092
|
-
/**
|
|
1093
|
-
* List of allowed roles that may be assigned to a user with this license
|
|
1094
|
-
*/
|
|
1095
|
-
validRoles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1096
|
-
}
|
|
1097
1023
|
export interface IncidentWorkflowStep {
|
|
1098
1024
|
/**
|
|
1099
1025
|
* The action id for the workflow step, including the version. A list of actions available can be retrieved using the [PagerDuty API](https://developer.pagerduty.com/api-reference/aa192a25fac39-list-actions).
|