Skip to content
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
19 changes: 18 additions & 1 deletion admin/directory/v1/admin-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -4671,7 +4671,7 @@
}
}
},
"revision": "20250707",
"revision": "20250804",
"rootUrl": "https://admin.googleapis.com/",
"schemas": {
"Alias": {
Expand Down Expand Up @@ -5840,6 +5840,23 @@
"description": "The Chrome device's operating system version.",
"type": "string"
},
"osVersionCompliance": {
"description": "Output only. Compliance status of the OS version.",
"enum": [
"complianceUnspecified",
"compliant",
"pending",
"notCompliant"
],
"enumDescriptions": [
"Compliance status unspecified.",
"Compliance status compliant.",
"Compliance status pending.",
"Compliance status not compliant."
],
"readOnly": true,
"type": "string"
},
"platformVersion": {
"description": "The Chrome device's platform version.",
"type": "string"
Expand Down
8 changes: 8 additions & 0 deletions admin/directory/v1/admin-gen.go

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

10 changes: 7 additions & 3 deletions apigee/v1/apigee-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -2422,7 +2422,7 @@
"type": "string"
},
"pageSize": {
"description": "Optional. Count of apps a single page can have in the response. If unspecified, at most 100 apps will be returned. The maximum value is 100; values above 100 will be coerced to 100. \"page_size\" is supported from ver 1.10.0 and above.",
"description": "Optional. Count of apps a single page can have in the response. If unspecified, at most 1000 apps will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000. \"page_size\" is supported from ver 1.10.0 and above.",
"format": "int32",
"location": "query",
"type": "integer"
Expand All @@ -2440,7 +2440,7 @@
"type": "string"
},
"rows": {
"description": "Optional. Maximum number of app IDs to return. Defaults to 1000.",
"description": "Optional. Maximum number of app IDs to return. Defaults to 1000, which is also the upper limit. To get more than 1000, use pagination with 'pageSize' and 'pageToken' parameters.",
"format": "int64",
"location": "query",
"type": "string"
Expand Down Expand Up @@ -11127,7 +11127,7 @@
}
}
},
"revision": "20250722",
"revision": "20250731",
"rootUrl": "https://apigee.googleapis.com/",
"schemas": {
"EdgeConfigstoreBundleBadBundle": {
Expand Down Expand Up @@ -15248,6 +15248,10 @@
"description": "Required. Flag that specifies whether entry values will be encrypted. This field is retained for backward compatibility and the value of encrypted will always be `true`. Apigee X and hybrid do not support unencrypted key value maps.",
"type": "boolean"
},
"maskedValues": {
"description": "Required. Flag that specifies whether entry values will be masked when returned.",
"type": "boolean"
},
"name": {
"description": "Required. ID of the key value map.",
"type": "string"
Expand Down
12 changes: 8 additions & 4 deletions apigee/v1/apigee-gen.go

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

59 changes: 58 additions & 1 deletion apim/v1alpha/apim-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,31 @@
"https://www.googleapis.com/auth/cloud-platform"
]
},
"getEntitlement": {
"description": "GetEntitlement returns the entitlement for the provided project.",
"flatPath": "v1alpha/projects/{projectsId}/locations/{locationsId}/entitlement",
"httpMethod": "GET",
"id": "apim.projects.locations.getEntitlement",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The entitlement resource name Format: projects/{project}/locations/{location}/entitlement",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/entitlement$",
"required": true,
"type": "string"
}
},
"path": "v1alpha/{+name}",
"response": {
"$ref": "Entitlement"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"list": {
"description": "Lists information about the supported locations for this service.",
"flatPath": "v1alpha/projects/{projectsId}/locations",
Expand Down Expand Up @@ -821,7 +846,7 @@
}
}
},
"revision": "20250521",
"revision": "20250730",
"rootUrl": "https://apim.googleapis.com/",
"schemas": {
"ApiObservation": {
Expand Down Expand Up @@ -996,6 +1021,38 @@
"properties": {},
"type": "object"
},
"Entitlement": {
"description": "Entitlement stores data related to API Observation entitlement for a given project",
"id": "Entitlement",
"properties": {
"apiObservationEntitled": {
"description": "Whether API Observation is entitled.",
"type": "boolean"
},
"billingProjectNumber": {
"description": "Project number of associated billing project that has Apigee and Advanced API Security entitled.",
"format": "int64",
"type": "string"
},
"createTime": {
"description": "Output only. The time of the entitlement creation.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"name": {
"description": "Identifier. The entitlement resource name `projects/{project}/locations/{location}/entitlement`",
"type": "string"
},
"updateTime": {
"description": "Output only. The time of the entitlement update.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"GclbObservationSource": {
"description": "The GCLB observation source.",
"id": "GclbObservationSource",
Expand Down
147 changes: 147 additions & 0 deletions apim/v1alpha/apim-gen.go

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

Loading