Skip to content

Commit 0ced440

Browse files
authored
[GitHubEnterpriseCloud] Update to 1.1.4-5f29eba51427afad3ceb08ba3f41b5b5 from 1.1.4-bce6f74d8d4eefe681a6cef8673e09af
Detected Schema changes: starting work. Building original model for commit 25a187 {"time":"2024-01-25T01:43:57.067268275Z","level":"ERROR","msg":"unable to open the rolodex file, check specification references and base path","file":"/__w/github-root/github-root/server-statistics-actions.yaml","error":"open /__w/github-root/github-root/server-statistics-actions.yaml: no such file or directory"} {"time":"2024-01-25T01:43:57.067372862Z","level":"ERROR","msg":"unable to open the rolodex file, check specification references and base path","file":"/__w/github-root/github-root/server-statistics-packages.yaml","error":"open /__w/github-root/github-root/server-statistics-packages.yaml: no such file or directory"} {"time":"2024-01-25T01:43:59.711593115Z","level":"ERROR","msg":"unable to open the rolodex file, check specification references and base path","file":"/__w/github-root/github-root/server-statistics-actions.yaml","error":"open /__w/github-root/github-root/server-statistics-actions.yaml: no such file or directory"} {"time":"2024-01-25T01:43:59.711691791Z","level":"ERROR","msg":"unable to open the rolodex file, check specification references and base path","file":"/__w/github-root/github-root/server-statistics-packages.yaml","error":"open /__w/github-root/github-root/server-statistics-packages.yaml: no such file or directory"} SPEC: extracted 1 commits from history DONE: completed WARNING: warnings reported during processing ⚠️ Error thrown when comparing: component 'server-statistics-actions.yaml' does not exist in the specification SUCCESS: No changes detected
1 parent f9b368d commit 0ced440

File tree

54 files changed

+4733
-7638
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+4733
-7638
lines changed

README.md

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20461,7 +20461,7 @@ Create a GitHub Pages deployment
2046120461

2046220462
Using the `call` method:
2046320463
```php
20464-
$client->call('POST /repos/{owner}/{repo}/pages/deployment', [
20464+
$client->call('POST /repos/{owner}/{repo}/pages/deployments', [
2046520465
'owner' => 'generated',
2046620466
'repo' => 'generated',
2046720467
]);
@@ -20477,6 +20477,54 @@ $client->operations()->repos()->createPagesDeployment( owner: 'generated'
2047720477
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment).
2047820478

2047920479

20480+
### repos/get-pages-deployment
20481+
20482+
Get the status of a GitHub Pages deployment
20483+
20484+
Using the `call` method:
20485+
```php
20486+
$client->call('GET /repos/{owner}/{repo}/pages/deployments/{pages_deployment_id}', [
20487+
'owner' => 'generated',
20488+
'repo' => 'generated',
20489+
'pages_deployment_id' => ,
20490+
]);
20491+
```
20492+
20493+
Operations method:
20494+
```php
20495+
$client->operations()->repos()->getPagesDeployment( owner: 'generated',
20496+
repo: 'generated',
20497+
pages_deployment_id: ,
20498+
);
20499+
```
20500+
20501+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-the-status-of-a-github-pages-deployment).
20502+
20503+
20504+
### repos/cancel-pages-deployment
20505+
20506+
Cancel a GitHub Pages deployment
20507+
20508+
Using the `call` method:
20509+
```php
20510+
$client->call('POST /repos/{owner}/{repo}/pages/deployments/{pages_deployment_id}/cancel', [
20511+
'owner' => 'generated',
20512+
'repo' => 'generated',
20513+
'pages_deployment_id' => ,
20514+
]);
20515+
```
20516+
20517+
Operations method:
20518+
```php
20519+
$client->operations()->repos()->cancelPagesDeployment( owner: 'generated',
20520+
repo: 'generated',
20521+
pages_deployment_id: ,
20522+
);
20523+
```
20524+
20525+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment).
20526+
20527+
2048020528
### repos/get-pages-health-check
2048120529

2048220530
Get a DNS health check for GitHub Pages

etc/openapi-client-generator.state

Lines changed: 86 additions & 46 deletions
Large diffs are not rendered by default.

src/Client.php

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/ClientInterface.php

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/Internal/Hydrator/Operation/Repos/Owner/Repo/Pages/Deployment.php renamed to src/Internal/Hydrator/Operation/Repos/Owner/Repo/Pages/Deployments.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
use function count;
2424
use function is_a;
2525

26-
class Deployment implements ObjectMapper
26+
class Deployments implements ObjectMapper
2727
{
2828
private array $hydrationStack = [];
2929

0 commit comments

Comments
 (0)