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

new instance type added for data_fusion #4514

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
4 changes: 4 additions & 0 deletions mmv1/products/datafusion/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,13 @@ objects:
of concurrent pipelines, no support for streaming pipelines, etc.
- ENTERPRISE: Enterprise Data Fusion instance. In Enterprise type, the user will have more features
available, such as support for streaming pipelines, higher number of concurrent pipelines, etc.
- DEVELOPER: Developer Data Fusion instance. In Developer type, the user will have all features available but
with restrictive capabilities. This is to help enterprises design and develop their data ingestion and integration
pipelines at low cost.
values:
- :BASIC
- :ENTERPRISE
- :DEVELOPER
c2thorn marked this conversation as resolved.
Show resolved Hide resolved
input: true
- !ruby/object:Api::Type::Boolean
name: 'enableStackdriverLogging'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ func testAccDataFusionInstance_updated(instanceName string) string {
resource "google_data_fusion_instance" "foobar" {
name = "%s"
region = "us-central1"
type = "BASIC"
type = "DEVELOPER"
enable_stackdriver_monitoring = true
enable_stackdriver_logging = true

labels = {
label1 = "value1"
label2 = "value2"
}
version = "6.1.1"
version = "6.2.0"
}
`, instanceName)
}
Expand Down