diff --git a/thousandeyes-sdk-administrative/README.md b/thousandeyes-sdk-administrative/README.md index 99d9d649..f52f771c 100644 --- a/thousandeyes-sdk-administrative/README.md +++ b/thousandeyes-sdk-administrative/README.md @@ -12,7 +12,7 @@ This API provides the following operations to manage your organization: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-administrative/docs/AccountGroupDetail.md b/thousandeyes-sdk-administrative/docs/AccountGroupDetail.md index 970ceaf3..55fa12dc 100644 --- a/thousandeyes-sdk-administrative/docs/AccountGroupDetail.md +++ b/thousandeyes-sdk-administrative/docs/AccountGroupDetail.md @@ -9,7 +9,8 @@ Name | Type | Description | Notes **account_group_name** | **str** | Account group name | [optional] **is_current_account_group** | **bool** | Indicates whether the requested aid is the context of the current account. | [optional] **is_default_account_group** | **bool** | Indicates whether the aid is the default one for the requesting user. | [optional] -**organization_name** | **str** | (Optional) Indicates whether the aid is the default one for the requesting user. | [optional] +**organization_name** | **str** | (Optional) The name of the organization associated with the account group. | [optional] +**org_id** | **str** | (Optional) The ID for the organization associated with the account group. | [optional] **users** | [**List[UserAccountGroup]**](UserAccountGroup.md) | | [optional] **links** | [**SelfLinks**](SelfLinks.md) | | [optional] **agents** | [**List[EnterpriseAgent]**](EnterpriseAgent.md) | | [optional] diff --git a/thousandeyes-sdk-administrative/docs/AccountGroupInfo.md b/thousandeyes-sdk-administrative/docs/AccountGroupInfo.md index 72992dd1..106aee05 100644 --- a/thousandeyes-sdk-administrative/docs/AccountGroupInfo.md +++ b/thousandeyes-sdk-administrative/docs/AccountGroupInfo.md @@ -9,7 +9,8 @@ Name | Type | Description | Notes **account_group_name** | **str** | Account group name | [optional] **is_current_account_group** | **bool** | Indicates whether the requested aid is the context of the current account. | [optional] **is_default_account_group** | **bool** | Indicates whether the aid is the default one for the requesting user. | [optional] -**organization_name** | **str** | (Optional) Indicates whether the aid is the default one for the requesting user. | [optional] +**organization_name** | **str** | (Optional) The name of the organization associated with the account group. | [optional] +**org_id** | **str** | (Optional) The ID for the organization associated with the account group. | [optional] ## Example diff --git a/thousandeyes-sdk-administrative/docs/CreatedAccountGroup.md b/thousandeyes-sdk-administrative/docs/CreatedAccountGroup.md index 08b29488..d7a296d2 100644 --- a/thousandeyes-sdk-administrative/docs/CreatedAccountGroup.md +++ b/thousandeyes-sdk-administrative/docs/CreatedAccountGroup.md @@ -9,7 +9,8 @@ Name | Type | Description | Notes **account_group_name** | **str** | Account group name | [optional] **is_current_account_group** | **bool** | Indicates whether the requested aid is the context of the current account. | [optional] **is_default_account_group** | **bool** | Indicates whether the aid is the default one for the requesting user. | [optional] -**organization_name** | **str** | (Optional) Indicates whether the aid is the default one for the requesting user. | [optional] +**organization_name** | **str** | (Optional) The name of the organization associated with the account group. | [optional] +**org_id** | **str** | (Optional) The ID for the organization associated with the account group. | [optional] **users** | [**List[UserAccountGroup]**](UserAccountGroup.md) | | [optional] **links** | [**SelfLinks**](SelfLinks.md) | | [optional] diff --git a/thousandeyes-sdk-administrative/src/thousandeyes_sdk/administrative/models/account_group_detail.py b/thousandeyes-sdk-administrative/src/thousandeyes_sdk/administrative/models/account_group_detail.py index 0e2a2001..63ea7d05 100644 --- a/thousandeyes-sdk-administrative/src/thousandeyes_sdk/administrative/models/account_group_detail.py +++ b/thousandeyes-sdk-administrative/src/thousandeyes_sdk/administrative/models/account_group_detail.py @@ -32,12 +32,13 @@ class AccountGroupDetail(BaseModel): account_group_name: Optional[StrictStr] = Field(default=None, description="Account group name", alias="accountGroupName") is_current_account_group: Optional[StrictBool] = Field(default=None, description="Indicates whether the requested aid is the context of the current account.", alias="isCurrentAccountGroup") is_default_account_group: Optional[StrictBool] = Field(default=None, description="Indicates whether the aid is the default one for the requesting user.", alias="isDefaultAccountGroup") - organization_name: Optional[StrictStr] = Field(default=None, description="(Optional) Indicates whether the aid is the default one for the requesting user.", alias="organizationName") + organization_name: Optional[StrictStr] = Field(default=None, description="(Optional) The name of the organization associated with the account group.", alias="organizationName") + org_id: Optional[StrictStr] = Field(default=None, description="(Optional) The ID for the organization associated with the account group.", alias="orgId") users: Optional[List[UserAccountGroup]] = None links: Optional[SelfLinks] = Field(default=None, alias="_links") agents: Optional[List[EnterpriseAgent]] = None account_token: Optional[StrictStr] = Field(default=None, description="The account group token is an alphanumeric string used to bind an Enterprise Agent to a specific account group. This token is not a password that must be kept secret. You can retrieve your `AccountGroupToken` from the `/account-groups/{id}` endpoint.", alias="accountToken") - __properties: ClassVar[List[str]] = ["aid", "accountGroupName", "isCurrentAccountGroup", "isDefaultAccountGroup", "organizationName", "users", "_links", "agents", "accountToken"] + __properties: ClassVar[List[str]] = ["aid", "accountGroupName", "isCurrentAccountGroup", "isDefaultAccountGroup", "organizationName", "orgId", "users", "_links", "agents", "accountToken"] model_config = ConfigDict( populate_by_name=True, @@ -113,6 +114,7 @@ class AccountGroupDetail(BaseModel): "isCurrentAccountGroup": obj.get("isCurrentAccountGroup"), "isDefaultAccountGroup": obj.get("isDefaultAccountGroup"), "organizationName": obj.get("organizationName"), + "orgId": obj.get("orgId"), "users": [UserAccountGroup.from_dict(_item) for _item in obj["users"]] if obj.get("users") is not None else None, "_links": SelfLinks.from_dict(obj["_links"]) if obj.get("_links") is not None else None, "agents": [EnterpriseAgent.from_dict(_item) for _item in obj["agents"]] if obj.get("agents") is not None else None, diff --git a/thousandeyes-sdk-administrative/src/thousandeyes_sdk/administrative/models/account_group_info.py b/thousandeyes-sdk-administrative/src/thousandeyes_sdk/administrative/models/account_group_info.py index 290fa6f9..b004d421 100644 --- a/thousandeyes-sdk-administrative/src/thousandeyes_sdk/administrative/models/account_group_info.py +++ b/thousandeyes-sdk-administrative/src/thousandeyes_sdk/administrative/models/account_group_info.py @@ -29,8 +29,9 @@ class AccountGroupInfo(BaseModel): account_group_name: Optional[StrictStr] = Field(default=None, description="Account group name", alias="accountGroupName") is_current_account_group: Optional[StrictBool] = Field(default=None, description="Indicates whether the requested aid is the context of the current account.", alias="isCurrentAccountGroup") is_default_account_group: Optional[StrictBool] = Field(default=None, description="Indicates whether the aid is the default one for the requesting user.", alias="isDefaultAccountGroup") - organization_name: Optional[StrictStr] = Field(default=None, description="(Optional) Indicates whether the aid is the default one for the requesting user.", alias="organizationName") - __properties: ClassVar[List[str]] = ["aid", "accountGroupName", "isCurrentAccountGroup", "isDefaultAccountGroup", "organizationName"] + organization_name: Optional[StrictStr] = Field(default=None, description="(Optional) The name of the organization associated with the account group.", alias="organizationName") + org_id: Optional[StrictStr] = Field(default=None, description="(Optional) The ID for the organization associated with the account group.", alias="orgId") + __properties: ClassVar[List[str]] = ["aid", "accountGroupName", "isCurrentAccountGroup", "isDefaultAccountGroup", "organizationName", "orgId"] model_config = ConfigDict( populate_by_name=True, @@ -88,7 +89,8 @@ class AccountGroupInfo(BaseModel): "accountGroupName": obj.get("accountGroupName"), "isCurrentAccountGroup": obj.get("isCurrentAccountGroup"), "isDefaultAccountGroup": obj.get("isDefaultAccountGroup"), - "organizationName": obj.get("organizationName") + "organizationName": obj.get("organizationName"), + "orgId": obj.get("orgId") }) return _obj diff --git a/thousandeyes-sdk-administrative/src/thousandeyes_sdk/administrative/models/created_account_group.py b/thousandeyes-sdk-administrative/src/thousandeyes_sdk/administrative/models/created_account_group.py index 32ce881a..1c324a8a 100644 --- a/thousandeyes-sdk-administrative/src/thousandeyes_sdk/administrative/models/created_account_group.py +++ b/thousandeyes-sdk-administrative/src/thousandeyes_sdk/administrative/models/created_account_group.py @@ -31,10 +31,11 @@ class CreatedAccountGroup(BaseModel): account_group_name: Optional[StrictStr] = Field(default=None, description="Account group name", alias="accountGroupName") is_current_account_group: Optional[StrictBool] = Field(default=None, description="Indicates whether the requested aid is the context of the current account.", alias="isCurrentAccountGroup") is_default_account_group: Optional[StrictBool] = Field(default=None, description="Indicates whether the aid is the default one for the requesting user.", alias="isDefaultAccountGroup") - organization_name: Optional[StrictStr] = Field(default=None, description="(Optional) Indicates whether the aid is the default one for the requesting user.", alias="organizationName") + organization_name: Optional[StrictStr] = Field(default=None, description="(Optional) The name of the organization associated with the account group.", alias="organizationName") + org_id: Optional[StrictStr] = Field(default=None, description="(Optional) The ID for the organization associated with the account group.", alias="orgId") users: Optional[List[UserAccountGroup]] = None links: Optional[SelfLinks] = Field(default=None, alias="_links") - __properties: ClassVar[List[str]] = ["aid", "accountGroupName", "isCurrentAccountGroup", "isDefaultAccountGroup", "organizationName", "users", "_links"] + __properties: ClassVar[List[str]] = ["aid", "accountGroupName", "isCurrentAccountGroup", "isDefaultAccountGroup", "organizationName", "orgId", "users", "_links"] model_config = ConfigDict( populate_by_name=True, @@ -103,6 +104,7 @@ class CreatedAccountGroup(BaseModel): "isCurrentAccountGroup": obj.get("isCurrentAccountGroup"), "isDefaultAccountGroup": obj.get("isDefaultAccountGroup"), "organizationName": obj.get("organizationName"), + "orgId": obj.get("orgId"), "users": [UserAccountGroup.from_dict(_item) for _item in obj["users"]] if obj.get("users") is not None else None, "_links": SelfLinks.from_dict(obj["_links"]) if obj.get("_links") is not None else None }) diff --git a/thousandeyes-sdk-administrative/test/test_account_groups_api.py b/thousandeyes-sdk-administrative/test/test_account_groups_api.py index 8b3a80c0..ef062392 100644 --- a/thousandeyes-sdk-administrative/test/test_account_groups_api.py +++ b/thousandeyes-sdk-administrative/test/test_account_groups_api.py @@ -59,6 +59,7 @@ class TestAccountGroupsApi(unittest.TestCase): "accountGroupName" : "Account A", "isDefaultAccountGroup" : true, "aid" : "1234", + "orgId" : "12345", "users" : [ { "uid" : "235", "lastLogin" : "2022-07-17T22:00:54Z", @@ -127,6 +128,7 @@ class TestAccountGroupsApi(unittest.TestCase): "isDefaultAccountGroup" : true, "accountToken" : "6j052y4vfgyuhefghue", "aid" : "1234", + "orgId" : "12345", "users" : [ { "uid" : "235", "lastLogin" : "2022-07-17T22:00:54Z", @@ -345,13 +347,15 @@ class TestAccountGroupsApi(unittest.TestCase): "organizationName" : "organizationName", "accountGroupName" : "Account A", "isDefaultAccountGroup" : true, - "aid" : "1234" + "aid" : "1234", + "orgId" : "12345" }, { "isCurrentAccountGroup" : true, "organizationName" : "organizationName", "accountGroupName" : "Account A", "isDefaultAccountGroup" : true, - "aid" : "1234" + "aid" : "1234", + "orgId" : "12345" } ] }""" @@ -391,6 +395,7 @@ class TestAccountGroupsApi(unittest.TestCase): "isDefaultAccountGroup" : true, "accountToken" : "6j052y4vfgyuhefghue", "aid" : "1234", + "orgId" : "12345", "users" : [ { "uid" : "235", "lastLogin" : "2022-07-17T22:00:54Z", diff --git a/thousandeyes-sdk-agents/README.md b/thousandeyes-sdk-agents/README.md index 44f3e1a1..00f70a30 100644 --- a/thousandeyes-sdk-agents/README.md +++ b/thousandeyes-sdk-agents/README.md @@ -5,7 +5,7 @@ Manage all agents available to your account in ThousandEyes, including both Clou This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-alerts/README.md b/thousandeyes-sdk-alerts/README.md index f7135dc0..410bd43d 100644 --- a/thousandeyes-sdk-alerts/README.md +++ b/thousandeyes-sdk-alerts/README.md @@ -12,7 +12,7 @@ For more information about the alerts, see [Alerts](https://docs.thousandeyes.co This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-bgp-monitors/README.md b/thousandeyes-sdk-bgp-monitors/README.md index ca9b059f..d03cfdae 100644 --- a/thousandeyes-sdk-bgp-monitors/README.md +++ b/thousandeyes-sdk-bgp-monitors/README.md @@ -9,7 +9,7 @@ For more information about monitors, see [Inside-Out BGP Visibility](https://doc This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-credentials/README.md b/thousandeyes-sdk-credentials/README.md index 3e0fe8d1..bbb03e09 100644 --- a/thousandeyes-sdk-credentials/README.md +++ b/thousandeyes-sdk-credentials/README.md @@ -13,7 +13,7 @@ For more information about credentials, see [Working With Secure Credentials](ht This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-dashboards/README.md b/thousandeyes-sdk-dashboards/README.md index cb53c9e9..b4643557 100644 --- a/thousandeyes-sdk-dashboards/README.md +++ b/thousandeyes-sdk-dashboards/README.md @@ -3,7 +3,7 @@ Manage ThousandEyes Dashboards. This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-emulation/README.md b/thousandeyes-sdk-emulation/README.md index 8bd1e3ef..75c25f8e 100644 --- a/thousandeyes-sdk-emulation/README.md +++ b/thousandeyes-sdk-emulation/README.md @@ -9,7 +9,7 @@ To access Emulation API operations, the following permissions are required: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-endpoint-agents/README.md b/thousandeyes-sdk-endpoint-agents/README.md index 50bf893d..f1ceb9c8 100644 --- a/thousandeyes-sdk-endpoint-agents/README.md +++ b/thousandeyes-sdk-endpoint-agents/README.md @@ -5,7 +5,7 @@ For more information about Endpoint Agents, see [Endpoint Agents](https://docs.t This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-endpoint-instant-tests/README.md b/thousandeyes-sdk-endpoint-instant-tests/README.md index 1e85dafe..08ded622 100644 --- a/thousandeyes-sdk-endpoint-instant-tests/README.md +++ b/thousandeyes-sdk-endpoint-instant-tests/README.md @@ -13,7 +13,7 @@ The URLs for these API test data endpoints are provided within the test definiti This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-endpoint-labels/README.md b/thousandeyes-sdk-endpoint-labels/README.md index 95a57ea3..62c2cafa 100644 --- a/thousandeyes-sdk-endpoint-labels/README.md +++ b/thousandeyes-sdk-endpoint-labels/README.md @@ -4,7 +4,7 @@ Manage labels applied to endpoint agents using this API. This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-endpoint-test-results/README.md b/thousandeyes-sdk-endpoint-test-results/README.md index 230cc150..bdf86d95 100644 --- a/thousandeyes-sdk-endpoint-test-results/README.md +++ b/thousandeyes-sdk-endpoint-test-results/README.md @@ -3,7 +3,7 @@ Retrieve results for scheduled and dynamic tests on endpoint agents. This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-endpoint-test-results/test/test_real_user_endpoint_test_results_api.py b/thousandeyes-sdk-endpoint-test-results/test/test_real_user_endpoint_test_results_api.py index 25e97a76..106f5e9b 100644 --- a/thousandeyes-sdk-endpoint-test-results/test/test_real_user_endpoint_test_results_api.py +++ b/thousandeyes-sdk-endpoint-test-results/test/test_real_user_endpoint_test_results_api.py @@ -380,11 +380,11 @@ class TestRealUserEndpointTestResultsApi(unittest.TestCase): "log" : { "browser" : { "name" : "Google Chrome", - "version" : "7.0.26.98" + "version" : "7.0.27.98" }, "creator" : { "name" : "ThousandEyes Endpoint Agent", - "version" : "7.0.26" + "version" : "7.0.27" }, "entries" : [ { "pageref" : "page_1", diff --git a/thousandeyes-sdk-endpoint-tests/README.md b/thousandeyes-sdk-endpoint-tests/README.md index f77f72d4..79047aad 100644 --- a/thousandeyes-sdk-endpoint-tests/README.md +++ b/thousandeyes-sdk-endpoint-tests/README.md @@ -5,7 +5,7 @@ Manage endpoint agent dynamic and scheduled tests using the Endpoint Tests API. This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-event-detection/README.md b/thousandeyes-sdk-event-detection/README.md index fd58e3a8..51fc41f9 100644 --- a/thousandeyes-sdk-event-detection/README.md +++ b/thousandeyes-sdk-event-detection/README.md @@ -12,7 +12,7 @@ With the Events API, you can perform the following tasks on the ThousandEyes pla This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-instant-tests/README.md b/thousandeyes-sdk-instant-tests/README.md index d3abda19..5a32560b 100644 --- a/thousandeyes-sdk-instant-tests/README.md +++ b/thousandeyes-sdk-instant-tests/README.md @@ -8,7 +8,7 @@ The response does not include the immediate test results. Use the Test Results e This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-internet-insights/README.md b/thousandeyes-sdk-internet-insights/README.md index b59b314d..95493f51 100644 --- a/thousandeyes-sdk-internet-insights/README.md +++ b/thousandeyes-sdk-internet-insights/README.md @@ -14,7 +14,7 @@ For more information about Internet Insights, see the [Internet Insights](https: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-snapshots/README.md b/thousandeyes-sdk-snapshots/README.md index 24a85337..f06d6be3 100644 --- a/thousandeyes-sdk-snapshots/README.md +++ b/thousandeyes-sdk-snapshots/README.md @@ -3,7 +3,7 @@ Creates a new test snapshot in ThousandEyes. This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-streaming/README.md b/thousandeyes-sdk-streaming/README.md index 1652fe3e..22a7da24 100644 --- a/thousandeyes-sdk-streaming/README.md +++ b/thousandeyes-sdk-streaming/README.md @@ -15,7 +15,7 @@ For more information about ThousandEyes for OpenTelemetry, see the [documentatio This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-streaming/docs/DataModelVersion.md b/thousandeyes-sdk-streaming/docs/DataModelVersion.md index f353cef5..a782fb3c 100644 --- a/thousandeyes-sdk-streaming/docs/DataModelVersion.md +++ b/thousandeyes-sdk-streaming/docs/DataModelVersion.md @@ -1,6 +1,6 @@ # DataModelVersion -The version of the data model used in the data stream. When using `v1`: - The `signal` cannot be `trace`. Default: `v2` +The version of the data model used in the data stream. When using `v1`: - The `signal` cannot be `trace`. ## Properties diff --git a/thousandeyes-sdk-streaming/docs/EndpointType.md b/thousandeyes-sdk-streaming/docs/EndpointType.md index 60337e35..63f3400a 100644 --- a/thousandeyes-sdk-streaming/docs/EndpointType.md +++ b/thousandeyes-sdk-streaming/docs/EndpointType.md @@ -1,6 +1,6 @@ # EndpointType -The type of connection used to send data to the endpoint. Default: `grpc` **Note**: When using the `splunk-hec` 'type', the `EndpointType` must be `http`. +The type of connection used to send data to the endpoint. **Note**: When using the `splunk-hec` 'type', the `EndpointType` must be `http`. ## Properties diff --git a/thousandeyes-sdk-streaming/docs/ExporterConfigSplunkHec.md b/thousandeyes-sdk-streaming/docs/ExporterConfigSplunkHec.md index 90394d33..b22fb4e1 100644 --- a/thousandeyes-sdk-streaming/docs/ExporterConfigSplunkHec.md +++ b/thousandeyes-sdk-streaming/docs/ExporterConfigSplunkHec.md @@ -7,8 +7,8 @@ Splunk HEC configuration. This can only be configured when the `type` is `splunk Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **token** | **str** | The Splunk HEC `token`. This is a required field. | [optional] -**source** | **str** | The Splunk HEC `source`. This field is optional. Default: `ThousandEyesOTel` | [optional] [default to 'ThousandEyesOTel'] -**source_type** | **str** | The Splunk HEC `sourceType`. This field is optional. Default: `ThousandEyesOTel` | [optional] [default to 'ThousandEyesOTel'] +**source** | **str** | The Splunk HEC `source`. This field is optional. | [optional] [default to 'ThousandEyesOTel'] +**source_type** | **str** | The Splunk HEC `sourceType`. This field is optional. | [optional] [default to 'ThousandEyesOTel'] **index** | **str** | The name of the Splunk HEC index where the event data will be stored. This field is optional. | [optional] ## Example diff --git a/thousandeyes-sdk-streaming/docs/Signal.md b/thousandeyes-sdk-streaming/docs/Signal.md index 32a515cf..dc7a74a8 100644 --- a/thousandeyes-sdk-streaming/docs/Signal.md +++ b/thousandeyes-sdk-streaming/docs/Signal.md @@ -1,6 +1,6 @@ # Signal -The OpenTelemetry signal of the stream integration. When using `trace`: - `dataModelVersion` must be `v2`. Default: `metric` +The OpenTelemetry signal of the stream integration. When using `trace`: - `dataModelVersion` must be `v2`. ## Properties diff --git a/thousandeyes-sdk-streaming/docs/TestMatchDomain.md b/thousandeyes-sdk-streaming/docs/TestMatchDomain.md index 9c6620e2..686dbe1d 100644 --- a/thousandeyes-sdk-streaming/docs/TestMatchDomain.md +++ b/thousandeyes-sdk-streaming/docs/TestMatchDomain.md @@ -1,6 +1,6 @@ # TestMatchDomain -The domain of the test to match. +The domain of the test to match. `cea` - Cloud and Enterprise Agent `endpoint` - Endpoint Agent ## Properties diff --git a/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/data_model_version.py b/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/data_model_version.py index 288e197a..9fad54e5 100644 --- a/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/data_model_version.py +++ b/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/data_model_version.py @@ -19,7 +19,7 @@ from typing_extensions import Self class DataModelVersion(str, Enum): """ - The version of the data model used in the data stream. When using `v1`: - The `signal` cannot be `trace`. Default: `v2` + The version of the data model used in the data stream. When using `v1`: - The `signal` cannot be `trace`. """ """ diff --git a/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/endpoint_type.py b/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/endpoint_type.py index 87d7538d..c21582e1 100644 --- a/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/endpoint_type.py +++ b/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/endpoint_type.py @@ -19,7 +19,7 @@ from typing_extensions import Self class EndpointType(str, Enum): """ - The type of connection used to send data to the endpoint. Default: `grpc` **Note**: When using the `splunk-hec` 'type', the `EndpointType` must be `http`. + The type of connection used to send data to the endpoint. **Note**: When using the `splunk-hec` 'type', the `EndpointType` must be `http`. """ """ diff --git a/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/exporter_config_splunk_hec.py b/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/exporter_config_splunk_hec.py index a7573200..8c46fe01 100644 --- a/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/exporter_config_splunk_hec.py +++ b/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/exporter_config_splunk_hec.py @@ -26,8 +26,8 @@ class ExporterConfigSplunkHec(BaseModel): Splunk HEC configuration. This can only be configured when the `type` is `splunk-hec`. """ # noqa: E501 token: Optional[StrictStr] = Field(default=None, description="The Splunk HEC `token`. This is a required field.") - source: Optional[StrictStr] = Field(default='ThousandEyesOTel', description="The Splunk HEC `source`. This field is optional. Default: `ThousandEyesOTel`") - source_type: Optional[StrictStr] = Field(default='ThousandEyesOTel', description="The Splunk HEC `sourceType`. This field is optional. Default: `ThousandEyesOTel`", alias="sourceType") + source: Optional[StrictStr] = Field(default='ThousandEyesOTel', description="The Splunk HEC `source`. This field is optional.") + source_type: Optional[StrictStr] = Field(default='ThousandEyesOTel', description="The Splunk HEC `sourceType`. This field is optional.", alias="sourceType") index: Optional[StrictStr] = Field(default=None, description="The name of the Splunk HEC index where the event data will be stored. This field is optional.") __properties: ClassVar[List[str]] = ["token", "source", "sourceType", "index"] diff --git a/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/signal.py b/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/signal.py index 5735babb..a0da7f3e 100644 --- a/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/signal.py +++ b/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/signal.py @@ -19,7 +19,7 @@ from typing_extensions import Self class Signal(str, Enum): """ - The OpenTelemetry signal of the stream integration. When using `trace`: - `dataModelVersion` must be `v2`. Default: `metric` + The OpenTelemetry signal of the stream integration. When using `trace`: - `dataModelVersion` must be `v2`. """ """ diff --git a/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/test_match_domain.py b/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/test_match_domain.py index bf82ee0f..220a41e7 100644 --- a/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/test_match_domain.py +++ b/thousandeyes-sdk-streaming/src/thousandeyes_sdk/streaming/models/test_match_domain.py @@ -19,7 +19,7 @@ from typing_extensions import Self class TestMatchDomain(str, Enum): """ - The domain of the test to match. + The domain of the test to match. `cea` - Cloud and Enterprise Agent `endpoint` - Endpoint Agent """ """ diff --git a/thousandeyes-sdk-tags/README.md b/thousandeyes-sdk-tags/README.md index 4178cb89..ccc8185c 100644 --- a/thousandeyes-sdk-tags/README.md +++ b/thousandeyes-sdk-tags/README.md @@ -16,7 +16,7 @@ Things to note with the ThousandEyes Tags API: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-test-results/README.md b/thousandeyes-sdk-test-results/README.md index 60782398..6abb3b40 100644 --- a/thousandeyes-sdk-test-results/README.md +++ b/thousandeyes-sdk-test-results/README.md @@ -3,7 +3,7 @@ Get test result metrics for Cloud and Enterprise Agent tests. This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-tests/README.md b/thousandeyes-sdk-tests/README.md index d7c983b0..489fa2a5 100644 --- a/thousandeyes-sdk-tests/README.md +++ b/thousandeyes-sdk-tests/README.md @@ -4,7 +4,7 @@ This API supports listing, creating, editing, and deleting Cloud and Enterprise This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator diff --git a/thousandeyes-sdk-usage/README.md b/thousandeyes-sdk-usage/README.md index e8a40603..a614b6dd 100644 --- a/thousandeyes-sdk-usage/README.md +++ b/thousandeyes-sdk-usage/README.md @@ -17,7 +17,7 @@ Refer to the Usage API operations for detailed usage instructions and optional p This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 7.0.26 +- API version: 7.0.27 - Generator version: 7.6.0 - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator