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

Added log placement support for integrations that were missing it #88

Merged
merged 1 commit into from
Sep 26, 2018
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
1 change: 1 addition & 0 deletions fastly/gcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ type CreateGCSInput struct {
MessageType string `form:"message_type,omitempty"`
ResponseCondition string `form:"response_condition,omitempty"`
TimestampFormat string `form:"timestamp_format,omitempty"`
Placement string `form:"placement,omitempty"`
}

// CreateGCS creates a new Fastly GCS.
Expand Down
2 changes: 1 addition & 1 deletion fastly/s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ type CreateS3Input struct {
ResponseCondition string `form:"response_condition,omitempty"`
TimestampFormat string `form:"timestamp_format,omitempty"`
Redundancy S3Redundancy `form:"redundancy,omitempty"`
Placement string `form:"placement,omitempty"`
Placement string `form:"placement,omitempty"`
}

// CreateS3 creates a new Fastly S3.
Expand Down
1 change: 1 addition & 0 deletions fastly/sumologic.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ type Sumologic struct {
CreatedAt *time.Time `mapstructure:"created_at"`
UpdatedAt *time.Time `mapstructure:"updated_at"`
DeletedAt *time.Time `mapstructure:"deleted_at"`

}

// sumologicsByName is a sortable list of sumologics.
Expand Down