Skip to content

Commit 593683d

Browse files
authored
[GitHubEnterpriseCloud] Update to 1.1.4 (hash: 8a071f341e7a01c0626fe0ebf3a81441) from 1.1.4 (hash: 6ce177c12eeaa6eef68f684846108439)
Detected Schema changes: ERROR: error: Error thrown when comparing: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: component 'server-statistics-actions.yaml' does not exist in the specification ERROR: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: component 'server-statistics-packages.yaml' does not exist in the specification ERROR: cannot resolve reference `server-statistics-actions.yaml`, it's missing: [211055:11] ERROR: cannot resolve reference `server-statistics-packages.yaml`, it's missing: [211057:11] ERROR: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: component 'server-statistics-actions.yaml' does not exist in the specification ERROR: local lookups are not permitted, please set AllowFileLookup to true in the configuration ERROR: component 'server-statistics-packages.yaml' does not exist in the specification ERROR: cannot resolve reference `server-statistics-actions.yaml`, it's missing: [210497:11] ERROR: cannot resolve reference `server-statistics-packages.yaml`, it's missing: [210499:11]
1 parent ad74d39 commit 593683d

File tree

80 files changed

+3344
-1243
lines changed

Some content is hidden

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

80 files changed

+3344
-1243
lines changed

README.md

Lines changed: 83 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,76 @@ $client->operations()->meta()->root();
5353
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/meta/meta#github-api-root).
5454

5555

56+
### security-advisories/list-global-advisories
57+
58+
List global security advisories
59+
60+
Using the `call` method:
61+
```php
62+
$client->call('GET /advisories', [
63+
'ghsa_id' => 'generated',
64+
'cve_id' => 'generated',
65+
'ecosystem' => 'generated',
66+
'severity' => 'generated',
67+
'cwes' => ,
68+
'is_withdrawn' => ,
69+
'affects' => ,
70+
'published' => 'generated',
71+
'updated' => 'generated',
72+
'modified' => 'generated',
73+
'before' => 'generated',
74+
'after' => 'generated',
75+
'type' => 'generated',
76+
'direction' => 'generated',
77+
'per_page' => 8,
78+
'sort' => 'generated',
79+
]);
80+
```
81+
82+
Operations method:
83+
```php
84+
$client->operations()->securityAdvisories()->listGlobalAdvisories( ghsa_id: 'generated',
85+
cve_id: 'generated',
86+
ecosystem: 'generated',
87+
severity: 'generated',
88+
cwes: ,
89+
is_withdrawn: ,
90+
affects: ,
91+
published: 'generated',
92+
updated: 'generated',
93+
modified: 'generated',
94+
before: 'generated',
95+
after: 'generated',
96+
type: 'generated',
97+
direction: 'generated',
98+
per_page: 8,
99+
sort: 'generated',
100+
);
101+
```
102+
103+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/global-advisories#list-global-security-advisories).
104+
105+
106+
### security-advisories/get-global-advisory
107+
108+
Get a global security advisory
109+
110+
Using the `call` method:
111+
```php
112+
$client->call('GET /advisories/{ghsa_id}', [
113+
'ghsa_id' => 'generated',
114+
]);
115+
```
116+
117+
Operations method:
118+
```php
119+
$client->operations()->securityAdvisories()->getGlobalAdvisory( ghsa_id: 'generated',
120+
);
121+
```
122+
123+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/global-advisories#get-a-global-security-advisory).
124+
125+
56126
### apps/get-authenticated
57127

58128
Get the authenticated app
@@ -4360,64 +4430,64 @@ $client->operations()->codespaces()->listInOrganization( org: 'generated'
43604430
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#list-codespaces-for-the-organization).
43614431

43624432

4363-
### codespaces/set-codespaces-billing
4433+
### codespaces/set-codespaces-access
43644434

43654435
Manage access control for organization codespaces
43664436

43674437
Using the `call` method:
43684438
```php
4369-
$client->call('PUT /orgs/{org}/codespaces/billing', [
4439+
$client->call('PUT /orgs/{org}/codespaces/access', [
43704440
'org' => 'generated',
43714441
]);
43724442
```
43734443

43744444
Operations method:
43754445
```php
4376-
$client->operations()->codespaces()->setCodespacesBilling( org: 'generated',
4446+
$client->operations()->codespaces()->setCodespacesAccess( org: 'generated',
43774447
);
43784448
```
43794449

43804450
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#manage-access-control-for-organization-codespaces).
43814451

43824452

4383-
### codespaces/set-codespaces-billing-users
4453+
### codespaces/set-codespaces-access-users
43844454

4385-
Add users to Codespaces billing for an organization
4455+
Add users to Codespaces access for an organization
43864456

43874457
Using the `call` method:
43884458
```php
4389-
$client->call('POST /orgs/{org}/codespaces/billing/selected_users', [
4459+
$client->call('POST /orgs/{org}/codespaces/access/selected_users', [
43904460
'org' => 'generated',
43914461
]);
43924462
```
43934463

43944464
Operations method:
43954465
```php
4396-
$client->operations()->codespaces()->setCodespacesBillingUsers( org: 'generated',
4466+
$client->operations()->codespaces()->setCodespacesAccessUsers( org: 'generated',
43974467
);
43984468
```
43994469

4400-
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#add-users-to-codespaces-billing-for-an-organization).
4470+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization).
44014471

44024472

4403-
### codespaces/delete-codespaces-billing-users
4473+
### codespaces/delete-codespaces-access-users
44044474

4405-
Remove users from Codespaces billing for an organization
4475+
Remove users from Codespaces access for an organization
44064476

44074477
Using the `call` method:
44084478
```php
4409-
$client->call('DELETE /orgs/{org}/codespaces/billing/selected_users', [
4479+
$client->call('DELETE /orgs/{org}/codespaces/access/selected_users', [
44104480
'org' => 'generated',
44114481
]);
44124482
```
44134483

44144484
Operations method:
44154485
```php
4416-
$client->operations()->codespaces()->deleteCodespacesBillingUsers( org: 'generated',
4486+
$client->operations()->codespaces()->deleteCodespacesAccessUsers( org: 'generated',
44174487
);
44184488
```
44194489

4420-
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#remove-users-from-codespaces-billing-for-an-organization).
4490+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization).
44214491

44224492

44234493
### codespaces/list-org-secrets

etc/openapi-client-generator.state

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

src/Client.php

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

src/ClientInterface.php

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

0 commit comments

Comments
 (0)