Skip to content
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

feat(all): auto-regenerate discovery clients #2933

Merged
merged 1 commit into from
Dec 20, 2024
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
33 changes: 32 additions & 1 deletion apigee/v1/apigee-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -10385,7 +10385,7 @@
}
}
},
"revision": "20241210",
"revision": "20241213",
"rootUrl": "https://apigee.googleapis.com/",
"schemas": {
"EdgeConfigstoreBundleBadBundle": {
Expand Down Expand Up @@ -13390,6 +13390,10 @@
],
"type": "string"
},
"clientIpResolutionConfig": {
"$ref": "GoogleCloudApigeeV1EnvironmentClientIPResolutionConfig",
"description": "Optional. The algorithm to resolve IP. This will affect Analytics, API Security, and other features that use the client ip. To remove a client ip resolution config, update the field to an empty value. Example: '{ \"clientIpResolutionConfig\" = {} }' For more information, see: https://cloud.google.com/apigee/docs/api-platform/system-administration/client-ip-resolution."
},
"createdAt": {
"description": "Output only. Creation time of this environment as milliseconds since epoch.",
"format": "int64",
Expand Down Expand Up @@ -13481,6 +13485,33 @@
},
"type": "object"
},
"GoogleCloudApigeeV1EnvironmentClientIPResolutionConfig": {
"description": "Configuration for resolving the client ip.",
"id": "GoogleCloudApigeeV1EnvironmentClientIPResolutionConfig",
"properties": {
"headerIndexAlgorithm": {
"$ref": "GoogleCloudApigeeV1EnvironmentClientIPResolutionConfigHeaderIndexAlgorithm",
"description": "Resolves the client ip based on a custom header."
}
},
"type": "object"
},
"GoogleCloudApigeeV1EnvironmentClientIPResolutionConfigHeaderIndexAlgorithm": {
"description": "Resolves the client ip based on a custom header.",
"id": "GoogleCloudApigeeV1EnvironmentClientIPResolutionConfigHeaderIndexAlgorithm",
"properties": {
"ipHeaderIndex": {
"description": "Required. The index of the ip in the header. Positive indices 0, 1, 2, 3 chooses indices from the left (first ips) Negative indices -1, -2, -3 chooses indices from the right (last ips)",
"format": "int32",
"type": "integer"
},
"ipHeaderName": {
"description": "Required. The name of the header to extract the client ip from. We are currently only supporting the X-Forwarded-For header.",
"type": "string"
}
},
"type": "object"
},
"GoogleCloudApigeeV1EnvironmentConfig": {
"id": "GoogleCloudApigeeV1EnvironmentConfig",
"properties": {
Expand Down
57 changes: 57 additions & 0 deletions apigee/v1/apigee-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

145 changes: 144 additions & 1 deletion contactcenterinsights/v1/contactcenterinsights-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1519,6 +1519,34 @@
"resources": {
"issues": {
"methods": {
"create": {
"description": "Creates an issue.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/issueModels/{issueModelsId}/issues",
"httpMethod": "POST",
"id": "contactcenterinsights.projects.locations.issueModels.issues.create",
"parameterOrder": [
"parent"
],
"parameters": {
"parent": {
"description": "Required. The parent resource of the issue.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/issueModels/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+parent}/issues",
"request": {
"$ref": "GoogleCloudContactcenterinsightsV1Issue"
},
"response": {
"$ref": "GoogleLongrunningOperation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"delete": {
"description": "Deletes an issue.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/issueModels/{issueModelsId}/issues/{issuesId}",
Expand Down Expand Up @@ -2581,7 +2609,7 @@
}
}
},
"revision": "20241209",
"revision": "20241218",
"rootUrl": "https://contactcenterinsights.googleapis.com/",
"schemas": {
"GoogleCloudContactcenterinsightsV1Analysis": {
Expand Down Expand Up @@ -3915,6 +3943,29 @@
},
"type": "object"
},
"GoogleCloudContactcenterinsightsV1CreateIssueMetadata": {
"description": "Metadata for creating an issue.",
"id": "GoogleCloudContactcenterinsightsV1CreateIssueMetadata",
"properties": {
"createTime": {
"description": "Output only. The time the operation was created.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"endTime": {
"description": "Output only. The time the operation finished running.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"request": {
"$ref": "GoogleCloudContactcenterinsightsV1CreateIssueRequest",
"description": "The original request for creation."
}
},
"type": "object"
},
"GoogleCloudContactcenterinsightsV1CreateIssueModelMetadata": {
"description": "Metadata for creating an issue model.",
"id": "GoogleCloudContactcenterinsightsV1CreateIssueModelMetadata",
Expand Down Expand Up @@ -3953,6 +4004,21 @@
},
"type": "object"
},
"GoogleCloudContactcenterinsightsV1CreateIssueRequest": {
"description": "The request to create an issue.",
"id": "GoogleCloudContactcenterinsightsV1CreateIssueRequest",
"properties": {
"issue": {
"$ref": "GoogleCloudContactcenterinsightsV1Issue",
"description": "Required. The values for the new issue."
},
"parent": {
"description": "Required. The parent resource of the issue.",
"type": "string"
}
},
"type": "object"
},
"GoogleCloudContactcenterinsightsV1DeleteIssueModelMetadata": {
"description": "Metadata for deleting an issue model.",
"id": "GoogleCloudContactcenterinsightsV1DeleteIssueModelMetadata",
Expand Down Expand Up @@ -7568,6 +7634,29 @@
},
"type": "object"
},
"GoogleCloudContactcenterinsightsV1alpha1CreateIssueMetadata": {
"description": "Metadata for creating an issue.",
"id": "GoogleCloudContactcenterinsightsV1alpha1CreateIssueMetadata",
"properties": {
"createTime": {
"description": "Output only. The time the operation was created.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"endTime": {
"description": "Output only. The time the operation finished running.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"request": {
"$ref": "GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest",
"description": "The original request for creation."
}
},
"type": "object"
},
"GoogleCloudContactcenterinsightsV1alpha1CreateIssueModelMetadata": {
"description": "Metadata for creating an issue model.",
"id": "GoogleCloudContactcenterinsightsV1alpha1CreateIssueModelMetadata",
Expand Down Expand Up @@ -7606,6 +7695,21 @@
},
"type": "object"
},
"GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest": {
"description": "The request to create an issue.",
"id": "GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest",
"properties": {
"issue": {
"$ref": "GoogleCloudContactcenterinsightsV1alpha1Issue",
"description": "Required. The values for the new issue."
},
"parent": {
"description": "Required. The parent resource of the issue.",
"type": "string"
}
},
"type": "object"
},
"GoogleCloudContactcenterinsightsV1alpha1DeleteIssueModelMetadata": {
"description": "Metadata for deleting an issue model.",
"id": "GoogleCloudContactcenterinsightsV1alpha1DeleteIssueModelMetadata",
Expand Down Expand Up @@ -8523,6 +8627,45 @@
"properties": {},
"type": "object"
},
"GoogleCloudContactcenterinsightsV1alpha1Issue": {
"description": "The issue resource.",
"id": "GoogleCloudContactcenterinsightsV1alpha1Issue",
"properties": {
"createTime": {
"description": "Output only. The time at which this issue was created.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"displayDescription": {
"description": "Representative description of the issue.",
"type": "string"
},
"displayName": {
"description": "The representative name for the issue.",
"type": "string"
},
"name": {
"description": "Immutable. The resource name of the issue. Format: projects/{project}/locations/{location}/issueModels/{issue_model}/issues/{issue}",
"type": "string"
},
"sampleUtterances": {
"description": "Output only. Resource names of the sample representative utterances that match to this issue.",
"items": {
"type": "string"
},
"readOnly": true,
"type": "array"
},
"updateTime": {
"description": "Output only. The most recent time that this issue was updated.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"GoogleCloudContactcenterinsightsV1alpha1IssueAssignment": {
"description": "Information about the issue.",
"id": "GoogleCloudContactcenterinsightsV1alpha1IssueAssignment",
Expand Down
Loading