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 #2622

Merged
merged 1 commit into from
Jun 4, 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
54 changes: 49 additions & 5 deletions androidmanagement/v1/androidmanagement-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,7 @@
}
}
},
"revision": "20240516",
"revision": "20240531",
"rootUrl": "https://androidmanagement.googleapis.com/",
"schemas": {
"AdbShellCommandEvent": {
Expand Down Expand Up @@ -1811,6 +1811,20 @@
},
"type": "array"
},
"userControlSettings": {
"description": "Optional. Specifies whether user control is permitted for the app. User control includes user actions like force-stopping and clearing app data. Supported on Android 11 and above.",
"enum": [
"USER_CONTROL_SETTINGS_UNSPECIFIED",
"USER_CONTROL_ALLOWED",
"USER_CONTROL_DISALLOWED"
],
"enumDescriptions": [
"Uses the default behaviour of the app to determine if user control is allowed or disallowed. For most apps, user control is allowed by default, but for some critical apps such as companion apps (extensionConfig set to true), kiosk apps and other critical system apps, user control is disallowed.",
"User control is allowed for the app. Kiosk apps can use this to allow user control.",
"User control is disallowed for the app. API_LEVEL is reported if the Android version is less than 11."
],
"type": "string"
},
"workProfileWidgets": {
"description": "Specifies whether the app installed in the work profile is allowed to add widgets to the home screen.",
"enum": [
Expand Down Expand Up @@ -3012,12 +3026,14 @@
"enum": [
"ALLOW_PERSONAL_USAGE_UNSPECIFIED",
"PERSONAL_USAGE_ALLOWED",
"PERSONAL_USAGE_DISALLOWED"
"PERSONAL_USAGE_DISALLOWED",
"PERSONAL_USAGE_DISALLOWED_USERLESS"
],
"enumDescriptions": [
"Personal usage restriction is not specified",
"Personal usage is allowed",
"Personal usage is disallowed"
"Personal usage is disallowed",
"Device is not associated with a single user, and thus both personal usage and corporate identity authentication are not expected."
],
"type": "string"
},
Expand Down Expand Up @@ -3107,6 +3123,10 @@
"description": "The name of the enterprise displayed to users. This field has a maximum length of 100 characters.",
"type": "string"
},
"googleAuthenticationSettings": {
"$ref": "GoogleAuthenticationSettings",
"description": "Settings for Google-provided user authentication."
},
"logo": {
"$ref": "ExternalData",
"description": "An image displayed as a logo during device provisioning. Supported types are: image/bmp, image/gif, image/x-ico, image/jpeg, image/png, image/webp, image/vnd.wap.wbmp, image/x-adobe-dng."
Expand Down Expand Up @@ -3211,6 +3231,28 @@
},
"type": "object"
},
"GoogleAuthenticationSettings": {
"description": "Contains settings for Google-provided user authentication.",
"id": "GoogleAuthenticationSettings",
"properties": {
"googleAuthenticationRequired": {
"description": "Output only. Whether users need to be authenticated by Google during the enrollment process. IT admin can specify if Google authentication is enabled for the enterprise for knowledge worker devices. This value can be set only via the Google Admin Console. Google authentication can be used with signin_url In the case where Google authentication is required and a signin_url is specified, Google authentication will be launched before signin_url.",
"enum": [
"GOOGLE_AUTHENTICATION_REQUIRED_UNSPECIFIED",
"NOT_REQUIRED",
"REQUIRED"
],
"enumDescriptions": [
"This value is not used.",
"Google authentication is not required.",
"User is required to be successfully authenticated by Google."
],
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"HardwareInfo": {
"description": "Information about device hardware. The fields related to temperature thresholds are only available if hardwareStatusEnabled is true in the device's policy.",
"id": "HardwareInfo",
Expand Down Expand Up @@ -5621,12 +5663,14 @@
"enum": [
"ALLOW_PERSONAL_USAGE_UNSPECIFIED",
"PERSONAL_USAGE_ALLOWED",
"PERSONAL_USAGE_DISALLOWED"
"PERSONAL_USAGE_DISALLOWED",
"PERSONAL_USAGE_DISALLOWED_USERLESS"
],
"enumDescriptions": [
"Personal usage restriction is not specified",
"Personal usage is allowed",
"Personal usage is disallowed"
"Personal usage is disallowed",
"Device is not associated with a single user, and thus both personal usage and corporate identity authentication are not expected."
],
"type": "string"
},
Expand Down
58 changes: 58 additions & 0 deletions androidmanagement/v1/androidmanagement-gen.go

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

4 changes: 2 additions & 2 deletions artifactregistry/v1/artifactregistry-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1637,7 +1637,7 @@
],
"parameters": {
"filter": {
"description": "An expression for filtering the results of the request. Filter rules are case insensitive. The fields eligible for filtering are: * `version` An example of using a filter: * `version=\"projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/versions/1.0\"` --\u003e Tags that are applied to the version `1.0` in package `pkg1`.",
"description": "An expression for filtering the results of the request. Filter rules are case insensitive. The fields eligible for filtering are: * `version` An example of using a filter: * `version=\"projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/versions/1.0\"` --\u003e Tags that are applied to the version `1.0` in package `pkg1`. * `name=\"projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/tags/a%2Fb%2F*\"` --\u003e tags with an ID starting with \"a/b/\". * `name=\"projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/tags/*%2Fb%2Fc\"` --\u003e tags with an ID ending with \"/b/c\". * `name=\"projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/tags/*%2Fb%2F*\"` --\u003e tags with an ID containing \"/b/\".",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -2013,7 +2013,7 @@
}
}
},
"revision": "20240520",
"revision": "20240528",
"rootUrl": "https://artifactregistry.googleapis.com/",
"schemas": {
"AptArtifact": {
Expand Down
8 changes: 7 additions & 1 deletion artifactregistry/v1/artifactregistry-gen.go

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

4 changes: 2 additions & 2 deletions artifactregistry/v1beta1/artifactregistry-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@
],
"parameters": {
"filter": {
"description": "An expression for filtering the results of the request. Filter rules are case insensitive. The fields eligible for filtering are: * `version` An example of using a filter: * `version=\"projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/versions/1.0\"` --\u003e Tags that are applied to the version `1.0` in package `pkg1`.",
"description": "An expression for filtering the results of the request. Filter rules are case insensitive. The fields eligible for filtering are: * `version` An example of using a filter: * `version=\"projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/versions/1.0\"` --\u003e Tags that are applied to the version `1.0` in package `pkg1`. * `name=\"projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/tags/a%2Fb%2F*\"` --\u003e tags with an ID starting with \"a/b/\". * `name=\"projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/tags/*%2Fb%2Fc\"` --\u003e tags with an ID ending with \"/b/c\". * `name=\"projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/tags/*%2Fb%2F*\"` --\u003e tags with an ID containing \"/b/\".",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -1146,7 +1146,7 @@
}
}
},
"revision": "20240513",
"revision": "20240528",
"rootUrl": "https://artifactregistry.googleapis.com/",
"schemas": {
"Binding": {
Expand Down
8 changes: 7 additions & 1 deletion artifactregistry/v1beta1/artifactregistry-gen.go

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

4 changes: 2 additions & 2 deletions artifactregistry/v1beta2/artifactregistry-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1133,7 +1133,7 @@
],
"parameters": {
"filter": {
"description": "An expression for filtering the results of the request. Filter rules are case insensitive. The fields eligible for filtering are: * `version` An example of using a filter: * `version=\"projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/versions/1.0\"` --\u003e Tags that are applied to the version `1.0` in package `pkg1`.",
"description": "An expression for filtering the results of the request. Filter rules are case insensitive. The fields eligible for filtering are: * `version` An example of using a filter: * `version=\"projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/versions/1.0\"` --\u003e Tags that are applied to the version `1.0` in package `pkg1`. * `name=\"projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/tags/a%2Fb%2F*\"` --\u003e tags with an ID starting with \"a/b/\". * `name=\"projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/tags/*%2Fb%2Fc\"` --\u003e tags with an ID ending with \"/b/c\". * `name=\"projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/tags/*%2Fb%2F*\"` --\u003e tags with an ID containing \"/b/\".",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -1414,7 +1414,7 @@
}
}
},
"revision": "20240513",
"revision": "20240528",
"rootUrl": "https://artifactregistry.googleapis.com/",
"schemas": {
"AptArtifact": {
Expand Down
8 changes: 7 additions & 1 deletion artifactregistry/v1beta2/artifactregistry-gen.go

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

Loading