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

Ensure all relevant 'create' input fields are using pointers. #382

Merged
merged 51 commits into from
Nov 7, 2022
Merged
Changes from 1 commit
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
29c397a
ACLs
Integralist Nov 3, 2022
b92b4e9
ERLs
Integralist Nov 3, 2022
04e170a
Loggly
Integralist Nov 4, 2022
5961426
SFTP
Integralist Nov 4, 2022
f9d489a
FTP
Integralist Nov 4, 2022
7c31282
S3
Integralist Nov 4, 2022
01aff1f
Azure Blob Storage
Integralist Nov 4, 2022
dcf619d
Datadog
Integralist Nov 4, 2022
a3d80ac
LogShuttle
Integralist Nov 4, 2022
a4220b7
Papertrail
Integralist Nov 4, 2022
41cc747
GCS
Integralist Nov 4, 2022
607a938
HTTPS
Integralist Nov 4, 2022
b9089f1
Honeycomb
Integralist Nov 4, 2022
fd52cbb
Elasticsearch
Integralist Nov 4, 2022
b986419
Gzip
Integralist Nov 4, 2022
89be1b4
NewRelic
Integralist Nov 4, 2022
5381c11
Logentries
Integralist Nov 4, 2022
8f2ef3b
Splunk
Integralist Nov 4, 2022
256b7e4
Digital Ocean
Integralist Nov 4, 2022
3800696
Sumologic
Integralist Nov 4, 2022
cfa1743
Heroku
Integralist Nov 4, 2022
b8f13e8
Syslog
Integralist Nov 4, 2022
98bf48d
Kafka
Integralist Nov 4, 2022
91945a3
Scalyr
Integralist Nov 4, 2022
562dbbd
Kinesis
Integralist Nov 4, 2022
21aab93
OpenStack
Integralist Nov 4, 2022
ec37b2a
BigQuery
Integralist Nov 4, 2022
3147f10
Cloudfiles
Integralist Nov 4, 2022
2ef225c
Headers
Integralist Nov 4, 2022
59c3f33
Backend
Integralist Nov 4, 2022
87ac220
Directors
Integralist Nov 4, 2022
c709f72
Server
Integralist Nov 4, 2022
2e62b91
Domains
Integralist Nov 4, 2022
c0e0be2
PubSub
Integralist Nov 4, 2022
bd977c3
Versions
Integralist Nov 4, 2022
d204bc4
Services
Integralist Nov 4, 2022
935c066
User
Integralist Nov 4, 2022
98cf1b1
Health checks
Integralist Nov 7, 2022
53b615f
VCL
Integralist Nov 7, 2022
963e563
VCL Snippets
Integralist Nov 7, 2022
0b57c95
Conditions
Integralist Nov 7, 2022
e14d396
ACL Entries
Integralist Nov 7, 2022
a91ba80
Pools
Integralist Nov 7, 2022
f1a7d05
Response Objects
Integralist Nov 7, 2022
75ec167
Cache Settings
Integralist Nov 7, 2022
a0fe2b2
Request Settings
Integralist Nov 7, 2022
0b6b220
Service Authorizations
Integralist Nov 7, 2022
171cd7d
Object Store
Integralist Nov 7, 2022
a7087d1
Dictionaries
Integralist Nov 7, 2022
c5d2f77
Dictionary Item
Integralist Nov 7, 2022
a87439d
Token
Integralist Nov 7, 2022
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
Prev Previous commit
Next Next commit
Object Store
  • Loading branch information
Integralist committed Nov 7, 2022
commit 171cd7d29e225968311e4ab8b083036d9b814ff1
5 changes: 1 addition & 4 deletions fastly/object_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ func (c *Client) DeleteObjectStore(i *DeleteObjectStoreInput) error {
type ListObjectStoreKeysInput struct {
// Cursor is used for paginating through results.
Cursor string
// ID is the ID of the object store to list keys for.
// ID is the ID of the object store to list keys for (required).
ID string
// Limit is the maximum number of items included the response.
Limit int
Expand Down Expand Up @@ -329,7 +329,6 @@ func (c *Client) GetObjectStoreKey(i *GetObjectStoreKeyInput) (string, error) {
if i.ID == "" {
return "", ErrMissingID
}

if i.Key == "" {
return "", ErrMissingKey
}
Expand Down Expand Up @@ -363,7 +362,6 @@ func (c *Client) InsertObjectStoreKey(i *InsertObjectStoreKeyInput) error {
if i.ID == "" {
return ErrMissingID
}

if i.Key == "" {
return ErrMissingKey
}
Expand Down Expand Up @@ -391,7 +389,6 @@ func (c *Client) DeleteObjectStoreKey(i *DeleteObjectStoreKeyInput) error {
if i.ID == "" {
return ErrMissingID
}

if i.Key == "" {
return ErrMissingKey
}
Expand Down