Skip to content

Commit

Permalink
Update Triggered by GitHub Actions Workflow for New Release v0.81.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joshcazalas committed Dec 21, 2023
1 parent 9ed9a6b commit 4f50b8e
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 34 deletions.
8 changes: 4 additions & 4 deletions dist/snowflake_resources/email_notification_integration.d.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { TerraformMetaArguments, TerraformResource } from "cdktf";
import { Construct } from "constructs";
export interface Email_Notification_IntegrationConfig extends TerraformMetaArguments {
allowed_recipients: Set<string>;
enabled: boolean;
name: string;
allowed_recipients?: Set<string>;
comment?: string;
}
export declare class Email_Notification_Integration extends TerraformResource {
_allowed_recipients: Set<string>;
_enabled: boolean;
_name: string;
_allowed_recipients?: Set<string>;
_comment?: string;
readonly _id: string;
constructor(scope: Construct, id: string, config: Email_Notification_IntegrationConfig);
Expand All @@ -18,12 +18,12 @@ export declare class Email_Notification_Integration extends TerraformResource {
};
get id(): string;
ref(attribute: string): string;
get allowed_recipients(): Set<string>;
set allowed_recipients(value: Set<string>);
get enabled(): boolean;
set enabled(value: boolean);
get name(): string;
set name(value: string);
get allowed_recipients(): Set<string> | undefined;
set allowed_recipients(value: Set<string> | undefined);
get comment(): string | undefined;
set comment(value: string | undefined);
}
18 changes: 9 additions & 9 deletions dist/snowflake_resources/email_notification_integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
exports.Email_Notification_Integration = void 0;
const cdktf_1 = require("cdktf");
class Email_Notification_Integration extends cdktf_1.TerraformResource {
_allowed_recipients;
_enabled;
_name;
_allowed_recipients;
_comment;
_id;
constructor(scope, id, config) {
Expand All @@ -23,16 +23,16 @@ class Email_Notification_Integration extends cdktf_1.TerraformResource {
lifecycle: config.lifecycle
});
this._id = id;
this._allowed_recipients = config.allowed_recipients;
this._enabled = config.enabled;
this._name = config.name;
this._allowed_recipients = config.allowed_recipients;
this._comment = config.comment;
}
getAttributes() {
return {
allowed_recipients: this._allowed_recipients,
enabled: this._enabled,
name: this._name,
allowed_recipients: this._allowed_recipients,
comment: this._comment,
};
}
Expand All @@ -42,12 +42,6 @@ class Email_Notification_Integration extends cdktf_1.TerraformResource {
ref(attribute) {
return `\${snowflake_email_notification_integration.${this.friendlyUniqueId}.${attribute}}`;
}
get allowed_recipients() {
return this._allowed_recipients;
}
set allowed_recipients(value) {
this._allowed_recipients = value;
}
get enabled() {
return this._enabled;
}
Expand All @@ -60,6 +54,12 @@ class Email_Notification_Integration extends cdktf_1.TerraformResource {
set name(value) {
this._name = value;
}
get allowed_recipients() {
return this._allowed_recipients;
}
set allowed_recipients(value) {
this._allowed_recipients = value;
}
get comment() {
return this._comment;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/snowflake_resources/snowflake_provider.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class SnowflakeProvider extends cdktf_1.TerraformProvider {
terraformResourceType: "snowflake",
terraformGeneratorMetadata: {
providerName: "snowflake",
providerVersionConstraint: "0.80.0"
providerVersionConstraint: "0.81.0"
},
terraformProviderSource: "terraform-cdk-provider-snowflake"
});
Expand Down
26 changes: 13 additions & 13 deletions src/snowflake_resources/email_notification_integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ import { Construct } from "constructs";


export interface Email_Notification_IntegrationConfig extends TerraformMetaArguments {
allowed_recipients: Set<string>;
enabled: boolean;
name: string;
allowed_recipients?: Set<string>;
comment?: string;
}

export class Email_Notification_Integration extends TerraformResource {
_allowed_recipients: Set<string>;
_enabled: boolean;
_name: string;
_allowed_recipients?: Set<string>;
_comment?: string;
readonly _id: string;

Expand All @@ -33,19 +33,19 @@ export class Email_Notification_Integration extends TerraformResource {
});
this._id = id;

this._allowed_recipients = config.allowed_recipients;

this._enabled = config.enabled;

this._name = config.name;

this._allowed_recipients = config.allowed_recipients;

this._comment = config.comment;
}
public getAttributes(): { [name: string]: any } {
return {
allowed_recipients: this._allowed_recipients,
enabled: this._enabled,
name: this._name,
allowed_recipients: this._allowed_recipients,
comment: this._comment,
}
}
Expand All @@ -58,14 +58,6 @@ export class Email_Notification_Integration extends TerraformResource {
return `\${snowflake_email_notification_integration.${this.friendlyUniqueId}.${attribute}}`;
}

public get allowed_recipients(): Set<string> {
return this._allowed_recipients
}

public set allowed_recipients(value: Set<string>) {
this._allowed_recipients = value;
}

public get enabled(): boolean {
return this._enabled
}
Expand All @@ -82,6 +74,14 @@ export class Email_Notification_Integration extends TerraformResource {
this._name = value;
}

public get allowed_recipients(): Set<string> | undefined {
return this._allowed_recipients
}

public set allowed_recipients(value: Set<string> | undefined) {
this._allowed_recipients = value;
}

public get comment(): string | undefined {
return this._comment
}
Expand Down
2 changes: 1 addition & 1 deletion src/snowflake_resources/snowflake_provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class SnowflakeProvider extends TerraformProvider {
terraformResourceType: "snowflake",
terraformGeneratorMetadata: {
providerName: "snowflake",
providerVersionConstraint: "0.80.0"
providerVersionConstraint: "0.81.0"
},
terraformProviderSource: "terraform-cdk-provider-snowflake"
})
Expand Down
2 changes: 1 addition & 1 deletion terraform-provider-snowflake
Submodule terraform-provider-snowflake updated from 18b0dc to 74d19d
10 changes: 5 additions & 5 deletions tools/snowflake_resources.json
Original file line number Diff line number Diff line change
Expand Up @@ -420,11 +420,6 @@
{
"name": "Email_Notification_Integration",
"properties": [
{
"name": "allowed_recipients",
"type": "Set<string>",
"required": true
},
{
"name": "enabled",
"type": "boolean",
Expand All @@ -435,6 +430,11 @@
"type": "string",
"required": true
},
{
"name": "allowed_recipients",
"type": "Set<string>",
"required": false
},
{
"name": "comment",
"type": "string",
Expand Down

0 comments on commit 4f50b8e

Please sign in to comment.