Skip to content

[GitHub] Update to 1.1.4-4befd63c20b175c975d8d0d17534c658 from 1.1.4-df0040fe321f9d8e0f0fb0a6e8e300a9 #1327

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

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
232 changes: 232 additions & 0 deletions clients/GitHub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -856,6 +856,62 @@ $client->operations()->copilot()->listCopilotSeatsForEnterprise( enterpri
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/copilot/copilot-user-management#list-all-copilot-seat-assignments-for-an-enterprise).


### copilot/copilot-metrics-for-enterprise

Get Copilot metrics for an enterprise

Using the `call` method:
```php
$client->call('GET /enterprises/{enterprise}/copilot/metrics', [
'enterprise' => 'generated',
'since' => 'generated',
'until' => 'generated',
'page' => 1,
'per_page' => 8,
]);
```

Operations method:
```php
$client->operations()->copilot()->copilotMetricsForEnterprise( enterprise: 'generated',
since: 'generated',
until: 'generated',
page: 1,
per_page: 8,
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-enterprise).


### copilot/copilot-metrics-for-enterprise

Get Copilot metrics for an enterprise

Using the `call` method:
```php
$client->call('LIST /enterprises/{enterprise}/copilot/metrics', [
'enterprise' => 'generated',
'since' => 'generated',
'until' => 'generated',
'page' => 1,
'per_page' => 8,
]);
```

Operations method:
```php
$client->operations()->copilot()->copilotMetricsForEnterpriseListing( enterprise: 'generated',
since: 'generated',
until: 'generated',
page: 1,
per_page: 8,
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-enterprise).


### copilot/usage-metrics-for-enterprise

Get a summary of Copilot usage for enterprise members
Expand Down Expand Up @@ -998,6 +1054,66 @@ $client->operations()->secretScanning()->listAlertsForEnterprise( enterpr
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise).


### copilot/copilot-metrics-for-enterprise-team

Get Copilot metrics for an enterprise team

Using the `call` method:
```php
$client->call('GET /enterprises/{enterprise}/team/{team_slug}/copilot/metrics', [
'enterprise' => 'generated',
'team_slug' => 'generated',
'since' => 'generated',
'until' => 'generated',
'page' => 1,
'per_page' => 8,
]);
```

Operations method:
```php
$client->operations()->copilot()->copilotMetricsForEnterpriseTeam( enterprise: 'generated',
team_slug: 'generated',
since: 'generated',
until: 'generated',
page: 1,
per_page: 8,
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-enterprise-team).


### copilot/copilot-metrics-for-enterprise-team

Get Copilot metrics for an enterprise team

Using the `call` method:
```php
$client->call('LIST /enterprises/{enterprise}/team/{team_slug}/copilot/metrics', [
'enterprise' => 'generated',
'team_slug' => 'generated',
'since' => 'generated',
'until' => 'generated',
'page' => 1,
'per_page' => 8,
]);
```

Operations method:
```php
$client->operations()->copilot()->copilotMetricsForEnterpriseTeamListing( enterprise: 'generated',
team_slug: 'generated',
since: 'generated',
until: 'generated',
page: 1,
per_page: 8,
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-enterprise-team).


### copilot/usage-metrics-for-enterprise-team

Get a summary of Copilot usage for an enterprise team
Expand Down Expand Up @@ -4676,6 +4792,62 @@ $client->operations()->copilot()->cancelCopilotSeatAssignmentForUsers( or
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/copilot/copilot-user-management#remove-users-from-the-copilot-subscription-for-an-organization).


### copilot/copilot-metrics-for-organization

Get Copilot metrics for an organization

Using the `call` method:
```php
$client->call('GET /orgs/{org}/copilot/metrics', [
'org' => 'generated',
'since' => 'generated',
'until' => 'generated',
'page' => 1,
'per_page' => 8,
]);
```

Operations method:
```php
$client->operations()->copilot()->copilotMetricsForOrganization( org: 'generated',
since: 'generated',
until: 'generated',
page: 1,
per_page: 8,
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization).


### copilot/copilot-metrics-for-organization

Get Copilot metrics for an organization

Using the `call` method:
```php
$client->call('LIST /orgs/{org}/copilot/metrics', [
'org' => 'generated',
'since' => 'generated',
'until' => 'generated',
'page' => 1,
'per_page' => 8,
]);
```

Operations method:
```php
$client->operations()->copilot()->copilotMetricsForOrganizationListing( org: 'generated',
since: 'generated',
until: 'generated',
page: 1,
per_page: 8,
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization).


### copilot/usage-metrics-for-org

Get a summary of Copilot usage for organization members
Expand Down Expand Up @@ -8106,6 +8278,66 @@ $client->operations()->billing()->getSharedStorageBillingOrg( org: 'gener
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/billing/billing#get-shared-storage-billing-for-an-organization).


### copilot/copilot-metrics-for-team

Get Copilot metrics for a team

Using the `call` method:
```php
$client->call('GET /orgs/{org}/team/{team_slug}/copilot/metrics', [
'org' => 'generated',
'team_slug' => 'generated',
'since' => 'generated',
'until' => 'generated',
'page' => 1,
'per_page' => 8,
]);
```

Operations method:
```php
$client->operations()->copilot()->copilotMetricsForTeam( org: 'generated',
team_slug: 'generated',
since: 'generated',
until: 'generated',
page: 1,
per_page: 8,
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team).


### copilot/copilot-metrics-for-team

Get Copilot metrics for a team

Using the `call` method:
```php
$client->call('LIST /orgs/{org}/team/{team_slug}/copilot/metrics', [
'org' => 'generated',
'team_slug' => 'generated',
'since' => 'generated',
'until' => 'generated',
'page' => 1,
'per_page' => 8,
]);
```

Operations method:
```php
$client->operations()->copilot()->copilotMetricsForTeamListing( org: 'generated',
team_slug: 'generated',
since: 'generated',
until: 'generated',
page: 1,
per_page: 8,
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team).


### copilot/usage-metrics-for-team

Get a summary of Copilot usage for a team
Expand Down
Loading
Loading