@pulumi/pagerduty 4.7.0-alpha.1706830787 → 4.7.0
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/package.json +1 -1
- package/types/input.d.ts +3 -3
- package/types/output.d.ts +3 -3
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -1059,9 +1059,9 @@ export interface IncidentWorkflowStepInput {
|
|
|
1059
1059
|
value: pulumi.Input<string>;
|
|
1060
1060
|
}
|
|
1061
1061
|
export interface ProviderUseAppOauthScopedToken {
|
|
1062
|
-
pdClientId
|
|
1063
|
-
pdClientSecret
|
|
1064
|
-
pdSubdomain
|
|
1062
|
+
pdClientId?: pulumi.Input<string>;
|
|
1063
|
+
pdClientSecret?: pulumi.Input<string>;
|
|
1064
|
+
pdSubdomain?: pulumi.Input<string>;
|
|
1065
1065
|
}
|
|
1066
1066
|
export interface ResponsePlayResponder {
|
|
1067
1067
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -2022,8 +2022,8 @@ export interface WebhookSubscriptionFilter {
|
|
|
2022
2022
|
}
|
|
2023
2023
|
export declare namespace config {
|
|
2024
2024
|
interface UseAppOauthScopedToken {
|
|
2025
|
-
pdClientId
|
|
2026
|
-
pdClientSecret
|
|
2027
|
-
pdSubdomain
|
|
2025
|
+
pdClientId?: string;
|
|
2026
|
+
pdClientSecret?: string;
|
|
2027
|
+
pdSubdomain?: string;
|
|
2028
2028
|
}
|
|
2029
2029
|
}
|