Skip to content

Commit 509aecd

Browse files
feat(all): auto-regenerate discovery clients (#2933)
1 parent b9b7179 commit 509aecd

28 files changed

+3308
-95
lines changed

apigee/v1/apigee-api.json

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10385,7 +10385,7 @@
1038510385
}
1038610386
}
1038710387
},
10388-
"revision": "20241210",
10388+
"revision": "20241213",
1038910389
"rootUrl": "https://apigee.googleapis.com/",
1039010390
"schemas": {
1039110391
"EdgeConfigstoreBundleBadBundle": {
@@ -13390,6 +13390,10 @@
1339013390
],
1339113391
"type": "string"
1339213392
},
13393+
"clientIpResolutionConfig": {
13394+
"$ref": "GoogleCloudApigeeV1EnvironmentClientIPResolutionConfig",
13395+
"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."
13396+
},
1339313397
"createdAt": {
1339413398
"description": "Output only. Creation time of this environment as milliseconds since epoch.",
1339513399
"format": "int64",
@@ -13481,6 +13485,33 @@
1348113485
},
1348213486
"type": "object"
1348313487
},
13488+
"GoogleCloudApigeeV1EnvironmentClientIPResolutionConfig": {
13489+
"description": "Configuration for resolving the client ip.",
13490+
"id": "GoogleCloudApigeeV1EnvironmentClientIPResolutionConfig",
13491+
"properties": {
13492+
"headerIndexAlgorithm": {
13493+
"$ref": "GoogleCloudApigeeV1EnvironmentClientIPResolutionConfigHeaderIndexAlgorithm",
13494+
"description": "Resolves the client ip based on a custom header."
13495+
}
13496+
},
13497+
"type": "object"
13498+
},
13499+
"GoogleCloudApigeeV1EnvironmentClientIPResolutionConfigHeaderIndexAlgorithm": {
13500+
"description": "Resolves the client ip based on a custom header.",
13501+
"id": "GoogleCloudApigeeV1EnvironmentClientIPResolutionConfigHeaderIndexAlgorithm",
13502+
"properties": {
13503+
"ipHeaderIndex": {
13504+
"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)",
13505+
"format": "int32",
13506+
"type": "integer"
13507+
},
13508+
"ipHeaderName": {
13509+
"description": "Required. The name of the header to extract the client ip from. We are currently only supporting the X-Forwarded-For header.",
13510+
"type": "string"
13511+
}
13512+
},
13513+
"type": "object"
13514+
},
1348413515
"GoogleCloudApigeeV1EnvironmentConfig": {
1348513516
"id": "GoogleCloudApigeeV1EnvironmentConfig",
1348613517
"properties": {

apigee/v1/apigee-gen.go

Lines changed: 57 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contactcenterinsights/v1/contactcenterinsights-api.json

Lines changed: 144 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1519,6 +1519,34 @@
15191519
"resources": {
15201520
"issues": {
15211521
"methods": {
1522+
"create": {
1523+
"description": "Creates an issue.",
1524+
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/issueModels/{issueModelsId}/issues",
1525+
"httpMethod": "POST",
1526+
"id": "contactcenterinsights.projects.locations.issueModels.issues.create",
1527+
"parameterOrder": [
1528+
"parent"
1529+
],
1530+
"parameters": {
1531+
"parent": {
1532+
"description": "Required. The parent resource of the issue.",
1533+
"location": "path",
1534+
"pattern": "^projects/[^/]+/locations/[^/]+/issueModels/[^/]+$",
1535+
"required": true,
1536+
"type": "string"
1537+
}
1538+
},
1539+
"path": "v1/{+parent}/issues",
1540+
"request": {
1541+
"$ref": "GoogleCloudContactcenterinsightsV1Issue"
1542+
},
1543+
"response": {
1544+
"$ref": "GoogleLongrunningOperation"
1545+
},
1546+
"scopes": [
1547+
"https://www.googleapis.com/auth/cloud-platform"
1548+
]
1549+
},
15221550
"delete": {
15231551
"description": "Deletes an issue.",
15241552
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/issueModels/{issueModelsId}/issues/{issuesId}",
@@ -2581,7 +2609,7 @@
25812609
}
25822610
}
25832611
},
2584-
"revision": "20241209",
2612+
"revision": "20241218",
25852613
"rootUrl": "https://contactcenterinsights.googleapis.com/",
25862614
"schemas": {
25872615
"GoogleCloudContactcenterinsightsV1Analysis": {
@@ -3915,6 +3943,29 @@
39153943
},
39163944
"type": "object"
39173945
},
3946+
"GoogleCloudContactcenterinsightsV1CreateIssueMetadata": {
3947+
"description": "Metadata for creating an issue.",
3948+
"id": "GoogleCloudContactcenterinsightsV1CreateIssueMetadata",
3949+
"properties": {
3950+
"createTime": {
3951+
"description": "Output only. The time the operation was created.",
3952+
"format": "google-datetime",
3953+
"readOnly": true,
3954+
"type": "string"
3955+
},
3956+
"endTime": {
3957+
"description": "Output only. The time the operation finished running.",
3958+
"format": "google-datetime",
3959+
"readOnly": true,
3960+
"type": "string"
3961+
},
3962+
"request": {
3963+
"$ref": "GoogleCloudContactcenterinsightsV1CreateIssueRequest",
3964+
"description": "The original request for creation."
3965+
}
3966+
},
3967+
"type": "object"
3968+
},
39183969
"GoogleCloudContactcenterinsightsV1CreateIssueModelMetadata": {
39193970
"description": "Metadata for creating an issue model.",
39203971
"id": "GoogleCloudContactcenterinsightsV1CreateIssueModelMetadata",
@@ -3953,6 +4004,21 @@
39534004
},
39544005
"type": "object"
39554006
},
4007+
"GoogleCloudContactcenterinsightsV1CreateIssueRequest": {
4008+
"description": "The request to create an issue.",
4009+
"id": "GoogleCloudContactcenterinsightsV1CreateIssueRequest",
4010+
"properties": {
4011+
"issue": {
4012+
"$ref": "GoogleCloudContactcenterinsightsV1Issue",
4013+
"description": "Required. The values for the new issue."
4014+
},
4015+
"parent": {
4016+
"description": "Required. The parent resource of the issue.",
4017+
"type": "string"
4018+
}
4019+
},
4020+
"type": "object"
4021+
},
39564022
"GoogleCloudContactcenterinsightsV1DeleteIssueModelMetadata": {
39574023
"description": "Metadata for deleting an issue model.",
39584024
"id": "GoogleCloudContactcenterinsightsV1DeleteIssueModelMetadata",
@@ -7568,6 +7634,29 @@
75687634
},
75697635
"type": "object"
75707636
},
7637+
"GoogleCloudContactcenterinsightsV1alpha1CreateIssueMetadata": {
7638+
"description": "Metadata for creating an issue.",
7639+
"id": "GoogleCloudContactcenterinsightsV1alpha1CreateIssueMetadata",
7640+
"properties": {
7641+
"createTime": {
7642+
"description": "Output only. The time the operation was created.",
7643+
"format": "google-datetime",
7644+
"readOnly": true,
7645+
"type": "string"
7646+
},
7647+
"endTime": {
7648+
"description": "Output only. The time the operation finished running.",
7649+
"format": "google-datetime",
7650+
"readOnly": true,
7651+
"type": "string"
7652+
},
7653+
"request": {
7654+
"$ref": "GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest",
7655+
"description": "The original request for creation."
7656+
}
7657+
},
7658+
"type": "object"
7659+
},
75717660
"GoogleCloudContactcenterinsightsV1alpha1CreateIssueModelMetadata": {
75727661
"description": "Metadata for creating an issue model.",
75737662
"id": "GoogleCloudContactcenterinsightsV1alpha1CreateIssueModelMetadata",
@@ -7606,6 +7695,21 @@
76067695
},
76077696
"type": "object"
76087697
},
7698+
"GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest": {
7699+
"description": "The request to create an issue.",
7700+
"id": "GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest",
7701+
"properties": {
7702+
"issue": {
7703+
"$ref": "GoogleCloudContactcenterinsightsV1alpha1Issue",
7704+
"description": "Required. The values for the new issue."
7705+
},
7706+
"parent": {
7707+
"description": "Required. The parent resource of the issue.",
7708+
"type": "string"
7709+
}
7710+
},
7711+
"type": "object"
7712+
},
76097713
"GoogleCloudContactcenterinsightsV1alpha1DeleteIssueModelMetadata": {
76107714
"description": "Metadata for deleting an issue model.",
76117715
"id": "GoogleCloudContactcenterinsightsV1alpha1DeleteIssueModelMetadata",
@@ -8523,6 +8627,45 @@
85238627
"properties": {},
85248628
"type": "object"
85258629
},
8630+
"GoogleCloudContactcenterinsightsV1alpha1Issue": {
8631+
"description": "The issue resource.",
8632+
"id": "GoogleCloudContactcenterinsightsV1alpha1Issue",
8633+
"properties": {
8634+
"createTime": {
8635+
"description": "Output only. The time at which this issue was created.",
8636+
"format": "google-datetime",
8637+
"readOnly": true,
8638+
"type": "string"
8639+
},
8640+
"displayDescription": {
8641+
"description": "Representative description of the issue.",
8642+
"type": "string"
8643+
},
8644+
"displayName": {
8645+
"description": "The representative name for the issue.",
8646+
"type": "string"
8647+
},
8648+
"name": {
8649+
"description": "Immutable. The resource name of the issue. Format: projects/{project}/locations/{location}/issueModels/{issue_model}/issues/{issue}",
8650+
"type": "string"
8651+
},
8652+
"sampleUtterances": {
8653+
"description": "Output only. Resource names of the sample representative utterances that match to this issue.",
8654+
"items": {
8655+
"type": "string"
8656+
},
8657+
"readOnly": true,
8658+
"type": "array"
8659+
},
8660+
"updateTime": {
8661+
"description": "Output only. The most recent time that this issue was updated.",
8662+
"format": "google-datetime",
8663+
"readOnly": true,
8664+
"type": "string"
8665+
}
8666+
},
8667+
"type": "object"
8668+
},
85268669
"GoogleCloudContactcenterinsightsV1alpha1IssueAssignment": {
85278670
"description": "Information about the issue.",
85288671
"id": "GoogleCloudContactcenterinsightsV1alpha1IssueAssignment",

0 commit comments

Comments
 (0)