Skip to content

Commit

Permalink
Update Triggered by GitHub Actions Workflow for New Release v0.86.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joshcazalas committed Feb 16, 2024
1 parent cdb8956 commit bec8e77
Show file tree
Hide file tree
Showing 13 changed files with 96 additions and 65 deletions.
8 changes: 8 additions & 0 deletions dist/snowflake_resources/dynamic_table.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ export interface Dynamic_TableConfig extends TerraformMetaArguments {
target_lag: Dynamic_Table_Target_Lag[];
warehouse: string;
comment?: string;
initialize?: string;
or_replace?: boolean;
refresh_mode?: string;
}
export declare class Dynamic_Table extends TerraformResource {
_database: string;
Expand All @@ -22,7 +24,9 @@ export declare class Dynamic_Table extends TerraformResource {
_target_lag: Dynamic_Table_Target_Lag[];
_warehouse: string;
_comment?: string;
_initialize?: string;
_or_replace?: boolean;
_refresh_mode?: string;
readonly _id: string;
constructor(scope: Construct, id: string, config: Dynamic_TableConfig);
getAttributes(): {
Expand All @@ -44,6 +48,10 @@ export declare class Dynamic_Table extends TerraformResource {
set warehouse(value: string);
get comment(): string | undefined;
set comment(value: string | undefined);
get initialize(): string | undefined;
set initialize(value: string | undefined);
get or_replace(): boolean | undefined;
set or_replace(value: boolean | undefined);
get refresh_mode(): string | undefined;
set refresh_mode(value: string | undefined);
}
18 changes: 18 additions & 0 deletions dist/snowflake_resources/dynamic_table.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ class Dynamic_Table extends cdktf_1.TerraformResource {
_target_lag;
_warehouse;
_comment;
_initialize;
_or_replace;
_refresh_mode;
_id;
constructor(scope, id, config) {
super(scope, id, {
Expand All @@ -34,7 +36,9 @@ class Dynamic_Table extends cdktf_1.TerraformResource {
this._target_lag = config.target_lag;
this._warehouse = config.warehouse;
this._comment = config.comment;
this._initialize = config.initialize;
this._or_replace = config.or_replace;
this._refresh_mode = config.refresh_mode;
}
getAttributes() {
return {
Expand All @@ -45,7 +49,9 @@ class Dynamic_Table extends cdktf_1.TerraformResource {
target_lag: this._target_lag,
warehouse: this._warehouse,
comment: this._comment,
initialize: this._initialize,
or_replace: this._or_replace,
refresh_mode: this._refresh_mode,
};
}
get id() {
Expand Down Expand Up @@ -96,11 +102,23 @@ class Dynamic_Table extends cdktf_1.TerraformResource {
set comment(value) {
this._comment = value;
}
get initialize() {
return this._initialize;
}
set initialize(value) {
this._initialize = value;
}
get or_replace() {
return this._or_replace;
}
set or_replace(value) {
this._or_replace = value;
}
get refresh_mode() {
return this._refresh_mode;
}
set refresh_mode(value) {
this._refresh_mode = value;
}
}
exports.Dynamic_Table = Dynamic_Table;
4 changes: 4 additions & 0 deletions dist/snowflake_resources/procedure.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export interface ProcedureConfig extends TerraformMetaArguments {
packages?: string[];
return_behavior?: string;
runtime_version?: string;
secure?: boolean;
}
export declare class Procedure extends TerraformResource {
_database: string;
Expand All @@ -37,6 +38,7 @@ export declare class Procedure extends TerraformResource {
_packages?: string[];
_return_behavior?: string;
_runtime_version?: string;
_secure?: boolean;
readonly _id: string;
constructor(scope: Construct, id: string, config: ProcedureConfig);
getAttributes(): {
Expand Down Expand Up @@ -74,4 +76,6 @@ export declare class Procedure extends TerraformResource {
set return_behavior(value: string | undefined);
get runtime_version(): string | undefined;
set runtime_version(value: string | undefined);
get secure(): boolean | undefined;
set secure(value: boolean | undefined);
}
9 changes: 9 additions & 0 deletions dist/snowflake_resources/procedure.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class Procedure extends cdktf_1.TerraformResource {
_packages;
_return_behavior;
_runtime_version;
_secure;
_id;
constructor(scope, id, config) {
super(scope, id, {
Expand Down Expand Up @@ -49,6 +50,7 @@ class Procedure extends cdktf_1.TerraformResource {
this._packages = config.packages;
this._return_behavior = config.return_behavior;
this._runtime_version = config.runtime_version;
this._secure = config.secure;
}
getAttributes() {
return {
Expand All @@ -67,6 +69,7 @@ class Procedure extends cdktf_1.TerraformResource {
packages: this._packages,
return_behavior: this._return_behavior,
runtime_version: this._runtime_version,
secure: this._secure,
};
}
get id() {
Expand Down Expand Up @@ -165,5 +168,11 @@ class Procedure extends cdktf_1.TerraformResource {
set runtime_version(value) {
this._runtime_version = value;
}
get secure() {
return this._secure;
}
set secure(value) {
this._secure = value;
}
}
exports.Procedure = Procedure;
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.85.0"
providerVersionConstraint: "0.86.0"
},
terraformProviderSource: "terraform-cdk-provider-snowflake"
});
Expand Down
8 changes: 0 additions & 8 deletions dist/snowflake_resources/user_password_policy_attachment.d.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
import { TerraformMetaArguments, TerraformResource } from "cdktf";
import { Construct } from "constructs";
export interface User_Password_Policy_AttachmentConfig extends TerraformMetaArguments {
password_policy_database: string;
password_policy_name: string;
password_policy_schema: string;
user_name: string;
}
export declare class User_Password_Policy_Attachment extends TerraformResource {
_password_policy_database: string;
_password_policy_name: string;
_password_policy_schema: string;
_user_name: string;
readonly _id: string;
constructor(scope: Construct, id: string, config: User_Password_Policy_AttachmentConfig);
Expand All @@ -18,12 +14,8 @@ export declare class User_Password_Policy_Attachment extends TerraformResource {
};
get id(): string;
ref(attribute: string): string;
get password_policy_database(): string;
set password_policy_database(value: string);
get password_policy_name(): string;
set password_policy_name(value: string);
get password_policy_schema(): string;
set password_policy_schema(value: string);
get user_name(): string;
set user_name(value: string);
}
18 changes: 0 additions & 18 deletions dist/snowflake_resources/user_password_policy_attachment.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
exports.User_Password_Policy_Attachment = void 0;
const cdktf_1 = require("cdktf");
class User_Password_Policy_Attachment extends cdktf_1.TerraformResource {
_password_policy_database;
_password_policy_name;
_password_policy_schema;
_user_name;
_id;
constructor(scope, id, config) {
Expand All @@ -23,16 +21,12 @@ class User_Password_Policy_Attachment extends cdktf_1.TerraformResource {
lifecycle: config.lifecycle
});
this._id = id;
this._password_policy_database = config.password_policy_database;
this._password_policy_name = config.password_policy_name;
this._password_policy_schema = config.password_policy_schema;
this._user_name = config.user_name;
}
getAttributes() {
return {
password_policy_database: this._password_policy_database,
password_policy_name: this._password_policy_name,
password_policy_schema: this._password_policy_schema,
user_name: this._user_name,
};
}
Expand All @@ -42,24 +36,12 @@ class User_Password_Policy_Attachment extends cdktf_1.TerraformResource {
ref(attribute) {
return `\${snowflake_user_password_policy_attachment.${this.friendlyUniqueId}.${attribute}}`;
}
get password_policy_database() {
return this._password_policy_database;
}
set password_policy_database(value) {
this._password_policy_database = value;
}
get password_policy_name() {
return this._password_policy_name;
}
set password_policy_name(value) {
this._password_policy_name = value;
}
get password_policy_schema() {
return this._password_policy_schema;
}
set password_policy_schema(value) {
this._password_policy_schema = value;
}
get user_name() {
return this._user_name;
}
Expand Down
26 changes: 26 additions & 0 deletions src/snowflake_resources/dynamic_table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ export interface Dynamic_TableConfig extends TerraformMetaArguments {
target_lag: Dynamic_Table_Target_Lag[];
warehouse: string;
comment?: string;
initialize?: string;
or_replace?: boolean;
refresh_mode?: string;
}

export class Dynamic_Table extends TerraformResource {
Expand All @@ -29,7 +31,9 @@ export class Dynamic_Table extends TerraformResource {
_target_lag: Dynamic_Table_Target_Lag[];
_warehouse: string;
_comment?: string;
_initialize?: string;
_or_replace?: boolean;
_refresh_mode?: string;
readonly _id: string;

public constructor(scope: Construct, id: string, config: Dynamic_TableConfig) {
Expand Down Expand Up @@ -59,7 +63,11 @@ export class Dynamic_Table extends TerraformResource {

this._comment = config.comment;

this._initialize = config.initialize;

this._or_replace = config.or_replace;

this._refresh_mode = config.refresh_mode;
}
public getAttributes(): { [name: string]: any } {
return {
Expand All @@ -70,7 +78,9 @@ export class Dynamic_Table extends TerraformResource {
target_lag: this._target_lag,
warehouse: this._warehouse,
comment: this._comment,
initialize: this._initialize,
or_replace: this._or_replace,
refresh_mode: this._refresh_mode,
}
}

Expand Down Expand Up @@ -138,6 +148,14 @@ export class Dynamic_Table extends TerraformResource {
this._comment = value;
}

public get initialize(): string | undefined {
return this._initialize
}

public set initialize(value: string | undefined) {
this._initialize = value;
}

public get or_replace(): boolean | undefined {
return this._or_replace
}
Expand All @@ -146,5 +164,13 @@ export class Dynamic_Table extends TerraformResource {
this._or_replace = value;
}

public get refresh_mode(): string | undefined {
return this._refresh_mode
}

public set refresh_mode(value: string | undefined) {
this._refresh_mode = value;
}

}

13 changes: 13 additions & 0 deletions src/snowflake_resources/procedure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export interface ProcedureConfig extends TerraformMetaArguments {
packages?: string[];
return_behavior?: string;
runtime_version?: string;
secure?: boolean;
}

export class Procedure extends TerraformResource {
Expand All @@ -44,6 +45,7 @@ export class Procedure extends TerraformResource {
_packages?: string[];
_return_behavior?: string;
_runtime_version?: string;
_secure?: boolean;
readonly _id: string;

public constructor(scope: Construct, id: string, config: ProcedureConfig) {
Expand Down Expand Up @@ -88,6 +90,8 @@ export class Procedure extends TerraformResource {
this._return_behavior = config.return_behavior;

this._runtime_version = config.runtime_version;

this._secure = config.secure;
}
public getAttributes(): { [name: string]: any } {
return {
Expand All @@ -106,6 +110,7 @@ export class Procedure extends TerraformResource {
packages: this._packages,
return_behavior: this._return_behavior,
runtime_version: this._runtime_version,
secure: this._secure,
}
}

Expand Down Expand Up @@ -237,5 +242,13 @@ export class Procedure extends TerraformResource {
this._runtime_version = value;
}

public get secure(): boolean | undefined {
return this._secure
}

public set secure(value: boolean | undefined) {
this._secure = value;
}

}

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.85.0"
providerVersionConstraint: "0.86.0"
},
terraformProviderSource: "terraform-cdk-provider-snowflake"
})
Expand Down
Loading

0 comments on commit bec8e77

Please sign in to comment.