Set project and basis configuration type as vagrantfile

This commit is contained in:
sophia 2021-05-27 16:17:49 -05:00 committed by Paul Hinze
parent abf0dddd12
commit f316afdd38
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0
3 changed files with 1573 additions and 1568 deletions

File diff suppressed because it is too large Load Diff

View File

@ -201,7 +201,7 @@ message Basis {
sdk.Args.MetadataSet metadata = 5;
// Serialized configuration of the project (Vagrantfile)
google.protobuf.Any configuration = 6;
sdk.Vagrantfile.Vagrantfile configuration = 6;
// TODO(spox): look back over these options and see if we
@ -240,7 +240,7 @@ message Project {
sdk.Args.MetadataSet metadata = 6;
// Serialized configuration of the project (Vagrantfile)
google.protobuf.Any configuration = 7;
sdk.Vagrantfile.Vagrantfile configuration = 7;
// TODO(spox): look back over these options and see if we
// still care about them (i'm thinking no)
@ -287,7 +287,7 @@ message Target {
sdk.Args.MetadataSet metadata = 9;
// Serialized configuration of the target (Vagrantfile)
google.protobuf.Any configuration = 10;
sdk.Vagrantfile.Vagrantfile configuration = 10;
// Specialized target information (from provider)
google.protobuf.Any record = 11;

View File

@ -29,7 +29,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
optional :path, :string, 3
repeated :projects, :message, 4, "hashicorp.vagrant.sdk.Ref.Project"
optional :metadata, :message, 5, "hashicorp.vagrant.sdk.Args.MetadataSet"
optional :configuration, :message, 6, "google.protobuf.Any"
optional :configuration, :message, 6, "hashicorp.vagrant.sdk.Vagrantfile.Vagrantfile"
optional :remote_enabled, :bool, 100
optional :data_source, :message, 101, "hashicorp.vagrant.Job.DataSource"
end
@ -40,7 +40,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
repeated :targets, :message, 4, "hashicorp.vagrant.sdk.Ref.Target"
optional :basis, :message, 5, "hashicorp.vagrant.sdk.Ref.Basis"
optional :metadata, :message, 6, "hashicorp.vagrant.sdk.Args.MetadataSet"
optional :configuration, :message, 7, "google.protobuf.Any"
optional :configuration, :message, 7, "hashicorp.vagrant.sdk.Vagrantfile.Vagrantfile"
optional :remote_enabled, :bool, 100
optional :data_source, :message, 101, "hashicorp.vagrant.Job.DataSource"
end
@ -54,7 +54,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
optional :parent, :message, 7, "hashicorp.vagrant.Target"
optional :uuid, :string, 8
optional :metadata, :message, 9, "hashicorp.vagrant.sdk.Args.MetadataSet"
optional :configuration, :message, 10, "google.protobuf.Any"
optional :configuration, :message, 10, "hashicorp.vagrant.sdk.Vagrantfile.Vagrantfile"
optional :record, :message, 11, "google.protobuf.Any"
optional :remote_enabled, :bool, 100
optional :data_source, :message, 101, "hashicorp.vagrant.Job.DataSource"