You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-11Lines changed: 16 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -98,11 +98,11 @@ Paginated collections include `first`, `last`, `next`, and `prev` links containi
98
98
99
99
## Updates
100
100
101
-
Resources that accept partial updates use the `PATCH` verb, and support the [JSON Patch](http://tools.ietf.org/html/rfc6902) format. Some resources also support the [JSON Merge Patch](https://tools.ietf.org/html/rfc7386) format. In addition, some resources support optional comments that can be submitted with updates. Comments appear in outgoing webhooks, the audit log, and other integrations.
101
+
Resources that accept partial updates use the `PATCH` verb, and support the [JSON Patch](https://datatracker.ietf.org/doc/html/rfc6902) format. Some resources also support the [JSON Merge Patch](https://datatracker.ietf.org/doc/html/rfc7386) format. In addition, some resources support optional comments that can be submitted with updates. Comments appear in outgoing webhooks, the audit log, and other integrations.
102
102
103
103
### Updates via JSON Patch
104
104
105
-
[JSON Patch](http://tools.ietf.org/html/rfc6902) is a way to specify the modifications to perform on a resource. For example, in this feature flag representation:
105
+
[JSON Patch](https://datatracker.ietf.org/doc/html/rfc6902) is a way to specify the modifications to perform on a resource. For example, in this feature flag representation:
106
106
107
107
```json
108
108
{
@@ -134,7 +134,7 @@ Attributes that aren't editable, like a resource's `_links`, have names that sta
134
134
135
135
### Updates via JSON Merge Patch
136
136
137
-
The API also supports the [JSON Merge Patch](https://tools.ietf.org/html/rfc7386) format, as well as the [Update feature flag](/tag/Feature-flags#operation/patchFeatureFlag) resource.
137
+
The API also supports the [JSON Merge Patch](https://datatracker.ietf.org/doc/html/rfc7386) format, as well as the [Update feature flag](/tag/Feature-flags#operation/patchFeatureFlag) resource.
138
138
139
139
JSON Merge Patch is less expressive than JSON Patch but in many cases, it is simpler to construct a merge patch document. For example, you can change a feature flag's description with the following merge patch document:
140
140
@@ -439,7 +439,7 @@ If you would like to upgrade your integration to use a new API version, you can
439
439
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
**not_resources** | **[str]** | Targeted resources are the resources NOT in this list. The \"resources\" field must be empty to use this field. | [optional]
10
+
**actions** | **[str]** | Actions to perform on a resource | [optional]
11
+
**not_actions** | **[str]** | Targeted actions are the actions NOT in this list. The \"actions\" field must be empty to use this field. | [optional]
12
12
**role_name** | **str** | | [optional]
13
13
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
Copy file name to clipboardExpand all lines: docs/AccountMembersApi.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -376,7 +376,7 @@ Name | Type | Description | Notes
376
376
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
377
377
378
378
# **post_members**
379
-
> Members post_members(new_member_form)
379
+
> Members post_members(new_member_form_list_post)
380
380
381
381
Invite new members
382
382
@@ -392,11 +392,11 @@ import launchdarkly_api
392
392
from launchdarkly_api.api import account_members_api
393
393
from launchdarkly_api.model.invalid_request_error_rep import InvalidRequestErrorRep
394
394
from launchdarkly_api.model.forbidden_error_rep import ForbiddenErrorRep
395
-
from launchdarkly_api.model.new_member_form import NewMemberForm
396
395
from launchdarkly_api.model.rate_limited_error_rep import RateLimitedErrorRep
397
396
from launchdarkly_api.model.unauthorized_error_rep import UnauthorizedErrorRep
398
397
from launchdarkly_api.model.members import Members
399
398
from launchdarkly_api.model.status_conflict_error_rep import StatusConflictErrorRep
399
+
from launchdarkly_api.model.new_member_form_list_post import NewMemberFormListPost
400
400
from pprint import pprint
401
401
# Defining the host is optional and defaults to https://app.launchdarkly.com
402
402
# See configuration.py for a list of all supported configuration parameters.
0 commit comments