Skip to content

Commit 6d4f52a

Browse files
authored
Merge pull request #418 from netlify/feat/add-functions-config-param-to-deploy-files
feat: add functions_config property to deployfiles
2 parents 9442320 + 8613df5 commit 6d4f52a

File tree

3 files changed

+17
-12
lines changed

3 files changed

+17
-12
lines changed

go/models/deploy_files.go

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/plumbing/operations/operations_client.go

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

swagger.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ paths:
7575
default:
7676
$ref: '#/responses/error'
7777
description: >-
78-
**Note:** Environment variable keys and values will soon be moved from `build_settings.env` and `repo.env` to a new endpoint.
78+
**Note:** Environment variable keys and values will soon be moved from `build_settings.env` and `repo.env` to a new endpoint.
7979
Please use [getEnvVars](#tag/environmentVariables/operation/getEnvVars) to retrieve site environment variables.
8080
post:
8181
operationId: createSite
@@ -99,7 +99,7 @@ paths:
9999
default:
100100
$ref: '#/responses/error'
101101
description: >-
102-
**Note:** Environment variable keys and values will soon be moved from `build_settings.env` and `repo.env` to a new endpoint.
102+
**Note:** Environment variable keys and values will soon be moved from `build_settings.env` and `repo.env` to a new endpoint.
103103
Please use [createEnvVars](#tag/environmentVariables/operation/createEnvVars) to create environment variables for a site.
104104
/sites/{site_id}:
105105
parameters:
@@ -118,7 +118,7 @@ paths:
118118
default:
119119
$ref: '#/responses/error'
120120
description: >-
121-
**Note:** Environment variable keys and values will soon be moved from `build_settings.env` and `repo.env` to a new endpoint.
121+
**Note:** Environment variable keys and values will soon be moved from `build_settings.env` and `repo.env` to a new endpoint.
122122
Please use [getEnvVars](#tag/environmentVariables/operation/getEnvVars) to retrieve site environment variables.
123123
patch:
124124
operationId: updateSite
@@ -139,7 +139,7 @@ paths:
139139
default:
140140
$ref: '#/responses/error'
141141
description: >-
142-
**Note:** Environment variable keys and values will soon be moved from `build_settings.env` and `repo.env` to a new endpoint.
142+
**Note:** Environment variable keys and values will soon be moved from `build_settings.env` and `repo.env` to a new endpoint.
143143
Please use [updateEnvVar](#tag/environmentVariables/operation/updateEnvVar) to update a site's environment variables.
144144
delete:
145145
operationId: deleteSite
@@ -1668,7 +1668,7 @@ paths:
16681668
default:
16691669
$ref: '#/responses/error'
16701670
description: >-
1671-
**Note:** Environment variable keys and values will soon be moved from `build_settings.env` and `repo.env` to a new endpoint.
1671+
**Note:** Environment variable keys and values will soon be moved from `build_settings.env` and `repo.env` to a new endpoint.
16721672
Please use [createEnvVars](#tag/environmentVariables/operation/createEnvVars) to create environment variables for a site.
16731673
get:
16741674
operationId: listSitesForAccount # an account represents a team or a user
@@ -1693,7 +1693,7 @@ paths:
16931693
default:
16941694
$ref: '#/responses/error'
16951695
description: >-
1696-
**Note:** Environment variable keys and values will soon be moved from `build_settings.env` and `repo.env` to a new endpoint.
1696+
**Note:** Environment variable keys and values will soon be moved from `build_settings.env` and `repo.env` to a new endpoint.
16971697
Please use [getEnvVars](#tag/environmentVariables/operation/getEnvVars) to retrieve site environment variables.
16981698
/{account_slug}/members:
16991699
parameters:
@@ -2912,6 +2912,8 @@ definitions:
29122912
type: array
29132913
items:
29142914
$ref: '#/definitions/functionSchedule'
2915+
functions_config:
2916+
type: object
29152917
branch:
29162918
type: string
29172919
framework:

0 commit comments

Comments
 (0)