Skip to content

Commit

Permalink
feat(pipeline): remove resource_specification field in ConnectorSpec (#…
Browse files Browse the repository at this point in the history
…309)

Because

- We've merged the `resource_specification` data into
`component_specification`.

This commit

- Removes `resource_specification` field in `ConnectorSpec`.

---------

Co-authored-by: droplet-bot <[email protected]>
  • Loading branch information
donch1989 and droplet-bot authored Apr 23, 2024
1 parent 2f399f9 commit 02b17d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions openapiv2/vdp/service.swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3598,9 +3598,6 @@ definitions:
v1betaConnectorSpec:
type: object
properties:
resource_specification:
type: object
description: Resource specification.
component_specification:
type: object
description: Component specification.
Expand All @@ -3613,7 +3610,6 @@ definitions:
The key represents the task, and the value is the corresponding data_specification.
description: ConnectorSpec represents a specification data model.
required:
- resource_specification
- component_specification
- data_specifications
v1betaConnectorType:
Expand Down
4 changes: 2 additions & 2 deletions vdp/pipeline/v1beta/component_definition.proto
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ message DataSpecification {

// ConnectorSpec represents a specification data model.
message ConnectorSpec {
// Resource specification.
google.protobuf.Struct resource_specification = 2 [(google.api.field_behavior) = REQUIRED];
// Deleted
reserved 2;
// Component specification.
google.protobuf.Struct component_specification = 3 [(google.api.field_behavior) = REQUIRED];
// Deleted field.
Expand Down

0 comments on commit 02b17d6

Please sign in to comment.