Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

remove repo permissions #2402

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-02-06 17:59:44.328977",
"spec_repo_commit": "b89b292b"
"regenerated": "2025-02-06 20:42:01.198556",
"spec_repo_commit": "970d122d"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-02-06 17:59:44.354899",
"spec_repo_commit": "b89b292b"
"regenerated": "2025-02-06 20:42:01.213366",
"spec_repo_commit": "970d122d"
}
}
}
2 changes: 1 addition & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ components:
schema:
type: string
ConfluentAccountID:
description: Confluent Account id.
description: Confluent Account ID.
in: path
name: account_id
required: true
Expand Down
16 changes: 8 additions & 8 deletions src/datadog_api_client/v2/api/confluent_cloud_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def create_confluent_resource(

Create a Confluent resource for the account associated with the provided ID.

:param account_id: Confluent Account id.
:param account_id: Confluent Account ID.
:type account_id: str
:param body: Confluent payload
:type body: ConfluentResourceRequest
Expand All @@ -320,7 +320,7 @@ def delete_confluent_account(

Delete a Confluent account with the provided account ID.

:param account_id: Confluent Account id.
:param account_id: Confluent Account ID.
:type account_id: str
:rtype: None
"""
Expand All @@ -338,7 +338,7 @@ def delete_confluent_resource(

Delete a Confluent resource with the provided resource id for the account associated with the provided account ID.

:param account_id: Confluent Account id.
:param account_id: Confluent Account ID.
:type account_id: str
:param resource_id: Confluent Account Resource ID.
:type resource_id: str
Expand All @@ -359,7 +359,7 @@ def get_confluent_account(

Get the Confluent account with the provided account ID.

:param account_id: Confluent Account id.
:param account_id: Confluent Account ID.
:type account_id: str
:rtype: ConfluentAccountResponse
"""
Expand All @@ -377,7 +377,7 @@ def get_confluent_resource(

Get a Confluent resource with the provided resource id for the account associated with the provided account ID.

:param account_id: Confluent Account id.
:param account_id: Confluent Account ID.
:type account_id: str
:param resource_id: Confluent Account Resource ID.
:type resource_id: str
Expand Down Expand Up @@ -410,7 +410,7 @@ def list_confluent_resource(

Get a Confluent resource for the account associated with the provided ID.

:param account_id: Confluent Account id.
:param account_id: Confluent Account ID.
:type account_id: str
:rtype: ConfluentResourcesResponse
"""
Expand All @@ -428,7 +428,7 @@ def update_confluent_account(

Update the Confluent account with the provided account ID.

:param account_id: Confluent Account id.
:param account_id: Confluent Account ID.
:type account_id: str
:param body: Confluent payload
:type body: ConfluentAccountUpdateRequest
Expand All @@ -451,7 +451,7 @@ def update_confluent_resource(

Update a Confluent resource with the provided resource id for the account associated with the provided account ID.

:param account_id: Confluent Account id.
:param account_id: Confluent Account ID.
:type account_id: str
:param resource_id: Confluent Account Resource ID.
:type resource_id: str
Expand Down
Loading