Skip to content

Commit 2c56e03

Browse files
committed
1 parent 1627dfb commit 2c56e03

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+292
-244
lines changed

gen/postgresql/database/Database.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/sourcegraph/managed-services-platform-cdktf/gen/postgresql/database/internal"
1010
)
1111

12-
// Represents a {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/resources/database postgresql_database}.
12+
// Represents a {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/resources/database postgresql_database}.
1313
type Database interface {
1414
cdktf.TerraformResource
1515
AllowConnections() interface{}
@@ -546,7 +546,7 @@ func (j *jsiiProxy_Database) TerraformResourceType() *string {
546546
}
547547

548548

549-
// Create a new {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/resources/database postgresql_database} Resource.
549+
// Create a new {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/resources/database postgresql_database} Resource.
550550
func NewDatabase(scope constructs.Construct, id *string, config *DatabaseConfig) Database {
551551
_init_.Initialize()
552552

@@ -564,7 +564,7 @@ func NewDatabase(scope constructs.Construct, id *string, config *DatabaseConfig)
564564
return &j
565565
}
566566

567-
// Create a new {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/resources/database postgresql_database} Resource.
567+
// Create a new {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/resources/database postgresql_database} Resource.
568568
func NewDatabase_Override(d Database, scope constructs.Construct, id *string, config *DatabaseConfig) {
569569
_init_.Initialize()
570570

gen/postgresql/database/DatabaseConfig.go

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,48 +21,48 @@ type DatabaseConfig struct {
2121
Provisioners *[]interface{} `field:"optional" json:"provisioners" yaml:"provisioners"`
2222
// The PostgreSQL database name to connect to.
2323
//
24-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/resources/database#name Database#name}
24+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/resources/database#name Database#name}
2525
Name *string `field:"required" json:"name" yaml:"name"`
2626
// If false then no one can connect to this database.
2727
//
28-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/resources/database#allow_connections Database#allow_connections}
28+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/resources/database#allow_connections Database#allow_connections}
2929
AllowConnections interface{} `field:"optional" json:"allowConnections" yaml:"allowConnections"`
3030
// How many concurrent connections can be made to this database.
3131
//
32-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/resources/database#connection_limit Database#connection_limit}
32+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/resources/database#connection_limit Database#connection_limit}
3333
ConnectionLimit *float64 `field:"optional" json:"connectionLimit" yaml:"connectionLimit"`
3434
// Character set encoding to use in the new database.
3535
//
36-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/resources/database#encoding Database#encoding}
36+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/resources/database#encoding Database#encoding}
3737
Encoding *string `field:"optional" json:"encoding" yaml:"encoding"`
38-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/resources/database#id Database#id}.
38+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/resources/database#id Database#id}.
3939
//
4040
// Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
4141
// If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
4242
Id *string `field:"optional" json:"id" yaml:"id"`
4343
// If true, then this database can be cloned by any user with CREATEDB privileges.
4444
//
45-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/resources/database#is_template Database#is_template}
45+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/resources/database#is_template Database#is_template}
4646
IsTemplate interface{} `field:"optional" json:"isTemplate" yaml:"isTemplate"`
4747
// Collation order (LC_COLLATE) to use in the new database.
4848
//
49-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/resources/database#lc_collate Database#lc_collate}
49+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/resources/database#lc_collate Database#lc_collate}
5050
LcCollate *string `field:"optional" json:"lcCollate" yaml:"lcCollate"`
5151
// Character classification (LC_CTYPE) to use in the new database.
5252
//
53-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/resources/database#lc_ctype Database#lc_ctype}
53+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/resources/database#lc_ctype Database#lc_ctype}
5454
LcCtype *string `field:"optional" json:"lcCtype" yaml:"lcCtype"`
5555
// The ROLE which owns the database.
5656
//
57-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/resources/database#owner Database#owner}
57+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/resources/database#owner Database#owner}
5858
Owner *string `field:"optional" json:"owner" yaml:"owner"`
5959
// The name of the tablespace that will be associated with the new database.
6060
//
61-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/resources/database#tablespace_name Database#tablespace_name}
61+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/resources/database#tablespace_name Database#tablespace_name}
6262
TablespaceName *string `field:"optional" json:"tablespaceName" yaml:"tablespaceName"`
6363
// The name of the template from which to create the new database.
6464
//
65-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/resources/database#template Database#template}
65+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/resources/database#template Database#template}
6666
Template *string `field:"optional" json:"template" yaml:"template"`
6767
}
6868

gen/postgresql/database/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# `postgresql_database`
22

3-
Refer to the Terraform Registry for docs: [`postgresql_database`](https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/resources/database).
3+
Refer to the Terraform Registry for docs: [`postgresql_database`](https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/resources/database).

gen/postgresql/datapostgresqlschemas/DataPostgresqlSchemas.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/sourcegraph/managed-services-platform-cdktf/gen/postgresql/datapostgresqlschemas/internal"
1010
)
1111

12-
// Represents a {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/schemas postgresql_schemas}.
12+
// Represents a {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/schemas postgresql_schemas}.
1313
type DataPostgresqlSchemas interface {
1414
cdktf.TerraformDataSource
1515
// Experimental.
@@ -416,7 +416,7 @@ func (j *jsiiProxy_DataPostgresqlSchemas) TerraformResourceType() *string {
416416
}
417417

418418

419-
// Create a new {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/schemas postgresql_schemas} Data Source.
419+
// Create a new {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/schemas postgresql_schemas} Data Source.
420420
func NewDataPostgresqlSchemas(scope constructs.Construct, id *string, config *DataPostgresqlSchemasConfig) DataPostgresqlSchemas {
421421
_init_.Initialize()
422422

@@ -434,7 +434,7 @@ func NewDataPostgresqlSchemas(scope constructs.Construct, id *string, config *Da
434434
return &j
435435
}
436436

437-
// Create a new {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/schemas postgresql_schemas} Data Source.
437+
// Create a new {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/schemas postgresql_schemas} Data Source.
438438
func NewDataPostgresqlSchemas_Override(d DataPostgresqlSchemas, scope constructs.Construct, id *string, config *DataPostgresqlSchemasConfig) {
439439
_init_.Initialize()
440440

gen/postgresql/datapostgresqlschemas/DataPostgresqlSchemasConfig.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,32 +21,32 @@ type DataPostgresqlSchemasConfig struct {
2121
Provisioners *[]interface{} `field:"optional" json:"provisioners" yaml:"provisioners"`
2222
// The PostgreSQL database which will be queried for schema names.
2323
//
24-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/schemas#database DataPostgresqlSchemas#database}
24+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/schemas#database DataPostgresqlSchemas#database}
2525
Database *string `field:"required" json:"database" yaml:"database"`
26-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/schemas#id DataPostgresqlSchemas#id}.
26+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/schemas#id DataPostgresqlSchemas#id}.
2727
//
2828
// Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
2929
// If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
3030
Id *string `field:"optional" json:"id" yaml:"id"`
3131
// Determines whether to include system schemas (pg_ prefix and information_schema). 'public' will always be included.
3232
//
33-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/schemas#include_system_schemas DataPostgresqlSchemas#include_system_schemas}
33+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/schemas#include_system_schemas DataPostgresqlSchemas#include_system_schemas}
3434
IncludeSystemSchemas interface{} `field:"optional" json:"includeSystemSchemas" yaml:"includeSystemSchemas"`
3535
// Expression(s) which will be pattern matched in the query using the PostgreSQL LIKE ALL operator.
3636
//
37-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/schemas#like_all_patterns DataPostgresqlSchemas#like_all_patterns}
37+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/schemas#like_all_patterns DataPostgresqlSchemas#like_all_patterns}
3838
LikeAllPatterns *[]*string `field:"optional" json:"likeAllPatterns" yaml:"likeAllPatterns"`
3939
// Expression(s) which will be pattern matched in the query using the PostgreSQL LIKE ANY operator.
4040
//
41-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/schemas#like_any_patterns DataPostgresqlSchemas#like_any_patterns}
41+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/schemas#like_any_patterns DataPostgresqlSchemas#like_any_patterns}
4242
LikeAnyPatterns *[]*string `field:"optional" json:"likeAnyPatterns" yaml:"likeAnyPatterns"`
4343
// Expression(s) which will be pattern matched in the query using the PostgreSQL NOT LIKE ALL operator.
4444
//
45-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/schemas#not_like_all_patterns DataPostgresqlSchemas#not_like_all_patterns}
45+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/schemas#not_like_all_patterns DataPostgresqlSchemas#not_like_all_patterns}
4646
NotLikeAllPatterns *[]*string `field:"optional" json:"notLikeAllPatterns" yaml:"notLikeAllPatterns"`
4747
// Expression which will be pattern matched in the query using the PostgreSQL ~ (regular expression match) operator.
4848
//
49-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/schemas#regex_pattern DataPostgresqlSchemas#regex_pattern}
49+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/schemas#regex_pattern DataPostgresqlSchemas#regex_pattern}
5050
RegexPattern *string `field:"optional" json:"regexPattern" yaml:"regexPattern"`
5151
}
5252

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# `data_postgresql_schemas`
22

3-
Refer to the Terraform Registry for docs: [`data_postgresql_schemas`](https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/schemas).
3+
Refer to the Terraform Registry for docs: [`data_postgresql_schemas`](https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/schemas).

gen/postgresql/datapostgresqlsequences/DataPostgresqlSequences.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/sourcegraph/managed-services-platform-cdktf/gen/postgresql/datapostgresqlsequences/internal"
1010
)
1111

12-
// Represents a {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/sequences postgresql_sequences}.
12+
// Represents a {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/sequences postgresql_sequences}.
1313
type DataPostgresqlSequences interface {
1414
cdktf.TerraformDataSource
1515
// Experimental.
@@ -416,7 +416,7 @@ func (j *jsiiProxy_DataPostgresqlSequences) TerraformResourceType() *string {
416416
}
417417

418418

419-
// Create a new {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/sequences postgresql_sequences} Data Source.
419+
// Create a new {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/sequences postgresql_sequences} Data Source.
420420
func NewDataPostgresqlSequences(scope constructs.Construct, id *string, config *DataPostgresqlSequencesConfig) DataPostgresqlSequences {
421421
_init_.Initialize()
422422

@@ -434,7 +434,7 @@ func NewDataPostgresqlSequences(scope constructs.Construct, id *string, config *
434434
return &j
435435
}
436436

437-
// Create a new {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/sequences postgresql_sequences} Data Source.
437+
// Create a new {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/sequences postgresql_sequences} Data Source.
438438
func NewDataPostgresqlSequences_Override(d DataPostgresqlSequences, scope constructs.Construct, id *string, config *DataPostgresqlSequencesConfig) {
439439
_init_.Initialize()
440440

gen/postgresql/datapostgresqlsequences/DataPostgresqlSequencesConfig.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,32 +21,32 @@ type DataPostgresqlSequencesConfig struct {
2121
Provisioners *[]interface{} `field:"optional" json:"provisioners" yaml:"provisioners"`
2222
// The PostgreSQL database which will be queried for sequence names.
2323
//
24-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/sequences#database DataPostgresqlSequences#database}
24+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/sequences#database DataPostgresqlSequences#database}
2525
Database *string `field:"required" json:"database" yaml:"database"`
26-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/sequences#id DataPostgresqlSequences#id}.
26+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/sequences#id DataPostgresqlSequences#id}.
2727
//
2828
// Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
2929
// If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
3030
Id *string `field:"optional" json:"id" yaml:"id"`
3131
// Expression(s) which will be pattern matched against sequence names in the query using the PostgreSQL LIKE ALL operator.
3232
//
33-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/sequences#like_all_patterns DataPostgresqlSequences#like_all_patterns}
33+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/sequences#like_all_patterns DataPostgresqlSequences#like_all_patterns}
3434
LikeAllPatterns *[]*string `field:"optional" json:"likeAllPatterns" yaml:"likeAllPatterns"`
3535
// Expression(s) which will be pattern matched against sequence names in the query using the PostgreSQL LIKE ANY operator.
3636
//
37-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/sequences#like_any_patterns DataPostgresqlSequences#like_any_patterns}
37+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/sequences#like_any_patterns DataPostgresqlSequences#like_any_patterns}
3838
LikeAnyPatterns *[]*string `field:"optional" json:"likeAnyPatterns" yaml:"likeAnyPatterns"`
3939
// Expression(s) which will be pattern matched against sequence names in the query using the PostgreSQL NOT LIKE ALL operator.
4040
//
41-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/sequences#not_like_all_patterns DataPostgresqlSequences#not_like_all_patterns}
41+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/sequences#not_like_all_patterns DataPostgresqlSequences#not_like_all_patterns}
4242
NotLikeAllPatterns *[]*string `field:"optional" json:"notLikeAllPatterns" yaml:"notLikeAllPatterns"`
4343
// Expression which will be pattern matched against sequence names in the query using the PostgreSQL ~ (regular expression match) operator.
4444
//
45-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/sequences#regex_pattern DataPostgresqlSequences#regex_pattern}
45+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/sequences#regex_pattern DataPostgresqlSequences#regex_pattern}
4646
RegexPattern *string `field:"optional" json:"regexPattern" yaml:"regexPattern"`
4747
// The PostgreSQL schema(s) which will be queried for sequence names. Queries all schemas in the database by default.
4848
//
49-
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cyrilgdn/postgresql/1.21.0/docs/data-sources/sequences#schemas DataPostgresqlSequences#schemas}
49+
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/sourcegraph/postgresql/1.23.0-sg.2/docs/data-sources/sequences#schemas DataPostgresqlSequences#schemas}
5050
Schemas *[]*string `field:"optional" json:"schemas" yaml:"schemas"`
5151
}
5252

0 commit comments

Comments
 (0)