Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Datastream Stream resource #13385

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/6806.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
`google_datastream_stream`
```
5 changes: 3 additions & 2 deletions google/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -965,9 +965,9 @@ func Provider() *schema.Provider {
return provider
}

// Generated resources: 257
// Generated resources: 258
// Generated IAM resources: 159
// Total generated resources: 416
// Total generated resources: 417
func ResourceMap() map[string]*schema.Resource {
resourceMap, _ := ResourceMapWithErrors()
return resourceMap
Expand Down Expand Up @@ -1193,6 +1193,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
"google_datastore_index": resourceDatastoreIndex(),
"google_datastream_connection_profile": resourceDatastreamConnectionProfile(),
"google_datastream_private_connection": resourceDatastreamPrivateConnection(),
"google_datastream_stream": resourceDatastreamStream(),
"google_deployment_manager_deployment": resourceDeploymentManagerDeployment(),
"google_dialogflow_agent": resourceDialogflowAgent(),
"google_dialogflow_intent": resourceDialogflowIntent(),
Expand Down
2 changes: 1 addition & 1 deletion google/resource_datastream_connection_profile.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func resourceDatastreamConnectionProfile() *schema.Resource {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: `The name of the location this repository is located in.`,
Description: `The name of the location this connection profile is located in.`,
},
"bigquery_profile": {
Type: schema.TypeList,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,9 @@ resource "google_datastream_connection_profile" "default" {
port = 8022
password = "swordfish"
}
labels = {
key = "value"
}
}
`, context)
}
Expand Down
2 changes: 1 addition & 1 deletion google/resource_datastream_private_connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func resourceDatastreamPrivateConnection() *schema.Resource {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: `The name of the location this repository is located in.`,
Description: `The name of the location this private connection is located in.`,
},
"private_connection_id": {
Type: schema.TypeString,
Expand Down
Loading