@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/pagerduty",
3
- "version": "v4.7.0-alpha.1706830787+5c10f615",
3
+ "version": "v4.7.0",
4
4
  "description": "A Pulumi package for creating and managing pagerduty cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
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: pulumi.Input<string>;
1063
- pdClientSecret: pulumi.Input<string>;
1064
- pdSubdomain: pulumi.Input<string>;
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: string;
2026
- pdClientSecret: string;
2027
- pdSubdomain: string;
2025
+ pdClientId?: string;
2026
+ pdClientSecret?: string;
2027
+ pdSubdomain?: string;
2028
2028
  }
2029
2029
  }