Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2564)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed May 2, 2024
1 parent 2d22d11 commit b313e4b
Show file tree
Hide file tree
Showing 33 changed files with 3,066 additions and 690 deletions.
25 changes: 23 additions & 2 deletions admin/directory/v1/admin-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -4671,7 +4671,7 @@
}
}
},
"revision": "20240304",
"revision": "20240429",
"rootUrl": "https://admin.googleapis.com/",
"schemas": {
"Alias": {
Expand Down Expand Up @@ -5403,10 +5403,16 @@
"type": "string"
},
"autoUpdateExpiration": {
"description": "(Read-only) The timestamp after which the device will stop receiving Chrome updates or support",
"deprecated": true,
"description": "(Read-only) The timestamp after which the device will stop receiving Chrome updates or support. Please use \"autoUpdateThrough\" instead.",
"format": "int64",
"type": "string"
},
"autoUpdateThrough": {
"description": "Output only. The timestamp after which the device will stop receiving Chrome updates or support.",
"readOnly": true,
"type": "string"
},
"backlightInfo": {
"description": "Output only. Contains backlight information for the device.",
"items": {
Expand Down Expand Up @@ -5667,6 +5673,21 @@
"description": "(Read-only) MAC address used by the Chromebook’s internal ethernet port, and for onboard network (ethernet) interface. The format is twelve (12) hexadecimal digits without any delimiter (uppercase letters). This is only relevant for some devices.",
"type": "string"
},
"extendedSupportEligible": {
"description": "Output only. Whether or not the device requires the extended support opt in.",
"readOnly": true,
"type": "boolean"
},
"extendedSupportEnabled": {
"description": "Output only. Whether extended support policy is enabled on the device.",
"readOnly": true,
"type": "boolean"
},
"extendedSupportStart": {
"description": "Output only. Date of the device when extended support policy for automatic updates starts.",
"readOnly": true,
"type": "string"
},
"firmwareVersion": {
"description": "The Chrome device's firmware version.",
"type": "string"
Expand Down
15 changes: 14 additions & 1 deletion admin/directory/v1/admin-gen.go

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

67 changes: 60 additions & 7 deletions dataflow/v1b3/dataflow-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -2187,7 +2187,7 @@
}
}
},
"revision": "20240415",
"revision": "20240430",
"rootUrl": "https://dataflow.googleapis.com/",
"schemas": {
"ApproximateProgress": {
Expand Down Expand Up @@ -3184,7 +3184,7 @@
"type": "string"
},
"serviceOptions": {
"description": "The list of service options to enable. This field should be used for service related experiments only. These experiments, when graduating to GA, should be replaced by dedicated fields or become default (i.e. always on).",
"description": "Optional. The list of service options to enable. This field should be used for service related experiments only. These experiments, when graduating to GA, should be replaced by dedicated fields or become default (i.e. always on).",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -3903,7 +3903,7 @@
},
"environment": {
"$ref": "Environment",
"description": "The environment for the job."
"description": "Optional. The environment for the job."
},
"executionInfo": {
"$ref": "JobExecutionInfo",
Expand All @@ -3929,7 +3929,7 @@
"type": "string"
},
"name": {
"description": "The user-specified Dataflow job name. Only one active job with a given name can exist in a project within one region at any given time. Jobs in different regions can have the same name. If a caller attempts to create a job with the same name as an active job that already exists, the attempt returns the existing job. The name must match the regular expression `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`",
"description": "Optional. The user-specified Dataflow job name. Only one active job with a given name can exist in a project within one region at any given time. Jobs in different regions can have the same name. If a caller attempts to create a job with the same name as an active job that already exists, the attempt returns the existing job. The name must match the regular expression `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`",
"type": "string"
},
"pipelineDescription": {
Expand Down Expand Up @@ -4033,7 +4033,7 @@
"type": "object"
},
"type": {
"description": "The type of Dataflow job.",
"description": "Optional. The type of Dataflow job.",
"enum": [
"JOB_TYPE_UNKNOWN",
"JOB_TYPE_BATCH",
Expand Down Expand Up @@ -4980,7 +4980,8 @@
"WORKER_ZONE",
"BOOLEAN",
"ENUM",
"NUMBER"
"NUMBER",
"KAFKA_TOPIC"
],
"enumDescriptions": [
"Default input type.",
Expand All @@ -5002,7 +5003,8 @@
"The parameter specifies a Worker Zone.",
"The parameter specifies a boolean input.",
"The parameter specifies an enum input.",
"The parameter specifies a number input."
"The parameter specifies a number input.",
"The parameter specifies the fully-qualified name of an Apache Kafka topic. This can be either a Google Managed Kafka topic or a non-managed Kafka topic."
],
"type": "string"
},
Expand Down Expand Up @@ -6661,6 +6663,10 @@
"format": "int64",
"type": "string"
},
"operationalLimits": {
"$ref": "StreamingOperationalLimits",
"description": "Operational limits for the streaming job. Can be used by the worker to validate outputs sent to the backend."
},
"streamingComputationConfigs": {
"description": "Set of computation configuration information.",
"items": {
Expand All @@ -6687,6 +6693,53 @@
},
"type": "object"
},
"StreamingOperationalLimits": {
"description": "Operational limits imposed on streaming jobs by the backend.",
"id": "StreamingOperationalLimits",
"properties": {
"maxBagElementBytes": {
"description": "The maximum size for an element in bag state.",
"format": "int64",
"type": "string"
},
"maxGlobalDataBytes": {
"description": "The maximum size for an element in global data.",
"format": "int64",
"type": "string"
},
"maxKeyBytes": {
"description": "The maximum size allowed for a key.",
"format": "int64",
"type": "string"
},
"maxProductionOutputBytes": {
"description": "The maximum size for a single output element.",
"format": "int64",
"type": "string"
},
"maxSortedListElementBytes": {
"description": "The maximum size for an element in sorted list state.",
"format": "int64",
"type": "string"
},
"maxSourceStateBytes": {
"description": "The maximum size for a source state update.",
"format": "int64",
"type": "string"
},
"maxTagBytes": {
"description": "The maximum size for a state tag.",
"format": "int64",
"type": "string"
},
"maxValueBytes": {
"description": "The maximum size for a value state field.",
"format": "int64",
"type": "string"
}
},
"type": "object"
},
"StreamingScalingReport": {
"description": "Contains per-user worker telemetry used in streaming autoscaling.",
"id": "StreamingScalingReport",
Expand Down
62 changes: 53 additions & 9 deletions dataflow/v1b3/dataflow-gen.go

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

6 changes: 4 additions & 2 deletions dlp/v2/dlp-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -4451,7 +4451,7 @@
}
}
},
"revision": "20240421",
"revision": "20240428",
"rootUrl": "https://dlp.googleapis.com/",
"schemas": {
"GooglePrivacyDlpV2Action": {
Expand Down Expand Up @@ -7536,7 +7536,7 @@
"type": "object"
},
"GooglePrivacyDlpV2InfoTypeCategory": {
"description": "Classification of infoTypes to organize them according to geographic location, industry, and data type. NEXT_ID: 47",
"description": "Classification of infoTypes to organize them according to geographic location, industry, and data type. NEXT_ID: 48",
"id": "GooglePrivacyDlpV2InfoTypeCategory",
"properties": {
"industryCategory": {
Expand Down Expand Up @@ -7580,6 +7580,7 @@
"ISRAEL",
"ITALY",
"JAPAN",
"KAZAKHSTAN",
"KOREA",
"MEXICO",
"THE_NETHERLANDS",
Expand Down Expand Up @@ -7629,6 +7630,7 @@
"The infoType is typically used in Israel.",
"The infoType is typically used in Italy.",
"The infoType is typically used in Japan.",
"The infoType is typically used in Kazakhstan.",
"The infoType is typically used in Korea.",
"The infoType is typically used in Mexico.",
"The infoType is typically used in the Netherlands.",
Expand Down
3 changes: 2 additions & 1 deletion dlp/v2/dlp-gen.go

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

0 comments on commit b313e4b

Please sign in to comment.