-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Triggered by GitHub Actions Workflow for New Release v0.77.0
- Loading branch information
1 parent
ce41d7b
commit f4bb99d
Showing
10 changed files
with
193 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { TerraformMetaArguments, TerraformResource } from "cdktf"; | ||
import { Construct } from "constructs"; | ||
export interface Unsafe_ExecuteConfig extends TerraformMetaArguments { | ||
execute: string; | ||
revert: string; | ||
query?: string; | ||
} | ||
export declare class Unsafe_Execute extends TerraformResource { | ||
_execute: string; | ||
_revert: string; | ||
_query?: string; | ||
readonly _id: string; | ||
constructor(scope: Construct, id: string, config: Unsafe_ExecuteConfig); | ||
getAttributes(): { | ||
[name: string]: any; | ||
}; | ||
get id(): string; | ||
ref(attribute: string): string; | ||
get execute(): string; | ||
set execute(value: string); | ||
get revert(): string; | ||
set revert(value: string); | ||
get query(): string | undefined; | ||
set query(value: string | undefined); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
"use strict"; | ||
/* | ||
DO NOT EDIT - Generated by main.js. Refer to the README for more info. | ||
*/ | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Unsafe_Execute = void 0; | ||
const cdktf_1 = require("cdktf"); | ||
class Unsafe_Execute extends cdktf_1.TerraformResource { | ||
_execute; | ||
_revert; | ||
_query; | ||
_id; | ||
constructor(scope, id, config) { | ||
super(scope, id, { | ||
terraformResourceType: "snowflake_unsafe_execute", | ||
terraformGeneratorMetadata: { | ||
providerName: "snowflake" | ||
}, | ||
provider: config.provider, | ||
dependsOn: config.dependsOn, | ||
count: config.count, | ||
lifecycle: config.lifecycle | ||
}); | ||
this._id = id; | ||
this._execute = config.execute; | ||
this._revert = config.revert; | ||
this._query = config.query; | ||
} | ||
getAttributes() { | ||
return { | ||
execute: this._execute, | ||
revert: this._revert, | ||
query: this._query, | ||
}; | ||
} | ||
get id() { | ||
return this._id; | ||
} | ||
ref(attribute) { | ||
return `\${snowflake_unsafe_execute.${this.friendlyUniqueId}.${attribute}}`; | ||
} | ||
get execute() { | ||
return this._execute; | ||
} | ||
set execute(value) { | ||
this._execute = value; | ||
} | ||
get revert() { | ||
return this._revert; | ||
} | ||
set revert(value) { | ||
this._revert = value; | ||
} | ||
get query() { | ||
return this._query; | ||
} | ||
set query(value) { | ||
this._query = value; | ||
} | ||
} | ||
exports.Unsafe_Execute = Unsafe_Execute; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/* | ||
DO NOT EDIT - Generated by main.js. Refer to the README for more info. | ||
*/ | ||
|
||
import { TerraformMetaArguments, TerraformResource } from "cdktf"; | ||
import { Construct } from "constructs"; | ||
|
||
|
||
export interface Unsafe_ExecuteConfig extends TerraformMetaArguments { | ||
execute: string; | ||
revert: string; | ||
query?: string; | ||
} | ||
|
||
export class Unsafe_Execute extends TerraformResource { | ||
_execute: string; | ||
_revert: string; | ||
_query?: string; | ||
readonly _id: string; | ||
|
||
public constructor(scope: Construct, id: string, config: Unsafe_ExecuteConfig) { | ||
super(scope, id, { | ||
terraformResourceType: "snowflake_unsafe_execute", | ||
terraformGeneratorMetadata: { | ||
providerName: "snowflake" | ||
}, | ||
provider: config.provider, | ||
dependsOn: config.dependsOn, | ||
count: config.count, | ||
lifecycle: config.lifecycle | ||
}); | ||
this._id = id; | ||
|
||
this._execute = config.execute; | ||
|
||
this._revert = config.revert; | ||
|
||
this._query = config.query; | ||
} | ||
public getAttributes(): { [name: string]: any } { | ||
return { | ||
execute: this._execute, | ||
revert: this._revert, | ||
query: this._query, | ||
} | ||
} | ||
|
||
public get id(): string { | ||
return this._id; | ||
} | ||
|
||
public ref(attribute: string): string { | ||
return `\${snowflake_unsafe_execute.${this.friendlyUniqueId}.${attribute}}`; | ||
} | ||
|
||
public get execute(): string { | ||
return this._execute | ||
} | ||
|
||
public set execute(value: string) { | ||
this._execute = value; | ||
} | ||
|
||
public get revert(): string { | ||
return this._revert | ||
} | ||
|
||
public set revert(value: string) { | ||
this._revert = value; | ||
} | ||
|
||
public get query(): string | undefined { | ||
return this._query | ||
} | ||
|
||
public set query(value: string | undefined) { | ||
this._query = value; | ||
} | ||
|
||
} | ||
|
Submodule terraform-provider-snowflake
updated
from a1cb41 to 1fcd39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters